/*
WP SVG Icons Default Side Styles
Compiled By : Evan Herman ( http://www.Evan-Herman.com )
*/

/* Set Icons to Display Inline-Block (required for some animation effects) */

[class*="wp-svg-"], [class*="wp-svg-custom-"] {
  display: inline-block;
}

/* Hidden Icon On Page Load */

.wp-svg-icon-hidden {
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 5-7 */
  filter: alpha(opacity=0);
  /* Netscape */
  -moz-opacity: 0;
  /* Safari 1.x */
  -khtml-opacity: 0;
  /* Good browsers */
  opacity: 0;
}

.animated {
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  /* IE 5-7 */
  filter: alpha(opacity=100);
  /* Netscape */
  -moz-opacity: 1;
  /* Safari 1.x */
  -khtml-opacity: 1;
  /* Good browsers */
  opacity: 1;
}

/* Additional sizes+animation classes */

/* Add any of these classes to an icon for the desired effect */

/* DropShadow Effect */

.wpSVGiconDropShadow {
  text-shadow: 3px 3px 8px #888888;
}

/* WP SVG Icons Animation Effect */

.wpSVGanimatedSpin-fast {
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1500ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotate;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: rotate;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.wpSVGanimatedSpin-medium {
  /* Webkit Support */
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 3000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  /* Moz Support */
  -moz-animation-name: spin;
  -moz-animation-duration: 3000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  /* MS Support */
  -ms-animation-name: rotate;
  -ms-animation-duration: 3000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  /* Defualt Support */
  animation-name: rotate;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.wpSVGanimatedSpin-slow {
  /* Webkit Support */
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 5000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  /* Moz Support */
  -moz-animation-name: spin;
  -moz-animation-duration: 5000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  /* MS Support */
  -ms-animation-name: rotate;
  -ms-animation-duration: 5000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  /* Defualt Support */
  animation-name: rotate;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* Webkit Support for Animations */

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* Microsoft Animation Support */

@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}

/* Mozilla Animation Support */

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

/* Microsoft Animation Support */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Link for Smooth Color Transition */

.wpSVGlink {
  -o-transition: color .2s ease-out;
  -ms-transition: color .2s ease-out;
  -moz-transition: color .2s ease-out;
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

/* Icon Font Sizes */

.wpSVGsmall {
  font-size: 1.5em !important;
}

.wpSVGmedium {
  font-size: 4em !important;
}

.wpSVGlarge {
  font-size: 6.5em !important;
}

.wpSVGxlarge {
  font-size: 9em !important;
}

/* Rounded Corner Border Radius */

.wpSVGroundedCorners {
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* Float Classes */

.wpSVGfloatRight {
  float: right;
  margin-left: 13px;
}

.wpSVGfloatLeft {
  float: left;
  margin-right: 13px;
}

.wpSVGnoFloat {
  float: none !important;
}

/* CUSTOM ICON UPLOAD PAGE */

.custom-icons-file-upload-note {
  font-size: 10px;
  color: #EE3B3B;
}

.wp-svg-custom-upload-wrap {
  margin: 10px 30px 0 50px;
}

.wp-sv-gcustom-icon-upload-new-image {
  width: 41px;
  position: absolute;
  margin-top: .5em;
}

.svg-custom-pack-buttons {
  display: inline-block;
  width: 430px;
  height: 55px;
}

.svg-custom-pack-buttons>p {
  float: left;
}

.svg-custom-pack-buttons>p:last-child {
  margin-left: 1em;
}
