@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
     animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
     animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
     animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  -o-animation-duration: 2s;
     animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  -o-animation-duration: .75s;
     animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  -o-animation-duration: .75s;
     animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@-o-keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -o-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
       animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -o-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
       animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -o-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
       animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -o-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
       animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  -o-animation-name: bounce;
     animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -o-transform-origin: center bottom;
     transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@-o-keyframes flash {
  from, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  -o-animation-name: flash;
     animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-o-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  -o-animation-name: pulse;
     animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-o-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  -o-animation-name: rubberBand;
     animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@-o-keyframes shake {
  from, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  -o-animation-name: shake;
     animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@-o-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -o-transform-origin: top center;
     transform-origin: top center;
  -webkit-animation-name: swing;
  -o-animation-name: swing;
     animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-o-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  -o-animation-name: tada;
     animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes wobble {
  from {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  -o-animation-name: wobble;
     animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, 100% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@-o-keyframes jello {
  from, 11.1%, 100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -o-transform: skewX(-12.5deg) skewY(-12.5deg);
       transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -o-transform: skewX(6.25deg) skewY(6.25deg);
       transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -o-transform: skewX(-3.125deg) skewY(-3.125deg);
       transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -o-transform: skewX(1.5625deg) skewY(1.5625deg);
       transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -o-transform: skewX(-0.78125deg) skewY(-0.78125deg);
       transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -o-transform: skewX(0.390625deg) skewY(0.390625deg);
       transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -o-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
       transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, 100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -o-transform: skewX(-12.5deg) skewY(-12.5deg);
       transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -o-transform: skewX(6.25deg) skewY(6.25deg);
       transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -o-transform: skewX(-3.125deg) skewY(-3.125deg);
       transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -o-transform: skewX(1.5625deg) skewY(1.5625deg);
       transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -o-transform: skewX(-0.78125deg) skewY(-0.78125deg);
       transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -o-transform: skewX(0.390625deg) skewY(0.390625deg);
       transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -o-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
       transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  -o-animation-name: jello;
     animation-name: jello;
  -webkit-transform-origin: center;
  -o-transform-origin: center;
     transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-o-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  -o-animation-name: bounceIn;
     animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
     animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
     animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes bounceInRight {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
     animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes bounceInUp {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
       animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
     animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@-o-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  -o-animation-name: bounceOut;
     animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@-o-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
     animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@-o-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
     animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@-o-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
     animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@-o-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
     animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  -o-animation-name: fadeIn;
     animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
     animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
     animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
     animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
     animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
     animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
     animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
     animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
     animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  -o-animation-name: fadeOut;
     animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@-o-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
     animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@-o-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
     animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-o-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
     animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@-o-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
     animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@-o-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
     animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@-o-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
     animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-o-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
     animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@-o-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
     animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@-o-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
       animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
       animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
       animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
       animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  -o-animation-name: flip;
     animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-o-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -o-animation-name: flipInX;
     animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-o-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
       animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -o-animation-name: flipInY;
     animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@-o-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  -o-animation-name: flipOutX;
     animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@-o-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -o-animation-name: flipOutY;
     animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-o-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    -o-transform: skewX(20deg);
       transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    -o-transform: skewX(-5deg);
       transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    -o-transform: skewX(20deg);
       transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    -o-transform: skewX(-5deg);
       transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
     animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
     animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@-o-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
     animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
     animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-o-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    -o-transform-origin: center;
       transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    -o-transform-origin: center;
       transform-origin: center;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    -o-transform-origin: center;
       transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    -o-transform-origin: center;
       transform-origin: center;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  -o-animation-name: rotateIn;
     animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-o-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
     animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-o-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
     animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-o-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
     animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-o-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
     animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    -o-transform-origin: center;
       transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    -o-transform-origin: center;
       transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    -o-transform-origin: center;
       transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    -o-transform-origin: center;
       transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  -o-animation-name: rotateOut;
     animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
     animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
     animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -o-transform-origin: left bottom;
       transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
     animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -o-transform-origin: right bottom;
       transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
     animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@-o-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
       transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
       animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
       transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
       animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
       transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
       animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
       transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
       animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
       transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
       animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
       transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
       animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  -o-animation-name: hinge;
     animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  -o-animation-name: rollIn;
     animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@-o-keyframes rollOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  -o-animation-name: rollOut;
     animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@-o-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  -o-animation-name: zoomIn;
     animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@-o-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  -o-animation-name: zoomInDown;
     animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@-o-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  -o-animation-name: zoomInLeft;
     animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@-o-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  -o-animation-name: zoomInRight;
     animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@-o-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  -o-animation-name: zoomInUp;
     animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  -o-animation-name: zoomOut;
     animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@-o-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -o-transform-origin: center bottom;
       transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -o-transform-origin: center bottom;
       transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  -o-animation-name: zoomOutDown;
     animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@-o-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -o-transform-origin: left center;
       transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -o-transform-origin: left center;
       transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  -o-animation-name: zoomOutLeft;
     animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@-o-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -o-transform-origin: right center;
       transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -o-transform-origin: right center;
       transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  -o-animation-name: zoomOutRight;
     animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@-o-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -o-transform-origin: center bottom;
       transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    -o-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
       animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -o-transform-origin: center bottom;
       transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
       animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  -o-animation-name: zoomOutUp;
     animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  -o-animation-name: slideInDown;
     animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  -o-animation-name: slideInLeft;
     animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  -o-animation-name: slideInRight;
     animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  -o-animation-name: slideInUp;
     animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@-o-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  -o-animation-name: slideOutDown;
     animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-o-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  -o-animation-name: slideOutLeft;
     animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@-o-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  -o-animation-name: slideOutRight;
     animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-o-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  -o-animation-name: slideOutUp;
     animation-name: slideOutUp;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          -o-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
     transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -o-transform-origin: left top;
     transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          -o-transition: -o-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
     transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          -o-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
     transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  -o-transition: none;
     transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          -o-transition: opacity 0.2s;
     transition: opacity 0.2s;
  box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (-o-min-device-pixel-ratio: 35/32), (min-resolution: 105dpi), (-o-min-device-pixel-ratio: 11/10), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          -o-transition: opacity 0.25s ease-out;
     transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
          -o-transform: translateY(6px);
     transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          -o-transition: -o-transform 0.25s;
     transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
            -o-transform: translateY(0);
       transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          -o-transition: opacity 0.25s ease-out;
     transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            -o-animation: clockwise 500ms linear infinite;
       animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            -o-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
       animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-o-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            -o-transform: rotate(360deg);
       transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            -o-transform: rotate(360deg);
       transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@-o-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            -o-transform: rotate(0);
       transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            -o-transform: rotate(-140deg);
       transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            -o-transform: rotate(0);
       transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            -o-transform: rotate(0);
       transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            -o-transform: rotate(-140deg);
       transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            -o-transform: rotate(0);
       transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          -o-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
     transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/*
* iziModal | v1.6.1
* https://izimodal.marcelodolza.com
* by Marcelo Dolza.
*/
.iziModal {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #FFF;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    -webkit-transition: margin-top 0.3s ease, height 0.3s ease;
         -o-transition: margin-top 0.3s ease, height 0.3s ease;
            transition: margin-top 0.3s ease, height 0.3s ease;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    box-sizing: border-box;
}
.iziModal *{
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
.iziModal::after{
    content: '';
    width: 100%;
    height: 0px;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.35)));
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.35) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.35) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.35) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#59000000',GradientType=0 );
    -webkit-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
         -o-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
            transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none;
}
.iziModal.hasShadow::after{
    height: 30px;
    opacity: 1;
}
.iziModal .iziModal-progressbar{
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 1;
}
.iziModal .iziModal-progressbar > div{
    height: 2px;
    width: 100%;
}


.iziModal .iziModal-header {
    background: #88A0B9;
    padding: 14px 18px 15px 18px;
    box-shadow: inset 0 -10px 15px -12px rgba(0, 0, 0, 0.3), 0 0 0px #555;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.iziModal .iziModal-header-icon{
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 15px 0 0;
    margin: 0;
    float: left;
}
.iziModal .iziModal-header-title {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}
.iziModal .iziModal-header-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.45;
}
.iziModal .iziModal-header-title, .iziModal .iziModal-header-subtitle{
    display: block;
    margin: 0;
    padding: 0;
    font-family: 'Lato', Arial;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}
.iziModal .iziModal-header-buttons {
    position: absolute;
    top: 50%;
    right: 10px;
    margin: -17px 0 0 0;
}

.iziModal .iziModal-button{
    display: block;
    float: right;
    z-index: 2;
    outline: none;
    height: 34px;
    width: 34px;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: 0.3;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(.16,.81,.32,1), opacity 0.3s ease;
         -o-transition: -o-transform 0.3s cubic-bezier(.16,.81,.32,1), opacity 0.3s ease;
            transition: transform 0.3s cubic-bezier(.16,.81,.32,1), opacity 0.3s ease;
    background-size: 67% !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
}
.iziModal .iziModal-button-close{
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODZCQkIzQ0I0RTg0MTFFNjlBODI4QTFBRTRBMkFCMDQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODZCQkIzQ0M0RTg0MTFFNjlBODI4QTFBRTRBMkFCMDQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4NkJCQjNDOTRFODQxMUU2OUE4MjhBMUFFNEEyQUIwNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4NkJCQjNDQTRFODQxMUU2OUE4MjhBMUFFNEEyQUIwNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsgTJLcAAALJSURBVHja3JnLS1VBHMfvQ7g9dBXRRrwEFRciAhMi1JRW1aIHVEIYEkW0iVpUhOD/ICK6cFMgSbUpC6VFkQa9NtpjkauriRY9Noa3pHT8/mIODMM5Or85o87pC5/NPf5mvmc8M7+Z36SFEKkY2gj2gUawF2wHW8A6+fwv+A6KYAQMg+dg2rbDtKXhGnAaHJIms4zYz9J4HxgAf1g9k2EGteAhWBBuNApaQNrUg6nRTaAbzIuV0RCocWW4DoyJlVcJXI5ruFk2tJqi/2TWxvA5sXbqA2Ucw01i7dVjargazAo/dE33p6/DlAheg50pP0SJpwG8CH7IaH/Q5pFZUhnoArkwwwVwJeWfdoMLYYZvqG+yTGo9CerAoIWBT+A4qAdPDWOugwo1NVcxJtpFZRLkwH3GJCqCghJfxVjnz1JMMMKnwAbGRAg0B5rAA4O4CblZ+qj8tkBjZthvSzDCtFIMM0ZpQhslk5Eej4jpZ/T7G+ygwG1ghrk+jjNMFy1eMPJzpOAzlou6iWmXZkm91EBHjEwUZXoQTDk2SxqhRh7HTJ9hpstB3rFZ0ldq6J2DnB9m2rXZfxOPlrX1DrJRXiaBXSHPaMHvB0cd9JPLpBImMvzLQTuUFA6A9yHPfoIjhsllOc1l5N4grtmDWgYrl5+JTUZcSjNkeMyxWdpA3ZN72IJj01OJTByJS82J2/wQVxmB5y1HK8x0JWMf/kzdD98FJcY5S51gdwyTQl6eUAraspo27PeWXgy8afim0+CELAwOWHyH9EkdkyWwJ4Yxk6BCP+bTm48anutWW5dAp34IpbW03UOzb0FPVEHbx0LKfvAyqpAyKw97JU8Mt6pml6rAJ6oY6Eu5NfvfF7QTeWWQyEsZr6694lwsNoPD8mKRo29gCNwGj7gXi7aGA1EBcY+8vq0GW8FmJb3Pgx9gEnwAr8Ab8MW2w0UBBgAVyyyaohV7ewAAAABJRU5ErkJggg==') no-repeat 50% 50%;
}
.iziModal .iziModal-button-fullscreen{
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTBBOUI4RUM0RTg0MTFFNjk0NTY4NUNFRkZFNEFEQzIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTBBOUI4RUQ0RTg0MTFFNjk0NTY4NUNFRkZFNEFEQzIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFMEE5QjhFQTRFODQxMUU2OTQ1Njg1Q0VGRkU0QURDMiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFMEE5QjhFQjRFODQxMUU2OTQ1Njg1Q0VGRkU0QURDMiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrQO6gAAAANmSURBVHjazJlbSBRRGMd3x92i0ForRRMiKiUoX4ouiFlJkRVBDxW9GJERwUasvdRT9FD00osRQtAFqegGBUHRBY0uaCVKEkSRpVR0tSwrQtp1+p/4Bk7D7M45M/Ot/uGHu+Psmf+c+eY753wnbJpmyIfGgvmgiv6WgkKQBwzwE3wBr0AnuAta6ZgnhT0aFuY2ghoyGdH4bS+4Dc6CZjCkdWVhWIPF4JoZnB6CDToeVE8sBidNPt0E5UEZrgG9Jr8GwHa/huMgaWZXDSDsxfBuc/jUBAwdw3Fz+NWoang5SJkjQwm7P3seLqQEX2LLfgfBdZcMORMcBqNDwekPqASP0uXhpjR3Ok0x/fUw9HIHGGVdw5DuRtzJpgxDsJui2qOWmuaAOuuLbHivz4YLwLgQj/aAXNmwuItlHhtbA7pAG5jEZHgKWCcbrhUTIY+NPQVjqFFObbYMi/hc6aOhl2AJ9TKnFoIyYXgemKEzJQXVVkyR3oFVzKZFuqw2qHdyFPKhrHPgMoWC3fRjRtNVVg+7SR5IiqmXxUt60cG0CK/vTIZniZVCmcKJF0C3ZNjKBqvJ9Hrwm46tsN1EkCoRQ/M3fBjvs6GrYAvdwHEfGcd1qBaGkwoxrKI+xjz83yJ0iLFHApd46X4xX+M+WECh4lepCNUIcpnMijrEWtAvTRHrbOd8FZNG8uA2Nf0hpmwtjBPwpQ5T0GPS/+tBAZhIq+b3Lu09EyHRwRgO+0C+7dhWcII+PwCf6Sk/Aa9d2vtn+A7nyASugJiD6YSDQcOlvVbxiCaAN8xrs3sgprBiac/QhlhnzjUo6JuZM0UlDS5FPtoQIdNlPYJTWUihFaDex+9Pg6T1KHJAJ2NI7ASllA28hEQ/KJIXoSlwgKlnh+jFe+GjLtwIPtjfyktUt+UaUZWqvw7H3oJD1peI7eQdoF1xWa+zQikHH13OmwqmOxxP0EiZtgK/DRwNuIcHwSeXc2K01WAPhbhKBb5hBNTVbskVH7fqpZGhbJUNtYF83fqwQSXPbOsGjb6etwx2gcEsmT3iFAZeNmUqaMeHSz2qu0k6W15Rqsx3B2i0D+xXGAHTFrRVlEeFuVoqH+ku6VNUbDkPzlAtg30nVK66i8rRIjAbTKaSQVQyN0DD6nOqcLZQld9TLfmvAAMAeMcvp3eCFqQAAAAASUVORK5CYII=') no-repeat 50% 50%;
}
.iziModal.isFullscreen .iziModal-button-fullscreen{
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkFFRTU5NDA0RTg1MTFFNjk0NEZFQzBGMkVBMDYyRDkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkFFRTU5NDE0RTg1MTFFNjk0NEZFQzBGMkVBMDYyRDkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyQUVFNTkzRTRFODUxMUU2OTQ0RkVDMEYyRUEwNjJEOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyQUVFNTkzRjRFODUxMUU2OTQ0RkVDMEYyRUEwNjJEOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuDFfX8AAANASURBVHjazJlZSBVRGMfHcWlB0xZM68GKukQLYaGkmEUR2EsvRfQS+BSJPUQE+lTR8hqIZY8hFS0ERVCRoW3gpUApghYpszLTVnCB3O70/+K7MAwzc78Z58z4hx8XzpzvzJ+Zc+d85ztphmFoU9BsUAoq+XcFyAc5QAfD4BfoBp3gCWjnNl9K82mYzO0FVWwyw0NsD3gIroBWkPB0ZzLsgc3grhGcnoE9XjxIOxaCC4Y6tYC1QRmuAj2Geg2CA1M1XAsmjHDVANL8GK4zolMz0L0YrjWiV5PU8HYw6TBIf8imD6UynA96HYKPg3mgMUTDY6DUzXCzQ+AxSz+r6QEQZz4HbLoDZNkZrnAIoOlRZjN1Gk3XS0zty/gTFaRq7Ay3uAR8BcU2ps/z9QJTWw74HrDhTyDbbHg9SKQI+sb9rKa3mV8ZmAt+KJjP1TS+zinFPkqEUqQdBeAOKLa0UwIzpqlXtcYpIKWIO4RBZPoRKNfC10YQI8MlYLkwaAB8ABsiMDwDbKU8dgtIFwRMgJ3guRadKpNPWBMa7tOi1WoyHJPuTsC4oN+IQsOLM3gPJlEWqOE/neMGBqwDeYoMz6G8c0I4h6eFyHBC8A2eVoaH8JutaPwuUA/+uvSht1sHKgTjTWZwjUCVYdrK3xT0iwkND+lc5FClUQ9fINHCRYY7FBrWPSz5Er2lAR9H9P+hpfYGl64OCmPadQ7ojcDwOJetysBMQX/6mrWS4d+cIoYtMnAEnBT2fwVeJufYxZBMFoKFlrajQtOX/uczvEtIB50Kdgn1lt3JGdANltjsXE64jPMnuQ1LPuFJcFrBE11gzQXAUnAPFNk86esO4zSBfmu5lVa9toCf8DC4Ba6C22DEdO01KDLdP5fLr1Z94X2ibV1ilWVQ1XrDpvPAU4c+u1KVqvaHXI7q43ltp3PSYmDDNCgGPrCUD1wN6y5lqzAUN89baX1Y55Jn2LrPRUffRwaHwWhIZs/aTQM/hzLlDp+coPRReprk5cgrkyvz7wM0+hOcAvOlPvwcLNIp526ux1H5aJbHeFpVX4Br4LLXWoffk9CkVnLlaBNYAxaBXJBpMjfIy+o7EAdtfIyb8HPDfwIMAM1WPs8F9tcxAAAAAElFTkSuQmCC') no-repeat 50% 50%;
}
.iziModal .iziModal-button-close:hover{
    -webkit-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.iziModal .iziModal-button:hover{
    opacity: 0.8;
}


    .iziModal .iziModal-header.iziModal-noSubtitle{
        height: auto;
        padding: 10px 15px 12px 15px;
    }
    .iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-icon{
        font-size: 23px;
        padding-right: 13px;
    }
    .iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-title{
        font-size: 15px;
        margin: 3px 0 0 0;
        font-weight: 400;
    }
    .iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-buttons{
        right: 6px;
        margin: -16px 0 0 0;
    }
    .iziModal .iziModal-header.iziModal-noSubtitle .iziModal-button{
        height: 30px;
        width: 30px;
    }


    /* RTL */

    .iziModal-rtl {
        direction: rtl;
    }
    .iziModal-rtl .iziModal-header {
        padding: 14px 18px 15px 40px;
    }
    .iziModal-rtl .iziModal-header-icon {
        float: right;
        padding: 0 0 0 15px;
    }
    .iziModal-rtl .iziModal-header-buttons{
        right: initial !important;
        left: 10px;
    }
    .iziModal-rtl .iziModal-button{
        float: left;
    }
    .iziModal-rtl .iziModal-header-title, .iziModal-rtl .iziModal-header-subtitle{
        text-align: right;
        font-family: Tahoma, 'Lato', Arial;
        font-weight: 500;
    }
    .iziModal-rtl .iziModal-header.iziModal-noSubtitle {
        padding: 10px 15px 12px 40px;
    }    
    .iziModal-rtl .iziModal-header.iziModal-noSubtitle .iziModal-header-icon {
        padding: 0 0 0 13px;
    }

    /* LIGHT THEME */

    .iziModal.iziModal-light .iziModal-header-icon{
        color: rgba(0, 0, 0, 0.5);
    }
    .iziModal.iziModal-light .iziModal-header-title{
        color: #000;
    }
    .iziModal.iziModal-light .iziModal-header-subtitle{
        color: rgba(0, 0, 0, 0.6);
    }
    .iziModal.iziModal-light .iziModal-button-close{
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4JpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoyQTU1RUZDNzRFODQxMUU2ODAxOEUwQzg0QjBDQjI3OSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1NEM4MTU1MEI4QUExMUU2QjNGOEVBMjg4OTRBRTg2NyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0RTNFNENDMkI4QUExMUU2QjNGOEVBMjg4OTRBRTg2NyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNyAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjZjYzMwMmE1LWFlMjEtNDI3ZS1hMmE4LTJlYjhlMmZlY2E3NSIgc3RSZWY6ZG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjdmYmU3NGE3LTAxMDUtMTE3YS1hYmM3LWEzNWNkOWU1Yzc4NyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Po24QssAAANtSURBVHja3JlJaBRBFIa7ZxyTSXADHUkikuAawZNLEOOGGrwJQYko8R4RBQ+OICoqghJQUVwPYjzFY0QUBQU1kogoKO6CG0pcIwbiNibj/8JraNvu6Xo9NTOtP3xzSKe6/65+Ve9VlWlkp2IwGUwFE0E5GA4G8/U+0APegWfgHrgPuq0bpNNp0QPNgEYngHlgGpuMCNp2s+kr4BYM/8ql4WqwHEzP4mXteg7awOW0YlerPnQIaARLNBl1ikLlBDw/1WF4ClgHKozc6idogekz2RheANbaBlE+dB4chfF+qeHF3LOF0FWwF6b7nBe8RvecApolzQVr3C64GR4H1huFV51pmvV+hikRbABFRji0GqarMxluAGON8CgKmmA65mZ4DFhqhE9VPP//ZXgZiCmm1t1gI6XWAAY+gF0gCe4qtqlHL8fthkeBWsXGreA6eMgPviEw+x5sBZ3gAdjPCcNPI8Fsu+FawUCzz40psEfRNJndBl7b/pZmVLTQMkzJo0bQSys43iWm3cxS+DUJOmoSwqKCRmEZWKkYv6RSMBPc5lqXRGm0A1Q6XiaT2aSwo8jrK/qZwZlFIlXTusxa6iXDddTdARpnMj2ek9AWjWYH7h/lubcs4A28THdyAdOl0ezAmKNBNyLLiT0Btjti9zuHg06zpJKIprohwXNypcu1OIdGjYbnxCLGPyYy/EPDfejzbwYvXK59AzuFGdFLKTL8WYNZ59RVzGESJCNm0teI40E6zNIA2wSaA2REP32iaW0omKXRbJKTUVyYEVV0J8oxvEiQmiUZrFSz6XNkuJe3nBKCelaSbjOZrhLsd1BInYxweSeJq9YA6dYtuZCBI4JZ6jGW/W+sebhd0DAaMIO5mTYFW1+X6GeQ7TO3W0WyQj3cw0ulBg4nSUbcAY7zPVYp7ip95FXOH29Hb35AOPjypWMIh7PORSjFZVsIzdKW7AWvfYnTVNWHyCytHw+jd1Nehqks3KepvtChUzD7yGvE2/cduqxldQF1EWZb/PbWLF3jAVgo0WrlkN+c6hSd+rzlaSuaR7O0oX0wyIa2pVAdGaj0HCUVOqIq4dVwrg5lmmG2w+8f/9tjL6foYHE+Gy8Xtv3CPUpf7WauDxadKuIwoeNbOmoYDYbZ0ns/1wxUC7ykigs8sS/LpEe3vwUYALiKDDDSgEiSAAAAAElFTkSuQmCC') no-repeat 50% 50%;
    }
    .iziModal.iziModal-light .iziModal-button-fullscreen{
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4JpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpEQTg1NTA2NTRFODQxMUU2OTQ0N0VERjY2Q0M5ODYwRCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0RTNFNENCQkI4QUExMUU2QjNGOEVBMjg4OTRBRTg2NyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0RTNFNENCQUI4QUExMUU2QjNGOEVBMjg4OTRBRTg2NyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNyAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjFlNTQwYzczLTVhZmEtNDJlYi04YzJlLWMwMzFlYmFiYmIyNiIgc3RSZWY6ZG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmVkYmRiMzM1LTAxMDUtMTE3YS1hYmM3LWEzNWNkOWU1Yzc4NyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvIicdUAAAOvSURBVHjaxJlZbA1hFMe/qaItUUsspakg1laJ7UUisQuRvvTFA15sQSRCLBFrQryhHqxNHxEPtaQ8CCUkIrVVRbVBJdZYSrXVonr9/3pGxnTunZk78/X+k1+aO+1899/vnnvO+c4YKpi6ghEgW34OBD1BKjBAM6gH78Fz8BhUyrW/ikQivt7QiNMozU0DE8RkJx/3fgCPwA1QHvHp2K/hHJAPJqpwVA2K4flW2IZ7gyVgptKjh6AQxl+GYZi7uRr0U3rVBIpg+nIQwwvACpCkOk4XwYlosR3LMGN1qUqMroGDTqaNGDu7SiVWl+D3iP2i00c9HqxUidd8wzDy3HY4HRwCfWzXz4L7Lm+QKfHeOUTTLWAzdro6muH1YIbDjculWrmpUEM2YYXcCNMt9pAYE8WsWYLdlAxaNYTGMDDHKYYXBVy4B0jTFM/5iOcUc1fM/2JcnItNAYtBNzGtQ33BVHDV3OHpARqhV6CLLKpTs8yQYHxOCrDQO7AV1Gg2PBJhMYiGh4MMnx1eLkixXKsFuzSbZrrMpeGxHnqFFtvrTWCbhILd9AuNpnPMHXaTtZD0kl1mRdwSxXSjJsNZfONjcmqIJR5p3lp6Y+sXrAzsBz/lNXvmtZYMFKbqafi0pKQgKpOSPhmsC5BxXEs1Fz4fUr/7TWMe/q9bC2s3tJs1Df/Q/B5PwAZwJYS1WpPlo0zRZJZziL2gQU7I1GyHL7QSD26taVOytI26DpinxKypApvpk+C6dHlMnXskbUbT1yTpN3WJHWB327UCS3hUoc+tA/VyxP/ost5rGq7QWZnAdoe0eZgnYweDbgmgkoafgk8aTfNgsMNmmqfhC+Czj3V4T3mSBH255kxB0ztd4tNNDJkas2CUdkAKHQ3yAtxfijj/bdb7Cumyhmoyexzcs6Qwv2qUbPKvJDOtnNFklrF3R5qneA2XYHe/2A+ht1Xb3FZXRY1XTAjFTgtxJ45qKtWDpZK1g6dhIQuvBzjcy8FgQ6y8Nw+sCdnwL1Dn8jdMe6m2a+3ma9ESNUdOC1VixSH3bnPiYyraswnO0fqDIQkyW8WmCWab7b+I9TCF3+x0j2e+MPUA7LPGrVfD1F3VNsrPVR0zhS8BB5x21muzYa1Sy1Tb4y4d4qOwIi9Pk/wcj1gV50p5zQjJKAsJH8KcY4vpdYrjV0w9HMxxHjfKNpfwdMyRNuAmyy2M1vq5OegBNFMmR9lSHDizSLPMJGjuO2BZfSOtLKvpMylUvh/d/hFgAOH4+ibxGTZuAAAAAElFTkSuQmCC') no-repeat 50% 50%;
    }
    .iziModal.iziModal-light.isFullscreen .iziModal-button-fullscreen{
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoyRUUxMkYxODRFODUxMUU2Qjc3RDk0MUUzMzJDRjBEOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0RTNFNENCRkI4QUExMUU2QjNGOEVBMjg4OTRBRTg2NyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0RTNFNENCRUI4QUExMUU2QjNGOEVBMjg4OTRBRTg2NyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNyAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjgzM2MwOWZiLWJjOTEtNGVlZS05MDM1LTRkMmU2ZmE1ZjBmMiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyRUUxMkYxODRFODUxMUU2Qjc3RDk0MUUzMzJDRjBEOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv1Q9Z8AAAOXSURBVHjaxJlLbA1RGMfPjIs+EvoIRYt4FVUl2EkkRTxKUqQbG0SEho2FjUQ8YtEICbEgTdFYeK1KaGvVeoUltyStt0UlNE17aWhV2+v/9X5XJpMzc8/0zpn5kl+aO3Nm7r/fnPu9xhDp2URQDJbw3xkgB2QCAwyAPvANfARvQDsfG7V4PO7pC40xCiVxa8AKFjnOw7VdoA08BtG4R8VeBZeCKrBS+GPvQAM0P/NbcB7YBdYJPfYKXIXwL34IJm8eBFOFXusH9RDdnI7gLWA/MEVwdh/UOe1tN8G0V3eLcKwFXJCJNl08G5ZYsrWgWnZCJng5OOBwo1iAoisMw6hMJXgyOOywVW7xj+9BgKL3QHSxm+C9IF9y4U2GMlStRPQP8Jbp9lFwhJwE0RHrgaSV8N6xG238l7Zjtfx3K58/Bd7zsWngIqdnP2we2ACa7B7e6RL6joK5EtHNfL7b5u1Bn7dGFbycYRVM/8WyFJnuJK+z2iVwzFrMcF1h+Cx4ClhtFVyu8CW54ITE01EwFMAPcH1SMJWIqxQvItE1YHEIsXkhtkUhCV4ApiteFOPadn4IgseDMooSSxVrhWFwmkvCsKw06WGhKLhHhGuzSHChh9pZ5cc1oFFwfoTTsWrWqQCvXdZQEpkDsjUJziSv3Qu43k3LTA1BXqvRY/4DMjTd/yu4niJVm9wslCjcb4QE/9Qo+Al44baAmgpKCIqC+01OBLrsr8/de8zkiYwuUxWSq7iuM8JhantIqfYItkOepKBysnbycIfPXYKqURL6DhaBCQrrKcZHTa5loyEIJgHXwG3F9TQV+pxMGK0BiaTHn2OLEjcURbdi7XBSMO3jTxoEjtg+7wDnhG3spSD6F3hk7Tjoxnc0CJ5k+5wFCrhplYl2mmI24nyvvWumAE9z2zIfBW8WifnxIHc2yb6xiHtEoms0/hlGtpAPHCkgNDjFyZngPN88COvkPpEe+XGHbFcD7z53C+ybwKEAo0UPZ8QCybkmiL3sNvkheygSI08RYOSQiaUhd52sUpIZLWwJsYqkkdcZeHfIS66nc9XcZQRpNBY7C7F9Yy1OtonErDgSgNhGcEXmWa/VFA1O9onE6y4dRqGtXuVtkpf2iDy8EVR6GLykMnrsNFC867QF0hH8v3MVicFcuYdKy56uqQx4SukWQj3NOtJtQIt4ckSvbmdziMqy7HcS9xv0cn/Xwdn0A1drnl/d/hNgAGQa6Lgarp6BAAAAAElFTkSuQmCC') no-repeat 50% 50%;
    }


.iziModal .iziModal-loader{
    background: #FFF url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA0NCA0NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiM5OTkiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZS13aWR0aD0iMiI+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iLTAuOXMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49Ii0wLjlzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgIDwvZz48L3N2Zz4=) no-repeat 50% 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
}

.iziModal .iziModal-content-loader{
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA0NCA0NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiM5OTkiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZS13aWR0aD0iMiI+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iLTAuOXMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49Ii0wLjlzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgIDwvZz48L3N2Zz4=) no-repeat 50% 50%;
}

.iziModal .iziModal-content:before,
.iziModal .iziModal-content:after { content:''; display:table }
.iziModal .iziModal-content:after { clear:both }
.iziModal .iziModal-content{
    zoom:1;
    width: 100%;
}
.iziModal .iziModal-wrap{
    width: 100%;
    position: relative;
}
.iziModal .iziModal-iframe{
    border: 0;
    margin: 0 0 -6px 0;
    width: 100%;
    -webkit-transition: height 0.3s ease;
         -o-transition: height 0.3s ease;
            transition: height 0.3s ease;
}
.iziModal-overlay{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.iziModal-navigate{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}
.iziModal-navigate-caption{
    position: absolute;
    left: 10px;
    top: 10px;
    color: white;
    line-height: 16px;
    font-size: 9px;
    font-family: 'Lato', Arial;
    letter-spacing: 0.1em;
    text-indent: 0;
    text-align: center;
    width: 70px;
    padding: 5px 0;
    text-transform: uppercase;
    display: none;
}
.iziModal-navigate-caption::before, .iziModal-navigate-caption::after {
    position: absolute;
    top: 2px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 14px;
    font-size: 12px;
    content: '';
    background-size: 100% !important;
}
.iziModal-navigate-caption:before{
    left: 0;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoyNmFjNjAyMy04OWU0LWE0NDAtYmMxMy1kOTA5MTQ3MmYzYjAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDREQ0YwRjA1MzQzMTFFNkE5NUNDRDkyQzEwMzM5RTMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDREQ0YwRUY1MzQzMTFFNkE5NUNDRDkyQzEwMzM5RTMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpmNmM0Nzk3Ni1mNzE3LTk5NDAtYTgyYS1mNTdjNmNiYmU0NWMiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowZGVmYTEyZC01MzM0LTExZTYtYWRkYi04Y2NmYjI5ZTAxNjYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7oo0ptAAACWklEQVR42uyZTWsTYRSFZybxo4kWk5g2NC5qTAU3Kq30A9udi1oXolV/hWuhv6R/Q6utioi4LbbVFHemamlRU0OCEk0wZjwXzwtDoBDopHMHcuFJMplZnLm5ue+589qu61qeOApyYAjEgG0FEyLqN/gKiqBuTtgewWlwCZw056xgwwirgU3wxSv4NJgCUV5YBRXQDEhsBJwCSSauBVZFdJRlIJk9Av7wbj577jDIOENtRmPVwcsw6KfAAvikRKzEDlhnhuU/lRPBWaa9wsxqC6ndPX7OiOA4D8qW3vjO9z7H0w3+KhZstNmOFbLoCQ6DYGmL+bAInmGfLFC4asFXwRJIgB+goVmw+I7HXO+/gevGnGgUPEGxktkSmAMbWmt4HDwBKS6XN1jDKrvEFYoVK7oLroE3h93Woh1eNwqWafJ/gQV65vM+ail34mc6EZwBK2CAx8fAIjjeBYMzDT4cVHCEXtRbRvEu/Nr9HCIOnGGp15vgEec9KYn74B0nAT/CZnv86FcNvwK3wENwAjwAs2Bbs5d4CW5zir0AXvv8p+tKH34B5lkW4h2egRHtbu05uMMHHWfB0zC4NRF5l09kzvE4rd2tyUJyjy4tz7akZqXbL8QETbJ/FsMgWOJtb6brCQ5YsBsC8Uab63DVkkgqFpzie93h8OhScFah2LTHi5ccWroaLd5l6//+hpYQoWP05LKqFs2WQYbTsNxAi+5fxpWmdfh7HS7XhwSzG+H3a2JnvZsyktmLbdOFhpDMvrf4sN1u2/aK0cwMcmYLcturweceW+CnOfFPgAEA8uWFFylBJYoAAAAASUVORK5CYII=') no-repeat 50% 50%;
}
.iziModal-navigate-caption:after{
    right: 0;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAoCAYAAACFFRgXAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAADhmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzIgNzkuMTU5Mjg0LCAyMDE2LzA0LzE5LTEzOjEzOjQwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjI2YWM2MDIzLTg5ZTQtYTQ0MC1iYzEzLWQ5MDkxNDcyZjNiMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0NERDRjBGMDUzNDMxMUU2QTk1Q0NEOTJDMTAzMzlFMyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0NERDRjBFRjUzNDMxMUU2QTk1Q0NEOTJDMTAzMzlFMyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNS41IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmY2YzQ3OTc2LWY3MTctOTk0MC1hODJhLWY1N2M2Y2JiZTQ1YyIgc3RSZWY6ZG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjBkZWZhMTJkLTUzMzQtMTFlNi1hZGRiLThjY2ZiMjllMDE2NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuijSm0AAAKbSURBVFhH7ZnJj0xRGEerzFoIMTaCZmOIedhaiJj55yz8DaYdNhIJEUMQbCTG3rQ02hDSiEY553XdTpHS3nv96taV9ElO6lVt6peb7933fffVG41GrYW5uBaX4EysYzcw1Fd8hc/wM2a0Bl6Nm3BW9i0dDPsQX/olBF6FO72AH/gG3+N3jL3KBpqGC3ERTsGfeAsHDTyHi71oCXzBe/gaU2A5bscZOIxXTb8OLQNX9i6mElYsg/voqruwfQb2BhODWgqpMYDv0NLsNXC4yd42P1PEwNJj4HBTWdipErLVDfxfMRm408QMvBu3jV6WJ1Zg9/rbeBOP+UNZYgX+iE/Rp+lpPIKliBXYB9IhtPNy3z/T/F6YmDXsChvyBc7Gs3gACxEzsDzBg9iPPXgO92NuYgeWx2h3+AhtaM7jPsyF7aV37XR8gNZYO/pwKY51+xPkG27Fk2joT3gCr2A7NuJ6HMkTeAPadlp3VeMChF7G0P6X3dmfjAXOUxIj6LZkv1ylNuStDZejkL+PS96ScFzRqnDAtI5PoTefvbg7iNNOOwqVRCfYghdxBbpHH8Y7+DcKlUTV7MLLaNghPIrjhf2N2IF34AVcjE44hrXHyE3MwE6/loEzpEcIlqKjeyFiBe7FS+he/gENewMLEyuwXdo8dGWP43UsRazA9g7uDNbwNX8oS8watlsz+ISIGbgSJgN3GgOHlnFq8zNFQraGgT1iFc9iUyU0XsMGHhy9zh6XbvCp4ZuBBWglDBj4OdqLeu0+uRJTwMZ+Dbp/e21P3m97yWe2snsw1LTHmz5C/9lQdwhfGbiq89GwvrrwUT4UAouhN6MzloTRpVuEYI5O9urZYXtrYPGQw2OlZegM163QhrJMfWVgyTq0Qq32C/N7uPz9OknWAAAAAElFTkSuQmCC') no-repeat 50% 50%;
}
    .iziModal-navigate > button{
        position: fixed;
        bottom: 0;
        top: 0;
        border:0;
        height: 100%;
        width: 84px;
        background-size: 100% !important;
        cursor: pointer;
        padding: 0;
        opacity: 0.2;
        -webkit-transition: opacity 0.3s ease;
             -o-transition: opacity 0.3s ease;
                transition: opacity 0.3s ease;
        pointer-events: all;
        margin: 0;
        outline: none;
    }
    .iziModal-navigate > button:hover{
        opacity: 1;
    }
    .iziModal-navigate-prev{
        left: 50%;
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALwAAAC8CAYAAADCScSrAAAACXBIWXMAAAsTAAALEwEAmpwYAAA5sGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzIgNzkuMTU5Mjg0LCAyMDE2LzA0LzE5LTEzOjEzOjQwICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgICAgICAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyI+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDo2NDkyYzcxMy05ZDM0LTZlNGQtYmUwNi1hMDMyY2Q4NDVjNGU8L3htcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDo1QjIzMUMxODU3RjcxMUU2ODUzRkRBRjE5RDhDQjZBRDwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpjZmMwNzVmNC1kODA3LWI0NDMtYWIwYS02YWVhZjRjMDgxZWE8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpEZXJpdmVkRnJvbSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgIDxzdFJlZjppbnN0YW5jZUlEPnhtcC5paWQ6NjQ5MmM3MTMtOWQzNC02ZTRkLWJlMDYtYTAzMmNkODQ1YzRlPC9zdFJlZjppbnN0YW5jZUlEPgogICAgICAgICAgICA8c3RSZWY6ZG9jdW1lbnRJRD54bXAuZGlkOjY0OTJjNzEzLTlkMzQtNmU0ZC1iZTA2LWEwMzJjZDg0NWM0ZTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmNmYzA3NWY0LWQ4MDctYjQ0My1hYjBhLTZhZWFmNGMwODFlYTwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNi0wOC0wMVQxMTo1ODowNC0wMzowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNS41IChXaW5kb3dzKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNi0wOC0wMVQwOTo0MDo1Ni0wMzowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE2LTA4LTAxVDExOjU4OjA0LTAzOjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNi0wOC0wMVQxMTo1ODowNC0wMzowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjE4ODwvZXhpZjpQaXhlbFhEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4xODg8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PvAvv7QAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAmdJREFUeNrs1LsJQkEQhtH/mtmBgQ8QA7tQK1e7MBBBMbADwzUZEyuQveeDCXbD4TBDay3SWJpYgYCXgJeAl4CXgJeAl4CXgJeAl4CXgJeAF/AS8BLwEvAS8BLwEvAS8BLwEvAS8BLwAl4CXgJeAl4CXv/WJskpyQJ4jQH7Mcmu0C+BV+/Y5/VeF/oV8Ood+7dpDfDqHvsrySHJBXjBDrxgB16wAy/YgRfswAt24AU78IIdeMEOPOywAw+7gIcdeMEOvGAHXrADL9iBF+zAC3bgBTvwsMMOPOwCHnYBD7uAhx14wQ68YAdesAMv2IEX7MDDDjvwsAt42AU87AIedgEPu4CHXcDDDrxgB16wAw877MDDDjvwsAt42AU87AIedgEPu4CHXcDDLuBhB16wAw877MDDLuBhF/CwC3jYBTzsAh52AQ+7gIddwEtjB3+tS/78+Z/V5d9iATz0Ah56AQ+9gIdewEMv4KEX8NALeOgFPPQCHnoBDz3wgh54QQ889NADDz30wEMv4KEX8NALeOgFPPQCHnoBD72Ahx54QQ+8oAde0AMv6IEX9MBDDz3w0EMPPPQCHnoBD72Ah17AQw+8FUAPvKAHXtADL+iBF/TAC3rgBT3wgh546KEHHnrogYdewEMv4KEHXtADL+iBF/TAC3rgBT3wgh54QQ+8oAde0AMv6IGHHnrgoU/yrgFe3aO/JdknuQOv3tGfC/tjjEsYWmsoyIWXgJeAl4CXgJeAl4CXgJeAl4CXgJeAF/AS8BLwEvAS8BLwEvAS8BLwEvAS8BLwAl4CXgJeAl4CXvqnPgAAAP//AwCEcoCBRabYzAAAAABJRU5ErkJggg==') no-repeat 50% 50%;
    }
    .iziModal-navigate-next{
        right: 50%;
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALwAAAC8CAYAAADCScSrAAAACXBIWXMAAB3SAAAd0gEUasEwAAA7pGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzIgNzkuMTU5Mjg0LCAyMDE2LzA0LzE5LTEzOjEzOjQwICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNS41IChXaW5kb3dzKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAxNi0wOC0wMVQwOTo0MDoxNC0wMzowMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE2LTA4LTAxVDExOjU4OjEyLTAzOjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNi0wOC0wMVQxMTo1ODoxMi0wMzowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDphZjljN2Q2MC00MTg2LWE3NGQtYTBiMS1mMGU5ODUwYzg2ZGY8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpEb2N1bWVudElEPnhtcC5kaWQ6NjQ5MmM3MTMtOWQzNC02ZTRkLWJlMDYtYTAzMmNkODQ1YzRlPC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06T3JpZ2luYWxEb2N1bWVudElEPnhtcC5kaWQ6NjQ5MmM3MTMtOWQzNC02ZTRkLWJlMDYtYTAzMmNkODQ1YzRlPC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpIaXN0b3J5PgogICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjY0OTJjNzEzLTlkMzQtNmU0ZC1iZTA2LWEwMzJjZDg0NWM0ZTwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNi0wOC0wMVQwOTo0MDoxNC0wMzowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjAxNjJjMmE3LWZmMjYtYzE0ZC05Yjg4LTc2MGM2NzAxYjYzNzwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNi0wOC0wMVQxMTo1MTowNy0wMzowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmFmOWM3ZDYwLTQxODYtYTc0ZC1hMGIxLWYwZTk4NTBjODZkZjwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNi0wOC0wMVQxMTo1ODoxMi0wMzowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+MTkzOTAzNi8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+MTkzOTAzNi8xMDAwMDwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT42NTUzNTwvZXhpZjpDb2xvclNwYWNlPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MTg4PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjE4ODwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+nbt1mgAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAACQklEQVR42uzSsQ3CQAAEQTdiOyGg/wrciJ0QUMYSECEKAP3PSdvAaZZqkWbJCQJeAl4CXgJeAl4CXgJeAl4CXgJeAl4CXsBLwEvAS8BLwEvAS8BLwEvAS8BLwEvAC3gJeAl4CXgJ+D9vrY7qBgLwo7dVZ+89oAd+5Pbq6nPQAz9s9+rZ96AHHnoBD72Ah17AQy/goRfw0At46AU89AIeegEPvYCHHnhBD7ygBx566IGHHnrgoRfw0At46AU89AIeegEPvYCHXsBDL+ChB17QAy/ogRf0wAt64KGHHnjooQceegEPvYCHXsBDL+ChF/DQAy/ogRf0wAt64AU98IIeeEEPvKAHXtADDz30wEPvI+ChF/DQAy/ogRf0wAt64AU98IIeeEEPvKAHXtADL+iBF/TAC3rgoZ8ePRDAAy/YgRfswAt24AU78IIdeMEOvGAHXrADL9iBhx124GEX8LADL9iBF+zAC3bgBTvwgh14wQ68YAcedtiBh13Awy7gYRfwsAMv2IEX7MALduAFO/CCHXjYYQcedgEPu4CHXcDDLuBhF/CwA+8E2IEX7MALduAFO/Cwww487AIedgEPu4CHXcDDLuBhF/CwC3jYgRfswMMOO/CwC3jYBTzsAh52AQ+7gIddwMMu4GEX8LBravB7dcEO/Ext1Qk78DO1VgfswEvAS8BLwEvAS8BLwEvAS8BLwEvAS8ALeAl4CXgJeAl4CXgJeAl4CXgJeAl4CXgBLwEvAS8BLwEvAS/9shcAAAD//wMAtAygvJrkwJUAAAAASUVORK5CYII=') no-repeat 50% 50%;
    }

.iziModal.isAttachedTop .iziModal-header{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.iziModal.isAttachedTop{
    margin-top: 0 !important;
    margin-bottom: auto !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.iziModal.isAttachedBottom{
    margin-top: auto !important;
    margin-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.iziModal.isFullscreen{
    max-width: 100% !important;
    margin: 0 !important;
    height: 100% !important;
    border-radius: 0 !important;
}
.iziModal.isAttached{
    border-radius: 0 !important;
}
.iziModal.hasScroll .iziModal-wrap{
    overflow-y: auto;
    overflow-x: hidden;
}

html.iziModal-isOverflow{
    overflow: hidden;
}
html.iziModal-isOverflow body, html.iziModal-isAttached body{
    overflow-y: scroll;
    position: relative;
}
html.iziModal-isAttached{
    overflow: hidden;
}

/* SCROLL */

.iziModal ::-webkit-scrollbar {
    overflow: visible;
    height: 7px;
    width: 7px;
}
.iziModal ::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.2);
    background-clip: padding-box;
    border: solid transparent;
    border-width: 0px;
    min-height: 28px;
    padding: 100px 0 0;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
}
.iziModal ::-webkit-scrollbar-thumb:active {
    background-color: rgba(0,0,0,.4);
}
.iziModal ::-webkit-scrollbar-button {
    height: 0;
    width: 0;
}
.iziModal ::-webkit-scrollbar-track {
    background-clip: padding-box;
    border: solid transparent;
    border-width: 0 0 0 2px;
}

/* MODAL ANIMATIONS */

.iziModal.transitionIn .iziModal-header{
    -webkit-animation: iziM-slideDown 0.7s cubic-bezier(0.7,0,0.3,1);
    -o-animation: iziM-slideDown 0.7s cubic-bezier(0.7,0,0.3,1);
       animation: iziM-slideDown 0.7s cubic-bezier(0.7,0,0.3,1);
}
    .iziModal.transitionIn .iziModal-header .iziModal-header-icon {
        -webkit-animation: iziM-revealIn 1s cubic-bezier(.16,.81,.32,1) both;
        -o-animation: iziM-revealIn 1s cubic-bezier(.16,.81,.32,1) both;
           animation: iziM-revealIn 1s cubic-bezier(.16,.81,.32,1) both;
    }
    .iziModal.transitionIn .iziModal-header .iziModal-header-title, .iziModal.transitionIn .iziModal-header .iziModal-header-subtitle {
        -webkit-animation: iziM-slideIn 1s cubic-bezier(.16,.81,.32,1) both;
        -o-animation: iziM-slideIn 1s cubic-bezier(.16,.81,.32,1) both;
           animation: iziM-slideIn 1s cubic-bezier(.16,.81,.32,1) both;
    }

    .iziModal.transitionIn .iziModal-header .iziModal-button{
        -webkit-animation: iziM-revealIn 1.2s cubic-bezier(0.7,0,0.3,1);
        -o-animation: iziM-revealIn 1.2s cubic-bezier(0.7,0,0.3,1);
           animation: iziM-revealIn 1.2s cubic-bezier(0.7,0,0.3,1);
    }

.iziModal.transitionIn .iziModal-iframe, .iziModal.transitionIn .iziModal-wrap{
    -webkit-animation: iziM-fadeIn 1.3s;
    -o-animation: iziM-fadeIn 1.3s;
       animation: iziM-fadeIn 1.3s;
}
.iziModal.transitionIn .iziModal-header {
    -webkit-animation-delay: 0.0s;
    -moz-animation: 0.0s;
    -webkit-animation-delay: 0.0s;
         -o-animation-delay: 0.0s;
            animation-delay: 0.0s;
}
.iziModal.transitionIn .iziModal-header .iziModal-header-icon,
.iziModal.transitionIn .iziModal-header .iziModal-header-title {
    -webkit-animation-delay: 0.4s;
    -moz-animation: 0.4s;
    -webkit-animation-delay: 0.4s;
         -o-animation-delay: 0.4s;
            animation-delay: 0.4s;
}
.iziModal.transitionIn .iziModal-header .iziModal-header-subtitle {
    -webkit-animation-delay: 0.5s;
    -moz-animation: 0.5s;
    -webkit-animation-delay: 0.5s;
         -o-animation-delay: 0.5s;
            animation-delay: 0.5s;
}

    .iziModal.transitionOut .iziModal-header, .iziModal.transitionOut .iziModal-header *{
        -webkit-transition: none !important;
             -o-transition: none !important;
                transition: none !important;
    }

/* ANIMATIONS */

.iziModal.fadeOut, .iziModal-overlay.fadeOut, .iziModal-navigate.fadeOut, .iziModal .fadeOut{
    -webkit-animation: iziM-fadeOut 0.5s;
    -o-animation: iziM-fadeOut 0.5s;
       animation: iziM-fadeOut 0.5s;
    -webkit-animation-fill-mode: forwards;
         -o-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
.iziModal.fadeIn, .iziModal-overlay.fadeIn, .iziModal-navigate.fadeIn, .iziModal .fadeIn {
    -webkit-animation: iziM-fadeIn 0.5s;
    -o-animation: iziM-fadeIn 0.5s;
       animation: iziM-fadeIn 0.5s;
}
.iziModal.comingIn, .iziModal-overlay.comingIn {
    -webkit-animation: iziM-comingIn 0.5s ease;
    -o-animation: iziM-comingIn 0.5s ease;
       animation: iziM-comingIn 0.5s ease;
}
.iziModal.comingOut, .iziModal-overlay.comingOut {
    -webkit-animation: iziM-comingOut 0.5s cubic-bezier(.16,.81,.32,1);
    -o-animation: iziM-comingOut 0.5s cubic-bezier(.16,.81,.32,1);
       animation: iziM-comingOut 0.5s cubic-bezier(.16,.81,.32,1);
    -webkit-animation-fill-mode: forwards;
         -o-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
.iziModal.bounceInDown, .iziModal-overlay.bounceInDown {
    -webkit-animation: iziM-bounceInDown 0.7s ease;
    -o-animation: iziM-bounceInDown 0.7s ease;
       animation: iziM-bounceInDown 0.7s ease;
}
.iziModal.bounceOutDown, .iziModal-overlay.bounceOutDown {
    -webkit-animation: iziM-bounceOutDown 0.7s ease;
    -o-animation: iziM-bounceOutDown 0.7s ease;
       animation: iziM-bounceOutDown 0.7s ease;
}
.iziModal.bounceInUp, .iziModal-overlay.bounceInUp {
    -webkit-animation: iziM-bounceInUp 0.7s ease;
    -o-animation: iziM-bounceInUp 0.7s ease;
       animation: iziM-bounceInUp 0.7s ease;
}
.iziModal.bounceOutUp, .iziModal-overlay.bounceOutUp {
    -webkit-animation: iziM-bounceOutUp 0.7s ease;
    -o-animation: iziM-bounceOutUp 0.7s ease;
       animation: iziM-bounceOutUp 0.7s ease;
}
.iziModal.bounceInLeft, .iziModal-overlay.bounceInLeft {
    -webkit-animation: iziM-bounceInLeft 0.7s ease;
    -o-animation: iziM-bounceInLeft 0.7s ease;
       animation: iziM-bounceInLeft 0.7s ease;
}
.iziModal.bounceOutLeft, .iziModal-overlay.bounceOutLeft {
    -webkit-animation: iziM-bounceOutLeft 0.7s ease;
    -o-animation: iziM-bounceOutLeft 0.7s ease;
       animation: iziM-bounceOutLeft 0.7s ease;
}
.iziModal.bounceInRight, .iziModal-overlay.bounceInRight {
    -webkit-animation: iziM-bounceInRight 0.7s ease;
    -o-animation: iziM-bounceInRight 0.7s ease;
       animation: iziM-bounceInRight 0.7s ease;
}
.iziModal.bounceOutRight, .iziModal-overlay.bounceOutRight {
    -webkit-animation: iziM-bounceOutRight 0.7s ease;
    -o-animation: iziM-bounceOutRight 0.7s ease;
       animation: iziM-bounceOutRight 0.7s ease;
}
.iziModal.fadeInDown, .iziModal-overlay.fadeInDown {
    -webkit-animation: iziM-fadeInDown 0.7s cubic-bezier(.16,.81,.32,1);
    -o-animation: iziM-fadeInDown 0.7s cubic-bezier(.16,.81,.32,1);
       animation: iziM-fadeInDown 0.7s cubic-bezier(.16,.81,.32,1);
}
.iziModal.fadeOutDown, .iziModal-overlay.fadeOutDown {
    -webkit-animation: iziM-fadeOutDown 0.5s ease;
    -o-animation: iziM-fadeOutDown 0.5s ease;
       animation: iziM-fadeOutDown 0.5s ease;
}
.iziModal.fadeInUp, .iziModal-overlay.fadeInUp {
    -webkit-animation: iziM-fadeInUp 0.7s cubic-bezier(.16,.81,.32,1);
    -o-animation: iziM-fadeInUp 0.7s cubic-bezier(.16,.81,.32,1);
       animation: iziM-fadeInUp 0.7s cubic-bezier(.16,.81,.32,1);
}
.iziModal.fadeOutUp, .iziModal-overlay.fadeOutUp {
    -webkit-animation: iziM-fadeOutUp 0.5s ease;
    -o-animation: iziM-fadeOutUp 0.5s ease;
       animation: iziM-fadeOutUp 0.5s ease;
}
.iziModal.fadeInLeft, .iziModal-overlay.fadeInLeft {
    -webkit-animation: iziM-fadeInLeft 0.7s cubic-bezier(.16,.81,.32,1);
    -o-animation: iziM-fadeInLeft 0.7s cubic-bezier(.16,.81,.32,1);
       animation: iziM-fadeInLeft 0.7s cubic-bezier(.16,.81,.32,1);
}
.iziModal.fadeOutLeft, .iziModal-overlay.fadeOutLeft {
    -webkit-animation: iziM-fadeOutLeft 0.5s ease;
    -o-animation: iziM-fadeOutLeft 0.5s ease;
       animation: iziM-fadeOutLeft 0.5s ease;
}
.iziModal.fadeInRight, .iziModal-overlay.fadeInRight {
    -webkit-animation: iziM-fadeInRight 0.7s cubic-bezier(.16,.81,.32,1);
    -o-animation: iziM-fadeInRight 0.7s cubic-bezier(.16,.81,.32,1);
       animation: iziM-fadeInRight 0.7s cubic-bezier(.16,.81,.32,1);
}
.iziModal.fadeOutRight, .iziModal-overlay.fadeOutRight {
    -webkit-animation: iziM-fadeOutRight 0.5s ease;
    -o-animation: iziM-fadeOutRight 0.5s ease;
       animation: iziM-fadeOutRight 0.5s ease;
}
.iziModal.flipInX, .iziModal-overlay.flipInX {
    -webkit-animation: iziM-flipInX 0.7s ease;
    -o-animation: iziM-flipInX 0.7s ease;
       animation: iziM-flipInX 0.7s ease;
}
.iziModal.flipOutX, .iziModal-overlay.flipOutX {
    -webkit-animation: iziM-flipOutX 0.7s ease;
    -o-animation: iziM-flipOutX 0.7s ease;
       animation: iziM-flipOutX 0.7s ease;
}

@-webkit-keyframes iziM-comingIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) translateY(-20px) perspective( 600px ) rotateX( 10deg );
                transform: scale(0.9) translateY(-20px) perspective( 600px ) rotateX( 10deg );
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 );
                transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 ); 
    }
}
@-o-keyframes iziM-comingIn {
    0% {
        opacity: 0;
        /*transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );*/
        transform: scale(0.9) translateY(-20px) perspective( 600px ) rotateX( 10deg );
    }
    100% {
        opacity: 1;
        /*transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 ); */
        transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 ); 
    }
}
@keyframes iziM-comingIn {
    0% {
        opacity: 0;
        /*transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );*/
        -webkit-transform: scale(0.9) translateY(-20px) perspective( 600px ) rotateX( 10deg );
                transform: scale(0.9) translateY(-20px) perspective( 600px ) rotateX( 10deg );
    }
    100% {
        opacity: 1;
        /*transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 ); */
        -webkit-transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 );
                transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 ); 
    }
}

@-webkit-keyframes iziM-comingOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1); 
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.9);
                transform: scale(0.9); 
    }
}
@-o-keyframes iziM-comingOut {
    0% {
        opacity: 1;
        -o-transform: scale(1);
           transform: scale(1); 
    }
    100% {
        opacity: 0;
        -o-transform: scale(0.9);
           transform: scale(0.9); 
    }
}
@keyframes iziM-comingOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1); 
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.9);
             -o-transform: scale(0.9);
                transform: scale(0.9); 
    }
}
@-webkit-keyframes iziM-fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
@-o-keyframes iziM-fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes iziM-fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-webkit-keyframes iziM-fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-o-keyframes iziM-fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes iziM-fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-webkit-keyframes iziM-slideIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}
@-o-keyframes iziM-slideIn {
    0% {
        opacity: 0;
        -o-transform: translateX(50px);
           transform: translateX(50px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
           transform: translateX(0);
    }
}
@keyframes iziM-slideIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
             -o-transform: translateX(50px);
                transform: translateX(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
             -o-transform: translateX(0);
                transform: translateX(0);
    }
}

@-webkit-keyframes iziM-slideDown {
    0% { opacity: 0; -webkit-transform: scale(1,0) translateY(-40px); -webkit-transform-origin: center top; }
}
@-o-keyframes iziM-slideDown {
    0% { opacity: 0; -o-transform: scale(1,0) translateY(-40px); transform: scale(1,0) translateY(-40px); -o-transform-origin: center top; transform-origin: center top; }
}
@keyframes iziM-slideDown {
    0% { opacity: 0; -webkit-transform: scale(1,0) translateY(-40px); -o-transform: scale(1,0) translateY(-40px); transform: scale(1,0) translateY(-40px); -webkit-transform-origin: center top; -o-transform-origin: center top; transform-origin: center top; }
}

@-webkit-keyframes iziM-revealIn {
    0% { opacity: 0; -webkit-transform: scale3d(0.3,0.3,1); }
}
@-o-keyframes iziM-revealIn {
    0% { opacity: 0; transform: scale3d(0.3,0.3,1); }
}
@keyframes iziM-revealIn {
    0% { opacity: 0; -webkit-transform: scale3d(0.3,0.3,1); transform: scale3d(0.3,0.3,1); }
}

@-webkit-keyframes iziM-bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -1000px, 0);
        transform: translate3d(0, -1000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@-o-keyframes iziM-bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
           animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -1000px, 0);
        transform: translate3d(0, -1000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}
@keyframes iziM-bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
           animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -1000px, 0);
        transform: translate3d(0, -1000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}

@-webkit-keyframes iziM-bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 1000px, 0);
        transform: translate3d(0, 1000px, 0);
    }
}
@-o-keyframes iziM-bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 1000px, 0);
        transform: translate3d(0, 1000px, 0);
    }
}
@keyframes iziM-bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 1000px, 0);
        transform: translate3d(0, 1000px, 0);
    }
}

@-webkit-keyframes iziM-bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 1000px, 0);
        transform: translate3d(0, 1000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-o-keyframes iziM-bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
           animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 1000px, 0);
        transform: translate3d(0, 1000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes iziM-bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
           animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 1000px, 0);
        transform: translate3d(0, 1000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes iziM-bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@-o-keyframes iziM-bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -1000px, 0);
        transform: translate3d(0, -1000px, 0);
    }
}
@keyframes iziM-bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -1000px, 0);
        transform: translate3d(0, -1000px, 0);
    }
}

@-webkit-keyframes iziM-bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-1000px, 0, 0);
        transform: translate3d(-1000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@-o-keyframes iziM-bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
           animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-1000px, 0, 0);
        transform: translate3d(-1000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}
@keyframes iziM-bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
           animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-1000px, 0, 0);
        transform: translate3d(-1000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}

@-webkit-keyframes iziM-bounceOutLeft {
    20% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@-o-keyframes iziM-bounceOutLeft {
    20% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-1000px, 0, 0);
        transform: translate3d(-1000px, 0, 0);
    }
}
@keyframes iziM-bounceOutLeft {
    20% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-1000px, 0, 0);
        transform: translate3d(-1000px, 0, 0);
    }
}

@-webkit-keyframes iziM-bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(1000px, 0, 0);
        transform: translate3d(1000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-o-keyframes iziM-bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
           animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(1000px, 0, 0);
        transform: translate3d(1000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes iziM-bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
           animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(1000px, 0, 0);
        transform: translate3d(1000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes iziM-bounceOutRight {
    20% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(1000px, 0, 0);
        transform: translate3d(1000px, 0, 0);
    }
}
@-o-keyframes iziM-bounceOutRight {
    20% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(1000px, 0, 0);
        transform: translate3d(1000px, 0, 0);
    }
}
@keyframes iziM-bounceOutRight {
    20% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(1000px, 0, 0);
        transform: translate3d(1000px, 0, 0);
    }
}

@-webkit-keyframes iziM-fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-o-keyframes iziM-fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}
@keyframes iziM-fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}

@-webkit-keyframes iziM-fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
}
@-o-keyframes iziM-fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
}
@keyframes iziM-fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
}

@-webkit-keyframes iziM-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-o-keyframes iziM-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}
@keyframes iziM-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}

@-webkit-keyframes iziM-fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
}
@-o-keyframes iziM-fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
}
@keyframes iziM-fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }
}

@-webkit-keyframes iziM-fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-o-keyframes iziM-fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}
@keyframes iziM-fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}

@-webkit-keyframes iziM-fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
    }
}
@-o-keyframes iziM-fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
    }
}
@keyframes iziM-fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
    }
}

@-webkit-keyframes iziM-fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-o-keyframes iziM-fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}
@keyframes iziM-fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
           transform: none;
    }
}

@-webkit-keyframes iziM-fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
}
@-o-keyframes iziM-fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
}
@keyframes iziM-fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
}

@-webkit-keyframes iziM-flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(60deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-o-keyframes iziM-flipInX {
    0% {
        transform: perspective(400px) rotateX(60deg); 
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes iziM-flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(60deg);
                transform: perspective(400px) rotateX(60deg); 
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
                transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
                transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
                transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes iziM-flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
        opacity: 0;
    }
}
@-o-keyframes iziM-flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
        opacity: 0;
    }
}
@keyframes iziM-flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
        opacity: 0;
    }
}

/***
Spectrum Colorpicker v1.8.1
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/

.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}
.sp-container.sp-flat {
    position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
    box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position:relative;
  width: 100%;
  display:inline-block;
}
.sp-top-inner {
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
}
.sp-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}
.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
}

.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}

.sp-fill {
    padding-top: 80%;
}
.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}
.sp-alpha-enabled .sp-alpha {
    display: block;
}
.sp-alpha-handle {
    position:absolute;
    top:-4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid black;
    background: white;
    opacity: .8;
}
.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px;
}
.sp-alpha-inner {
    border: solid 1px #333;
}

.sp-clear {
    display: none;
}

.sp-clear.sp-clear-display {
    background-position: center;
}

.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0px;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button  {
    -webkit-user-select:none;
    -moz-user-select: -moz-none;
    -o-user-select:none;
    -ms-user-select: none;
        user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
    display: none;
}
.sp-container.sp-buttons-disabled .sp-button-container {
    display: none;
}
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
    display: none;
}
.sp-palette-only .sp-picker-container {
    display: none;
}
.sp-palette-disabled .sp-palette-container {
    display: none;
}

.sp-initial-disabled .sp-initial {
    display: none;
}


/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
    background-image: -webkit-gradient(linear,  0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -webkit-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}
.sp-val {
    background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -webkit-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

.sp-hue {
    background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
    background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}
.sp-2 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}
.sp-3 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}
.sp-4 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}
.sp-5 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}
.sp-6 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

.sp-hidden {
    display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after { content: ""; display: table; }
.sp-cf:after { clear: both; }
.sp-cf { *zoom: 1; }

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}
.sp-dragger {
   border-radius: 5px;
   height: 5px;
   width: 5px;
   border: 1px solid #fff;
   background: #000;
   cursor: pointer;
   position:absolute;
   top:0;
   left: 0;
}
.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/

.sp-container {
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0;
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
    font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sp-top {
    margin-bottom: 3px;
}
.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #666;
}

/* Input */
.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}
.sp-initial-disabled  .sp-input-container {
    width: 100%;
}
.sp-input {
   font-size: 12px !important;
   border: 1px inset;
   padding: 4px 5px;
   margin: 0;
   width: 100%;
   background:transparent;
   border-radius: 3px;
   color: #222;
}
.sp-input:focus  {
    border: 1px solid orange;
}
.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd;
}
.sp-picker-container , .sp-palette-container {
    float:left;
    position: relative;
    padding: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px;
}
.sp-picker-container {
    width: 172px;
    border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container {
    border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
    border: 0;
}

.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange;
}
.sp-thumb-el {
    position:relative;
}

/* Initial */
.sp-initial {
    float: left;
    border: solid 1px #333;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}

.sp-initial .sp-clear-display {
    background-position: center;
}

/* Buttons */
.sp-palette-button-container,
.sp-button-container {
    float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 4px;
    display:inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle;
}
.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:left;
    font-size:10px;
}
.sp-preview {
    position:relative;
    width:25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
}

.sp-palette {
    *width: 220px;
    max-width: 220px;
}
.sp-palette .sp-thumb-el {
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}

.sp-container {
    padding-bottom:0;
}


/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}
.sp-container button:hover {
    background-color: #dddddd;
    background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}
.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}
.sp-cancel {
    font-size: 11px;
    color: #d93f3f !important;
    margin:0;
    padding:2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration:none;

}
.sp-cancel:hover {
    color: #d93f3f !important;
    text-decoration: underline;
}


.sp-palette span:hover, .sp-palette span.sp-thumb-active {
    border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
    position:relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
    display:block;
    position:absolute;
    top:0;left:0;bottom:0;right:0;
}

.sp-palette .sp-thumb-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

@charset "UTF-8";
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret, .comment-form input[type="submit"] > .caret, .search-form .search-submit > .caret,
  .dropup > .btn > .caret,
  .comment-form .dropup > input[type="submit"] > .caret,
  .search-form .dropup > .search-submit > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "\002a"; }

.glyphicon-plus:before {
  content: "\002b"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270f"; }

.glyphicon-glass:before {
  content: "\e001"; }

.glyphicon-music:before {
  content: "\e002"; }

.glyphicon-search:before {
  content: "\e003"; }

.glyphicon-heart:before {
  content: "\e005"; }

.glyphicon-star:before {
  content: "\e006"; }

.glyphicon-star-empty:before {
  content: "\e007"; }

.glyphicon-user:before {
  content: "\e008"; }

.glyphicon-film:before {
  content: "\e009"; }

.glyphicon-th-large:before {
  content: "\e010"; }

.glyphicon-th:before {
  content: "\e011"; }

.glyphicon-th-list:before {
  content: "\e012"; }

.glyphicon-ok:before {
  content: "\e013"; }

.glyphicon-remove:before {
  content: "\e014"; }

.glyphicon-zoom-in:before {
  content: "\e015"; }

.glyphicon-zoom-out:before {
  content: "\e016"; }

.glyphicon-off:before {
  content: "\e017"; }

.glyphicon-signal:before {
  content: "\e018"; }

.glyphicon-cog:before {
  content: "\e019"; }

.glyphicon-trash:before {
  content: "\e020"; }

.glyphicon-home:before {
  content: "\e021"; }

.glyphicon-file:before {
  content: "\e022"; }

.glyphicon-time:before {
  content: "\e023"; }

.glyphicon-road:before {
  content: "\e024"; }

.glyphicon-download-alt:before {
  content: "\e025"; }

.glyphicon-download:before {
  content: "\e026"; }

.glyphicon-upload:before {
  content: "\e027"; }

.glyphicon-inbox:before {
  content: "\e028"; }

.glyphicon-play-circle:before {
  content: "\e029"; }

.glyphicon-repeat:before {
  content: "\e030"; }

.glyphicon-refresh:before {
  content: "\e031"; }

.glyphicon-list-alt:before {
  content: "\e032"; }

.glyphicon-lock:before {
  content: "\e033"; }

.glyphicon-flag:before {
  content: "\e034"; }

.glyphicon-headphones:before {
  content: "\e035"; }

.glyphicon-volume-off:before {
  content: "\e036"; }

.glyphicon-volume-down:before {
  content: "\e037"; }

.glyphicon-volume-up:before {
  content: "\e038"; }

.glyphicon-qrcode:before {
  content: "\e039"; }

.glyphicon-barcode:before {
  content: "\e040"; }

.glyphicon-tag:before {
  content: "\e041"; }

.glyphicon-tags:before {
  content: "\e042"; }

.glyphicon-book:before {
  content: "\e043"; }

.glyphicon-bookmark:before {
  content: "\e044"; }

.glyphicon-print:before {
  content: "\e045"; }

.glyphicon-camera:before {
  content: "\e046"; }

.glyphicon-font:before {
  content: "\e047"; }

.glyphicon-bold:before {
  content: "\e048"; }

.glyphicon-italic:before {
  content: "\e049"; }

.glyphicon-text-height:before {
  content: "\e050"; }

.glyphicon-text-width:before {
  content: "\e051"; }

.glyphicon-align-left:before {
  content: "\e052"; }

.glyphicon-align-center:before {
  content: "\e053"; }

.glyphicon-align-right:before {
  content: "\e054"; }

.glyphicon-align-justify:before {
  content: "\e055"; }

.glyphicon-list:before {
  content: "\e056"; }

.glyphicon-indent-left:before {
  content: "\e057"; }

.glyphicon-indent-right:before {
  content: "\e058"; }

.glyphicon-facetime-video:before {
  content: "\e059"; }

.glyphicon-picture:before {
  content: "\e060"; }

.glyphicon-map-marker:before {
  content: "\e062"; }

.glyphicon-adjust:before {
  content: "\e063"; }

.glyphicon-tint:before {
  content: "\e064"; }

.glyphicon-edit:before {
  content: "\e065"; }

.glyphicon-share:before {
  content: "\e066"; }

.glyphicon-check:before {
  content: "\e067"; }

.glyphicon-move:before {
  content: "\e068"; }

.glyphicon-step-backward:before {
  content: "\e069"; }

.glyphicon-fast-backward:before {
  content: "\e070"; }

.glyphicon-backward:before {
  content: "\e071"; }

.glyphicon-play:before {
  content: "\e072"; }

.glyphicon-pause:before {
  content: "\e073"; }

.glyphicon-stop:before {
  content: "\e074"; }

.glyphicon-forward:before {
  content: "\e075"; }

.glyphicon-fast-forward:before {
  content: "\e076"; }

.glyphicon-step-forward:before {
  content: "\e077"; }

.glyphicon-eject:before {
  content: "\e078"; }

.glyphicon-chevron-left:before {
  content: "\e079"; }

.glyphicon-chevron-right:before {
  content: "\e080"; }

.glyphicon-plus-sign:before {
  content: "\e081"; }

.glyphicon-minus-sign:before {
  content: "\e082"; }

.glyphicon-remove-sign:before {
  content: "\e083"; }

.glyphicon-ok-sign:before {
  content: "\e084"; }

.glyphicon-question-sign:before {
  content: "\e085"; }

.glyphicon-info-sign:before {
  content: "\e086"; }

.glyphicon-screenshot:before {
  content: "\e087"; }

.glyphicon-remove-circle:before {
  content: "\e088"; }

.glyphicon-ok-circle:before {
  content: "\e089"; }

.glyphicon-ban-circle:before {
  content: "\e090"; }

.glyphicon-arrow-left:before {
  content: "\e091"; }

.glyphicon-arrow-right:before {
  content: "\e092"; }

.glyphicon-arrow-up:before {
  content: "\e093"; }

.glyphicon-arrow-down:before {
  content: "\e094"; }

.glyphicon-share-alt:before {
  content: "\e095"; }

.glyphicon-resize-full:before {
  content: "\e096"; }

.glyphicon-resize-small:before {
  content: "\e097"; }

.glyphicon-exclamation-sign:before {
  content: "\e101"; }

.glyphicon-gift:before {
  content: "\e102"; }

.glyphicon-leaf:before {
  content: "\e103"; }

.glyphicon-fire:before {
  content: "\e104"; }

.glyphicon-eye-open:before {
  content: "\e105"; }

.glyphicon-eye-close:before {
  content: "\e106"; }

.glyphicon-warning-sign:before {
  content: "\e107"; }

.glyphicon-plane:before {
  content: "\e108"; }

.glyphicon-calendar:before {
  content: "\e109"; }

.glyphicon-random:before {
  content: "\e110"; }

.glyphicon-comment:before {
  content: "\e111"; }

.glyphicon-magnet:before {
  content: "\e112"; }

.glyphicon-chevron-up:before {
  content: "\e113"; }

.glyphicon-chevron-down:before {
  content: "\e114"; }

.glyphicon-retweet:before {
  content: "\e115"; }

.glyphicon-shopping-cart:before {
  content: "\e116"; }

.glyphicon-folder-close:before {
  content: "\e117"; }

.glyphicon-folder-open:before {
  content: "\e118"; }

.glyphicon-resize-vertical:before {
  content: "\e119"; }

.glyphicon-resize-horizontal:before {
  content: "\e120"; }

.glyphicon-hdd:before {
  content: "\e121"; }

.glyphicon-bullhorn:before {
  content: "\e122"; }

.glyphicon-bell:before {
  content: "\e123"; }

.glyphicon-certificate:before {
  content: "\e124"; }

.glyphicon-thumbs-up:before {
  content: "\e125"; }

.glyphicon-thumbs-down:before {
  content: "\e126"; }

.glyphicon-hand-right:before {
  content: "\e127"; }

.glyphicon-hand-left:before {
  content: "\e128"; }

.glyphicon-hand-up:before {
  content: "\e129"; }

.glyphicon-hand-down:before {
  content: "\e130"; }

.glyphicon-circle-arrow-right:before {
  content: "\e131"; }

.glyphicon-circle-arrow-left:before {
  content: "\e132"; }

.glyphicon-circle-arrow-up:before {
  content: "\e133"; }

.glyphicon-circle-arrow-down:before {
  content: "\e134"; }

.glyphicon-globe:before {
  content: "\e135"; }

.glyphicon-wrench:before {
  content: "\e136"; }

.glyphicon-tasks:before {
  content: "\e137"; }

.glyphicon-filter:before {
  content: "\e138"; }

.glyphicon-briefcase:before {
  content: "\e139"; }

.glyphicon-fullscreen:before {
  content: "\e140"; }

.glyphicon-dashboard:before {
  content: "\e141"; }

.glyphicon-paperclip:before {
  content: "\e142"; }

.glyphicon-heart-empty:before {
  content: "\e143"; }

.glyphicon-link:before {
  content: "\e144"; }

.glyphicon-phone:before {
  content: "\e145"; }

.glyphicon-pushpin:before {
  content: "\e146"; }

.glyphicon-usd:before {
  content: "\e148"; }

.glyphicon-gbp:before {
  content: "\e149"; }

.glyphicon-sort:before {
  content: "\e150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\e151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152"; }

.glyphicon-sort-by-order:before {
  content: "\e153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\e154"; }

.glyphicon-sort-by-attributes:before {
  content: "\e155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156"; }

.glyphicon-unchecked:before {
  content: "\e157"; }

.glyphicon-expand:before {
  content: "\e158"; }

.glyphicon-collapse-down:before {
  content: "\e159"; }

.glyphicon-collapse-up:before {
  content: "\e160"; }

.glyphicon-log-in:before {
  content: "\e161"; }

.glyphicon-flash:before {
  content: "\e162"; }

.glyphicon-log-out:before {
  content: "\e163"; }

.glyphicon-new-window:before {
  content: "\e164"; }

.glyphicon-record:before {
  content: "\e165"; }

.glyphicon-save:before {
  content: "\e166"; }

.glyphicon-open:before {
  content: "\e167"; }

.glyphicon-saved:before {
  content: "\e168"; }

.glyphicon-import:before {
  content: "\e169"; }

.glyphicon-export:before {
  content: "\e170"; }

.glyphicon-send:before {
  content: "\e171"; }

.glyphicon-floppy-disk:before {
  content: "\e172"; }

.glyphicon-floppy-saved:before {
  content: "\e173"; }

.glyphicon-floppy-remove:before {
  content: "\e174"; }

.glyphicon-floppy-save:before {
  content: "\e175"; }

.glyphicon-floppy-open:before {
  content: "\e176"; }

.glyphicon-credit-card:before {
  content: "\e177"; }

.glyphicon-transfer:before {
  content: "\e178"; }

.glyphicon-cutlery:before {
  content: "\e179"; }

.glyphicon-header:before {
  content: "\e180"; }

.glyphicon-compressed:before {
  content: "\e181"; }

.glyphicon-earphone:before {
  content: "\e182"; }

.glyphicon-phone-alt:before {
  content: "\e183"; }

.glyphicon-tower:before {
  content: "\e184"; }

.glyphicon-stats:before {
  content: "\e185"; }

.glyphicon-sd-video:before {
  content: "\e186"; }

.glyphicon-hd-video:before {
  content: "\e187"; }

.glyphicon-subtitles:before {
  content: "\e188"; }

.glyphicon-sound-stereo:before {
  content: "\e189"; }

.glyphicon-sound-dolby:before {
  content: "\e190"; }

.glyphicon-sound-5-1:before {
  content: "\e191"; }

.glyphicon-sound-6-1:before {
  content: "\e192"; }

.glyphicon-sound-7-1:before {
  content: "\e193"; }

.glyphicon-copyright-mark:before {
  content: "\e194"; }

.glyphicon-registration-mark:before {
  content: "\e195"; }

.glyphicon-cloud-download:before {
  content: "\e197"; }

.glyphicon-cloud-upload:before {
  content: "\e198"; }

.glyphicon-tree-conifer:before {
  content: "\e199"; }

.glyphicon-tree-deciduous:before {
  content: "\e200"; }

.glyphicon-cd:before {
  content: "\e201"; }

.glyphicon-save-file:before {
  content: "\e202"; }

.glyphicon-open-file:before {
  content: "\e203"; }

.glyphicon-level-up:before {
  content: "\e204"; }

.glyphicon-copy:before {
  content: "\e205"; }

.glyphicon-paste:before {
  content: "\e206"; }

.glyphicon-alert:before {
  content: "\e209"; }

.glyphicon-equalizer:before {
  content: "\e210"; }

.glyphicon-king:before {
  content: "\e211"; }

.glyphicon-queen:before {
  content: "\e212"; }

.glyphicon-pawn:before {
  content: "\e213"; }

.glyphicon-bishop:before {
  content: "\e214"; }

.glyphicon-knight:before {
  content: "\e215"; }

.glyphicon-baby-formula:before {
  content: "\e216"; }

.glyphicon-tent:before {
  content: "\26fa"; }

.glyphicon-blackboard:before {
  content: "\e218"; }

.glyphicon-bed:before {
  content: "\e219"; }

.glyphicon-apple:before {
  content: "\f8ff"; }

.glyphicon-erase:before {
  content: "\e221"; }

.glyphicon-hourglass:before {
  content: "\231b"; }

.glyphicon-lamp:before {
  content: "\e223"; }

.glyphicon-duplicate:before {
  content: "\e224"; }

.glyphicon-piggy-bank:before {
  content: "\e225"; }

.glyphicon-scissors:before {
  content: "\e226"; }

.glyphicon-bitcoin:before {
  content: "\e227"; }

.glyphicon-btc:before {
  content: "\e227"; }

.glyphicon-xbt:before {
  content: "\e227"; }

.glyphicon-yen:before {
  content: "\00a5"; }

.glyphicon-jpy:before {
  content: "\00a5"; }

.glyphicon-ruble:before {
  content: "\20bd"; }

.glyphicon-rub:before {
  content: "\20bd"; }

.glyphicon-scale:before {
  content: "\e230"; }

.glyphicon-ice-lolly:before {
  content: "\e231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\e232"; }

.glyphicon-education:before {
  content: "\e233"; }

.glyphicon-option-horizontal:before {
  content: "\e234"; }

.glyphicon-option-vertical:before {
  content: "\e235"; }

.glyphicon-menu-hamburger:before {
  content: "\e236"; }

.glyphicon-modal-window:before {
  content: "\e237"; }

.glyphicon-oil:before {
  content: "\e238"; }

.glyphicon-grain:before {
  content: "\e239"; }

.glyphicon-sunglasses:before {
  content: "\e240"; }

.glyphicon-text-size:before {
  content: "\e241"; }

.glyphicon-text-color:before {
  content: "\e242"; }

.glyphicon-text-background:before {
  content: "\e243"; }

.glyphicon-object-align-top:before {
  content: "\e244"; }

.glyphicon-object-align-bottom:before {
  content: "\e245"; }

.glyphicon-object-align-horizontal:before {
  content: "\e246"; }

.glyphicon-object-align-left:before {
  content: "\e247"; }

.glyphicon-object-align-vertical:before {
  content: "\e248"; }

.glyphicon-object-align-right:before {
  content: "\e249"; }

.glyphicon-triangle-right:before {
  content: "\e250"; }

.glyphicon-triangle-left:before {
  content: "\e251"; }

.glyphicon-triangle-bottom:before {
  content: "\e252"; }

.glyphicon-triangle-top:before {
  content: "\e253"; }

.glyphicon-console:before {
  content: "\e254"; }

.glyphicon-superscript:before {
  content: "\e255"; }

.glyphicon-subscript:before {
  content: "\e256"; }

.glyphicon-menu-left:before {
  content: "\e257"; }

.glyphicon-menu-right:before {
  content: "\e258"; }

.glyphicon-menu-down:before {
  content: "\e259"; }

.glyphicon-menu-up:before {
  content: "\e260"; }

* {
  box-sizing: border-box; }

*:before,
*:after {
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #e73787;
  text-decoration: none; }
  a:hover, a:focus {
    color: #bb1661;
    text-decoration: underline; }
  a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only, .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .screen-reader-text:active, .sr-only-focusable:focus, .screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 21px; } }

small,
.small {
  font-size: 85%; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase, .initialism {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777777; }

.text-primary {
  color: #e73787; }

a.text-primary:hover,
a.text-primary:focus {
  color: #d2196d; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #e73787; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #d2196d; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.428571429; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.428571429;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: '\00A0 \2014'; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.3333333333%; }

.col-xs-2 {
  width: 16.6666666667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.3333333333%; }

.col-xs-5 {
  width: 41.6666666667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.3333333333%; }

.col-xs-8 {
  width: 66.6666666667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.3333333333%; }

.col-xs-11 {
  width: 91.6666666667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.3333333333%; }

.col-xs-pull-2 {
  right: 16.6666666667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.3333333333%; }

.col-xs-pull-5 {
  right: 41.6666666667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.3333333333%; }

.col-xs-pull-8 {
  right: 66.6666666667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.3333333333%; }

.col-xs-pull-11 {
  right: 91.6666666667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.3333333333%; }

.col-xs-push-2 {
  left: 16.6666666667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.3333333333%; }

.col-xs-push-5 {
  left: 41.6666666667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.3333333333%; }

.col-xs-push-8 {
  left: 66.6666666667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.3333333333%; }

.col-xs-push-11 {
  left: 91.6666666667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.3333333333%; }

.col-xs-offset-2 {
  margin-left: 16.6666666667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.3333333333%; }

.col-xs-offset-5 {
  margin-left: 41.6666666667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.3333333333%; }

.col-xs-offset-8 {
  margin-left: 66.6666666667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.3333333333%; }

.col-xs-offset-11 {
  margin-left: 91.6666666667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.3333333333%; }
  .col-sm-2 {
    width: 16.6666666667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.3333333333%; }
  .col-sm-5 {
    width: 41.6666666667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.3333333333%; }
  .col-sm-8 {
    width: 66.6666666667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.3333333333%; }
  .col-sm-11 {
    width: 91.6666666667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.3333333333%; }
  .col-sm-pull-2 {
    right: 16.6666666667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.3333333333%; }
  .col-sm-pull-5 {
    right: 41.6666666667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.3333333333%; }
  .col-sm-pull-8 {
    right: 66.6666666667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.3333333333%; }
  .col-sm-pull-11 {
    right: 91.6666666667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.3333333333%; }
  .col-sm-push-2 {
    left: 16.6666666667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.3333333333%; }
  .col-sm-push-5 {
    left: 41.6666666667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.3333333333%; }
  .col-sm-push-8 {
    left: 66.6666666667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.3333333333%; }
  .col-sm-push-11 {
    left: 91.6666666667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.3333333333%; }
  .col-md-2 {
    width: 16.6666666667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.3333333333%; }
  .col-md-5 {
    width: 41.6666666667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.3333333333%; }
  .col-md-8 {
    width: 66.6666666667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.3333333333%; }
  .col-md-11 {
    width: 91.6666666667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.3333333333%; }
  .col-md-pull-2 {
    right: 16.6666666667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.3333333333%; }
  .col-md-pull-5 {
    right: 41.6666666667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.3333333333%; }
  .col-md-pull-8 {
    right: 66.6666666667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.3333333333%; }
  .col-md-pull-11 {
    right: 91.6666666667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.3333333333%; }
  .col-md-push-2 {
    left: 16.6666666667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.3333333333%; }
  .col-md-push-5 {
    left: 41.6666666667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.3333333333%; }
  .col-md-push-8 {
    left: 66.6666666667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.3333333333%; }
  .col-md-push-11 {
    left: 91.6666666667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.3333333333%; }
  .col-lg-2 {
    width: 16.6666666667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.3333333333%; }
  .col-lg-5 {
    width: 41.6666666667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.3333333333%; }
  .col-lg-8 {
    width: 66.6666666667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.3333333333%; }
  .col-lg-11 {
    width: 91.6666666667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.3333333333%; }
  .col-lg-pull-2 {
    right: 16.6666666667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.3333333333%; }
  .col-lg-pull-5 {
    right: 41.6666666667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.3333333333%; }
  .col-lg-pull-8 {
    right: 66.6666666667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.3333333333%; }
  .col-lg-pull-11 {
    right: 91.6666666667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.3333333333%; }
  .col-lg-push-2 {
    left: 16.6666666667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.3333333333%; }
  .col-lg-push-5 {
    left: 41.6666666667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.3333333333%; }
  .col-lg-push-8 {
    left: 66.6666666667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.3333333333%; }
  .col-lg-push-11 {
    left: 91.6666666667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555; }

.form-control, .comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea, .search-form .search-field {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus, .comment-form input:focus[type="text"],
  .comment-form input:focus[type="email"],
  .comment-form input:focus[type="url"],
  .comment-form textarea:focus, .search-form .search-field:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .form-control::-moz-placeholder, .comment-form input[type="text"]::-moz-placeholder,
  .comment-form input[type="email"]::-moz-placeholder,
  .comment-form input[type="url"]::-moz-placeholder,
  .comment-form textarea::-moz-placeholder, .search-form .search-field::-moz-placeholder {
    color: #999;
    opacity: 1; }
  .form-control:-ms-input-placeholder, .comment-form input:-ms-input-placeholder[type="text"],
  .comment-form input:-ms-input-placeholder[type="email"],
  .comment-form input:-ms-input-placeholder[type="url"],
  .comment-form textarea:-ms-input-placeholder, .search-form .search-field:-ms-input-placeholder {
    color: #999; }
  .form-control::-webkit-input-placeholder, .comment-form input[type="text"]::-webkit-input-placeholder,
  .comment-form input[type="email"]::-webkit-input-placeholder,
  .comment-form input[type="url"]::-webkit-input-placeholder,
  .comment-form textarea::-webkit-input-placeholder, .search-form .search-field::-webkit-input-placeholder {
    color: #999; }
  .form-control::-ms-expand, .comment-form input[type="text"]::-ms-expand,
  .comment-form input[type="email"]::-ms-expand,
  .comment-form input[type="url"]::-ms-expand,
  .comment-form textarea::-ms-expand, .search-form .search-field::-ms-expand {
    border: 0;
    background-color: transparent; }
  .form-control[disabled], .comment-form input[disabled][type="text"],
  .comment-form input[disabled][type="email"],
  .comment-form input[disabled][type="url"],
  .comment-form textarea[disabled], .search-form .search-field[disabled], .form-control[readonly], .comment-form input[readonly][type="text"],
  .comment-form input[readonly][type="email"],
  .comment-form input[readonly][type="url"],
  .comment-form textarea[readonly], .search-form .search-field[readonly],
  fieldset[disabled] .form-control,
  fieldset[disabled] .comment-form input[type="text"],
  .comment-form fieldset[disabled] input[type="text"],
  fieldset[disabled] .comment-form input[type="email"],
  .comment-form fieldset[disabled] input[type="email"],
  fieldset[disabled] .comment-form input[type="url"],
  .comment-form fieldset[disabled] input[type="url"],
  fieldset[disabled] .comment-form textarea,
  .comment-form fieldset[disabled] textarea,
  fieldset[disabled] .search-form .search-field,
  .search-form fieldset[disabled] .search-field {
    background-color: #eeeeee;
    opacity: 1; }
  .form-control[disabled], .comment-form input[disabled][type="text"],
  .comment-form input[disabled][type="email"],
  .comment-form input[disabled][type="url"],
  .comment-form textarea[disabled], .search-form .search-field[disabled],
  fieldset[disabled] .form-control,
  fieldset[disabled] .comment-form input[type="text"],
  .comment-form fieldset[disabled] input[type="text"],
  fieldset[disabled] .comment-form input[type="email"],
  .comment-form fieldset[disabled] input[type="email"],
  fieldset[disabled] .comment-form input[type="url"],
  .comment-form fieldset[disabled] input[type="url"],
  fieldset[disabled] .comment-form textarea,
  .comment-form fieldset[disabled] textarea,
  fieldset[disabled] .search-form .search-field,
  .search-form fieldset[disabled] .search-field {
    cursor: not-allowed; }

textarea.form-control,
.comment-form textarea, .search-form textarea.search-field {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control, .comment-form input[type="date"][type="text"],
  .comment-form input[type="date"][type="email"],
  .comment-form input[type="date"][type="url"], .search-form input.search-field[type="date"],
  input[type="time"].form-control,
  .comment-form input[type="time"][type="text"],
  .comment-form input[type="time"][type="email"],
  .comment-form input[type="time"][type="url"],
  .search-form input.search-field[type="time"],
  input[type="datetime-local"].form-control,
  .comment-form input[type="datetime-local"][type="text"],
  .comment-form input[type="datetime-local"][type="email"],
  .comment-form input[type="datetime-local"][type="url"],
  .search-form input.search-field[type="datetime-local"],
  input[type="month"].form-control,
  .comment-form input[type="month"][type="text"],
  .comment-form input[type="month"][type="email"],
  .comment-form input[type="month"][type="url"],
  .search-form input.search-field[type="month"] {
    line-height: 34px; }
  input[type="date"].input-sm, .input-group-sm > input.form-control[type="date"], .comment-form .input-group-sm > input[type="date"][type="text"],
  .comment-form .input-group-sm > input[type="date"][type="email"],
  .comment-form .input-group-sm > input[type="date"][type="url"], .search-form .input-group-sm > input.search-field[type="date"],
  .input-group-sm > input.input-group-addon[type="date"],
  .input-group-sm > .input-group-btn > input.btn[type="date"], .comment-form .input-group-sm > .input-group-btn > input[type="date"][type="submit"], .search-form .input-group-sm > .input-group-btn > input.search-submit[type="date"],
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input.form-control[type="time"],
  .comment-form .input-group-sm > input[type="time"][type="text"],
  .comment-form .input-group-sm > input[type="time"][type="email"],
  .comment-form .input-group-sm > input[type="time"][type="url"],
  .search-form .input-group-sm > input.search-field[type="time"],
  .input-group-sm > input.input-group-addon[type="time"],
  .input-group-sm > .input-group-btn > input.btn[type="time"],
  .comment-form .input-group-sm > .input-group-btn > input[type="time"][type="submit"],
  .search-form .input-group-sm > .input-group-btn > input.search-submit[type="time"],
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input.form-control[type="datetime-local"],
  .comment-form .input-group-sm > input[type="datetime-local"][type="text"],
  .comment-form .input-group-sm > input[type="datetime-local"][type="email"],
  .comment-form .input-group-sm > input[type="datetime-local"][type="url"],
  .search-form .input-group-sm > input.search-field[type="datetime-local"],
  .input-group-sm > input.input-group-addon[type="datetime-local"],
  .input-group-sm > .input-group-btn > input.btn[type="datetime-local"],
  .comment-form .input-group-sm > .input-group-btn > input[type="datetime-local"][type="submit"],
  .search-form .input-group-sm > .input-group-btn > input.search-submit[type="datetime-local"],
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input.form-control[type="month"],
  .comment-form .input-group-sm > input[type="month"][type="text"],
  .comment-form .input-group-sm > input[type="month"][type="email"],
  .comment-form .input-group-sm > input[type="month"][type="url"],
  .search-form .input-group-sm > input.search-field[type="month"],
  .input-group-sm > input.input-group-addon[type="month"],
  .input-group-sm > .input-group-btn > input.btn[type="month"],
  .comment-form .input-group-sm > .input-group-btn > input[type="month"][type="submit"],
  .search-form .input-group-sm > .input-group-btn > input.search-submit[type="month"],
  .input-group-sm
  input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg, .input-group-lg > input.form-control[type="date"], .comment-form .input-group-lg > input[type="date"][type="text"],
  .comment-form .input-group-lg > input[type="date"][type="email"],
  .comment-form .input-group-lg > input[type="date"][type="url"], .search-form .input-group-lg > input.search-field[type="date"],
  .input-group-lg > input.input-group-addon[type="date"],
  .input-group-lg > .input-group-btn > input.btn[type="date"], .comment-form .input-group-lg > .input-group-btn > input[type="date"][type="submit"], .search-form .input-group-lg > .input-group-btn > input.search-submit[type="date"],
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input.form-control[type="time"],
  .comment-form .input-group-lg > input[type="time"][type="text"],
  .comment-form .input-group-lg > input[type="time"][type="email"],
  .comment-form .input-group-lg > input[type="time"][type="url"],
  .search-form .input-group-lg > input.search-field[type="time"],
  .input-group-lg > input.input-group-addon[type="time"],
  .input-group-lg > .input-group-btn > input.btn[type="time"],
  .comment-form .input-group-lg > .input-group-btn > input[type="time"][type="submit"],
  .search-form .input-group-lg > .input-group-btn > input.search-submit[type="time"],
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input.form-control[type="datetime-local"],
  .comment-form .input-group-lg > input[type="datetime-local"][type="text"],
  .comment-form .input-group-lg > input[type="datetime-local"][type="email"],
  .comment-form .input-group-lg > input[type="datetime-local"][type="url"],
  .search-form .input-group-lg > input.search-field[type="datetime-local"],
  .input-group-lg > input.input-group-addon[type="datetime-local"],
  .input-group-lg > .input-group-btn > input.btn[type="datetime-local"],
  .comment-form .input-group-lg > .input-group-btn > input[type="datetime-local"][type="submit"],
  .search-form .input-group-lg > .input-group-btn > input.search-submit[type="datetime-local"],
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input.form-control[type="month"],
  .comment-form .input-group-lg > input[type="month"][type="text"],
  .comment-form .input-group-lg > input[type="month"][type="email"],
  .comment-form .input-group-lg > input[type="month"][type="url"],
  .search-form .input-group-lg > input.search-field[type="month"],
  .input-group-lg > input.input-group-addon[type="month"],
  .input-group-lg > .input-group-btn > input.btn[type="month"],
  .comment-form .input-group-lg > .input-group-btn > input[type="month"][type="submit"],
  .search-form .input-group-lg > .input-group-btn > input.search-submit[type="month"],
  .input-group-lg
  input[type="month"] {
    line-height: 46px; } }

.form-group, .comment-form p, .search-form label {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px; }
  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, .comment-form .input-group-lg > input.form-control-static[type="text"],
  .comment-form .input-group-lg > input.form-control-static[type="email"],
  .comment-form .input-group-lg > input.form-control-static[type="url"],
  .comment-form .input-group-lg > textarea.form-control-static, .search-form .input-group-lg > .form-control-static.search-field,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .comment-form .input-group-lg > .input-group-btn > input.form-control-static[type="submit"], .search-form .input-group-lg > .input-group-btn > .form-control-static.search-submit, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, .comment-form .input-group-sm > input.form-control-static[type="text"],
  .comment-form .input-group-sm > input.form-control-static[type="email"],
  .comment-form .input-group-sm > input.form-control-static[type="url"],
  .comment-form .input-group-sm > textarea.form-control-static, .search-form .input-group-sm > .form-control-static.search-field,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn, .comment-form .input-group-sm > .input-group-btn > input.form-control-static[type="submit"], .search-form .input-group-sm > .input-group-btn > .form-control-static.search-submit {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .input-group-sm > .form-control, .comment-form .input-group-sm > input[type="text"],
.comment-form .input-group-sm > input[type="email"],
.comment-form .input-group-sm > input[type="url"],
.comment-form .input-group-sm > textarea, .search-form .input-group-sm > .search-field,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn, .comment-form .input-group-sm > .input-group-btn > input[type="submit"], .search-form .input-group-sm > .input-group-btn > .search-submit {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm, .input-group-sm > select.form-control, .search-form .input-group-sm > select.search-field,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn, .search-form .input-group-sm > .input-group-btn > select.search-submit {
  height: 30px;
  line-height: 30px; }

textarea.input-sm, .input-group-sm > textarea.form-control,
.comment-form .input-group-sm > textarea, .search-form .input-group-sm > textarea.search-field,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn, .search-form .input-group-sm > .input-group-btn > textarea.search-submit,
select[multiple].input-sm,
.input-group-sm > select.form-control[multiple],
.search-form .input-group-sm > select.search-field[multiple],
.input-group-sm > select.input-group-addon[multiple],
.input-group-sm > .input-group-btn > select.btn[multiple],
.search-form .input-group-sm > .input-group-btn > select.search-submit[multiple] {
  height: auto; }

.form-group-sm .form-control, .form-group-sm .comment-form input[type="text"], .comment-form .form-group-sm input[type="text"],
.form-group-sm .comment-form input[type="email"], .comment-form .form-group-sm input[type="email"],
.form-group-sm .comment-form input[type="url"], .comment-form .form-group-sm input[type="url"],
.form-group-sm .comment-form textarea, .comment-form .form-group-sm textarea, .form-group-sm .search-form .search-field, .search-form .form-group-sm .search-field {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control, .form-group-sm .search-form select.search-field, .search-form .form-group-sm select.search-field {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control,
.form-group-sm .comment-form textarea, .comment-form .form-group-sm textarea, .form-group-sm .search-form textarea.search-field, .search-form .form-group-sm textarea.search-field,
.form-group-sm select[multiple].form-control,
.form-group-sm .search-form select.search-field[multiple],
.search-form .form-group-sm select.search-field[multiple] {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg, .input-group-lg > .form-control, .comment-form .input-group-lg > input[type="text"],
.comment-form .input-group-lg > input[type="email"],
.comment-form .input-group-lg > input[type="url"],
.comment-form .input-group-lg > textarea, .search-form .input-group-lg > .search-field,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn, .comment-form .input-group-lg > .input-group-btn > input[type="submit"], .search-form .input-group-lg > .input-group-btn > .search-submit {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

select.input-lg, .input-group-lg > select.form-control, .search-form .input-group-lg > select.search-field,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn, .search-form .input-group-lg > .input-group-btn > select.search-submit {
  height: 46px;
  line-height: 46px; }

textarea.input-lg, .input-group-lg > textarea.form-control,
.comment-form .input-group-lg > textarea, .search-form .input-group-lg > textarea.search-field,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn, .search-form .input-group-lg > .input-group-btn > textarea.search-submit,
select[multiple].input-lg,
.input-group-lg > select.form-control[multiple],
.search-form .input-group-lg > select.search-field[multiple],
.input-group-lg > select.input-group-addon[multiple],
.input-group-lg > .input-group-btn > select.btn[multiple],
.search-form .input-group-lg > .input-group-btn > select.search-submit[multiple] {
  height: auto; }

.form-group-lg .form-control, .form-group-lg .comment-form input[type="text"], .comment-form .form-group-lg input[type="text"],
.form-group-lg .comment-form input[type="email"], .comment-form .form-group-lg input[type="email"],
.form-group-lg .comment-form input[type="url"], .comment-form .form-group-lg input[type="url"],
.form-group-lg .comment-form textarea, .comment-form .form-group-lg textarea, .form-group-lg .search-form .search-field, .search-form .form-group-lg .search-field {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.form-group-lg select.form-control, .form-group-lg .search-form select.search-field, .search-form .form-group-lg select.search-field {
  height: 46px;
  line-height: 46px; }

.form-group-lg textarea.form-control,
.form-group-lg .comment-form textarea, .comment-form .form-group-lg textarea, .form-group-lg .search-form textarea.search-field, .search-form .form-group-lg textarea.search-field,
.form-group-lg select[multiple].form-control,
.form-group-lg .search-form select.search-field[multiple],
.search-form .form-group-lg select.search-field[multiple] {
  height: auto; }

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control, .has-feedback .comment-form input[type="text"], .comment-form .has-feedback input[type="text"],
  .has-feedback .comment-form input[type="email"], .comment-form .has-feedback input[type="email"],
  .has-feedback .comment-form input[type="url"], .comment-form .has-feedback input[type="url"],
  .has-feedback .comment-form textarea, .comment-form .has-feedback textarea, .has-feedback .search-form .search-field, .search-form .has-feedback .search-field {
    padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .comment-form .input-group-lg > input[type="text"] + .form-control-feedback, .comment-form .input-group-lg > input[type="email"] + .form-control-feedback, .comment-form .input-group-lg > input[type="url"] + .form-control-feedback, .comment-form .input-group-lg > textarea + .form-control-feedback, .search-form .input-group-lg > .search-field + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, .comment-form .input-group-lg > .input-group-btn > input[type="submit"] + .form-control-feedback, .search-form .input-group-lg > .input-group-btn > .search-submit + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback,
.form-group-lg .comment-form input[type="text"] + .form-control-feedback,
.comment-form .form-group-lg input[type="text"] + .form-control-feedback,
.form-group-lg .comment-form input[type="email"] + .form-control-feedback,
.comment-form .form-group-lg input[type="email"] + .form-control-feedback,
.form-group-lg .comment-form input[type="url"] + .form-control-feedback,
.comment-form .form-group-lg input[type="url"] + .form-control-feedback,
.form-group-lg .comment-form textarea + .form-control-feedback,
.comment-form .form-group-lg textarea + .form-control-feedback,
.form-group-lg .search-form .search-field + .form-control-feedback,
.search-form .form-group-lg .search-field + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .comment-form .input-group-sm > input[type="text"] + .form-control-feedback, .comment-form .input-group-sm > input[type="email"] + .form-control-feedback, .comment-form .input-group-sm > input[type="url"] + .form-control-feedback, .comment-form .input-group-sm > textarea + .form-control-feedback, .search-form .input-group-sm > .search-field + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, .comment-form .input-group-sm > .input-group-btn > input[type="submit"] + .form-control-feedback, .search-form .input-group-sm > .input-group-btn > .search-submit + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback,
.form-group-sm .comment-form input[type="text"] + .form-control-feedback,
.comment-form .form-group-sm input[type="text"] + .form-control-feedback,
.form-group-sm .comment-form input[type="email"] + .form-control-feedback,
.comment-form .form-group-sm input[type="email"] + .form-control-feedback,
.form-group-sm .comment-form input[type="url"] + .form-control-feedback,
.comment-form .form-group-sm input[type="url"] + .form-control-feedback,
.form-group-sm .comment-form textarea + .form-control-feedback,
.comment-form .form-group-sm textarea + .form-control-feedback,
.form-group-sm .search-form .search-field + .form-control-feedback,
.search-form .form-group-sm .search-field + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control, .has-success .comment-form input[type="text"], .comment-form .has-success input[type="text"],
.has-success .comment-form input[type="email"], .comment-form .has-success input[type="email"],
.has-success .comment-form input[type="url"], .comment-form .has-success input[type="url"],
.has-success .comment-form textarea, .comment-form .has-success textarea, .has-success .search-form .search-field, .search-form .has-success .search-field {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus, .has-success .comment-form input:focus[type="text"], .comment-form .has-success input:focus[type="text"],
  .has-success .comment-form input:focus[type="email"], .comment-form .has-success input:focus[type="email"],
  .has-success .comment-form input:focus[type="url"], .comment-form .has-success input:focus[type="url"],
  .has-success .comment-form textarea:focus, .comment-form .has-success textarea:focus, .has-success .search-form .search-field:focus, .search-form .has-success .search-field:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control, .has-warning .comment-form input[type="text"], .comment-form .has-warning input[type="text"],
.has-warning .comment-form input[type="email"], .comment-form .has-warning input[type="email"],
.has-warning .comment-form input[type="url"], .comment-form .has-warning input[type="url"],
.has-warning .comment-form textarea, .comment-form .has-warning textarea, .has-warning .search-form .search-field, .search-form .has-warning .search-field {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus, .has-warning .comment-form input:focus[type="text"], .comment-form .has-warning input:focus[type="text"],
  .has-warning .comment-form input:focus[type="email"], .comment-form .has-warning input:focus[type="email"],
  .has-warning .comment-form input:focus[type="url"], .comment-form .has-warning input:focus[type="url"],
  .has-warning .comment-form textarea:focus, .comment-form .has-warning textarea:focus, .has-warning .search-form .search-field:focus, .search-form .has-warning .search-field:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control, .has-error .comment-form input[type="text"], .comment-form .has-error input[type="text"],
.has-error .comment-form input[type="email"], .comment-form .has-error input[type="email"],
.has-error .comment-form input[type="url"], .comment-form .has-error input[type="url"],
.has-error .comment-form textarea, .comment-form .has-error textarea, .has-error .search-form .search-field, .search-form .has-error .search-field {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus, .has-error .comment-form input:focus[type="text"], .comment-form .has-error input:focus[type="text"],
  .has-error .comment-form input:focus[type="email"], .comment-form .has-error input:focus[type="email"],
  .has-error .comment-form input:focus[type="url"], .comment-form .has-error input:focus[type="url"],
  .has-error .comment-form textarea:focus, .comment-form .has-error textarea:focus, .has-error .search-form .search-field:focus, .search-form .has-error .search-field:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback, .has-feedback label.screen-reader-text ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .form-inline .form-group, .search-form .form-group, .form-inline .comment-form p, .comment-form .form-inline p, .search-form .comment-form p, .comment-form .search-form p, .form-inline .search-form label, .search-form .form-inline label, .search-form label {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control, .search-form .form-control, .form-inline .comment-form input[type="text"], .comment-form .form-inline input[type="text"], .search-form .comment-form input[type="text"], .comment-form .search-form input[type="text"],
  .form-inline .comment-form input[type="email"], .comment-form .form-inline input[type="email"],
  .search-form .comment-form input[type="email"], .comment-form .search-form input[type="email"],
  .form-inline .comment-form input[type="url"], .comment-form .form-inline input[type="url"],
  .search-form .comment-form input[type="url"], .comment-form .search-form input[type="url"],
  .form-inline .comment-form textarea, .comment-form .form-inline textarea,
  .search-form .comment-form textarea, .comment-form .search-form textarea, .search-form .search-field {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static, .search-form .form-control-static {
    display: inline-block; }
  .form-inline .input-group, .search-form .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon, .search-form .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .search-form .input-group .input-group-btn,
    .form-inline .input-group .form-control,
    .search-form .input-group .form-control,
    .form-inline .input-group .comment-form input[type="text"],
    .comment-form .form-inline .input-group input[type="text"],
    .search-form .input-group .comment-form input[type="text"],
    .comment-form .search-form .input-group input[type="text"],
    .form-inline .input-group .comment-form input[type="email"],
    .comment-form .form-inline .input-group input[type="email"],
    .search-form .input-group .comment-form input[type="email"],
    .comment-form .search-form .input-group input[type="email"],
    .form-inline .input-group .comment-form input[type="url"],
    .comment-form .form-inline .input-group input[type="url"],
    .search-form .input-group .comment-form input[type="url"],
    .comment-form .search-form .input-group input[type="url"],
    .form-inline .input-group .comment-form textarea,
    .comment-form .form-inline .input-group textarea,
    .search-form .input-group .comment-form textarea,
    .comment-form .search-form .input-group textarea,
    .form-inline .input-group .search-form .search-field,
    .search-form .input-group .search-field {
      width: auto; }
  .form-inline .input-group > .form-control, .search-form .input-group > .form-control, .form-inline .comment-form .input-group > input[type="text"], .comment-form .form-inline .input-group > input[type="text"], .search-form .comment-form .input-group > input[type="text"], .comment-form .search-form .input-group > input[type="text"],
  .form-inline .comment-form .input-group > input[type="email"], .comment-form .form-inline .input-group > input[type="email"],
  .search-form .comment-form .input-group > input[type="email"], .comment-form .search-form .input-group > input[type="email"],
  .form-inline .comment-form .input-group > input[type="url"], .comment-form .form-inline .input-group > input[type="url"],
  .search-form .comment-form .input-group > input[type="url"], .comment-form .search-form .input-group > input[type="url"],
  .form-inline .comment-form .input-group > textarea, .comment-form .form-inline .input-group > textarea,
  .search-form .comment-form .input-group > textarea, .comment-form .search-form .input-group > textarea, .search-form .form-inline .input-group > .search-field, .search-form .input-group > .search-field {
    width: 100%; }
  .form-inline .control-label, .search-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio, .search-form .radio,
  .form-inline .checkbox,
  .search-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label, .search-form .radio label,
    .form-inline .checkbox label,
    .search-form .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"], .search-form .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"],
  .search-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback, .search-form .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group, .form-horizontal .comment-form p, .comment-form .form-horizontal p, .form-horizontal .search-form label, .search-form .form-horizontal label {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .comment-form p:before, .comment-form .form-horizontal p:before, .form-horizontal .search-form label:before, .search-form .form-horizontal label:before, .form-horizontal .form-group:after, .form-horizontal .comment-form p:after, .comment-form .form-horizontal p:after, .form-horizontal .search-form label:after, .search-form .form-horizontal label:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after, .form-horizontal .comment-form p:after, .comment-form .form-horizontal p:after, .form-horizontal .search-form label:after, .search-form .form-horizontal label:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

.btn, .comment-form input[type="submit"], .search-form .search-submit {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .comment-form input:focus[type="submit"], .search-form .search-submit:focus, .btn.focus, .comment-form input.focus[type="submit"], .search-form .focus.search-submit, .btn:active:focus, .comment-form input:active:focus[type="submit"], .search-form .search-submit:active:focus, .btn:active.focus, .comment-form input:active.focus[type="submit"], .search-form .search-submit:active.focus, .btn.active:focus, .comment-form input.active:focus[type="submit"], .search-form .active.search-submit:focus, .btn.active.focus, .comment-form input.active.focus[type="submit"], .search-form .active.focus.search-submit {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .comment-form input:hover[type="submit"], .search-form .search-submit:hover, .btn:focus, .comment-form input:focus[type="submit"], .search-form .search-submit:focus, .btn.focus, .comment-form input.focus[type="submit"], .search-form .focus.search-submit {
    color: #333;
    text-decoration: none; }
  .btn:active, .comment-form input:active[type="submit"], .search-form .search-submit:active, .btn.active, .comment-form input.active[type="submit"], .search-form .active.search-submit {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .comment-form input.disabled[type="submit"], .search-form .disabled.search-submit, .btn[disabled], .comment-form input[disabled][type="submit"], .search-form .search-submit[disabled],
  fieldset[disabled] .btn,
  fieldset[disabled] .comment-form input[type="submit"],
  .comment-form fieldset[disabled] input[type="submit"],
  fieldset[disabled] .search-form .search-submit,
  .search-form fieldset[disabled] .search-submit {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none; }

a.btn.disabled, .search-form a.disabled.search-submit,
fieldset[disabled] a.btn,
fieldset[disabled] .search-form a.search-submit,
.search-form fieldset[disabled] a.search-submit {
  pointer-events: none; }

.btn-default, .search-form .search-submit {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:focus, .search-form .search-submit:focus, .btn-default.focus, .search-form .focus.search-submit {
    color: #333;
    background-color: #e6e5e5;
    border-color: #8c8c8c; }
  .btn-default:hover, .search-form .search-submit:hover {
    color: #333;
    background-color: #e6e5e5;
    border-color: #adadad; }
  .btn-default:active, .search-form .search-submit:active, .btn-default.active, .search-form .active.search-submit,
  .open > .btn-default.dropdown-toggle,
  .search-form .open > .dropdown-toggle.search-submit {
    color: #333;
    background-color: #e6e5e5;
    border-color: #adadad; }
    .btn-default:active:hover, .search-form .search-submit:active:hover, .btn-default:active:focus, .search-form .search-submit:active:focus, .btn-default:active.focus, .search-form .search-submit:active.focus, .btn-default.active:hover, .search-form .active.search-submit:hover, .btn-default.active:focus, .search-form .active.search-submit:focus, .btn-default.active.focus, .search-form .active.focus.search-submit,
    .open > .btn-default.dropdown-toggle:hover,
    .search-form .open > .dropdown-toggle.search-submit:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .search-form .open > .dropdown-toggle.search-submit:focus,
    .open > .btn-default.dropdown-toggle.focus,
    .search-form .open > .dropdown-toggle.focus.search-submit {
      color: #333;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .btn-default:active, .search-form .search-submit:active, .btn-default.active, .search-form .active.search-submit,
  .open > .btn-default.dropdown-toggle,
  .search-form .open > .dropdown-toggle.search-submit {
    background-image: none; }
  .btn-default.disabled:hover, .search-form .disabled.search-submit:hover, .btn-default.disabled:focus, .search-form .disabled.search-submit:focus, .btn-default.disabled.focus, .search-form .disabled.focus.search-submit, .btn-default[disabled]:hover, .search-form .search-submit[disabled]:hover, .btn-default[disabled]:focus, .search-form .search-submit[disabled]:focus, .btn-default[disabled].focus, .search-form .search-submit[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .search-form .search-submit:hover,
  .search-form fieldset[disabled] .search-submit:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .search-form .search-submit:focus,
  .search-form fieldset[disabled] .search-submit:focus,
  fieldset[disabled] .btn-default.focus,
  fieldset[disabled] .search-form .focus.search-submit,
  .search-form fieldset[disabled] .focus.search-submit {
    background-color: #fff;
    border-color: #ccc; }
  .btn-default .badge, .search-form .search-submit .badge {
    color: #fff;
    background-color: #333; }

.btn-primary, .comment-form input[type="submit"] {
  color: #fff;
  background-color: #e73787;
  border-color: #e42079; }
  .btn-primary:focus, .comment-form input:focus[type="submit"], .btn-primary.focus, .comment-form input.focus[type="submit"] {
    color: #fff;
    background-color: #d2196d;
    border-color: #770e3e; }
  .btn-primary:hover, .comment-form input:hover[type="submit"] {
    color: #fff;
    background-color: #d2196d;
    border-color: #b2155d; }
  .btn-primary:active, .comment-form input:active[type="submit"], .btn-primary.active, .comment-form input.active[type="submit"],
  .open > .btn-primary.dropdown-toggle,
  .comment-form .open > input.dropdown-toggle[type="submit"] {
    color: #fff;
    background-color: #d2196d;
    border-color: #b2155d; }
    .btn-primary:active:hover, .comment-form input:active:hover[type="submit"], .btn-primary:active:focus, .comment-form input:active:focus[type="submit"], .btn-primary:active.focus, .comment-form input:active.focus[type="submit"], .btn-primary.active:hover, .comment-form input.active:hover[type="submit"], .btn-primary.active:focus, .comment-form input.active:focus[type="submit"], .btn-primary.active.focus, .comment-form input.active.focus[type="submit"],
    .open > .btn-primary.dropdown-toggle:hover,
    .comment-form .open > input.dropdown-toggle:hover[type="submit"],
    .open > .btn-primary.dropdown-toggle:focus,
    .comment-form .open > input.dropdown-toggle:focus[type="submit"],
    .open > .btn-primary.dropdown-toggle.focus,
    .comment-form .open > input.dropdown-toggle.focus[type="submit"] {
      color: #fff;
      background-color: #b2155d;
      border-color: #770e3e; }
  .btn-primary:active, .comment-form input:active[type="submit"], .btn-primary.active, .comment-form input.active[type="submit"],
  .open > .btn-primary.dropdown-toggle,
  .comment-form .open > input.dropdown-toggle[type="submit"] {
    background-image: none; }
  .btn-primary.disabled:hover, .comment-form input.disabled:hover[type="submit"], .btn-primary.disabled:focus, .comment-form input.disabled:focus[type="submit"], .btn-primary.disabled.focus, .comment-form input.disabled.focus[type="submit"], .btn-primary[disabled]:hover, .comment-form input[disabled]:hover[type="submit"], .btn-primary[disabled]:focus, .comment-form input[disabled]:focus[type="submit"], .btn-primary[disabled].focus, .comment-form input[disabled].focus[type="submit"],
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .comment-form input:hover[type="submit"],
  .comment-form fieldset[disabled] input:hover[type="submit"],
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .comment-form input:focus[type="submit"],
  .comment-form fieldset[disabled] input:focus[type="submit"],
  fieldset[disabled] .btn-primary.focus,
  fieldset[disabled] .comment-form input.focus[type="submit"],
  .comment-form fieldset[disabled] input.focus[type="submit"] {
    background-color: #e73787;
    border-color: #e42079; }
  .btn-primary .badge, .comment-form input[type="submit"] .badge {
    color: #e73787;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #398439;
      border-color: #255625; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #269abc;
      border-color: #1b6d85; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #985f0d; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #761c19; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #e73787;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #bb1661;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn, .comment-form .btn-group-lg > input[type="submit"], .search-form .btn-group-lg > .search-submit {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn, .comment-form .btn-group-sm > input[type="submit"], .search-form .btn-group-sm > .search-submit {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn, .comment-form .btn-group-xs > input[type="submit"], .search-form .btn-group-xs > .search-submit {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
     transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
     transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
     transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333333;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #e73787; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn, .comment-form .btn-group > input[type="submit"], .search-form .btn-group > .search-submit,
  .btn-group-vertical > .btn,
  .comment-form .btn-group-vertical > input[type="submit"],
  .search-form .btn-group-vertical > .search-submit {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .comment-form .btn-group > input:hover[type="submit"], .search-form .btn-group > .search-submit:hover, .btn-group > .btn:focus, .comment-form .btn-group > input:focus[type="submit"], .search-form .btn-group > .search-submit:focus, .btn-group > .btn:active, .comment-form .btn-group > input:active[type="submit"], .search-form .btn-group > .search-submit:active, .btn-group > .btn.active, .comment-form .btn-group > input.active[type="submit"], .search-form .btn-group > .active.search-submit,
    .btn-group-vertical > .btn:hover,
    .comment-form .btn-group-vertical > input:hover[type="submit"],
    .search-form .btn-group-vertical > .search-submit:hover,
    .btn-group-vertical > .btn:focus,
    .comment-form .btn-group-vertical > input:focus[type="submit"],
    .search-form .btn-group-vertical > .search-submit:focus,
    .btn-group-vertical > .btn:active,
    .comment-form .btn-group-vertical > input:active[type="submit"],
    .search-form .btn-group-vertical > .search-submit:active,
    .btn-group-vertical > .btn.active,
    .comment-form .btn-group-vertical > input.active[type="submit"],
    .search-form .btn-group-vertical > .active.search-submit {
      z-index: 2; }

.btn-group .btn + .btn, .btn-group .comment-form input[type="submit"] + .btn, .comment-form .btn-group input[type="submit"] + .btn, .btn-group .search-form .search-submit + .btn, .search-form .btn-group .search-submit + .btn, .btn-group .comment-form .btn + input[type="submit"], .comment-form .btn-group .btn + input[type="submit"], .btn-group .comment-form input[type="submit"] + input[type="submit"], .comment-form .btn-group input[type="submit"] + input[type="submit"], .btn-group .search-form .comment-form .search-submit + input[type="submit"], .comment-form .btn-group .search-form .search-submit + input[type="submit"], .search-form .btn-group .comment-form .search-submit + input[type="submit"], .comment-form .search-form .btn-group .search-submit + input[type="submit"], .btn-group .search-form .btn + .search-submit, .search-form .btn-group .btn + .search-submit, .btn-group .comment-form .search-form input[type="submit"] + .search-submit, .search-form .btn-group .comment-form input[type="submit"] + .search-submit, .comment-form .btn-group .search-form input[type="submit"] + .search-submit, .search-form .comment-form .btn-group input[type="submit"] + .search-submit, .btn-group .search-form .search-submit + .search-submit, .search-form .btn-group .search-submit + .search-submit,
.btn-group .btn + .btn-group,
.btn-group .comment-form input[type="submit"] + .btn-group,
.comment-form .btn-group input[type="submit"] + .btn-group,
.btn-group .search-form .search-submit + .btn-group,
.search-form .btn-group .search-submit + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .comment-form .btn-group + input[type="submit"],
.comment-form .btn-group .btn-group + input[type="submit"],
.btn-group .search-form .btn-group + .search-submit,
.search-form .btn-group .btn-group + .search-submit,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn, .btn-toolbar .comment-form input[type="submit"], .comment-form .btn-toolbar input[type="submit"], .btn-toolbar .search-form .search-submit, .search-form .btn-toolbar .search-submit,
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn, .comment-form .btn-toolbar > input[type="submit"], .search-form .btn-toolbar > .search-submit,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle), .comment-form .btn-group > input:not(:first-child):not(:last-child):not(.dropdown-toggle)[type="submit"], .search-form .btn-group > .search-submit:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child, .comment-form .btn-group > input:first-child[type="submit"], .search-form .btn-group > .search-submit:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle), .comment-form .btn-group > input:first-child:not(:last-child):not(.dropdown-toggle)[type="submit"], .search-form .btn-group > .search-submit:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child), .comment-form .btn-group > input:last-child:not(:first-child)[type="submit"], .search-form .btn-group > .search-submit:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, .comment-form .btn-group > .btn-group:not(:first-child):not(:last-child) > input[type="submit"], .search-form .btn-group > .btn-group:not(:first-child):not(:last-child) > .search-submit {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .comment-form .btn-group > .btn-group:first-child:not(:last-child) > input:last-child[type="submit"], .search-form .btn-group > .btn-group:first-child:not(:last-child) > .search-submit:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child, .comment-form .btn-group > .btn-group:last-child:not(:first-child) > input:first-child[type="submit"], .search-form .btn-group > .btn-group:last-child:not(:first-child) > .search-submit:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle, .comment-form .btn-group > input[type="submit"] + .dropdown-toggle, .search-form .btn-group > .search-submit + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle, .comment-form .btn-group-lg.btn-group > input[type="submit"] + .dropdown-toggle, .search-form .btn-group-lg.btn-group > .search-submit + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none; }

.btn .caret, .comment-form input[type="submit"] .caret, .search-form .search-submit .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret, .comment-form .btn-group-lg > input[type="submit"] .caret, .search-form .btn-group-lg > .search-submit .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret, .dropup .comment-form .btn-group-lg > input[type="submit"] .caret, .comment-form .dropup .btn-group-lg > input[type="submit"] .caret, .dropup .search-form .btn-group-lg > .search-submit .caret, .search-form .dropup .btn-group-lg > .search-submit .caret {
  border-width: 0 5px 5px; }


.btn-group-vertical > .btn,
.comment-form .btn-group-vertical > input[type="submit"],
.search-form .btn-group-vertical > .search-submit,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn,
.comment-form .btn-group-vertical > .btn-group > input[type="submit"],
.search-form .btn-group-vertical > .btn-group > .search-submit {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

.btn-group-vertical > .btn-group:after {
  clear: both; }


.btn-group-vertical > .btn-group > .btn,
.comment-form .btn-group-vertical > .btn-group > input[type="submit"],
.search-form .btn-group-vertical > .btn-group > .search-submit {
  float: none; }

.btn-group-vertical > .btn + .btn, .comment-form .btn-group-vertical > input[type="submit"] + .btn, .search-form .btn-group-vertical > .search-submit + .btn, .comment-form .btn-group-vertical > .btn + input[type="submit"], .comment-form .btn-group-vertical > input[type="submit"] + input[type="submit"], .search-form .comment-form .btn-group-vertical > .search-submit + input[type="submit"], .comment-form .search-form .btn-group-vertical > .search-submit + input[type="submit"], .search-form .btn-group-vertical > .btn + .search-submit, .comment-form .search-form .btn-group-vertical > input[type="submit"] + .search-submit, .search-form .comment-form .btn-group-vertical > input[type="submit"] + .search-submit, .search-form .btn-group-vertical > .search-submit + .search-submit,
.btn-group-vertical > .btn + .btn-group,
.comment-form .btn-group-vertical > input[type="submit"] + .btn-group,
.search-form .btn-group-vertical > .search-submit + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.comment-form .btn-group-vertical > .btn-group + input[type="submit"],
.search-form .btn-group-vertical > .btn-group + .search-submit,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child), .comment-form .btn-group-vertical > input:not(:first-child):not(:last-child)[type="submit"], .search-form .btn-group-vertical > .search-submit:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child), .comment-form .btn-group-vertical > input:first-child:not(:last-child)[type="submit"], .search-form .btn-group-vertical > .search-submit:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child), .comment-form .btn-group-vertical > input:last-child:not(:first-child)[type="submit"], .search-form .btn-group-vertical > .search-submit:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn, .comment-form .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > input[type="submit"], .search-form .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .search-submit {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .comment-form .btn-group-vertical > .btn-group:first-child:not(:last-child) > input:last-child[type="submit"], .search-form .btn-group-vertical > .btn-group:first-child:not(:last-child) > .search-submit:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child, .comment-form .btn-group-vertical > .btn-group:last-child:not(:first-child) > input:first-child[type="submit"], .search-form .btn-group-vertical > .btn-group:last-child:not(:first-child) > .search-submit:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn, .comment-form .btn-group-justified > input[type="submit"], .search-form .btn-group-justified > .search-submit,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn, .btn-group-justified > .btn-group .comment-form input[type="submit"], .comment-form .btn-group-justified > .btn-group input[type="submit"], .btn-group-justified > .btn-group .search-form .search-submit, .search-form .btn-group-justified > .btn-group .search-submit {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"], .comment-form [data-toggle="buttons"] > input[type="submit"] input[type="radio"], .search-form [data-toggle="buttons"] > .search-submit input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
.comment-form [data-toggle="buttons"] > input[type="submit"] input[type="checkbox"],
.search-form [data-toggle="buttons"] > .search-submit input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
.comment-form [data-toggle="buttons"] > .btn-group > input[type="submit"] input[type="radio"],
.search-form [data-toggle="buttons"] > .btn-group > .search-submit input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
.comment-form [data-toggle="buttons"] > .btn-group > input[type="submit"] input[type="checkbox"],
.search-form [data-toggle="buttons"] > .btn-group > .search-submit input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0; }
  .input-group .form-control, .input-group .comment-form input[type="text"], .comment-form .input-group input[type="text"],
  .input-group .comment-form input[type="email"], .comment-form .input-group input[type="email"],
  .input-group .comment-form input[type="url"], .comment-form .input-group input[type="url"],
  .input-group .comment-form textarea, .comment-form .input-group textarea, .input-group .search-form .search-field, .search-form .input-group .search-field {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group .comment-form input:focus[type="text"], .comment-form .input-group input:focus[type="text"],
    .input-group .comment-form input:focus[type="email"], .comment-form .input-group input:focus[type="email"],
    .input-group .comment-form input:focus[type="url"], .comment-form .input-group input:focus[type="url"],
    .input-group .comment-form textarea:focus, .comment-form .input-group textarea:focus, .input-group .search-form .search-field:focus, .search-form .input-group .search-field:focus {
      z-index: 3; }

.input-group-addon,
.input-group-btn, .input-group .form-control, .input-group .comment-form input[type="text"], .comment-form .input-group input[type="text"],
.input-group .comment-form input[type="email"], .comment-form .input-group input[type="email"],
.input-group .comment-form input[type="url"], .comment-form .input-group input[type="url"],
.input-group .comment-form textarea, .comment-form .input-group textarea, .input-group .search-form .search-field, .search-form .input-group .search-field {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child),
  .input-group .comment-form input:not(:first-child):not(:last-child)[type="text"],
  .comment-form .input-group input:not(:first-child):not(:last-child)[type="text"],
  .input-group .comment-form input:not(:first-child):not(:last-child)[type="email"],
  .comment-form .input-group input:not(:first-child):not(:last-child)[type="email"],
  .input-group .comment-form input:not(:first-child):not(:last-child)[type="url"],
  .comment-form .input-group input:not(:first-child):not(:last-child)[type="url"],
  .input-group .comment-form textarea:not(:first-child):not(:last-child),
  .comment-form .input-group textarea:not(:first-child):not(:last-child),
  .input-group .search-form .search-field:not(:first-child):not(:last-child),
  .search-form .input-group .search-field:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .input-group-addon.input-sm, .comment-form .input-group-sm > input.input-group-addon[type="text"],
  .comment-form .input-group-sm > input.input-group-addon[type="email"],
  .comment-form .input-group-sm > input.input-group-addon[type="url"],
  .comment-form .input-group-sm > textarea.input-group-addon, .search-form .input-group-sm > .input-group-addon.search-field,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn, .comment-form .input-group-sm > .input-group-btn > input.input-group-addon[type="submit"], .search-form .input-group-sm > .input-group-btn > .input-group-addon.search-submit {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px; }
  .input-group-addon.input-lg, .comment-form .input-group-lg > input.input-group-addon[type="text"],
  .comment-form .input-group-lg > input.input-group-addon[type="email"],
  .comment-form .input-group-lg > input.input-group-addon[type="url"],
  .comment-form .input-group-lg > textarea.input-group-addon, .search-form .input-group-lg > .input-group-addon.search-field,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn, .comment-form .input-group-lg > .input-group-btn > input.input-group-addon[type="submit"], .search-form .input-group-lg > .input-group-btn > .input-group-addon.search-submit {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child, .input-group .comment-form input:first-child[type="text"], .comment-form .input-group input:first-child[type="text"],
.input-group .comment-form input:first-child[type="email"], .comment-form .input-group input:first-child[type="email"],
.input-group .comment-form input:first-child[type="url"], .comment-form .input-group input:first-child[type="url"],
.input-group .comment-form textarea:first-child, .comment-form .input-group textarea:first-child, .input-group .search-form .search-field:first-child, .search-form .input-group .search-field:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.comment-form .input-group-btn:first-child > input[type="submit"],
.search-form .input-group-btn:first-child > .search-submit,
.input-group-btn:first-child > .btn-group > .btn,
.comment-form .input-group-btn:first-child > .btn-group > input[type="submit"],
.search-form .input-group-btn:first-child > .btn-group > .search-submit,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form .input-group-btn:last-child > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.search-form .input-group-btn:last-child > .search-submit:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
.comment-form .input-group-btn:last-child > .btn-group:not(:last-child) > input[type="submit"],
.search-form .input-group-btn:last-child > .btn-group:not(:last-child) > .search-submit {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child, .input-group .comment-form input:last-child[type="text"], .comment-form .input-group input:last-child[type="text"],
.input-group .comment-form input:last-child[type="email"], .comment-form .input-group input:last-child[type="email"],
.input-group .comment-form input:last-child[type="url"], .comment-form .input-group input:last-child[type="url"],
.input-group .comment-form textarea:last-child, .comment-form .input-group textarea:last-child, .input-group .search-form .search-field:last-child, .search-form .input-group .search-field:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.comment-form .input-group-btn:last-child > input[type="submit"],
.search-form .input-group-btn:last-child > .search-submit,
.input-group-btn:last-child > .btn-group > .btn,
.comment-form .input-group-btn:last-child > .btn-group > input[type="submit"],
.search-form .input-group-btn:last-child > .btn-group > .search-submit,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.comment-form .input-group-btn:first-child > input:not(:first-child)[type="submit"],
.search-form .input-group-btn:first-child > .search-submit:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.comment-form .input-group-btn:first-child > .btn-group:not(:first-child) > input[type="submit"],
.search-form .input-group-btn:first-child > .btn-group:not(:first-child) > .search-submit {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn, .comment-form .input-group-btn > input[type="submit"], .search-form .input-group-btn > .search-submit {
    position: relative; }
    .input-group-btn > .btn + .btn, .comment-form .input-group-btn > input[type="submit"] + .btn, .search-form .input-group-btn > .search-submit + .btn, .comment-form .input-group-btn > .btn + input[type="submit"], .comment-form .input-group-btn > input[type="submit"] + input[type="submit"], .search-form .comment-form .input-group-btn > .search-submit + input[type="submit"], .comment-form .search-form .input-group-btn > .search-submit + input[type="submit"], .search-form .input-group-btn > .btn + .search-submit, .comment-form .search-form .input-group-btn > input[type="submit"] + .search-submit, .search-form .comment-form .input-group-btn > input[type="submit"] + .search-submit, .search-form .input-group-btn > .search-submit + .search-submit {
      margin-left: -1px; }
    .input-group-btn > .btn:hover, .comment-form .input-group-btn > input:hover[type="submit"], .search-form .input-group-btn > .search-submit:hover, .input-group-btn > .btn:focus, .comment-form .input-group-btn > input:focus[type="submit"], .search-form .input-group-btn > .search-submit:focus, .input-group-btn > .btn:active, .comment-form .input-group-btn > input:active[type="submit"], .search-form .input-group-btn > .search-submit:active {
      z-index: 2; }
  
  .input-group-btn:first-child > .btn,
  .comment-form .input-group-btn:first-child > input[type="submit"],
  .search-form .input-group-btn:first-child > .search-submit,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  
  .input-group-btn:last-child > .btn,
  .comment-form .input-group-btn:last-child > input[type="submit"],
  .search-form .input-group-btn:last-child > .search-submit,
  .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .nav:before, .nav:after {
    content: " ";
    display: table; }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: #777777; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #e73787; }
  .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.428571429;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #555555;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent;
      cursor: default; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 4px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #e73787; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus,
    .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 768px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none; }
      .navbar-nav .open .dropdown-menu > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }
  @media (min-width: 768px) {
    .navbar-form .form-group, .navbar-form .comment-form p, .comment-form .navbar-form p, .navbar-form .search-form label, .search-form .navbar-form label {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .form-control, .navbar-form .comment-form input[type="text"], .comment-form .navbar-form input[type="text"],
    .navbar-form .comment-form input[type="email"], .comment-form .navbar-form input[type="email"],
    .navbar-form .comment-form input[type="url"], .comment-form .navbar-form input[type="url"],
    .navbar-form .comment-form textarea, .comment-form .navbar-form textarea, .navbar-form .search-form .search-field, .search-form .navbar-form .search-field {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .navbar-form .form-control-static {
      display: inline-block; }
    .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle; }
      .navbar-form .input-group .input-group-addon,
      .navbar-form .input-group .input-group-btn,
      .navbar-form .input-group .form-control,
      .navbar-form .input-group .comment-form input[type="text"],
      .comment-form .navbar-form .input-group input[type="text"],
      .navbar-form .input-group .comment-form input[type="email"],
      .comment-form .navbar-form .input-group input[type="email"],
      .navbar-form .input-group .comment-form input[type="url"],
      .comment-form .navbar-form .input-group input[type="url"],
      .navbar-form .input-group .comment-form textarea,
      .comment-form .navbar-form .input-group textarea,
      .navbar-form .input-group .search-form .search-field,
      .search-form .navbar-form .input-group .search-field {
        width: auto; }
    .navbar-form .input-group > .form-control, .navbar-form .comment-form .input-group > input[type="text"], .comment-form .navbar-form .input-group > input[type="text"],
    .navbar-form .comment-form .input-group > input[type="email"], .comment-form .navbar-form .input-group > input[type="email"],
    .navbar-form .comment-form .input-group > input[type="url"], .comment-form .navbar-form .input-group > input[type="url"],
    .navbar-form .comment-form .input-group > textarea, .comment-form .navbar-form .input-group > textarea, .navbar-form .search-form .input-group > .search-field, .search-form .navbar-form .input-group > .search-field {
      width: 100%; }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .radio label,
      .navbar-form .checkbox label {
        padding-left: 0; }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 767px) {
    .navbar-form .form-group, .navbar-form .comment-form p, .comment-form .navbar-form p, .navbar-form .search-form label, .search-form .navbar-form label {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child, .navbar-form .comment-form p:last-child, .comment-form .navbar-form p:last-child, .navbar-form .search-form label:last-child, .search-form .navbar-form label:last-child {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn, .comment-form .btn-group-sm > input.navbar-btn[type="submit"], .search-form .btn-group-sm > .navbar-btn.search-submit {
    margin-top: 10px;
    margin-bottom: 10px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn, .comment-form .btn-group-xs > input.navbar-btn[type="submit"], .search-form .btn-group-xs > .navbar-btn.search-submit {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
    .navbar-right ~ .navbar-right {
      margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }
  .navbar-default .navbar-brand {
    color: #777; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: #5e5d5d;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #e7e7e7; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555; }
  @media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #e7e7e7; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }
  .navbar-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090808; }
  .navbar-inverse .navbar-brand {
    color: #9d9d9d; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #9d9d9d; }
  .navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090808; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090808;
    color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090808; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090808; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #9d9d9d; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #090808; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  .navbar-inverse .navbar-link {
    color: #9d9d9d; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #9d9d9d; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      content: "/ ";
      padding: 0 5px;
      color: #ccc; }
  .breadcrumb > .active {
    color: #777777; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 6px 12px;
      line-height: 1.428571429;
      text-decoration: none;
      color: #e73787;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-left: -1px; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    z-index: 2;
    color: #bb1661;
    background-color: #eeeeee;
    border-color: #ddd; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #e73787;
    border-color: #e73787;
    cursor: default; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #777777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center; }
  .pager:before, .pager:after {
    content: " ";
    display: table; }
  .pager:after {
    clear: both; }
  .pager li {
    display: inline; }
    .pager li > a,
    .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 15px; }
    .pager li > a:hover,
    .pager li > a:focus {
      text-decoration: none;
      background-color: #eeeeee; }
  .pager .next > a,
  .pager .next > span {
    float: right; }
  .pager .previous > a,
  .pager .previous > span {
    float: left; }
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: #777777;
    background-color: #fff;
    cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label, .comment-form input[type="submit"] .label, .search-form .search-submit .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #777777; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #5e5e5e; }

.label-primary {
  background-color: #e73787; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #d2196d; }

.label-success {
  background-color: #5cb85c; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge, .comment-form input[type="submit"] .badge, .search-form .search-submit .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge, .comment-form .btn-group-xs > input[type="submit"] .badge, .search-form .btn-group-xs > .search-submit .badge,
  .btn-group-xs > .btn .badge,
  .comment-form .btn-group-xs > input[type="submit"] .badge,
  .search-form .btn-group-xs > .search-submit .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #e73787;
    background-color: #fff; }
  .list-group-item > .badge {
    float: right; }
  .list-group-item > .badge + .badge {
    margin-right: 5px; }
  .nav-pills > li > a > .badge {
    margin-left: 3px; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee; }
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit; }
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200; }
  .jumbotron > hr {
    border-top-color: #d5d5d5; }
  .container .jumbotron,
  .container-fluid .jumbotron {
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px; }
  .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    .jumbotron {
      padding-top: 48px;
      padding-bottom: 48px; }
      .container .jumbotron,
      .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px; }
      .jumbotron h1,
      .jumbotron .h1 {
        font-size: 63px; } }

.thumbnail, .wp-caption {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out; }
  .thumbnail > img, .wp-caption > img,
  .thumbnail a > img,
  .wp-caption a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
  .thumbnail .caption, .wp-caption .caption {
    padding: 9px;
    color: #333333; }

a.thumbnail:hover, a.wp-caption:hover,
a.thumbnail:focus,
a.wp-caption:focus,
a.thumbnail.active,
a.active.wp-caption {
  border-color: #e73787; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #e73787;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }
  .progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }
  .progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }
  .progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }
  .progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }
  .media-object.img-thumbnail {
    max-width: none; }

.media-right,
.media > .pull-right {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }

a.list-group-item,
button.list-group-item {
  color: #555; }
  a.list-group-item .list-group-item-heading,
  button.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:hover, a.list-group-item:focus,
  button.list-group-item:hover,
  button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed; }
  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit; }
  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #777777; }

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #e73787;
  border-color: #e73787; }
  .list-group-item.active .list-group-item-heading,
  .list-group-item.active .list-group-item-heading > small,
  .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  .list-group-item.active:hover .list-group-item-heading > small,
  .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  .list-group-item.active:focus .list-group-item-heading > small,
  .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit; }
  .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: #fdedf4; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:hover, a.list-group-item-success:focus,
  button.list-group-item-success:hover,
  button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  button.list-group-item-success.active,
  button.list-group-item-success.active:hover,
  button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:hover, a.list-group-item-info:focus,
  button.list-group-item-info:hover,
  button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  button.list-group-item-info.active,
  button.list-group-item-info.active:hover,
  button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:hover, a.list-group-item-warning:focus,
  button.list-group-item-warning:hover,
  button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:hover,
  button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:hover, a.list-group-item-danger:focus,
  button.list-group-item-danger:hover,
  button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:hover,
  button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
  .panel > .list-group .list-group-item,
  .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  .panel > .list-group:first-child .list-group-item:first-child,
  .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
  .panel > .list-group:last-child .list-group-item:last-child,
  .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
      border-top-left-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
      border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }
  .panel > .table-bordered > thead > tr > th:first-child,
  .panel > .table-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .panel > .table-bordered > thead > tr > th:last-child,
  .panel > .table-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .panel > .table-bordered > thead > tr:first-child > td,
  .panel > .table-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 20px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px; }
    .panel-group .panel + .panel {
      margin-top: 5px; }
  .panel-group .panel-heading {
    border-bottom: 0; }
    .panel-group .panel-heading + .panel-collapse > .panel-body,
    .panel-group .panel-heading + .panel-collapse > .list-group {
      border-top: 1px solid #ddd; }
  .panel-group .panel-footer {
    border-top: 0; }
    .panel-group .panel-footer + .panel-collapse .panel-body {
      border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }
  .panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #ddd; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #333333; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #e73787; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #e73787;
    border-color: #e73787; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #e73787; }
    .panel-primary > .panel-heading .badge {
      color: #e73787;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #e73787; }

.panel-success {
  border-color: #d6e9c6; }
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d6e9c6; }
    .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
  .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header:before, .modal-header:after {
    content: " ";
    display: table; }
  .modal-header:after {
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.428571429; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn, .modal-footer .comment-form input[type="submit"] + .btn, .comment-form .modal-footer input[type="submit"] + .btn, .modal-footer .search-form .search-submit + .btn, .search-form .modal-footer .search-submit + .btn, .modal-footer .comment-form .btn + input[type="submit"], .comment-form .modal-footer .btn + input[type="submit"], .modal-footer .comment-form input[type="submit"] + input[type="submit"], .comment-form .modal-footer input[type="submit"] + input[type="submit"], .modal-footer .search-form .comment-form .search-submit + input[type="submit"], .comment-form .modal-footer .search-form .search-submit + input[type="submit"], .search-form .modal-footer .comment-form .search-submit + input[type="submit"], .comment-form .search-form .modal-footer .search-submit + input[type="submit"], .modal-footer .search-form .btn + .search-submit, .search-form .modal-footer .btn + .search-submit, .modal-footer .comment-form .search-form input[type="submit"] + .search-submit, .search-form .modal-footer .comment-form input[type="submit"] + .search-submit, .comment-form .modal-footer .search-form input[type="submit"] + .search-submit, .search-form .comment-form .modal-footer input[type="submit"] + .search-submit, .modal-footer .search-form .search-submit + .search-submit, .search-form .modal-footer .search-submit + .search-submit {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn, .modal-footer .btn-group .comment-form input[type="submit"] + .btn, .comment-form .modal-footer .btn-group input[type="submit"] + .btn, .modal-footer .btn-group .search-form .search-submit + .btn, .search-form .modal-footer .btn-group .search-submit + .btn, .modal-footer .btn-group .comment-form .btn + input[type="submit"], .comment-form .modal-footer .btn-group .btn + input[type="submit"], .modal-footer .btn-group .comment-form input[type="submit"] + input[type="submit"], .comment-form .modal-footer .btn-group input[type="submit"] + input[type="submit"], .modal-footer .btn-group .search-form .comment-form .search-submit + input[type="submit"], .comment-form .modal-footer .btn-group .search-form .search-submit + input[type="submit"], .search-form .modal-footer .btn-group .comment-form .search-submit + input[type="submit"], .comment-form .search-form .modal-footer .btn-group .search-submit + input[type="submit"], .modal-footer .btn-group .search-form .btn + .search-submit, .search-form .modal-footer .btn-group .btn + .search-submit, .modal-footer .btn-group .comment-form .search-form input[type="submit"] + .search-submit, .search-form .modal-footer .btn-group .comment-form input[type="submit"] + .search-submit, .comment-form .modal-footer .btn-group .search-form input[type="submit"] + .search-submit, .search-form .comment-form .modal-footer .btn-group input[type="submit"] + .search-submit, .modal-footer .btn-group .search-form .search-submit + .search-submit, .search-form .modal-footer .btn-group .search-submit + .search-submit {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0); }
  .tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev:before {
    content: '\2039'; }
  .carousel-control .icon-next:before {
    content: '\203a'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn, .carousel-caption .comment-form input[type="submit"], .comment-form .carousel-caption input[type="submit"], .carousel-caption .search-form .search-submit, .search-form .carousel-caption .search-submit {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.2857142857em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.8571428571em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  -o-animation: fa-spin 2s infinite linear;
     animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  -o-animation: fa-spin 1s infinite steps(8);
     animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@-o-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    -o-transform: rotate(359deg);
       transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    -o-transform: rotate(359deg);
       transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
     transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
     transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
     transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
     transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -o-transform: scale(1, -1);
     transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

.fa-audio-description:before {
  content: ""; }

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

.fa-assistive-listening-systems:before {
  content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

.fa-glide-g:before {
  content: ""; }

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-first-order:before {
  content: ""; }

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.fa-handshake-o:before {
  content: ""; }

.fa-envelope-open:before {
  content: ""; }

.fa-envelope-open-o:before {
  content: ""; }

.fa-linode:before {
  content: ""; }

.fa-address-book:before {
  content: ""; }

.fa-address-book-o:before {
  content: ""; }

.fa-vcard:before,
.fa-address-card:before {
  content: ""; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: ""; }

.fa-user-circle:before {
  content: ""; }

.fa-user-circle-o:before {
  content: ""; }

.fa-user-o:before {
  content: ""; }

.fa-id-badge:before {
  content: ""; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: ""; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: ""; }

.fa-quora:before {
  content: ""; }

.fa-free-code-camp:before {
  content: ""; }

.fa-telegram:before {
  content: ""; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: ""; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: ""; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: ""; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: ""; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: ""; }

.fa-shower:before {
  content: ""; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: ""; }

.fa-podcast:before {
  content: ""; }

.fa-window-maximize:before {
  content: ""; }

.fa-window-minimize:before {
  content: ""; }

.fa-window-restore:before {
  content: ""; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: ""; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: ""; }

.fa-bandcamp:before {
  content: ""; }

.fa-grav:before {
  content: ""; }

.fa-etsy:before {
  content: ""; }

.fa-imdb:before {
  content: ""; }

.fa-ravelry:before {
  content: ""; }

.fa-eercast:before {
  content: ""; }

.fa-microchip:before {
  content: ""; }

.fa-snowflake-o:before {
  content: ""; }

.fa-superpowers:before {
  content: ""; }

.fa-wpexplorer:before {
  content: ""; }

.fa-meetup:before {
  content: ""; }

.sr-only, .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .screen-reader-text:active, .sr-only-focusable:focus, .screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, filter;
       -o-transition-property: opacity, filter;
          transition-property: opacity, filter;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 21px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
         -o-transition-property: -o-transform;
            transition-property: transform;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -9px; }
  .hamburger-inner::after {
    bottom: -9px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
       -o-transition: -o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
         -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
            transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
            transform: translate3d(0, -9px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
       -o-transition: -o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
         -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
            transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
            transform: translate3d(0, -9px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
       -o-transition: -o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
         -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
            transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
            transform: translate3d(0, -9px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
       -o-transition: -o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
         -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
            transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
            transform: translate3d(0, -9px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
       -o-transition: top 0.1s 0.1s ease, -o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
       -o-transition: bottom 0.1s 0.1s ease, -o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
       -o-transition: top 0.1s ease, -o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
          transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
       -o-transition: bottom 0.1s ease, -o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
          transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
       -o-transition: top 0.1s 0.1s ease, -o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
       -o-transition: bottom 0.1s 0.1s ease, -o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
       -o-transition: top 0.1s ease, -o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
          transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
       -o-transition: bottom 0.1s ease, -o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
          transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
       -o-transition-property: none;
          transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
       -o-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -18px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
         -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
            transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
          transform: translate3d(0, -9px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
         -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
            transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
       -o-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -18px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
         -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
            transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -9px, 0) rotate(45deg);
          transform: translate3d(0, -9px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
         -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
            transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  -webkit-transition-duration: 0.275s;
       -o-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
       -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 9px;
    -webkit-transition: opacity 0.125s 0.275s ease;
         -o-transition: opacity 0.125s 0.275s ease;
            transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 18px;
    -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         -o-transition: -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(135deg);
          transform: translate3d(0, 9px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -18px, 0) rotate(-270deg);
            transform: translate3d(0, -18px, 0) rotate(-270deg);
    -webkit-transition-delay: 0.075s;
         -o-transition-delay: 0.075s;
            transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  -webkit-transition-duration: 0.275s;
       -o-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
       -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 9px;
    -webkit-transition: opacity 0.125s 0.275s ease;
         -o-transition: opacity 0.125s 0.275s ease;
            transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 18px;
    -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         -o-transition: -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(-135deg);
          transform: translate3d(0, 9px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -18px, 0) rotate(270deg);
            transform: translate3d(0, -18px, 0) rotate(270deg);
    -webkit-transition-delay: 0.075s;
         -o-transition-delay: 0.075s;
            transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    -webkit-transition: background-color 0.125s 0.175s ease-in;
         -o-transition: background-color 0.125s 0.175s ease-in;
            transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      -webkit-transition: -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
           -o-transition: -o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
              transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 9px;
      right: 0;
      -webkit-transition: -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
           -o-transition: -o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
              transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition-timing-function: ease-out;
         -o-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
              transform: translate3d(80px, 80px, 0) rotate(45deg);
      -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
           -o-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
              transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
              transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
           -o-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
              transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    -webkit-transition: background-color 0.125s 0.175s ease-in;
         -o-transition: background-color 0.125s 0.175s ease-in;
            transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      -webkit-transition: -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
           -o-transition: -o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
              transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 9px;
      right: 0;
      -webkit-transition: -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
           -o-transition: -o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
              transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition-timing-function: ease-out;
         -o-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
              transform: translate3d(80px, -80px, 0) rotate(-45deg);
      -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
           -o-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
              transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
              transform: translate3d(-80px, -80px, 0) rotate(45deg);
      -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
           -o-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
              transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider .hamburger-inner::before {
    top: 9px;
    -webkit-transition-property: -webkit-transform, opacity;
         -o-transition-property: -o-transform, opacity;
            transition-property: transform, opacity;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 18px; }

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
          transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
            transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -18px, 0) rotate(-90deg);
            transform: translate3d(0, -18px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 9px;
    -webkit-transition-property: -webkit-transform, opacity;
         -o-transition-property: -o-transform, opacity;
            transition-property: transform, opacity;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 18px; }

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(-45deg);
          transform: translate3d(0, 9px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    -webkit-transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
            transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -18px, 0) rotate(90deg);
            transform: translate3d(0, -18px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  -webkit-transition: background-color 0s 0.13s linear;
       -o-transition: background-color 0s 0.13s linear;
          transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 9px;
    -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 18px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
            transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 9px, 0) rotate(-45deg);
            transform: translate3d(0, 9px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -18px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
         -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
            transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
          transform: translate3d(0, -9px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
         -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
            transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  -webkit-transition: -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
       -o-transition: -o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
          transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: top 0.075s 0.075s ease-in, -o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: bottom 0.075s 0.075s ease-in, -o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent;
  -webkit-transition: -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
       -o-transition: -o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
          transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: top 0.075s 0.1s ease-out, -o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: bottom 0.075s 0.1s ease-out, -o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  -webkit-transition: -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
       -o-transition: -o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
          transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: top 0.075s 0.075s ease-in, -o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: bottom 0.075s 0.075s ease-in, -o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: transparent;
  -webkit-transition: -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
       -o-transition: -o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
          transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: top 0.075s 0.1s ease-out, -o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: bottom 0.075s 0.1s ease-out, -o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
       -o-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
         -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
            transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: bottom 0.1s 0.25s ease-in, -o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
       -o-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
         -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
            transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: bottom 0.1s ease-out, -o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
       -o-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
         -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
            transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: bottom 0.1s 0.25s ease-in, -o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
       -o-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
         -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
            transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: bottom 0.1s ease-out, -o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
       -o-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
         -o-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
            transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition: bottom 0.075s 0.12s ease, -o-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
         -o-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
            transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition: bottom 0.075s ease, -o-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    -webkit-transition-duration: 0s;
         -o-transition-duration: 0s;
            transition-duration: 0s;
    -webkit-transition-delay: 0.1s;
         -o-transition-delay: 0.1s;
            transition-delay: 0.1s;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    -webkit-transition-property: top, opacity;
         -o-transition-property: top, opacity;
            transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    -webkit-transition-property: bottom, -webkit-transform;
         -o-transition-property: bottom, -o-transform;
            transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
       -o-transform: rotate(765deg);
          transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    -webkit-transition-duration: 0s;
         -o-transition-duration: 0s;
            transition-duration: 0s;
    -webkit-transition-delay: 0.1s;
         -o-transition-delay: 0.1s;
            transition-delay: 0.1s;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    -webkit-transition-property: top, opacity;
         -o-transition-property: top, opacity;
            transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    -webkit-transition-property: bottom, -webkit-transform;
         -o-transition-property: bottom, -o-transform;
            transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
       -o-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg); }

/** ---------------- **/
/** 1. GLOBAL LAYOUT **/
/** ---------------- **/
html {
  overflow-x: hidden; }
  html.menu-active {
    overflow: hidden; }
    html.menu-active body {
      height: 100vh; }

main.main {
  padding-left: 0px;
  padding-right: 0px; }
  main.main.no-signup {
    margin-bottom: 200px; }
    @media (max-width: 768px) {
      main.main.no-signup {
        margin-bottom: 100px; } }

body {
  overflow: hidden !important;
  position: relative; }

body:not(.home) {
  background: #fff; }

@media (min-width: 768px) {
  main.main .container {
    width: 730px; } }

@media (min-width: 992px) {
  main.main .container {
    width: 940px; } }

@media (min-width: 1200px) {
  main.main .container {
    width: 1050px; } }

@media (min-width: 1440px) {
  main.main .container {
    width: 1050px; } }

@media (min-width: 1500px) {
  main.main .container {
    width: 1170px; } }

@media (min-width: 1200px) {
  body .container.large {
    width: 1150px; } }

@media (min-width: 1350px) {
  body .container.large {
    width: 1250px; } }

@media (min-width: 1441px) {
  body .container.large {
    width: 1300px; } }

@media (min-width: 1600px) {
  body .container.large {
    width: 1500px; } }

@media (min-width: 1350px) {
  body .container.medium {
    width: 1200px; } }

@media (min-width: 1441px) {
  body .container.medium {
    width: 1200px; } }

@media (min-width: 1600px) {
  body .container.medium {
    width: 1300px; } }

/** ------------- **/
/** 2. TYPOGRAPHY **/
/** ------------- **/
p, h1, h2 {
  margin: 0px; }

h1, h2 {
  font-family: "Sanuk-Fat", serif;
  -webkit-transform: scale(1, 1.08);
       -o-transform: scale(1, 1.08);
          transform: scale(1, 1.08);
  text-transform: uppercase;
  font-size: 50px;
  color: #02d0d8;
  letter-spacing: -1px; }

p {
  font-family: "chaparral-pro-display", serif;
  font-weight: bold;
  font-style: italic;
  -webkit-transform: scale(1, 0.98);
       -o-transform: scale(1, 0.98);
          transform: scale(1, 0.98);
  -webkit-text-stroke: 0.2px #2a154c;
  color: #2a154c;
  line-height: 26px;
  font-size: 20px; }
  p.white {
    color: #fff;
    -webkit-text-stroke: 0.2px transparent; }
  p::-moz-selection {
    background: #e73787;
    /* WebKit/Blink Browsers */
    color: #fff; }
  p::selection {
    background: #e73787;
    /* WebKit/Blink Browsers */
    color: #fff; }
  p::-moz-selection {
    background: #e73787;
    /* Gecko Browsers */
    color: #fff; }

a {
  -o-transition: all .15s ease-in-out;
     transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -webkit-transition: all .15s ease-in-out; }
  a:hover {
    color: #f9a300;
    text-decoration: none; }
  a:focus {
    outline: none; }

.nav > li > a:focus {
  background-color: transparent; }

.line {
  height: 2px;
  width: 60px;
  position: relative;
  background: transparent;
  padding: 10px 0px;
  margin-bottom: 10px; }
  .line:after {
    content: "................";
    letter-spacing: 4px;
    /* Use letter-spacing to increase space between dots*/
    position: absolute;
    bottom: 0px;
    color: #fff; }
  .line.pink:after {
    color: #e73787; }

.dont-break-out {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto; }

.error404 .error-wrapper .missing-message {
  font-family: "Cartwheel", sans-serif;
  color: #e73787;
  font-size: 40px;
  text-align: center; }
  @media (max-width: 991px) {
    .error404 .error-wrapper .missing-message {
      font-size: 25px; } }

.error404 .error-wrapper .search-form-wrapper label {
  display: block;
  margin-top: 20px; }
  .error404 .error-wrapper .search-form-wrapper label input {
    padding: 25px 20px;
    font-family: "gotham-light-webfont", sans-serif;
    font-style: normal;
    font-size: 20px;
    -webkit-text-stroke: 0;
    border: 1px solid #adadad;
    border-radius: 10px;
    -o-transition: all .6s ease-in-out;
       transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out; }
    .error404 .error-wrapper .search-form-wrapper label input:focus {
      background-position: 0 0;
      color: #444;
      outline: none;
      box-shadow: none;
      border: 1px solid #e73787; }

@media (max-width: 991px) {
  .error404 .error-wrapper {
    padding: 20px; } }

.page-template-template-shopclosed .closed-wrapper {
  margin-bottom: 40px; }
  .page-template-template-shopclosed .closed-wrapper .closed-image {
    text-align: right; }
    @media (max-width: 991px) {
      .page-template-template-shopclosed .closed-wrapper .closed-image {
        text-align: center;
        margin-bottom: 10px; } }
    .page-template-template-shopclosed .closed-wrapper .closed-image img {
      display: inline-block; }
      @media (max-width: 991px) {
        .page-template-template-shopclosed .closed-wrapper .closed-image img {
          max-width: 220px;
          margin: 0 auto; } }
    .page-template-template-shopclosed .closed-wrapper .closed-image > .inner {
      display: table;
      width: 100%;
      height: 100%; }
      .page-template-template-shopclosed .closed-wrapper .closed-image > .inner > .inner {
        display: table-cell;
        vertical-align: middle;
        height: 100%; }
  .page-template-template-shopclosed .closed-wrapper .closed-message-wrapper {
    text-align: left;
    position: relative; }
    @media (max-width: 991px) {
      .page-template-template-shopclosed .closed-wrapper .closed-message-wrapper {
        font-size: 30px;
        text-align: center; } }
    .page-template-template-shopclosed .closed-wrapper .closed-message-wrapper > .inner {
      display: table;
      width: 100%;
      height: 100%; }
      .page-template-template-shopclosed .closed-wrapper .closed-message-wrapper > .inner > .inner {
        display: table-cell;
        vertical-align: middle;
        height: 100%; }
        .page-template-template-shopclosed .closed-wrapper .closed-message-wrapper > .inner > .inner .closed-message {
          font-family: "Cartwheel", sans-serif;
          color: #e73787;
          font-size: 33px; }
          .page-template-template-shopclosed .closed-wrapper .closed-message-wrapper > .inner > .inner .closed-message .message-2 {
            margin-top: 10px;
            font-style: italic;
            font-size: 16px;
            font-family: "gotham-book-webfont", sans-serif;
            font-weight: bold;
            color: #be106c; }
          @media (max-width: 767px) {
            .page-template-template-shopclosed .closed-wrapper .closed-message-wrapper > .inner > .inner .closed-message {
              max-width: 400px;
              margin: 0 auto; } }
  .page-template-template-shopclosed .closed-wrapper .home-link-wrapper {
    padding-top: 20px;
    padding-left: 0; }
    .page-template-template-shopclosed .closed-wrapper .home-link-wrapper a {
      display: inline-block;
      margin-top: 0; }
  @media (max-width: 991px) {
    .page-template-template-shopclosed .closed-wrapper {
      padding: 20px; } }

.search h3 {
  font-family: "Sanuk-Fat", serif;
  color: #2a154c; }

.search .search-page-wrapper .search-page-title {
  margin-bottom: 40px;
  font-size: 40px; }
  @media (max-width: 768px) {
    .search .search-page-wrapper .search-page-title {
      font-size: 30px; } }

.search .search-page-wrapper article {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px dotted #02d0d8; }
  .search .search-page-wrapper article header {
    position: initial; }
    .search .search-page-wrapper article header .entry-title {
      margin-bottom: 5px;
      font-size: 30px;
      font-family: "Cartwheel", sans-serif;
      letter-spacing: normal; }
      @media (max-width: 768px) {
        .search .search-page-wrapper article header .entry-title {
          font-size: 25px; } }
      .search .search-page-wrapper article header .entry-title a:focus, .search .search-page-wrapper article header .entry-title a:active {
        outline: none;
        text-decoration: none; }
  @media (max-width: 768px) {
    .search .search-page-wrapper article .entry-summary p {
      font-size: 18px; } }
  .search .search-page-wrapper article:last-child {
    border: none; }

.page-content {
  background-color: #fff;
  position: relative;
  z-index: 2; }
  .page-content .container {
    background-color: #fff;
    padding: 65px;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
    margin-bottom: 10px; }
  @media (max-width: 991px) {
    .page-content {
      padding-left: 15px;
      padding-right: 15px; }
      .page-content .container {
        padding: 65px 30px; } }
  @media (max-width: 768px) {
    .page-content {
      padding-left: 15px;
      padding-right: 15px; }
      .page-content .container {
        padding: 55px 35px; } }
  @media (max-width: 580px) {
    .page-content {
      padding-left: 15px;
      padding-right: 15px; }
      .page-content .container {
        padding: 15px; } }

@-webkit-keyframes bob {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); } }

@-o-keyframes bob {
  0%, 100% {
    -o-transform: translateY(0);
       transform: translateY(0); }
  50% {
    -o-transform: translateY(-10px);
       transform: translateY(-10px); } }

@keyframes bob {
  0%, 100% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-10px);
         -o-transform: translateY(-10px);
            transform: translateY(-10px); } }

.floating {
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat; }
  .floating.large {
    width: 70px;
    height: 70px; }
    @media (max-width: 991px) {
      .floating.large {
        width: 60px;
        height: 60px; } }
    @media (max-width: 768px) {
      .floating.large {
        width: 10vw;
        height: 10vw; } }
  .floating.medium {
    width: 60px;
    height: 60px; }
    @media (max-width: 991px) {
      .floating.medium {
        width: 50px;
        height: 50px; } }
    @media (max-width: 768px) {
      .floating.medium {
        width: 8vw;
        height: 8vw; } }
  .floating.small {
    width: 50px;
    height: 50px; }
    @media (max-width: 991px) {
      .floating.small {
        width: 40px;
        height: 40px; } }
    @media (max-width: 768px) {
      .floating.small {
        width: 6vw;
        height: 6vw;
        min-width: 30px;
        min-height: 30px; } }
  .floating.red.triangle {
    background-image: url("../images/animate/red-tri.png"); }
  .floating.red.star {
    background-image: url("../images/animate/red-star.png"); }
  .floating.yellow.triangle {
    background-image: url("../images/animate/yellow-tri.png"); }
  .floating.yellow.square {
    background-image: url("../images/animate/yellow-square.png"); }
  .floating.blue.star {
    background-image: url("../images/animate/blue-star.png"); }
  .floating.white.star {
    background-image: url("../images/animate/white-star.png"); }
  .floating.white.square {
    background-image: url("../images/animate/white-square.png"); }
  .floating.grey.square {
    background-image: url("../images/animate/grey-square.png"); }
  .floating.speed-1 {
    -webkit-animation: bob 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
         -o-animation: bob 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
            animation: bob 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  .floating.speed-2 {
    -webkit-animation: bob 2.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
         -o-animation: bob 2.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
            animation: bob 2.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  .floating.speed-3 {
    -webkit-animation: bob 1.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
         -o-animation: bob 1.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
            animation: bob 1.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  .floating.speed-4 {
    -webkit-animation: bob 2.8s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
         -o-animation: bob 2.8s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
            animation: bob 2.8s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955); }

.wow {
  visibility: hidden; }

.login h1 a {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  background-image: url("../images/logo/kath-and-kim-logo.png");
  height: 124px; }

.div_link {
  cursor: pointer; }

.title-custom h1 {
  text-shadow: 0px 0px 0px #f9a300, 0px 0px 0px #f9a300, -1px 0px 0px #f9a300, 0px 0px 0px #f9a300;
  font-size: 40px;
  font-style: normal;
  text-align: left;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  text-shadow: 0px;
  color: #fff;
  -webkit-font-smoothing: antialiased; }
  .title-custom h1 span {
    display: table;
    padding: 7px 10px;
    padding-right: 25px;
    padding-bottom: 16px;
    letter-spacing: 1px; }
    .title-custom h1 span:nth-child(1) {
      background-image: url("../images/placeholders/menu-1-pink.png");
      background-size: 100% 100%; }
    .title-custom h1 span:nth-child(2) {
      background-image: url("../images/placeholders/menu-2-pink.png");
      background-size: 100% 100%;
      margin-left: 6px;
      margin-top: -20px; }
  @media (max-width: 991px) {
    .title-custom h1 {
      font-size: 25px; } }

.grecaptcha-badge {
  display: none !important; }

.btn_main, .search-form .search-submit {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 8px 25px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0px;
  font-size: 16px;
  font-family: "Cartwheel", sans-serif;
  margin-top: 15px;
  font-weight: bold;
  font-weight: normal;
  -o-transition: all .15s ease-in-out;
     transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -webkit-transition: all .15s ease-in-out; }
  .btn_main:focus, .btn_main:active, .search-form .search-submit:focus, .search-form .search-submit:active {
    outline: none; }
  .btn_main:hover, .search-form .search-submit:hover {
    background: #f9a300;
    border-color: #f9a300; }
  .btn_main.pink, .search-form .search-submit.pink {
    color: #e73787;
    border-color: #e73787; }
    .btn_main.pink:hover, .search-form .search-submit.pink:hover {
      background: #f9a300;
      border-color: #f9a300;
      color: #fff; }
  .btn_main.pink-full, .search-form .search-submit.pink-full {
    color: #fff;
    border-color: #e73787;
    background: #e73787; }
    .btn_main.pink-full:hover, .search-form .search-submit.pink-full:hover {
      background: #f9a300;
      border-color: #f9a300;
      color: #fff; }
  .btn_main.blue-full, .search-form .search-submit.blue-full {
    color: #fff;
    border-color: #02d0d8;
    background: #02d0d8; }
    .btn_main.blue-full:hover, .search-form .search-submit.blue-full:hover {
      background: #f9a300;
      border-color: #f9a300;
      color: #fff; }
  .btn_main.purple-full, .search-form .search-submit.purple-full {
    color: #fff;
    border-color: #2a154c;
    background: #2a154c; }
    .btn_main.purple-full:hover, .search-form .search-submit.purple-full:hover {
      background: #f9a300;
      border-color: #f9a300;
      color: #fff; }
  .btn_main.yellow-white, .search-form .search-submit.yellow-white {
    color: #ffd400;
    background: #fff;
    border: 2px solid #2a154c; }
    .btn_main.yellow-white:hover, .search-form .search-submit.yellow-white:hover {
      background: #ffd400;
      border-color: #2a154c;
      color: #fff; }

.search-form .search-submit {
  background-color: #2a154c; }

.button.add_to_cart_button, .button.single_add_to_cart_button {
  min-width: 155px; }
  .button.add_to_cart_button.added:after, .button.single_add_to_cart_button.added:after {
    display: none; }
  .button.add_to_cart_button.added_to_cart:after, .button.single_add_to_cart_button.added_to_cart:after {
    display: inline-block;
    font-family: WooCommerce;
    content: '\e017';
    margin-left: .53em;
    vertical-align: bottom; }

.comment-list {
  padding-left: 0;
  list-style: none; }

.comment-list ol {
  list-style: none; }

.search-form label {
  font-weight: normal; }

/* iCheck plugin Square skin
----------------------------------- */
.icheckbox_square,
.iradio_square {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/square.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square {
  background-position: 0 0; }

.icheckbox_square.hover {
  background-position: -24px 0; }

.icheckbox_square.checked {
  background-position: -48px 0; }

.icheckbox_square.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square.checked.disabled {
  background-position: -96px 0; }

.iradio_square {
  background-position: -120px 0; }

.iradio_square.hover {
  background-position: -144px 0; }

.iradio_square.checked {
  background-position: -168px 0; }

.iradio_square.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square,
  .iradio_square {
    background-image: url(../images/icons/square@2x.png);
    background-size: 240px 24px; } }

/* red */
.icheckbox_square-red,
.iradio_square-red {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/red.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-red {
  background-position: 0 0; }

.icheckbox_square-red.hover {
  background-position: -24px 0; }

.icheckbox_square-red.checked {
  background-position: -48px 0; }

.icheckbox_square-red.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-red.checked.disabled {
  background-position: -96px 0; }

.iradio_square-red {
  background-position: -120px 0; }

.iradio_square-red.hover {
  background-position: -144px 0; }

.iradio_square-red.checked {
  background-position: -168px 0; }

.iradio_square-red.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-red.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-red,
  .iradio_square-red {
    background-image: url(../images/icons/red@2x.png);
    background-size: 240px 24px; } }

/* green */
.icheckbox_square-green,
.iradio_square-green {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/green.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-green {
  background-position: 0 0; }

.icheckbox_square-green.hover {
  background-position: -24px 0; }

.icheckbox_square-green.checked {
  background-position: -48px 0; }

.icheckbox_square-green.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-green.checked.disabled {
  background-position: -96px 0; }

.iradio_square-green {
  background-position: -120px 0; }

.iradio_square-green.hover {
  background-position: -144px 0; }

.iradio_square-green.checked {
  background-position: -168px 0; }

.iradio_square-green.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-green.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-green,
  .iradio_square-green {
    background-image: url(../images/icons/green@2x.png);
    background-size: 240px 24px; } }

/* blue */
.icheckbox_square-blue,
.iradio_square-blue {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/blue.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-blue {
  background-position: 0 0; }

.icheckbox_square-blue.hover {
  background-position: -24px 0; }

.icheckbox_square-blue.checked {
  background-position: -48px 0; }

.icheckbox_square-blue.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-blue.checked.disabled {
  background-position: -96px 0; }

.iradio_square-blue {
  background-position: -120px 0; }

.iradio_square-blue.hover {
  background-position: -144px 0; }

.iradio_square-blue.checked {
  background-position: -168px 0; }

.iradio_square-blue.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-blue.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-blue,
  .iradio_square-blue {
    background-image: url(../images/icons/blue@2x.png);
    background-size: 240px 24px; } }

/* aero */
.icheckbox_square-aero,
.iradio_square-aero {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/aero.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-aero {
  background-position: 0 0; }

.icheckbox_square-aero.hover {
  background-position: -24px 0; }

.icheckbox_square-aero.checked {
  background-position: -48px 0; }

.icheckbox_square-aero.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-aero.checked.disabled {
  background-position: -96px 0; }

.iradio_square-aero {
  background-position: -120px 0; }

.iradio_square-aero.hover {
  background-position: -144px 0; }

.iradio_square-aero.checked {
  background-position: -168px 0; }

.iradio_square-aero.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-aero.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-aero,
  .iradio_square-aero {
    background-image: url(../images/icons/aero@2x.png);
    background-size: 240px 24px; } }

/* grey */
.icheckbox_square-grey,
.iradio_square-grey {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/grey.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-grey {
  background-position: 0 0; }

.icheckbox_square-grey.hover {
  background-position: -24px 0; }

.icheckbox_square-grey.checked {
  background-position: -48px 0; }

.icheckbox_square-grey.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-grey.checked.disabled {
  background-position: -96px 0; }

.iradio_square-grey {
  background-position: -120px 0; }

.iradio_square-grey.hover {
  background-position: -144px 0; }

.iradio_square-grey.checked {
  background-position: -168px 0; }

.iradio_square-grey.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-grey.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-grey,
  .iradio_square-grey {
    background-image: url(../images/icons/grey@2x.png);
    background-size: 240px 24px; } }

/* orange */
.icheckbox_square-orange,
.iradio_square-orange {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/orange.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-orange {
  background-position: 0 0; }

.icheckbox_square-orange.hover {
  background-position: -24px 0; }

.icheckbox_square-orange.checked {
  background-position: -48px 0; }

.icheckbox_square-orange.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-orange.checked.disabled {
  background-position: -96px 0; }

.iradio_square-orange {
  background-position: -120px 0; }

.iradio_square-orange.hover {
  background-position: -144px 0; }

.iradio_square-orange.checked {
  background-position: -168px 0; }

.iradio_square-orange.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-orange.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-orange,
  .iradio_square-orange {
    background-image: url(../images/icons/orange@2x.png);
    background-size: 240px 24px; } }

/* yellow */
.icheckbox_square-yellow,
.iradio_square-yellow {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/yellow.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-yellow {
  background-position: 0 0; }

.icheckbox_square-yellow.hover {
  background-position: -24px 0; }

.icheckbox_square-yellow.checked {
  background-position: -48px 0; }

.icheckbox_square-yellow.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-yellow.checked.disabled {
  background-position: -96px 0; }

.iradio_square-yellow {
  background-position: -120px 0; }

.iradio_square-yellow.hover {
  background-position: -144px 0; }

.iradio_square-yellow.checked {
  background-position: -168px 0; }

.iradio_square-yellow.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-yellow.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-yellow,
  .iradio_square-yellow {
    background-image: url(../images/icons/yellow@2x.png);
    background-size: 240px 24px; } }

/* pink */
.icheckbox_square-pink,
.iradio_square-pink {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/pink.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-pink {
  background-position: 0 0; }

.icheckbox_square-pink.hover {
  background-position: -24px 0; }

.icheckbox_square-pink.checked {
  background-position: -48px 0; }

.icheckbox_square-pink.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-pink.checked.disabled {
  background-position: -96px 0; }

.iradio_square-pink {
  background-position: -120px 0; }

.iradio_square-pink.hover {
  background-position: -144px 0; }

.iradio_square-pink.checked {
  background-position: -168px 0; }

.iradio_square-pink.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-pink.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-pink,
  .iradio_square-pink {
    background-image: url(../images/icons/pink@2x.png);
    background-size: 240px 24px; } }

/* purple */
.icheckbox_square-purple,
.iradio_square-purple {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/purple.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-purple {
  background-position: 0 0; }

.icheckbox_square-purple.hover {
  background-position: -24px 0; }

.icheckbox_square-purple.checked {
  background-position: -48px 0; }

.icheckbox_square-purple.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-purple.checked.disabled {
  background-position: -96px 0; }

.iradio_square-purple {
  background-position: -120px 0; }

.iradio_square-purple.hover {
  background-position: -144px 0; }

.iradio_square-purple.checked {
  background-position: -168px 0; }

.iradio_square-purple.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-purple.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-purple,
  .iradio_square-purple {
    background-image: url(../images/icons/purple@2x.png);
    background-size: 240px 24px; } }

/* iCheck plugin Square skin, pink
----------------------------------- */
.icheckbox_square-pink,
.iradio_square-pink {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icons/pink.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-pink {
  background-position: 0 0; }

.icheckbox_square-pink.hover {
  background-position: -24px 0; }

.icheckbox_square-pink.checked {
  background-position: -48px 0; }

.icheckbox_square-pink.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-pink.checked.disabled {
  background-position: -96px 0; }

.iradio_square-pink {
  background-position: -120px 0; }

.iradio_square-pink.hover {
  background-position: -144px 0; }

.iradio_square-pink.checked {
  background-position: -168px 0; }

.iradio_square-pink.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-pink.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 120dpi) {
  .icheckbox_square-pink,
  .iradio_square-pink {
    background-image: url(../images/icons/pink@2x.png);
    background-size: 240px 24px; } }

.main {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 768px) {
    .main {
      float: left;
      width: 100%; } }
  .sidebar-primary .main {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px; }
    @media (min-width: 768px) {
      .sidebar-primary .main {
        float: left;
        width: 66.6666666667%; } }

.sidebar {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 768px) {
    .sidebar {
      float: left;
      width: 33.3333333333%; } }

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto; }

.aligncenter {
  display: block;
  margin: 10px auto;
  height: auto; }

.alignleft,
.alignright {
  margin-bottom: 10px;
  height: auto; }

@media (min-width: 768px) {
  .alignleft {
    float: left;
    margin-right: 10px; }
  .alignright {
    float: right;
    margin-left: 10px; } }

.wp-caption-text {
  padding: 9px; }

.simform {
  position: relative;
  margin: 0 auto;
  padding: .5em 0;
  max-width: 860px;
  width: 100%;
  text-align: left;
  font-size: 2rem;
  height: 72px; }

.simform .submit {
  display: none; }

/* Question list style */
.simform ol {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  -webkit-transition: height 0.4s;
  -o-transition: height 0.4s;
     transition: height 0.4s; }

.simform ol:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.35em; }

.questions li {
  z-index: 10;
  position: relative;
  visibility: hidden;
  height: 0;
  -webkit-transition: visibility 0s 0.4s, height 0s 0.4s;
  -o-transition: visibility 0s 0.4s, height 0s 0.4s;
     transition: visibility 0s 0.4s, height 0s 0.4s; }

.questions li.current,
.no-js .questions li {
  visibility: visible;
  height: auto;
  -webkit-transition: none;
  -o-transition: none;
     transition: none; }

/* Labels */
.questions li > span {
  display: block;
  overflow: hidden; }

.questions li > span label {
  display: block;
  -webkit-transition: -webkit-transform 0.4s;
  -o-transition: -o-transform 0.4s;
     transition: transform 0.4s;
  -webkit-transform: translateY(-100%);
  -o-transform: translateY(-100%);
     transform: translateY(-100%); }

.questions li.current > span label,
.no-js .questions li > span label {
  -webkit-transition: none;
  -o-transition: none;
     transition: none;
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
     transform: translateY(0); }

.show-next .questions li.current > span label {
  -webkit-animation: moveUpFromDown 0.4s both;
  -o-animation: moveUpFromDown 0.4s both;
     animation: moveUpFromDown 0.4s both; }

@-webkit-keyframes moveUpFromDown {
  from {
    -webkit-transform: translateY(100%); }
  to {
    -webkit-transform: translateY(0); } }

@-o-keyframes moveUpFromDown {
  from {
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
       transform: translateY(100%); }
  to {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); } }

@keyframes moveUpFromDown {
  from {
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
       transform: translateY(100%); }
  to {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0); } }

/* Input field */
.questions input {
  font-family: "Sanuk-Fat", serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  display: block;
  padding: 0.5em;
  width: 100%;
  font-size: 1em;
  line-height: 1;
  opacity: 0;
  border: 1px solid #d8d7d7;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
     transition: opacity 0.3s;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 12px; }

.questions .current input,
.no-js .questions input {
  opacity: 1; }

.questions .current ::-webkit-input-placeholder {
  font-family: "Cartwheel", sans-serif;
  color: #2a154c;
  font-size: 1em;
  line-height: 1.5;
  text-transform: uppercase; }

.questions .current :-moz-placeholder {
  font-family: "Cartwheel", sans-serif;
  color: #2a154c;
  font-size: 1em;
  line-height: 1.5;
  text-transform: uppercase; }

/* firefox 19+ */
.questions .current :-ms-input-placeholder {
  font-family: "Cartwheel", sans-serif;
  color: #2a154c;
  font-size: 1em;
  line-height: 1.5;
  text-transform: uppercase; }

/* ie */
.questions input:focus,
.simform button:focus {
  outline: none; }

.questions input:focus {
  color: #02d0d8 !important;
  border: 1px solid #e73787; }

/* Progress bar */
.simform .progress {
  width: 0%;
  height: 0.15em;
  margin-bottom: 0;
  -webkit-transition: width 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out;
     transition: width 0.4s ease-in-out; }

/* START ADAM OVERRIDES */
.simform .progress {
  background: #c3eaff;
  opacity: 0; }

/* END ADAM OVERRIDES */
.simform .progress::before {
  position: absolute;
  top: auto;
  width: 100%;
  height: inherit;
  background: rgba(0, 0, 0, 0.05);
  content: ''; }

/* Number indicator */
.simform .number {
  position: absolute;
  right: 0;
  overflow: hidden;
  margin: 5px -15px 0px 0px;
  width: 40px;
  font-weight: 700;
  font-size: 14px;
  color: #2a154c;
  font-family: "Cartwheel", sans-serif; }

#subscribeFormWidget.simform .number {
  color: #02d0d8; }

.simform .number:after {
  position: absolute;
  left: 50%;
  content: '/';
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
     transform: translateX(-50%);
  color: #2a154c; }

#subscribeFormWidget.simform .number:after {
  color: #02d0d8; }

.simform .loading-message {
  width: 100%;
  background-image: url(../images/loading.gif);
  height: 50px;
  display: block;
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center center; }

#subscribeFormFooterLoading.loading-message {
  background-image: url(../images/loading-white.gif); }

.simform .number span {
  float: right;
  width: 40%;
  text-align: center; }

.simform .number .number-current {
  float: left; }

.simform .number-next {
  position: absolute;
  left: 0; }

.simform.show-next .number-current {
  -webkit-transition: -webkit-transform 0.4s;
  -o-transition: -o-transform 0.4s;
     transition: transform 0.4s;
  -webkit-transform: translateY(-100%);
  -o-transform: translateY(-100%);
     transform: translateY(-100%); }

.simform.show-next .number-next {
  -webkit-animation: moveUpFromDown 0.4s both;
  -o-animation: moveUpFromDown 0.4s both;
     animation: moveUpFromDown 0.4s both; }

/* Error and final message */
.simform .error-message,
.simform .final-message,
.simform .loading-message {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
     transition: opacity 0.4s; }

.simform .error-message {
  padding: 0.1em 3.5em 0px 4px;
  width: 100%;
  font-size: .5em;
  font-family: lato;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  color: #FF6A6A; }

.final-message {
  top: 34px;
  left: 0;
  padding: .5em;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #e73787 !important;
  text-transform: uppercase !important;
  padding: 0px;
  text-align: left;
  top: 4px; }

.error-message.show,
.final-message.show,
.loading-message.show {
  visibility: visible;
  opacity: 1; }

.final-message.show, .loading-message.show {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
     transition-delay: 0.5s; }

.final-message.show h4 {
  font-size: 18px;
  font-family: "Sanuk-Fat", serif; }

.loading-message.hide {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s, visibility 0s 0.3s;
     transition: opacity 0.3s, visibility 0s 0.3s; }

/* Final hiding of form / showing message */
.simform-inner.hide {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s, visibility 0s 0.3s;
     transition: opacity 0.3s, visibility 0s 0.3s; }

/* No JS Fallback */
.no-js .simform {
  font-size: 1.75em; }

.no-js .questions li {
  padding: 0 0 2em; }

.no-js .simform .submit {
  display: block;
  float: right;
  padding: 10px 20px;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.4); }

.no-js .simform .controls {
  display: none; }

/* Remove IE clear cross */
input[type=text]::-ms-clear {
  display: none; }

/* Adjust form for smaller screens */
.simform button, .simform input, .simform select, .simform textarea {
  font-family: inherit;
  font-size: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0; }

#subscribeFormFooter .questions input {
  background-color: #fff;
  color: #2a154c;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-family: "Cartwheel", sans-serif;
  border-radius: 50px;
  padding: 7px 25px 11px 25px; }
  #subscribeFormFooter .questions input:focus {
    color: #2a154c !important; }

#subscribeFormFooter .controls .progress {
  background: #02d0d8; }

/* Next question button */
.next {
  position: absolute;
  right: 0;
  bottom: 1em;
  /* padding-bottom of form plus progress bar height */
  display: block;
  padding: 0;
  width: 2em;
  height: 2em;
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  opacity: 0;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -o-transition: -o-transform 0.3s, opacity 0.3s;
     transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateX(-20%);
  -o-transform: translateX(-20%);
     transform: translateX(-20%);
  pointer-events: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .next:hover {
    color: rgba(0, 0, 0, 0.5); }
  .next:after {
    color: #77B73F;
    position: absolute;
    top: 0;
    left: 1px;
    width: 100%;
    height: 100%;
    content: "\f105" !important;
    text-transform: none;
    font-weight: bold;
    font-style: normal;
    font-variant: normal;
    font-family: 'FontAwesome';
    line-height: 1.6;
    speak: none;
    font-size: 26px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .next.show {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
       transform: translateX(0);
    pointer-events: auto;
    right: auto;
    left: calc(90% + 5px);
    background-color: #fed800;
    right: 10px;
    bottom: 3px;
    border-radius: 10px; }
    .next.show:after {
      color: #02d0d8; }

.controls {
  width: 90%;
  position: absolute; }

.questions {
  width: 90%; }

.simform-inner {
  max-width: 90%; }

.simform {
  margin-bottom: 30px; }
  .simform .number {
    right: 15px; }
  .simform .error-message {
    margin-left: -2px;
    color: #e73787;
    font-family: "Cartwheel", sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: -4px; }

#subscribeFormFooter .g-recaptcha, #subscribeFormWidget .g-recaptcha {
  width: 100%;
  left: 0;
  margin: 0 auto;
  margin-left: 5%; }

#subscribeFormFooter .controls .next.submit, #subscribeFormWidget .controls .next.submit {
  text-align: center;
  left: 0;
  width: 100%;
  background-color: #e73787;
  border-radius: 5px;
  height: 100%;
  -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out; }
  #subscribeFormFooter .controls .next.submit:after, #subscribeFormWidget .controls .next.submit:after {
    content: "Submit" !important;
    color: white;
    font-family: "Sanuk-Fat", serif;
    text-transform: uppercase;
    top: calc(50% - 15px);
    height: auto;
    font-size: 17px; }
  #subscribeFormFooter .controls .next.submit:hover, #subscribeFormWidget .controls .next.submit:hover {
    background-color: crimson; }

/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
     transition: opacity 0.2s;
  box-shadow: none; }

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1; }

.pswp__button:active {
  outline: none;
  opacity: 0.9; }

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../images/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (-o-min-device-pixel-ratio: 35/32), (min-resolution: 105dpi), (-o-min-device-pixel-ratio: 11/10), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
      Arrow buttons hit area
      (icon is added to :before pseudo-element)
  */
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/* item styles */
.item-image {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  display: block;
  background-size: cover;
  background-position: center center; }
  .item-image.meme {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat; }

.item-image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0; }

.item-content {
  padding-top: 6px;
  border: 1px solid #F1F1F1;
  background: #FAFAFA; }

.item-text {
  font-family: 'GothamNarrow-Light';
  position: relative;
  overflow: hidden;
  height: 27px;
  color: #2a154c;
  cursor: pointer; }

.original-image {
  position: fixed;
  z-index: -9999;
  pointer-events: none;
  opacity: 0;
  height: initial;
  max-width: initial; }

.meme_full_wrapper {
  position: relative;
  padding: 10px; }
  .meme_full_wrapper .overlay {
    padding: 10px;
    opacity: 0;
    position: absolute;
    height: calc(100% - 40px);
    width: calc(100% - 20px);
    z-index: 1;
    left: 10px;
    top: 10px;
    -o-transition: all .3s ease-in-out;
       transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.5); }
    .meme_full_wrapper .overlay > div {
      display: table;
      width: 100%;
      height: 100%;
      text-align: center; }
      .meme_full_wrapper .overlay > div > div {
        display: table-cell;
        vertical-align: middle; }
        .meme_full_wrapper .overlay > div > div a {
          display: inline-block;
          width: 40px;
          height: 40px;
          color: #fff;
          font-size: 20px;
          line-height: 40px;
          cursor: pointer; }
          .meme_full_wrapper .overlay > div > div a:hover {
            color: #e73787; }
  .meme_full_wrapper:hover .overlay {
    opacity: 1; }
  .meme_full_wrapper:hover .item-image {
    pointer-events: none; }

.meme_tile_wrapper {
  padding: 2px; }

.meme_full_wrapper {
  padding: 10px; }

.meme_tile, .meme_full {
  height: 112px;
  background-color: #fff;
  background-size: contain;
  background-position: 50% 50%;
  border: 1px solid #e6e6e6;
  background-repeat: no-repeat; }

footer .meme_tile {
  background-color: #d2337b;
  border: 1px solid #ff88be; }

/*
<div class="ppVideoWrapper">
...
    <div class="pp-video"><!-- --></div>
    <div class="controls">
        <div>
            <div class="button">
            <button class="pause"><!-- --></button>
            <button class="play"><!-- --></button>
        </div>
        <div><div class="progressBar"><div><!-- --></div></div></div>
        <div class="timer">00:00 | 00:00</div>
        <div class="button">
            <button class="mute"><!-- --></button>
            <button class="unmute"><!-- --></button>
        </div>
    </div>
    </div>
</div>
*/
/* http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
.ppVideoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  overflow: hidden;
  background: url("../images/player/loading.jpg") center center no-repeat;
  border-radius: 25px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
  margin-bottom: 20px; }
  @media (max-width: 991px) {
    .ppVideoWrapper {
      background-size: 122%; } }
  @media (max-width: 600px) {
    .ppVideoWrapper {
      padding-bottom: 75%; } }

.ppVideoWrapper video,
.ppVideoWrapper iframe {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: calc(100% - 55px); }

body.fullscreen .ppVideoWrapper {
  position: fixed;
  z-index: 50000;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 0;
  height: 100%;
  overflow: none; }

.ppVideoWrapper .controls {
  position: absolute;
  display: table;
  table-layout: fixed;
  height: 55px;
  width: 100%;
  bottom: 0;
  background-color: #fed800;
  padding-right: 10px;
  padding-left: 10px;
  background-image: url(../images/backgrounds/original-footer-bottom.jpg);
  background-position: center 40%; }
  @media (max-width: 991px) {
    .ppVideoWrapper .controls {
      padding: 0; } }

/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  .ppVideoWrapper .controls {
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transition: transform 500ms;
    -webkit-transition: -webkit-transform 500ms;
    -o-transition: -o-transform 500ms;
    -ms-transition: -ms-transform 500ms; } }

.ppVideoWrapper .controls > div {
  display: table-row; }

.ppVideoWrapper .controls > div > * {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 35px; }

.ppVideoWrapper .controls > div > .button {
  width: 32px; }

.ppVideoWrapper .controls .button > span {
  display: inline-block;
  width: 50px;
  float: left;
  cursor: pointer; }
  .ppVideoWrapper .controls .button > span .fa {
    color: #fff;
    -o-transition: all .3s ease-in-out;
       transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out; }
  .ppVideoWrapper .controls .button > span:hover .fa {
    color: #e73787; }
  .ppVideoWrapper .controls .button > span span.pause {
    display: none; }
  .ppVideoWrapper .controls .button > span.play-pause {
    height: 50px;
    border: 1px solid #02d0d8;
    line-height: 50px;
    padding-left: 2px;
    font-size: 20px;
    border-radius: 100%;
    background-color: #02d0d8; }
  .ppVideoWrapper .controls .button > span.prev-vid, .ppVideoWrapper .controls .button > span.next-vid {
    margin-top: 10px; }
    .ppVideoWrapper .controls .button > span.prev-vid span, .ppVideoWrapper .controls .button > span.next-vid span {
      display: inline-block;
      width: 30px;
      height: 30px;
      line-height: 28px;
      border: 1px solid white;
      border-radius: 100%;
      background-color: #02d0d8; }
  .ppVideoWrapper .controls .button > span.prev-vid span {
    padding-right: 2px; }
  .ppVideoWrapper .controls .button > span.next-vid span {
    padding-left: 2px; }

.ppVideoWrapper .controls .button.custom {
  width: 150px;
  padding: 10px 0px; }

.ppVideoWrapper .controls button {
  width: 16px;
  height: 16px;
  border: 0;
  cursor: pointer;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0;
  background-image: url("../images/player/controls.png");
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 128px 32px;
  -webkit-background-size: 128px 32px; }

.ppVideoWrapper .controls button.unmute {
  background-position: -16px 0px;
  display: none; }

.ppVideoWrapper .controls button.mute {
  background-position: -16px -16px; }

.ppVideoWrapper .controls .quality {
  font-size: 0.917em;
  color: white;
  width: 90px; }

.ppVideoWrapper .controls .quality select {
  border-radius: 5px 5px 0 0;
  border: 0;
  padding: 2px 5px;
  background-color: #555555;
  text-shadow: -1px -1px rgba(0, 0, 0, 0.7);
  color: white;
  width: auto;
  height: auto;
  margin: 0; }

.ppVideoWrapper .controls button.enterFullscreen {
  background-position: -32px 0px; }

.ppVideoWrapper .controls button.leaveFullscreen {
  background-position: -32px -16px;
  display: none; }

.ppVideoWrapper .controls .timer {
  font-size: 0.917em;
  color: white;
  width: 120px; }

.ppVideoWrapper .controls .progressBar {
  display: block;
  width: 100%;
  height: 3px;
  background: #333333 url("../images/player/progress-bg.png") 0 0 repeat-x;
  cursor: col-resize; }

:root .ppVideoWrapper .controls .progressBar {
  border-radius: 3px;
  background-image: linear-gradient(top, #1e1e1e 3%, #333333 52%);
  background-image: -o-linear-gradient(top, #1e1e1e 3%, #333333 52%);
  background-image: -webkit-linear-gradient(top, #1e1e1e 3%, #333333 52%);
  background-image: -ms-linear-gradient(top, #1e1e1e 3%, #333333 52%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.03, #1e1e1e), color-stop(0.52, #333333)); }

.ppVideoWrapper .controls .progressBar > div {
  pointer-events: none;
  height: 100%;
  width: 0%;
  background: #ffffff url("../images/player/progress-bg.png") 0 -16px repeat-x; }

:root .ppVideoWrapper .controls .progressBar > div {
  border-radius: 3px;
  background-image: linear-gradient(top, white 3%, #aaaaaa 52%);
  background-image: -o-linear-gradient(top, white 3%, #aaaaaa 52%);
  background-image: -webkit-linear-gradient(top, white 3%, #aaaaaa 52%);
  background-image: -ms-linear-gradient(top, white 3%, #aaaaaa 52%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.03, white), color-stop(0.52, #aaaaaa)); }

:-webkit-full-screen .ppVideoWrapper {
  width: 100%; }

:-moz-full-screen .ppVideoWrapper {
  display: none; }

.kk_shopbox_wrapper {
  background-color: #fff;
  margin-bottom: 0; }
  .kk_shopbox_wrapper .container {
    position: relative; }
  .kk_shopbox_wrapper .kk_shopbox {
    padding-top: 40px;
    padding-bottom: 70px;
    position: relative;
    margin-bottom: 0;
    z-index: 2; }
    @media (max-width: 767px) {
      .kk_shopbox_wrapper .kk_shopbox {
        padding-bottom: 50px; } }
    .kk_shopbox_wrapper .kk_shopbox > .container {
      background-image: url("../images/backgrounds/retro-blue-bg.jpg");
      padding: 65px;
      border-radius: 0px 0px 25px 25px;
      position: relative;
      box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.24); }
      @media (max-width: 767px) {
        .kk_shopbox_wrapper .kk_shopbox > .container {
          padding: 40px; } }
      .kk_shopbox_wrapper .kk_shopbox > .container:before {
        content: '';
        display: block;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        background-color: rgba(57, 193, 205, 0.8);
        pointer-events: none;
        border-radius: 0px 0px 25px 25px; }
      .kk_shopbox_wrapper .kk_shopbox > .container p {
        text-shadow: none;
        -webkit-text-stroke-width: 0px;
        color: #fff;
        -webkit-font-smoothing: antialiased; }
      .kk_shopbox_wrapper .kk_shopbox > .container .floating-cluster {
        position: absolute;
        top: -65px;
        width: 100%;
        height: 100%;
        pointer-events: none; }
        .kk_shopbox_wrapper .kk_shopbox > .container .floating-cluster .floating:first-child {
          right: 50px;
          top: -50px; }
        .kk_shopbox_wrapper .kk_shopbox > .container .floating-cluster .floating:nth-child(2) {
          right: -60px;
          top: 50px; }
        .kk_shopbox_wrapper .kk_shopbox > .container .floating-cluster .floating:nth-child(3) {
          right: 180px;
          top: 130px; }
      .kk_shopbox_wrapper .kk_shopbox > .container h2.heading_1 {
        font-size: 40px;
        margin-bottom: 15px;
        color: #fff;
        -webkit-font-smoothing: antialiased;
        width: 50%; }
        @media (max-width: 991px) {
          .kk_shopbox_wrapper .kk_shopbox > .container h2.heading_1 {
            font-size: 35px;
            text-shadow: -2px -2px 2px #e73787, 2px -2px 2px #e73787, -3px 2px 2px #e73787, 2px 2px 2px #e73787; } }
        @media (max-width: 767px) {
          .kk_shopbox_wrapper .kk_shopbox > .container h2.heading_1 {
            font-size: 35px;
            width: 60%;
            text-shadow: -1px -1px 1px #e73787, 1px -1px 1px #e73787, -2px 1px 1px #e73787, 1px 1px 1px #e73787; } }
        @media (max-width: 500px) {
          .kk_shopbox_wrapper .kk_shopbox > .container h2.heading_1 {
            width: 100%;
            font-size: 40px; } }
        @media (max-width: 320px) {
          .kk_shopbox_wrapper .kk_shopbox > .container h2.heading_1 {
            font-size: 32px; } }
      .kk_shopbox_wrapper .kk_shopbox > .container span.disclaim {
        color: #fed800;
        font-family: "Cartwheel", sans-serif;
        font-size: 20px; }
        @media (max-width: 370px) {
          .kk_shopbox_wrapper .kk_shopbox > .container span.disclaim {
            top: -10px;
            position: relative; } }
      @media (max-width: 500px) {
        .kk_shopbox_wrapper .kk_shopbox > .container {
          padding-bottom: 230px; } }
    .kk_shopbox_wrapper .kk_shopbox:before {
      content: '';
      display: block;
      height: 100%;
      position: absolute;
      z-index: 0;
      left: 0;
      top: 10%;
      right: 0;
      background: #e73787;
      -webkit-transform: skewY(-6.5deg);
           -o-transform: skewY(-6.5deg);
              transform: skewY(-6.5deg);
      -webkit-transform-origin: 100%;
           -o-transform-origin: 100%;
              transform-origin: 100%; }
  .kk_shopbox_wrapper .kk-shopping-image {
    position: absolute;
    bottom: 0;
    right: 25px;
    height: 109%;
    bottom: 0px; }
    @media (max-width: 767px) {
      .kk_shopbox_wrapper .kk-shopping-image {
        height: auto;
        width: 180px;
        right: 10px; } }
    @media (max-width: 500px) {
      .kk_shopbox_wrapper .kk-shopping-image {
        left: 0;
        right: 0;
        margin: 0 auto; } }

.kaths_to_do_wrapper {
  height: 420px;
  width: 300px;
  position: fixed;
  bottom: -100%;
  left: 25%;
  z-index: 300;
  -webkit-transform: rotate(4deg);
       -o-transform: rotate(4deg);
          transform: rotate(4deg);
  text-align: right; }
  .kaths_to_do_wrapper .close_list {
    font-family: "Sanuk-Fat", serif;
    color: #f9a300;
    text-shadow: 1px 1px 1px #000;
    cursor: pointer;
    opacity: 0; }
  .kaths_to_do_wrapper .kaths_to_do_list {
    background-image: url("../../assets/images/kaths-to-do-list.png");
    width: 100%;
    height: 100%;
    background-size: cover;
    padding-top: 25%;
    padding-left: 15px;
    padding-right: 15px; }
    .kaths_to_do_wrapper .kaths_to_do_list ul {
      padding-left: 0px;
      text-align: left; }
      .kaths_to_do_wrapper .kaths_to_do_list ul li {
        list-style: none;
        font-family: "Cartwheel", sans-serif;
        font-size: 20px;
        position: relative;
        padding-left: 20px; }
        .kaths_to_do_wrapper .kaths_to_do_list ul li:before {
          content: '';
          background-image: url("../images/icons/checkbox.png");
          background-size: 100%;
          height: 15px;
          width: 15px;
          position: absolute;
          left: 0px;
          top: 8px; }

.show-timing ul li {
  display: none; }
  .show-timing ul li.active {
    display: inline-block; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 33px; }

@media (max-width: 991px) {
  header.banner, .top_banner_wrapper {
    padding-top: 20px; } }

@media (max-width: 768px) {
  header.banner, .top_banner_wrapper {
    padding-left: 15px;
    padding-right: 15px; } }

header {
  position: absolute;
  z-index: 9999;
  width: 100%; }
  @media (max-height: 800px) and (min-width: 1024px) {
    header {
      padding-top: 15px; } }
  header .search_bar {
    margin-top: 10px; }
    header .search_bar .basket_info {
      display: inline-block;
      float: right;
      max-width: 100%;
      position: relative; }
      header .search_bar .basket_info img {
        max-width: 35px;
        z-index: 1;
        position: relative;
        margin-left: 5px;
        margin-top: 2px; }
      header .search_bar .basket_info .basket_count {
        min-width: 22px;
        width: 22px;
        height: 22px;
        background-color: #59042a;
        color: #fed802;
        font-family: "Cartwheel", sans-serif;
        border-radius: 100%;
        text-align: center;
        line-height: 22px;
        padding-left: 0px;
        font-size: 13px;
        display: block;
        font-weight: bold;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        top: -1px;
        z-index: 1;
        right: 3px; }
    @media (max-height: 800px) and (min-width: 1024px) {
      header .search_bar {
        display: none; } }
    header .search_bar > .col-md-12 {
      padding-right: 0; }
    header .search_bar form {
      float: right; }
    header .search_bar .wrapper {
      background-color: #fff;
      padding: 5px 15px;
      border-radius: 25px;
      font-style: normal;
      font-size: 12px;
      color: #bbbbbb; }
      header .search_bar .wrapper input[type="text"] {
        position: relative;
        font-family: "Cartwheel", sans-serif;
        border: none;
        -webkit-text-stroke-width: 0px;
        color: #383739 !important;
        width: 90%;
        line-height: 100%; }
        header .search_bar .wrapper input[type="text"]:focus {
          outline: none;
          -webkit-text-stroke-width: 0px; }
      header .search_bar .wrapper input::-webkit-input-placeholder {
        color: #bbbbbb !important; }
      header .search_bar .wrapper input:-ms-input-placeholder {
        color: #bbbbbb !important; }
      header .search_bar .wrapper:before {
        font-family: 'FontAwesome';
        position: relative;
        left: -5px;
        content: "\f002";
        -webkit-text-stroke-width: 0px;
        color: #bbbbbb !important; }
  header .main_menu .logo-wrapper {
    padding-left: 0px; }
    @media (max-width: 768px) {
      header .main_menu .logo-wrapper {
        padding-left: 15px; } }
    header .main_menu .logo-wrapper a {
      display: inline-block;
      position: relative; }
      header .main_menu .logo-wrapper a #site_logo {
        padding: 18px 0;
        max-width: 250px;
        filter: drop-shadow(1px 1px 1px #711b44); }
        @media (max-width: 991px) {
          header .main_menu .logo-wrapper a #site_logo {
            padding: 0;
            max-width: 200px; } }
        @media (max-width: 320px) {
          header .main_menu .logo-wrapper a #site_logo {
            max-width: 180px; } }
      header .main_menu .logo-wrapper a:after {
        content: '';
        display: block;
        background-image: url(../images/logo/logo-overlay.png);
        position: absolute;
        top: 11px;
        left: -15px;
        width: 113%;
        height: 113%;
        padding: 18px 0;
        z-index: -1;
        background-size: contain;
        background-repeat: no-repeat; }
        @media (max-width: 991px) {
          header .main_menu .logo-wrapper a:after {
            padding: 0;
            width: 110%;
            height: 129%;
            left: -9px;
            top: -4px; } }
  header .main_menu .menu-wrapper {
    padding-right: 0; }
  header .main_menu .header-menu-outer {
    display: table;
    height: 100%;
    float: right; }
    @media (max-width: 768px) {
      header .main_menu .header-menu-outer {
        margin-right: 15px;
        position: relative; } }
  header .main_menu .header_social_wrapper {
    display: table;
    height: 100%;
    float: left; }
    header .main_menu .header_social_wrapper .header_social {
      list-style: none;
      display: table-cell;
      vertical-align: middle;
      padding-left: 0;
      /* FOR NEW HAMB */ }
      header .main_menu .header_social_wrapper .header_social li:last-of-type {
        margin-right: 50px; }
      header .main_menu .header_social_wrapper .header_social li {
        display: inline-block;
        vertical-align: middle; }
        header .main_menu .header_social_wrapper .header_social li a {
          display: block;
          font-size: 35px;
          color: #fff;
          padding: 0px 20px;
          text-shadow: 2px 2px 2px rgba(56, 56, 56, 0.24);
          -o-transition: all .3s ease-in-out;
             transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -webkit-transition: all .3s ease-in-out; }
          header .main_menu .header_social_wrapper .header_social li a img {
            float: left; }
          header .main_menu .header_social_wrapper .header_social li a:hover {
            color: #00eaff; }
          @media (max-width: 991px) {
            header .main_menu .header_social_wrapper .header_social li a {
              font-size: 20px;
              padding: 0px 10px; } }
  header .main_menu .cart_total_wrapper {
    display: table;
    height: 100%;
    padding: 0 20px; }
  header .main_menu .hamburger_wrapper {
    display: table;
    height: 100%;
    padding: 0 20px;
    padding-right: 0;
    float: left;
    position: inherit; }
    header .main_menu .hamburger_wrapper #cart-total-header {
      display: table-cell;
      vertical-align: middle;
      position: absolute;
      top: calc(50% - 25px);
      right: -5px;
      z-index: 9999; }
      header .main_menu .hamburger_wrapper #cart-total-header a {
        display: block;
        position: relative; }
        header .main_menu .hamburger_wrapper #cart-total-header a span {
          width: auto;
          min-width: 25px;
          height: 25px;
          background-color: #fff;
          font-family: "Cartwheel", sans-serif;
          border-radius: 100%;
          text-align: center;
          line-height: 22px;
          padding-left: 0px;
          color: #e73787;
          font-size: 13px;
          display: block;
          border: 1px solid #e73787;
          font-weight: bold;
          -o-transition: all .3s ease-in-out;
             transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -webkit-transition: all .3s ease-in-out; }
        header .main_menu .hamburger_wrapper #cart-total-header a:hover {
          text-decoration: none;
          outline: none; }
          header .main_menu .hamburger_wrapper #cart-total-header a:hover span {
            color: #fff;
            background-color: #f9a300; }
        header .main_menu .hamburger_wrapper #cart-total-header a:focus, header .main_menu .hamburger_wrapper #cart-total-header a:active {
          text-decoration: none;
          outline: none; }
      header .main_menu .hamburger_wrapper #cart-total-header #header-cart {
        width: 40px;
        height: 40px; }
    header .main_menu .hamburger_wrapper .hamburger_box {
      display: table-cell;
      vertical-align: middle;
      height: 100%; }
      header .main_menu .hamburger_wrapper .hamburger_box:before {
        content: 'Menu';
        font-family: "gotham-medium-webfont", sans-serif;
        color: #fff;
        text-transform: uppercase;
        -webkit-transform: rotate(-90deg);
             -o-transform: rotate(-90deg);
                transform: rotate(-90deg);
        position: absolute;
        left: calc(100% - 60px);
        margin-top: 10px;
        font-size: 8px; }
        @media (max-width: 767px) {
          header .main_menu .hamburger_wrapper .hamburger_box:before {
            display: none; } }
      header .main_menu .hamburger_wrapper .hamburger_box .hamburger .hamburger-box {
        height: 25px; }
      header .main_menu .hamburger_wrapper .hamburger_box .hamburger:focus {
        outline: none; }
  @media (max-width: 991px) {
    header .main_menu {
      padding-bottom: 10px;
      padding-top: 10px; } }
  header .fire {
    position: relative;
    z-index: 9999; }

.main_navigation {
  height: 100vh;
  width: 100%;
  position: absolute;
  z-index: 9998;
  top: 0px;
  left: 100vw; }
  @media (max-width: 991px) {
    .main_navigation {
      overflow-y: scroll !important;
      background-color: #6ad6f0; } }
  .main_navigation h1 {
    color: #000;
    position: relative;
    z-index: 9999;
    top: 0px;
    left: 0px;
    font-size: 200px; }
  .main_navigation .container-fluid {
    padding: 0px; }
    .main_navigation .container-fluid #scrollable-wrapper {
      background-color: rgba(237, 73, 154, 0.73); }
      @media (max-width: 991px) {
        .main_navigation .container-fluid #scrollable-wrapper {
          background-color: #6ad6f0; } }
  .main_navigation .header_col {
    min-height: 100vh;
    background-color: #c046cd;
    opacity: 0;
    left: -100px;
    text-align: center;
    position: relative;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    display: table; }
    @media (width: 1440px) and (height: 900px) {
      .main_navigation .header_col {
        background-size: cover; } }
    .main_navigation .header_col:hover {
      background-color: #6ad6f0; }
    @media (max-width: 588px) {
      .main_navigation .header_col:nth-of-type(2) h2 {
        margin-top: 70px !important; } }
    @media (max-width: 991px) {
      .main_navigation .header_col {
        padding-bottom: 20px; } }
    .main_navigation .header_col .contents_wrapper {
      visibility: visible;
      z-index: 2;
      position: relative;
      display: table-cell;
      vertical-align: middle; }
      @media (max-width: 480px) {
        .main_navigation .header_col .contents_wrapper {
          padding-bottom: 20px; } }
      .main_navigation .header_col .contents_wrapper ul {
        padding-top: 20px; }
        @media (width: 1024px) and (height: 768px) {
          .main_navigation .header_col .contents_wrapper ul {
            padding-top: 10px; } }
        .main_navigation .header_col .contents_wrapper ul#desktop-menu {
          max-width: 320px;
          margin: 0 auto; }
        .main_navigation .header_col .contents_wrapper ul li a {
          color: #fff;
          font-family: "chaparral-pro-display", serif;
          text-transform: none;
          font-style: italic;
          font-size: 1.8vw;
          line-height: 2.3vw;
          font-weight: bold;
          text-shadow: 2px 2px 2px #b70f62;
          -webkit-font-smoothing: antialiased;
          -o-transition: all .15s ease-in-out;
             transition: all .15s ease-in-out;
          -moz-transition: all .15s ease-in-out;
          -webkit-transition: all .15s ease-in-out; }
          .main_navigation .header_col .contents_wrapper ul li a:hover {
            background: none;
            color: #ffd400; }
          .main_navigation .header_col .contents_wrapper ul li a:focus {
            background: none;
            outline: none; }
          @media (max-width: 1920px) {
            .main_navigation .header_col .contents_wrapper ul li a {
              font-size: 30px;
              line-height: normal; } }
          @media (max-width: 1440px) {
            .main_navigation .header_col .contents_wrapper ul li a {
              font-size: 28px; } }
          @media (width: 1024px) and (height: 768px) {
            .main_navigation .header_col .contents_wrapper ul li a {
              font-size: 21px;
              padding: 6px; } }
      .main_navigation .header_col .contents_wrapper h2 {
        font-family: "Sanuk-Fat", serif;
        font-weight: normal;
        font-size: 40px;
        max-width: 250px;
        font-style: italic;
        color: #fff;
        text-shadow: -3px -3px 3px #f9a300, 3px -3px 3px #f9a300, -4px 3px 3px #f9a300, 3px 3px 3px #f9a300;
        -webkit-transform: rotate(-3deg);
             -o-transform: rotate(-3deg);
                transform: rotate(-3deg);
        margin-left: auto;
        margin-right: auto;
        -webkit-font-smoothing: antialiased; }
        @media (max-width: 1920px) {
          .main_navigation .header_col .contents_wrapper h2 {
            font-size: 40px;
            max-width: 250px; } }
        @media (max-width: 1380px) {
          .main_navigation .header_col .contents_wrapper h2 {
            font-size: 27px; } }
        @media (width: 1920px) and (min-height: 820px) and (max-height: 1080px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 35%; } }
        @media (width: 1600px) and (height: 900px), (width: 1536px) and (height: 864px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 22%; } }
        @media (width: 1440px) and (min-height: 820px) and (max-height: 900px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 80%; } }
        @media (width: 1440px) and (height: 900px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 28%; } }
        @media (width: 1366px) and (min-height: 688px) and (max-height: 768px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 55%; } }
        @media (width: 1366px) and (min-height: 944px) and (max-height: 1024px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 140%; } }
        @media (width: 1366px) and (min-height: 880px) and (max-height: 960px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 140%; } }
        @media (width: 1024px) and (min-height: 1366px) and (max-height: 1366px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 0%; } }
        @media (width: 1024px) and (min-height: 688px) and (max-height: 768px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 145%;
            font-size: 18px; } }
        @media (width: 1024px) and (height: 768px) {
          .main_navigation .header_col .contents_wrapper h2 {
            font-size: 24px;
            text-shadow: none !important; } }
        @media (width: 1280px) and (height: 800px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 0; } }
        @media (width: 1024px) and (max-height: 1200px) and (max-height: 1280px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: -35%; } }
        @media (width: 1280px) and (max-height: 720px) and (max-height: 800px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 30%; } }
        @media (width: 1024px) and (max-height: 618px) and (max-height: 698px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 100%; } }
        @media (max-width: 991px) {
          .main_navigation .header_col .contents_wrapper h2 {
            margin-top: 0;
            padding-top: 30px;
            max-width: none;
            display: inline-block;
            font-size: 40px; } }
        @media (max-width: 400px) {
          .main_navigation .header_col .contents_wrapper h2 {
            font-size: 32px; } }
      .main_navigation .header_col .contents_wrapper h2 {
        text-shadow: 0px 0px 0px #f9a300, 0px 0px 0px #f9a300, -1px 0px 0px #f9a300, 0px 0px 0px #f9a300;
        font-style: normal;
        text-align: left;
        -webkit-transform: rotate(0deg);
             -o-transform: rotate(0deg);
                transform: rotate(0deg);
        text-shadow: 0px; }
        .main_navigation .header_col .contents_wrapper h2 span {
          display: table;
          padding: 7px 10px;
          padding-right: 25px;
          padding-bottom: 16px;
          letter-spacing: 1px; }
          .main_navigation .header_col .contents_wrapper h2 span:nth-child(1) {
            background-image: url("../images/placeholders/menu-1-pink.png");
            background-size: 100% 100%; }
          .main_navigation .header_col .contents_wrapper h2 span:nth-child(2) {
            background-image: url("../images/placeholders/menu-2-pink.png");
            background-size: 100% 100%;
            margin-left: 6px;
            margin-top: -20px; }
      .main_navigation .header_col .contents_wrapper h4 {
        font-family: "Cartwheel", sans-serif;
        color: #fed800;
        text-transform: uppercase;
        font-weight: normal;
        font-size: 20px;
        font-size: 22px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 70%;
        -webkit-font-smoothing: antialiased;
        background-color: #ffd400;
        padding-bottom: 10px;
        padding-top: 10px !important;
        border-radius: 30px;
        margin-top: 30px;
        color: #e73787; }
        .main_navigation .header_col .contents_wrapper h4.kewl-products {
          display: none !important; }
        @media (width: 1024px) and (height: 768px) {
          .main_navigation .header_col .contents_wrapper h4 {
            font-size: 12px; } }
        @media (max-width: 480px) {
          .main_navigation .header_col .contents_wrapper h4 {
            padding-left: 4px;
            padding-right: 4px; } }
      .main_navigation .header_col .contents_wrapper .btn_main {
        background-color: #e73787;
        border-color: #e73787; }
        @media (width: 1024px) and (height: 768px) {
          .main_navigation .header_col .contents_wrapper .btn_main {
            margin-top: 0; } }
      .main_navigation .header_col .contents_wrapper .paper_cta {
        padding-top: 30px; }
        .main_navigation .header_col .contents_wrapper .paper_cta h3 {
          width: 80%;
          max-width: 400px;
          margin-left: auto;
          margin-right: auto;
          background-size: contain;
          -webkit-transform: rotate(-2deg);
               -o-transform: rotate(-2deg);
                  transform: rotate(-2deg); }
      .main_navigation .header_col .contents_wrapper .quote_text {
        font-family: "Cartwheel", sans-serif;
        color: #fff;
        font-size: 36px;
        font-style: normal;
        -webkit-text-stroke-width: 0px;
        font-weight: 100;
        -webkit-transform: rotate(-3deg);
             -o-transform: rotate(-3deg);
                transform: rotate(-3deg);
        padding-top: 40px;
        padding-left: 15px;
        padding-right: 15px;
        line-height: 46px;
        text-shadow: 3px 3px 0px #e73787, 0px 0px 0px #e73787, 0px 0px 0px #e73787, 0px 0px 0px #e73787; }
        @media (max-width: 1800px) {
          .main_navigation .header_col .contents_wrapper .quote_text {
            font-size: 32px; } }
        @media (max-width: 1367px) {
          .main_navigation .header_col .contents_wrapper .quote_text {
            font-size: 28px;
            line-height: 36px; } }
        @media (max-width: 1199px) {
          .main_navigation .header_col .contents_wrapper .quote_text {
            font-size: 32px;
            line-height: 30px; } }
        @media (max-width: 991px) {
          .main_navigation .header_col .contents_wrapper .quote_text {
            font-size: 24px;
            line-height: 24px; } }
        @media (width: 1024px) and (height: 768px) {
          .main_navigation .header_col .contents_wrapper .quote_text {
            padding-top: 20px;
            font-size: 24px; } }
      .main_navigation .header_col .contents_wrapper #character-name {
        color: #fed800;
        font-family: "Cartwheel", sans-serif;
        font-size: 20px;
        -webkit-transform: rotate(-3deg);
             -o-transform: rotate(-3deg);
                transform: rotate(-3deg);
        padding-bottom: 20px; }
      .main_navigation .header_col .contents_wrapper #prue_header {
        bottom: 0px;
        position: absolute;
        max-width: 75%;
        right: 0;
        pointer-events: none; }
        @media (min-width: 992px) and (max-height: 813px) {
          .main_navigation .header_col .contents_wrapper #prue_header {
            display: none; } }
      .main_navigation .header_col .contents_wrapper #character-image {
        width: 75%;
        height: 250px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        -webkit-transform: rotate(-2deg);
             -o-transform: rotate(-2deg);
                transform: rotate(-2deg);
        max-width: 400px;
        background-color: white;
        margin: 0 auto; }
        .main_navigation .header_col .contents_wrapper #character-image:after {
          content: '';
          display: block;
          position: absolute;
          z-index: 1;
          width: 100%;
          height: 100%;
          background-size: 100% 250px;
          background-position: center center; }
      .main_navigation .header_col .contents_wrapper .kk_cart_contents {
        display: block;
        margin: 30px 0;
        margin-bottom: 5px;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        font-style: italic;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out; }
        .main_navigation .header_col .contents_wrapper .kk_cart_contents > span {
          display: block;
          font-family: "chaparral-pro-display", serif;
          -webkit-font-smoothing: antialiased; }
          .main_navigation .header_col .contents_wrapper .kk_cart_contents > span.kk_barket_icon {
            background-image: url("../images/icons/cart-black.png");
            background-size: contain;
            width: 45px;
            height: 45px;
            margin: 10px auto; }
        .main_navigation .header_col .contents_wrapper .kk_cart_contents:hover {
          text-decoration: none;
          outline: none;
          color: #f9a300; }
        .main_navigation .header_col .contents_wrapper .kk_cart_contents:focus {
          outline: none; }
      .main_navigation .header_col .contents_wrapper .header_featured_slideshow_wrapper {
        position: relative;
        display: none !important; }
        .main_navigation .header_col .contents_wrapper .header_featured_slideshow_wrapper .header_featured_slideshow .featured_product {
          padding: 0; }
          .main_navigation .header_col .contents_wrapper .header_featured_slideshow_wrapper .header_featured_slideshow .featured_product .product_image {
            height: 180px; }
        .main_navigation .header_col .contents_wrapper .header_featured_slideshow_wrapper .header-product-arrow {
          cursor: pointer;
          position: absolute;
          z-index: 90;
          top: 35%;
          font-size: 20px;
          color: #fff;
          text-align: center;
          border: 1px solid #fff;
          width: 25px;
          height: 25px;
          line-height: 22px;
          border-radius: 100%;
          -o-transition: all .3s ease-in-out;
             transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -webkit-transition: all .3s ease-in-out; }
          .main_navigation .header_col .contents_wrapper .header_featured_slideshow_wrapper .header-product-arrow.right {
            right: 10px;
            padding-left: 2px; }
          .main_navigation .header_col .contents_wrapper .header_featured_slideshow_wrapper .header-product-arrow.left {
            left: 10px;
            padding-right: 2px; }
          .main_navigation .header_col .contents_wrapper .header_featured_slideshow_wrapper .header-product-arrow:hover {
            color: #e73787;
            background-color: #fff; }
      .main_navigation .header_col .contents_wrapper #header-cart-area {
        padding-top: 30px;
        /* SHOPPING CART WIDGET */ }
        @media (width: 1024px) and (height: 768px) {
          .main_navigation .header_col .contents_wrapper #header-cart-area {
            padding-top: 0px; } }
        .main_navigation .header_col .contents_wrapper #header-cart-area h3 {
          font-family: "Sanuk-Fat", serif;
          font-style: italic;
          text-transform: uppercase;
          color: #fff;
          -webkit-transform: scale(1, 1.08);
               -o-transform: scale(1, 1.08);
                  transform: scale(1, 1.08);
          text-transform: uppercase;
          color: #39c1cd;
          letter-spacing: 0px;
          text-shadow: #f9a300 -2px -2px 0px, #f9a300 2px -2px 0px, #f9a300 -3px 2px 0px, #f9a300 2px 2px 0px;
          font-size: 20px;
          color: #fff; }
        .main_navigation .header_col .contents_wrapper #header-cart-area .kk_mini_cart .cart-item-single {
          text-align: right; }
          .main_navigation .header_col .contents_wrapper #header-cart-area .kk_mini_cart .cart-item-single span.image {
            margin-right: 20px;
            float: left; }
          .main_navigation .header_col .contents_wrapper #header-cart-area .kk_mini_cart .cart-item-single span.name {
            float: left; }
            .main_navigation .header_col .contents_wrapper #header-cart-area .kk_mini_cart .cart-item-single span.name:after {
              display: none; }
    .main_navigation .header_col:after {
      content: '';
      position: absolute;
      z-index: 0;
      background-image: url(../images/backgrounds/pink-dot-bg-3.png);
      background-size: 100%;
      background-repeat: repeat-y;
      height: 100%;
      width: 100%;
      top: 0px;
      left: 0px;
      opacity: 0.07; }
    .main_navigation .header_col:before {
      background-color: #e73787;
      width: 100%;
      height: 100%;
      opacity: 0.6;
      z-index: 1;
      position: absolute;
      left: 0px;
      top: 0px; }
    .main_navigation .header_col.kim-craig {
      background-image: url(../images/characters/kim-bg.jpg); }
      .main_navigation .header_col.kim-craig:hover {
        background-image: url(../images/characters/kim-hover.jpg); }
    .main_navigation .header_col.kath-day-knight {
      background-image: url(../images/characters/kath-bg.jpg); }
      .main_navigation .header_col.kath-day-knight:hover {
        background-image: url(../images/characters/kath-hover.jpg); }
    .main_navigation .header_col.kel-knight {
      background-image: url(../images/characters/kel-bg.jpg); }
      .main_navigation .header_col.kel-knight:hover {
        background-image: url(../images/characters/kel-hover.jpg); }
    .main_navigation .header_col.sharon-strzelecki {
      background-image: url(../images/characters/sharon-bg.jpg); }
      .main_navigation .header_col.sharon-strzelecki:hover {
        background-image: url(../images/characters/sharon-hover.jpg); }
    .main_navigation .header_col.brett-craig {
      background-image: url(../images/characters/brett-bg.jpg); }
      .main_navigation .header_col.brett-craig:hover {
        background-image: url(../images/characters/brett-hover.jpg); }
    .main_navigation .header_col:nth-of-type(2):after {
      background-position: 0px -10%; }
    .main_navigation .header_col:nth-of-type(3):after {
      background-position: 0px -43.8%; }
    .main_navigation .header_col:nth-of-type(3) .product-cats {
      list-style: none;
      padding-left: 0px;
      padding-top: 20px; }
      @media (width: 1024px) and (height: 768px) {
        .main_navigation .header_col:nth-of-type(3) .product-cats {
          padding-top: 10px; } }
      .main_navigation .header_col:nth-of-type(3) .product-cats li {
        padding-left: 0px; }
        .main_navigation .header_col:nth-of-type(3) .product-cats li a {
          display: block;
          padding: 5px 8px; }
    .main_navigation .header_col:nth-of-type(3) h4 {
      font-family: "Sanuk-Fat", serif;
      padding-top: 20px; }
    .main_navigation .header_col:nth-of-type(3) .product_title {
      color: #fff; }
    .main_navigation .header_col:nth-of-type(3) p.price, .main_navigation .header_col:nth-of-type(3) p.rrp {
      color: #02d0d8;
      -webkit-text-stroke: 0.2 #02d0d8; }
    @media (max-width: 991px) {
      .main_navigation .header_col {
        height: auto;
        background-position: left;
        background-size: contain;
        background-color: #6ad6f0;
        width: 100%; }
        .main_navigation .header_col.col_3 {
          padding-bottom: 50px; }
        .main_navigation .header_col.kim-craig {
          background-image: url(../images/characters/kim-hover.jpg); }
        .main_navigation .header_col.kath-day-knight {
          background-image: url(../images/characters/kath-hover.jpg); }
        .main_navigation .header_col.kel-knight {
          background-image: url(../images/characters/kel-hover.jpg); }
        .main_navigation .header_col.sharon-strzelecki {
          background-image: url(../images/characters/sharon-hover.jpg); }
        .main_navigation .header_col.brett-craig {
          background-image: url(../images/characters/brett-hover.jpg); } }
    @media (max-width: 480px) {
      .main_navigation .header_col {
        background-position: -15%; } }
    .main_navigation .header_col.shop-closed .contents_wrapper {
      display: table;
      height: 100%;
      width: 100%; }
      .main_navigation .header_col.shop-closed .contents_wrapper .contents {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
             -o-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
        @media (max-width: 991px) {
          .main_navigation .header_col.shop-closed .contents_wrapper .contents {
            position: relative;
            top: auto;
            left: auto;
            -webkit-transform: none;
                 -o-transform: none;
                    transform: none; }
            .main_navigation .header_col.shop-closed .contents_wrapper .contents h4 {
              height: auto !important;
              padding: 0 10px !important; } }
      .main_navigation .header_col.shop-closed .contents_wrapper h4 {
        display: table-cell;
        vertical-align: middle;
        padding: 0 20%;
        width: 100%;
        line-height: 40px; }
        @media (max-width: 991px) {
          .main_navigation .header_col.shop-closed .contents_wrapper h4 {
            padding: 0 10%;
            display: block;
            height: 50vh;
            font-size: 20px; } }
    @media (max-width: 991px) {
      .main_navigation .header_col {
        min-height: 50vh; } }
  .main_navigation.closed {
    pointer-events: none; }
    .main_navigation.closed .header_col:nth-of-type(1), .main_navigation.closed .header_col:nth-of-type(2), .main_navigation.closed .header_col:nth-of-type(3), .main_navigation.closed .header_col:nth-of-type(4) {
      left: 0; }

/************************** TEST *************************/
.new_hamburger {
  display: table;
  height: 100%;
  padding-right: 0;
  float: left;
  position: inherit;
  -o-transition: all .15s ease-in-out;
     transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -webkit-transition: all .15s ease-in-out; }
  .new_hamburger:hover {
    margin-left: 70px; }

html:not(.is-phone):not(.is-tablet) .menu-icon {
  overflow: hidden; }

.menu-icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 40px 35px 0 0;
  padding: 17px 13px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), margin 0.6s cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), margin 0.6s cubic-bezier(0.19, 1, 0.22, 1);
          transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), margin 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  margin: 0;
  top: 36px; }
  @media (max-width: 991px) {
    .menu-icon {
      top: calc(50% - 22.5px); } }

.menu-icon.has-sidebar-open {
  pointer-events: none;
  opacity: 0 !important;
  -webkit-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
          transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1); }

.is-device .menu-icon:active:before {
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  transform: scale3d(1.2, 1.2, 1.2); }

.menu-icon:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fbf9f6;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
          transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: -o-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
     transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  background: #02d0d8;
  border: 2px solid #fff; }

.menu-icon__drawer,
.menu-icon__drawer__inner {
  -webkit-transition: 0.4s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
          transition: 0.4s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: 0.4s -o-transform cubic-bezier(0.19, 1, 0.22, 1);
     transition: 0.4s transform cubic-bezier(0.19, 1, 0.22, 1);
  display: inline-block; }

.menu-icon__drawer {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  -webkit-transform: translateX(100%);
  -o-transform: translateX(100%);
     transform: translateX(100%);
  white-space: nowrap;
  border-radius: 45px;
  z-index: -1; }

.menu-icon__drawer__inner {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 45px;
  padding: 0 60px 0 22px;
  line-height: 2.813rem;
  -webkit-transform: translateX(-100%);
  -o-transform: translateX(-100%);
     transform: translateX(-100%);
  height: 45px; }

.menu-icon__drawer__inner span {
  opacity: 0;
  -webkit-transition: 1s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1), 0.4s opacity ease;
          transition: 1s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1), 0.4s opacity ease;
  -o-transition: 1s -o-transform cubic-bezier(0.19, 1, 0.22, 1), 0.4s opacity ease;
     transition: 1s transform cubic-bezier(0.19, 1, 0.22, 1), 0.4s opacity ease;
  -webkit-transform: translateX(40px);
  -o-transform: translateX(40px);
     transform: translateX(40px);
  font-family: "Cartwheel", sans-serif;
  font-size: 16px;
  top: 6px;
  position: relative;
  color: #fff; }

.menu-icon #hamburger {
  -webkit-transition: 0.4s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
          transition: 0.4s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: 0.4s -o-transform cubic-bezier(0.19, 1, 0.22, 1);
     transition: 0.4s transform cubic-bezier(0.19, 1, 0.22, 1); }

.menu-icon #hamburger > div {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 3px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
          transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: -o-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
     transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1); }

.menu-icon #hamburger > div:after,
.menu-icon #hamburger > div:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #171719;
  background: #fff;
  -webkit-transition-property: -webkit-transform;
          transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
     transition-property: transform;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.menu-icon #hamburger > div:before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.menu-icon #hamburger > div:after {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.menu-icon #hamburger > div:first-child:before {
  -webkit-transition-duration: .8s;
       -o-transition-duration: .8s;
          transition-duration: .8s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s; }

.menu-icon #hamburger > div:first-child:after,
.menu-icon #hamburger > div:nth-child(2):before {
  -webkit-transition-duration: .9s;
       -o-transition-duration: .9s;
          transition-duration: .9s;
  -webkit-transition-delay: .1s;
       -o-transition-delay: .1s;
          transition-delay: .1s; }

.menu-icon #hamburger > div:nth-child(2):after {
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-delay: .2s;
       -o-transition-delay: .2s;
          transition-delay: .2s; }

.menu-icon #hamburger > div:last-child:before {
  -webkit-transition-duration: .9s;
       -o-transition-duration: .9s;
          transition-duration: .9s;
  -webkit-transition-delay: .1s;
       -o-transition-delay: .1s;
          transition-delay: .1s; }

.menu-icon #hamburger > div:last-child:after {
  -webkit-transition-duration: 1.1s;
       -o-transition-duration: 1.1s;
          transition-duration: 1.1s;
  -webkit-transition-delay: .3s;
       -o-transition-delay: .3s;
          transition-delay: .3s; }

.is-menu .menu-icon #hamburger > div:first-child {
  -webkit-transform: translate3d(0, 5px, 0) rotate3d(0, 0, 1, -45deg);
  transform: translate3d(0, 5px, 0) rotate3d(0, 0, 1, -45deg); }

.is-menu .menu-icon #hamburger > div:nth-child(2) {
  opacity: 0; }

.is-menu .menu-icon #hamburger > div:last-child {
  -webkit-transform: translate3d(0, -5px, 0) rotate3d(0, 0, 1, 45deg);
  transform: translate3d(0, -5px, 0) rotate3d(0, 0, 1, 45deg); }

.menu-el {
  position: relative;
  display: inline-block;
  width: 33.5%;
  height: 100%;
  margin-left: -1px;
  overflow: hidden; }

.menu-el.is-active .sub .word,
.menu-el.is-active .title .word {
  position: relative; }

.menu-el.is-active .sub .word:after,
.menu-el.is-active .title .word:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 3px;
  width: calc(100% - 6px);
  height: 2px;
  background: #fbf9f6;
  -webkit-transform: scaleX(0);
  -o-transform: scaleX(0);
     transform: scaleX(0);
  -webkit-transform-origin: right;
  -o-transform-origin: right;
     transform-origin: right;
  -webkit-transition: 0.8s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
          transition: 0.8s -webkit-transform cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: 0.8s -o-transform cubic-bezier(0.19, 1, 0.22, 1);
     transition: 0.8s transform cubic-bezier(0.19, 1, 0.22, 1); }

.menu-el .el-hover {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #fbf9f6;
  z-index: 2;
  padding: 0 50px;
  opacity: 0;
  -webkit-transform: translate3d(0, 1%, 0);
  transform: translate3d(0, 1%, 0);
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
          transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, -o-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
     transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.is-phone .menu-el .el-hover {
  display: none; }

.menu-el .el-hover .overflow {
  position: relative;
  display: block;
  overflow: hidden; }

.menu-el .el-hover .sub {
  display: block;
  font-family: Graphik, sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
          transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: -o-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
     transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.menu-el .el-hover p {
  display: block;
  font-family: Graphik, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.563rem;
  margin: 1.875rem 0 1.563rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
          transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: normal;
  max-width: 340px; }

.menu-el .el-hover .link {
  font-family: Graphik, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
          transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.menu-el .el-bg {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.menu-el .title {
  display: block;
  position: absolute;
  top: 50%;
  left: 50px;
  color: #fbf9f6;
  font-family: Graphik, sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 4.063rem;
  text-align: left;
  width: 620px;
  overflow: hidden;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

.menu-el .title .word {
  white-space: nowrap; }

.menu-el .title .letter-mask {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden; }

.menu-el .title .letter-mask .letter-inner {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.menu-el:first-child .el-bg {
  background: #222224; }

.menu-el:nth-child(2) .el-bg {
  background: #171719; }

.menu-el:last-child .el-bg {
  background: #000; }

body.is-menu .menu-el.is-active .sub .word:after,
body.is-menu .menu-el.is-active .title .word:after {
  -webkit-transform-origin: left;
  -o-transform-origin: left;
     transform-origin: left;
  -webkit-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s;
  -webkit-transform: scaleX(1);
  -o-transform: scaleX(1);
     transform: scaleX(1);
  opacity: 1; }

html:not(.is-phone):not(.is-tablet) .page-menu.is-ready .menu-el:hover .el-hover {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
          transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: -o-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
     transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1); }

html:not(.is-phone):not(.is-tablet) .page-menu.is-ready .menu-el:hover .el-hover .sub {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.08s;
          transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.08s;
  -o-transition: -o-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.08s;
     transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.08s; }

html:not(.is-phone):not(.is-tablet) .page-menu.is-ready .menu-el:hover .el-hover p {
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.08s;
       -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.08s;
          transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.08s; }

html:not(.is-phone):not(.is-tablet) .page-menu.is-ready .menu-el:hover .el-hover .link {
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.12s;
       -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.12s;
          transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.12s; }

html:not(.is-phone):not(.is-tablet) .page-menu.is-ready .menu-el:hover.is-active .title .word:after {
  -webkit-transition: 0s -webkit-transform ease;
          transition: 0s -webkit-transform ease;
  -o-transition: 0s -o-transform ease;
     transition: 0s transform ease;
  -webkit-transform: scaleX(0);
  -o-transform: scaleX(0);
     transform: scaleX(0); }

html:not(.is-phone):not(.is-tablet) .menu-icon:hover {
  overflow: visible; }

html:not(.is-phone):not(.is-tablet) body:not(.is-menu) .menu-icon:hover .menu-icon__drawer.menu,
html:not(.is-phone):not(.is-tablet) body:not(.is-menu) .menu-icon:hover .menu-icon__drawer.menu .menu-icon__drawer__inner {
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
     transform: translateX(0); }

html:not(.is-phone):not(.is-tablet) body:not(.is-menu) .menu-icon:hover .menu-icon__drawer.menu .menu-icon__drawer__inner span {
  opacity: 1;
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
     transform: translateX(0); }

html:not(.is-phone):not(.is-tablet) body.is-menu .menu-icon:hover .menu-icon__drawer.close,
html:not(.is-phone):not(.is-tablet) body.is-menu .menu-icon:hover .menu-icon__drawer.close .menu-icon__drawer__inner {
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
     transform: translateX(0); }

html:not(.is-phone):not(.is-tablet) body.is-menu .menu-icon:hover .menu-icon__drawer.close .menu-icon__drawer__inner span {
  opacity: 1;
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
     transform: translateX(0); }

html:not(.is-phone):not(.is-tablet) .menu-icon:hover #hamburger {
  -webkit-transform: rotate(90deg); }

@media (max-width: 991px) {
  .new_hamburger.is-active .menu-icon {
    overflow: visible !important; }
  .new_hamburger.is-active .menu-icon__drawer {
    -webkit-transform: translateX(0) !important;
    -o-transform: translateX(0) !important;
    transform: translateX(0) !important; }
    .new_hamburger.is-active .menu-icon__drawer .menu-icon__drawer__inner {
      -webkit-transform: translateX(0) !important;
      -o-transform: translateX(0) !important;
      transform: translateX(0) !important; }
      .new_hamburger.is-active .menu-icon__drawer .menu-icon__drawer__inner span {
        opacity: 1 !important; }
  .new_hamburger.is-active .menu-icon #hamburger {
    -webkit-transform: rotate(90deg) !important; }
  .new_hamburger:not(.is-active) .menu-icon {
    overflow: hidden !important; }
  .new_hamburger:not(.is-active) .menu-icon__drawer {
    -webkit-transform: translateX(100%) !important;
    -o-transform: translateX(100%) !important;
    transform: translateX(100%) !important; }
    .new_hamburger:not(.is-active) .menu-icon__drawer .menu-icon__drawer__inner {
      -webkit-transform: translateX(-100%) !important;
      -o-transform: translateX(-100%) !important;
      transform: translateX(-100%) !important; }
      .new_hamburger:not(.is-active) .menu-icon__drawer .menu-icon__drawer__inner span {
        opacity: 0 !important; }
  .new_hamburger:not(.is-active) .menu-icon #hamburger {
    -webkit-transform: rotate(0) !important; } }

.wc_content_sidebar {
  padding: 0;
  border-radius: 0 25px 0 0;
  overflow: hidden;
  border-bottom: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2; }
  @media (max-width: 767px) {
    .wc_content_sidebar {
      border-radius: 0;
      border: none; } }
  .wc_content_sidebar .sidebar_sections {
    text-align: center; }
    @media (max-width: 767px) {
      .wc_content_sidebar .sidebar_sections .widget:first-child {
        margin-top: 20px; } }
    .wc_content_sidebar .sidebar_sections .widget h3 {
      margin: 0;
      margin-bottom: 10px;
      padding: 10px 15px;
      color: #fff;
      background-color: #02d0d8;
      font-family: "Cartwheel", sans-serif;
      text-transform: uppercase;
      -webkit-font-smoothing: antialiased;
      text-align: left; }
      .wc_content_sidebar .sidebar_sections .widget h3:first-child {
        padding: 17px 15px; }
        @media (max-width: 1199px) {
          .wc_content_sidebar .sidebar_sections .widget h3:first-child {
            padding: 19px 15px; } }
        @media (max-width: 767px) {
          .wc_content_sidebar .sidebar_sections .widget h3:first-child {
            padding: 10px 15px;
            font-size: 26px; } }
      @media (max-width: 1199px) {
        .wc_content_sidebar .sidebar_sections .widget h3 {
          font-size: 20px; } }
      @media (max-width: 767px) {
        .wc_content_sidebar .sidebar_sections .widget h3 {
          text-align: center; } }
    .wc_content_sidebar .sidebar_sections .widget ul {
      list-style: none;
      padding-left: 35px !important;
      font-family: "chaparral-pro-display", serif;
      text-align: left; }
      @media (max-width: 767px) {
        .wc_content_sidebar .sidebar_sections .widget ul {
          text-align: center;
          padding-left: 0px !important; } }
      .wc_content_sidebar .sidebar_sections .widget ul li {
        color: #02d0d8;
        margin: 15px 0px 15px 0px; }
        .wc_content_sidebar .sidebar_sections .widget ul li a {
          color: #02d0d8;
          font-size: 18px;
          font-family: "chaparral-pro-display", serif;
          font-style: italic;
          text-transform: capitalize;
          font-weight: bold; }
          @media (max-width: 767px) {
            .wc_content_sidebar .sidebar_sections .widget ul li a {
              font-size: 24px; } }
          .wc_content_sidebar .sidebar_sections .widget ul li a:hover {
            color: #e73787; }
        .wc_content_sidebar .sidebar_sections .widget ul li:before {
          content: '';
          display: block;
          background-image: url("../images/shop/list-rectangle.png");
          width: 7px;
          height: 7px;
          background-size: contain;
          float: left;
          margin-top: 8px;
          margin-right: 10px; }
          @media (max-width: 767px) {
            .wc_content_sidebar .sidebar_sections .widget ul li:before {
              float: none;
              display: inline-block; } }
    .wc_content_sidebar .sidebar_sections .sidebar-image {
      max-width: 100%;
      margin: 0 auto; }

.footer {
  width: 100%;
  display: inline-block;
  background-color: #e73787;
  position: relative;
  padding-top: 25px; }
  @media (max-width: 768px) {
    .footer {
      padding-top: 0; } }
  .footer .main_footer {
    padding-bottom: 80px; }
    @media (max-width: 768px) {
      .footer .main_footer {
        padding-bottom: 30px; } }
    .footer .main_footer .copyright {
      font-family: "gotham-light-webfont", sans-serif;
      color: #fff;
      font-size: 12px;
      padding-top: 4px;
      -webkit-text-stroke-width: 0px; }
    .footer .main_footer .site_by {
      font-family: "gotham-medium-webfont", sans-serif;
      font-size: 11px;
      padding-top: 0px;
      -webkit-text-stroke-width: 0px;
      margin-top: -8px;
      font-style: normal; }
      .footer .main_footer .site_by a {
        color: #fff; }
  .footer .container {
    z-index: 3;
    position: relative; }
  .footer:before {
    content: '';
    display: block;
    height: 200%;
    position: absolute;
    right: 0;
    top: -7vw;
    left: 0;
    background-color: #e73787;
    -webkit-transform: skewY(-3.5deg);
         -o-transform: skewY(-3.5deg);
            transform: skewY(-3.5deg);
    -webkit-transform-origin: 100%;
         -o-transform-origin: 100%;
            transform-origin: 100%;
    z-index: 1; }
  .footer .footer-blocks img {
    max-width: 200px; }
  @media (max-width: 768px) {
    .footer .footer-blocks {
      margin-bottom: 30px; } }
  .footer .footer-blocks.meme-block {
    padding-right: 30px; }
  .footer h4 {
    margin-bottom: 0;
    color: #fed800;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    font-family: "Sanuk-Fat", serif;
    font-size: 22px; }
  .footer .line {
    padding-top: 5px;
    margin-bottom: 0; }
  .footer #footer-menu li a {
    font-family: "chaparral-pro-display", serif;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    font-size: 16px;
    padding: 0;
    display: inline;
    -o-transition: all .3s ease-in-out;
       transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    font-size: 20px; }
    .footer #footer-menu li a:hover {
      color: #fed800;
      background-color: transparent; }
  .footer .footer-social {
    list-style: none;
    padding-left: 0; }
    .footer .footer-social li {
      display: inline-block; }
      .footer .footer-social li a {
        font-size: 23px;
        color: #fff;
        padding: 0px 15px 0px 0px;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out; }
        .footer .footer-social li a:hover {
          color: #fed800; }
  .footer .like-buttons > div {
    display: table;
    float: left;
    margin-right: 15px; }
  .footer .bottom_bar {
    background-color: #e73787;
    background-image: url("../images/backgrounds/original-footer-bottom.jpg");
    background-size: contain;
    text-align: center;
    padding: 3px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 22px;
    z-index: 3;
    position: relative; }
    .footer .bottom_bar a {
      color: #fff;
      font-family: "Cartwheel", sans-serif;
      text-align: center;
      margin: 0px; }
  .footer .background_color {
    background-color: #02d0d8;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px; }
  .footer .background_overlay {
    background-image: url("../images/backgrounds/retro-blue-bg.jpg");
    opacity: 0.3;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px; }

.privacy-policy main.main h2 {
  padding-bottom: 15px;
  font-size: 30px;
  color: #e73787; }

.privacy-policy main.main h3 {
  font-family: "Cartwheel", sans-serif;
  color: #e73787; }

body#tinymce {
  margin: 12px !important; }

.top_banner_wrapper {
  background-image: url("../images/backgrounds/breadcrumbs-bg.jpg");
  background-size: 1920px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px; }
  .top_banner_wrapper:after {
    background: #fff;
    border-top: 3px solid white;
    bottom: -35px;
    content: '';
    display: block;
    position: absolute;
    -webkit-transform: skewY(-2deg);
         -o-transform: skewY(-2deg);
            transform: skewY(-2deg);
    -webkit-transform-origin: 100%;
         -o-transform-origin: 100%;
            transform-origin: 100%;
    z-index: -1;
    height: 200px;
    width: 3000px;
    left: 0;
    z-index: 0; }
    @media (max-width: 991px) {
      .top_banner_wrapper:after {
        bottom: -30px;
        -webkit-transform: skewY(-2deg);
             -o-transform: skewY(-2deg);
                transform: skewY(-2deg); } }
  .top_banner_wrapper .top_banner {
    padding-top: calc(150px + 20px);
    padding-bottom: 30px; }
    @media (max-height: 800px) and (min-width: 1024px) {
      .top_banner_wrapper .top_banner {
        padding-top: 140px; } }
    @media (max-width: 991px) {
      .top_banner_wrapper .top_banner {
        padding-top: 85px;
        padding-bottom: 30px; } }
    @media (max-width: 768px) {
      .top_banner_wrapper .top_banner {
        padding-left: 15px;
        padding-right: 15px; } }
  .top_banner_wrapper .breadcrumb_wrapper {
    color: #fff;
    font-family: "Cartwheel", sans-serif;
    font-size: 16px;
    padding-top: 10px;
    font-weight: bold; }
    .top_banner_wrapper .breadcrumb_wrapper .back_wrap {
      display: inline-block;
      position: relative;
      top: -1px; }
      @media (max-width: 480px) {
        .top_banner_wrapper .breadcrumb_wrapper .back_wrap {
          display: none;
          padding-bottom: 10px;
          margin-left: -1px;
          float: right; } }
      .top_banner_wrapper .breadcrumb_wrapper .back_wrap span.master {
        background: rgba(0, 0, 0, 0.2);
        padding: 5px 20px;
        padding-bottom: 8px;
        border-radius: 20px;
        font-size: 15px;
        padding-top: 4px;
        -o-transition: all .15s ease-in-out;
           transition: all .15s ease-in-out;
        -moz-transition: all .15s ease-in-out;
        -webkit-transition: all .15s ease-in-out; }
        .top_banner_wrapper .breadcrumb_wrapper .back_wrap span.master:hover {
          background: rgba(0, 0, 0, 0.4); }
        .top_banner_wrapper .breadcrumb_wrapper .back_wrap span.master span {
          font-size: 11px; }
    .top_banner_wrapper .breadcrumb_wrapper.center .breadcrumbs {
      text-align: center; }
    .top_banner_wrapper .breadcrumb_wrapper.center h1 {
      text-align: center;
      margin-left: auto;
      margin-right: auto; }
    .top_banner_wrapper .breadcrumb_wrapper .breadcrumbs {
      padding-left: 0px;
      padding-right: 0px; }
      @media (max-width: 1199px) {
        .top_banner_wrapper .breadcrumb_wrapper .breadcrumbs {
          left: -15px;
          position: relative; } }
      @media (max-width: 768px) {
        .top_banner_wrapper .breadcrumb_wrapper .breadcrumbs {
          left: 0; } }
    .top_banner_wrapper .breadcrumb_wrapper a, .top_banner_wrapper .breadcrumb_wrapper span {
      font-family: "Cartwheel", sans-serif;
      color: #fff;
      font-size: 19px;
      text-transform: uppercase;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.29);
      margin-right: 2px;
      font-weight: 100;
      letter-spacing: 0.5px;
      -webkit-font-smoothing: antialiased; }
    .top_banner_wrapper .breadcrumb_wrapper a.home span {
      padding-left: 24px;
      padding-left: 0px;
      position: relative; }
      .top_banner_wrapper .breadcrumb_wrapper a.home span:before {
        content: '';
        width: 19px;
        width: 0px;
        height: 19px;
        background-size: cover;
        position: absolute;
        left: 0px;
        top: -0.5px;
        text-shadow: none; }
    .top_banner_wrapper .breadcrumb_wrapper .line {
      font-weight: normal; }
    .top_banner_wrapper .breadcrumb_wrapper .breadcrumb-title {
      position: relative;
      z-index: 1;
      padding: 30px;
      padding-bottom: 14px;
      padding-left: 0px;
      padding-right: 150px;
      padding-top: 18px;
      position: relative;
      z-index: 2;
      display: inline-block;
      left: 15px; }
      .top_banner_wrapper .breadcrumb_wrapper .breadcrumb-title h1 {
        color: #fff;
        text-shadow: -1px 3px 6px rgba(0, 0, 0, 0.32);
        max-width: 600px;
        white-space: pre-wrap;
        font-size: 40px;
        -webkit-transform: rotate(-0.8deg);
             -o-transform: rotate(-0.8deg);
                transform: rotate(-0.8deg);
        background-image: url("../images/backgrounds/breadcrumb_placeholder.png");
        padding: 20px 30px;
        padding-bottom: 12px;
        padding-left: 15px;
        background-size: 100% 100%;
        min-width: 200px;
        -webkit-font-smoothing: antialiased; }
        @media (max-width: 1024px) {
          .top_banner_wrapper .breadcrumb_wrapper .breadcrumb-title h1 {
            max-width: 560px;
            font-size: 38px; } }
        @media (max-width: 991px) {
          .top_banner_wrapper .breadcrumb_wrapper .breadcrumb-title h1 {
            font-size: 30px;
            min-width: auto; } }
        @media (max-width: 768px) {
          .top_banner_wrapper .breadcrumb_wrapper .breadcrumb-title h1 {
            font-size: 23px; } }
      @media (max-width: 480px) {
        .top_banner_wrapper .breadcrumb_wrapper .breadcrumb-title {
          width: calc(100vw - 70px);
          padding-right: 0; } }

.kk_club_wrapper {
  background-color: #fff;
  margin-bottom: 10px; }
  .kk_club_wrapper .btn_main.newsletter_signup {
    background-color: #e73787;
    color: #fff;
    border-color: #e73787;
    font-family: "Cartwheel", sans-serif; }
  .kk_club_wrapper .message_placeholder {
    font-family: "chaparral-pro-display", serif;
    -webkit-transform: scale(1, 0.98);
         -o-transform: scale(1, 0.98);
            transform: scale(1, 0.98);
    -webkit-text-stroke: 0.2px #2a154c;
    color: #2a154c;
    line-height: 26px;
    font-size: 14px;
    font-weight: bold;
    font-style: italic; }
  .kk_club_wrapper .kk_club_sharon {
    z-index: 5;
    position: relative; }
    .kk_club_wrapper .kk_club_sharon #sharon_signup {
      width: 215px;
      width: 180px;
      left: 40px;
      top: -475px;
      position: absolute; }
      @media (min-width: 1440px) {
        .kk_club_wrapper .kk_club_sharon #sharon_signup {
          top: -475px; } }
      @media (max-width: 1388px) {
        .kk_club_wrapper .kk_club_sharon #sharon_signup {
          top: -465px; } }
      @media (max-width: 1199px) {
        .kk_club_wrapper .kk_club_sharon #sharon_signup {
          top: -465px;
          width: 180px; } }
      @media (max-width: 1050px) {
        .kk_club_wrapper .kk_club_sharon #sharon_signup {
          top: -440px;
          width: 160px; } }
      @media (max-width: 991px) {
        .kk_club_wrapper .kk_club_sharon #sharon_signup {
          right: 0;
          left: auto;
          bottom: 0px;
          top: auto; } }
      @media (max-width: 767px) {
        .kk_club_wrapper .kk_club_sharon #sharon_signup {
          right: 0px;
          height: 300px;
          width: auto;
          left: 0px;
          margin-left: auto;
          margin-right: auto; } }
    .kk_club_wrapper .kk_club_sharon .sharon_signup.floating-cluster {
      right: 0px;
      height: 250px;
      width: 30%;
      left: 0px;
      top: -230px;
      margin-left: auto;
      margin-right: auto;
      position: absolute;
      z-index: 1; }
      .kk_club_wrapper .kk_club_sharon .sharon_signup.floating-cluster .floating:first-child {
        right: 10%;
        top: 10%; }
      .kk_club_wrapper .kk_club_sharon .sharon_signup.floating-cluster .floating:nth-child(2) {
        left: 20%;
        bottom: 13%; }
      .kk_club_wrapper .kk_club_sharon .sharon_signup.floating-cluster .floating:nth-child(3) {
        left: 0;
        bottom: 50%; }
  .kk_club_wrapper .kk_club {
    padding-top: 40px;
    padding-bottom: 70px;
    position: relative;
    margin-bottom: 0;
    z-index: 2; }
    @media (max-width: 768px) {
      .kk_club_wrapper .kk_club {
        padding-bottom: 230px;
        padding-top: 10px; } }
    .kk_club_wrapper .kk_club > .container {
      background-image: url("../images/backgrounds/retro-blue-bg.jpg");
      padding: 65px;
      border-radius: 0px 0px 25px 25px;
      position: relative;
      box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.24); }
      @media (max-width: 1441px) {
        .kk_club_wrapper .kk_club > .container {
          padding: 50px; } }
      .kk_club_wrapper .kk_club > .container:before {
        content: '';
        display: block;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        background-color: rgba(57, 193, 205, 0.8);
        pointer-events: none;
        border-radius: 0px 0px 25px 25px; }
      .kk_club_wrapper .kk_club > .container p {
        text-shadow: none;
        -webkit-text-stroke-width: 0px;
        color: #fff;
        -webkit-font-smoothing: antialiased; }
      .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one {
        width: 50%;
        display: inline-block;
        float: left; }
        .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one h2.heading_1 {
          font-size: 30px;
          margin-bottom: 15px;
          color: #fff;
          -webkit-font-smoothing: antialiased;
          text-transform: uppercase; }
          @media (max-width: 1441px) {
            .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one h2.heading_1 {
              font-size: 25px; } }
          @media (max-width: 991px) {
            .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one h2.heading_1 {
              font-size: 50px;
              width: 80%; } }
          @media (max-width: 767px) {
            .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one h2.heading_1 {
              font-size: 32px;
              width: 100%; } }
        .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one .image_and_desc {
          position: relative;
          margin-bottom: 30px; }
          .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one .image_and_desc .sharon {
            position: relative; }
          .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one .image_and_desc img {
            position: absolute;
            z-index: 10;
            bottom: 30px;
            width: 240px;
            bottom: -100px;
            left: -10px; }
          .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one .image_and_desc .desc_1 {
            padding: 0px; }
            .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one .image_and_desc .desc_1 p {
              font-size: 19px;
              text-shadow: none; }
              @media (max-width: 992px) {
                .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one .image_and_desc .desc_1 p {
                  width: 80%; } }
        @media (max-width: 991px) {
          .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_one {
            width: 100%; } }
      .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two {
        width: 50%;
        display: inline-block;
        float: left;
        position: relative; }
        .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two #sharon_signup {
          width: 75%;
          left: 12.5%;
          top: -20px;
          position: absolute; }
          @media (max-width: 991px) {
            .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two #sharon_signup {
              right: 0;
              left: auto;
              top: 15vw;
              width: 150px; } }
          @media (max-width: 767px) {
            .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two #sharon_signup {
              right: 0px;
              height: 300px;
              width: auto;
              left: 0px;
              margin-left: auto;
              margin-right: auto; } }
        .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two .sharon_signup.floating-cluster {
          right: 0px;
          height: 250px;
          width: 30%;
          left: 0px;
          top: -230px;
          margin-left: auto;
          margin-right: auto;
          position: absolute;
          z-index: 1; }
          .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two .sharon_signup.floating-cluster .floating:first-child {
            right: 10%;
            top: 10%; }
          .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two .sharon_signup.floating-cluster .floating:nth-child(2) {
            left: 20%;
            bottom: 13%; }
          .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two .sharon_signup.floating-cluster .floating:nth-child(3) {
            left: 0;
            bottom: 50%; }
        @media (max-width: 991px) {
          .kk_club_wrapper .kk_club > .container .kk_club_left_wrapper .kk_club_left_two {
            display: none; } }
      .kk_club_wrapper .kk_club > .container .floating-cluster.one {
        position: absolute;
        top: -65px;
        width: 60%;
        height: 40%;
        left: 23%;
        pointer-events: none; }
        .kk_club_wrapper .kk_club > .container .floating-cluster.one .floating:first-child {
          right: 40px;
          top: -20px; }
        .kk_club_wrapper .kk_club > .container .floating-cluster.one .floating:nth-child(2) {
          right: -80px;
          top: 10px; }
        .kk_club_wrapper .kk_club > .container .floating-cluster.one .floating:nth-child(3) {
          right: -10px;
          top: 130px; }
        @media (max-width: 1199px) {
          .kk_club_wrapper .kk_club > .container .floating-cluster.one {
            top: -40px;
            width: 60%;
            height: 40%;
            left: 20%; }
            .kk_club_wrapper .kk_club > .container .floating-cluster.one .floating:nth-child(3) {
              right: -60px; } }
        @media (max-width: 991px) {
          .kk_club_wrapper .kk_club > .container .floating-cluster.one {
            top: 0;
            right: 65px;
            left: unset;
            width: 60%;
            height: 40%; } }
      .kk_club_wrapper .kk_club > .container .floating-cluster.two {
        position: absolute;
        bottom: 0;
        width: 60%;
        height: 40%;
        left: 23%;
        pointer-events: none; }
        .kk_club_wrapper .kk_club > .container .floating-cluster.two .floating:first-child {
          right: -30px;
          top: 30px; }
        .kk_club_wrapper .kk_club > .container .floating-cluster.two .floating:nth-child(2) {
          right: 70px;
          bottom: -50px; }
        .kk_club_wrapper .kk_club > .container .floating-cluster.two .floating:nth-child(3) {
          right: -20px;
          bottom: -100px; }
        @media (max-width: 991px) {
          .kk_club_wrapper .kk_club > .container .floating-cluster.two {
            bottom: -300px;
            right: 20px;
            width: 60%;
            height: 40%;
            left: unset; }
            .kk_club_wrapper .kk_club > .container .floating-cluster.two .floating:nth-child(2) {
              right: 115px;
              bottom: -50px; }
            .kk_club_wrapper .kk_club > .container .floating-cluster.two .floating:nth-child(3) {
              right: -5px;
              bottom: -150px; } }
      @media (max-width: 768px) {
        .kk_club_wrapper .kk_club > .container .floating-cluster {
          display: none; } }
      .kk_club_wrapper .kk_club > .container h2.heading_2 {
        font-size: 42px;
        font-family: "Sanuk-Fat", serif;
        text-transform: none;
        letter-spacing: normal;
        -webkit-font-smoothing: antialiased;
        margin-bottom: 15px;
        width: 80%;
        color: #fff;
        text-transform: uppercase; }
        @media (max-width: 1441px) {
          .kk_club_wrapper .kk_club > .container h2.heading_2 {
            font-size: 38px; } }
        @media (max-width: 991px) {
          .kk_club_wrapper .kk_club > .container h2.heading_2 {
            margin-bottom: 0px; } }
        @media (max-width: 768px) {
          .kk_club_wrapper .kk_club > .container h2.heading_2 {
            width: 80%;
            font-size: 22px; } }
      .kk_club_wrapper .kk_club > .container .desc_2 {
        width: 70%; }
        .kk_club_wrapper .kk_club > .container .desc_2 p {
          font-size: 20px; }
        @media (max-width: 768px) {
          .kk_club_wrapper .kk_club > .container .desc_2 {
            width: 80%; } }
      .kk_club_wrapper .kk_club > .container .unsubscribing p {
        font-weight: normal;
        font-size: 17px; }
        .kk_club_wrapper .kk_club > .container .unsubscribing p a {
          color: #fff;
          text-decoration: underline; }
      @media (max-width: 991px) {
        .kk_club_wrapper .kk_club > .container {
          padding: 65px 30px; } }
      @media (max-width: 768px) {
        .kk_club_wrapper .kk_club > .container {
          padding: 55px 35px; } }
      @media (max-width: 480px) {
        .kk_club_wrapper .kk_club > .container {
          padding: 40px 20px; } }
    .kk_club_wrapper .kk_club:before {
      content: '';
      display: block;
      height: 100%;
      position: absolute;
      z-index: 0;
      left: 0;
      top: 10%;
      right: 0;
      background: #e73787;
      -webkit-transform: skewY(-6.5deg);
           -o-transform: skewY(-6.5deg);
              transform: skewY(-6.5deg);
      -webkit-transform-origin: 100%;
           -o-transform-origin: 100%;
              transform-origin: 100%; }

/** --------------------- **/
/** 0. ADD TO CART BUTTON **/
/** --------------------- **/
.woocommerce .single_add_to_cart_button.kk_button.button, .add_to_cart_wrapper .ajax_add_to_cart, p.buttons .button.wc-forward, .product_single .ajax_add_to_cart {
  display: block;
  float: none !important;
  background-color: #e73787 !important;
  padding: 10px 30px !important;
  padding-bottom: 12px !important;
  font-family: "Cartwheel", sans-serif;
  font-size: 18px !important;
  border-radius: 10px !important;
  -webkit-font-smoothing: antialiased;
  color: #fff !important;
  font-weight: normal !important;
  font-style: normal;
  -o-transition: all .15s ease-in-out;
     transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -webkit-transition: all .15s ease-in-out;
  position: relative; }
  @media (max-width: 1440px) {
    .woocommerce .single_add_to_cart_button.kk_button.button, .add_to_cart_wrapper .ajax_add_to_cart, p.buttons .button.wc-forward, .product_single .ajax_add_to_cart {
      padding: 10px 20px !important; } }
  @media (max-width: 1199px) {
    .woocommerce .single_add_to_cart_button.kk_button.button, .add_to_cart_wrapper .ajax_add_to_cart, p.buttons .button.wc-forward, .product_single .ajax_add_to_cart {
      padding: 10px 10px !important; } }
  @media (max-width: 991px) {
    .woocommerce .single_add_to_cart_button.kk_button.button, .add_to_cart_wrapper .ajax_add_to_cart, p.buttons .button.wc-forward, .product_single .ajax_add_to_cart {
      padding: 10px 20px !important; } }
  @media (max-width: 480px) {
    .woocommerce .single_add_to_cart_button.kk_button.button, .add_to_cart_wrapper .ajax_add_to_cart, p.buttons .button.wc-forward, .product_single .ajax_add_to_cart {
      width: 100%; } }
  .woocommerce .single_add_to_cart_button.kk_button.button:focus, .woocommerce .single_add_to_cart_button.kk_button.button:active, .add_to_cart_wrapper .ajax_add_to_cart:focus, .add_to_cart_wrapper .ajax_add_to_cart:active, p.buttons .button.wc-forward:focus, p.buttons .button.wc-forward:active, .product_single .ajax_add_to_cart:focus, .product_single .ajax_add_to_cart:active {
    outline: none; }
  .woocommerce .single_add_to_cart_button.kk_button.button:hover, .add_to_cart_wrapper .ajax_add_to_cart:hover, p.buttons .button.wc-forward:hover, .product_single .ajax_add_to_cart:hover {
    background-color: #02d0d8 !important; }
  .woocommerce .single_add_to_cart_button.kk_button.button.loading, .add_to_cart_wrapper .ajax_add_to_cart.loading, p.buttons .button.wc-forward.loading, .product_single .ajax_add_to_cart.loading {
    opacity: 1 !important; }
    .woocommerce .single_add_to_cart_button.kk_button.button.loading:before, .add_to_cart_wrapper .ajax_add_to_cart.loading:before, p.buttons .button.wc-forward.loading:before, .product_single .ajax_add_to_cart.loading:before {
      -o-transition: all .3s ease-in-out;
         transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      content: '';
      position: absolute;
      display: block;
      background: url("../images/loading.gif");
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      border-radius: 8px;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      background-color: #e73787; }
    .woocommerce .single_add_to_cart_button.kk_button.button.loading:after, .add_to_cart_wrapper .ajax_add_to_cart.loading:after, p.buttons .button.wc-forward.loading:after, .product_single .ajax_add_to_cart.loading:after {
      display: none !important; }

ul.products .add_to_cart_button {
  background-color: #e73787;
  padding: 15px 25px;
  padding-bottom: 17px;
  font-family: "Cartwheel", sans-serif;
  font-size: 20px;
  border-radius: 10px;
  color: #fff;
  -o-transition: all .15s ease-in-out;
     transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -webkit-transition: all .15s ease-in-out; }
  ul.products .add_to_cart_button:focus, ul.products .add_to_cart_button:active {
    outline: none; }
  ul.products .add_to_cart_button:hover {
    background-color: #02d0d8;
    color: #fff; }

.add_to_cart_wrapper .ajax_add_to_cart, ul.products .add_to_cart_button {
  border: none;
  font-size: 16px;
  padding: 10px 20px;
  padding-bottom: 12px;
  position: relative; }
  .add_to_cart_wrapper .ajax_add_to_cart.loading, ul.products .add_to_cart_button.loading {
    opacity: 1 !important; }
    .add_to_cart_wrapper .ajax_add_to_cart.loading:before, ul.products .add_to_cart_button.loading:before {
      -o-transition: all .3s ease-in-out;
         transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      content: '';
      position: absolute;
      display: block;
      background: url("../images/loading.gif");
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      border-radius: 8px;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      background-color: #e73787; }
    .add_to_cart_wrapper .ajax_add_to_cart.loading:after, ul.products .add_to_cart_button.loading:after {
      display: none !important; }

/** ---------------------- **/
/** 1. WOOCOMMERCE NOTICES **/
/** ---------------------- **/
.woocommerce-info.returning-customer-notice {
  display: none;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-top: 3px solid #f9a300;
  border-radius: 6px;
  font-family: "Cartwheel", sans-serif; }
  .woocommerce-info.returning-customer-notice:before {
    content: '\f007';
    font-family: 'FontAwesome';
    display: block;
    position: absolute;
    color: #f9a300; }
  .woocommerce-info.returning-customer-notice a {
    text-decoration: none;
    -o-transition: all .3s ease-in-out;
       transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out; }

.page_content > .woocommerce {
  position: relative; }

.woocommerce > .woocommerce-error {
  opacity: 0; }

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Cartwheel", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: transparent; }

.woocommerce-message {
  border: 2px solid #0ea56e; }
  .woocommerce-message:before {
    color: #0ea56e; }

.woocommerce-error {
  border: 2px solid crimson; }
  .woocommerce-error:before {
    color: crimson; }

.woocommerce-info {
  border: 2px solid #02d0d8; }
  .woocommerce-info:before {
    color: #02d0d8; }

a.added_to_cart.wc-forward {
  display: none; }

.woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form h4 {
  color: #02d0d8;
  font-weight: 800;
  font-family: "chaparral-pro-display", serif;
  -webkit-font-smoothing: antialiased;
  font-size: 25px; }

.woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table {
  border: 1px #cccccc solid;
  border-top: 4px #02d0d8 solid;
  border-radius: 0;
  font-family: "Cartwheel", sans-serif; }
  .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item {
    font-family: "Cartwheel", sans-serif;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 1199px) {
      .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item td {
        padding: 6px 3px; } }
    @media (max-width: 768px) {
      .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item td {
        padding: 6px 12px; }
        .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item td:before {
          font-size: 15px;
          -webkit-font-smoothing: antialiased; } }
    .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-remove a {
      width: 20px;
      line-height: 14px; }
    .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-thumbnail {
      display: block; }
      .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-thumbnail a img {
        width: 150px; }
      @media (max-width: 768px) {
        .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-thumbnail {
          text-align: left !important; }
          .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-thumbnail:before {
            display: none; } }
    .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-name a {
      font-size: 20px;
      white-space: pre-wrap;
      max-width: 150px;
      display: block; }
      @media (max-width: 768px) {
        .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-name a {
          max-width: none; } }
    .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .quantity_label {
      display: none; }
    .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .plus, .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .minus {
      font-size: 18px; }
    .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity input.input-text {
      font-size: 23px; }
      @media (max-width: 1199px) {
        .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity input.input-text {
          width: 31px; } }
      @media (max-width: 768px) {
        .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity input.input-text {
          height: auto; } }
    .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .plus, .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .minus {
      display: inline-block;
      line-height: 23px;
      font-size: 28px;
      border: none;
      background-color: #02d0d8;
      background-color: #e2e2e2;
      font-family: "Cartwheel", sans-serif;
      height: 29px;
      width: 29px;
      text-align: center;
      border-radius: 10px;
      color: #fff;
      cursor: pointer;
      vertical-align: middle;
      -o-transition: all .3s ease-in-out;
         transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out; }
      .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .plus:hover, .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .minus:hover {
        background-color: #e73787; }
        .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .plus:hover:before, .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .minus:hover:before {
          color: #fff; }
      .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .plus:before, .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-quantity .kk_quantity .minus:before {
        color: #494949;
        font-size: 20px;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
           transition: all 0.2s linear;
        display: inline-block;
        width: 13px;
        text-rendering: auto; }
    .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-price, .woocommerce-page.woocommerce-cart.basket .woocommerce-cart-form .shop_table .cart_item .product-subtotal {
      font-size: 23px; }

.woocommerce-page.woocommerce-cart.basket .cart-collaterals .cart_totals {
  float: none;
  width: 100%; }
  .woocommerce-page.woocommerce-cart.basket .cart-collaterals .cart_totals h2 {
    font-family: "gotham-book-webfont", sans-serif;
    color: #2a154c;
    font-size: 15px;
    margin-bottom: 17px;
    margin-top: 14px; }
  .woocommerce-page.woocommerce-cart.basket .cart-collaterals .cart_totals .shop_table {
    border: 1px #cccccc solid;
    border-top: 4px #e73787 solid;
    border-radius: 0;
    font-family: "Cartwheel", sans-serif; }

.meme_intro h2 {
  padding-bottom: 10px; }

.page-template-template-lookatmeme .page_content {
  padding-bottom: 0; }
  @media (max-width: 768px) {
    .page-template-template-lookatmeme .page_content {
      padding: 30px;
      padding-top: 0px;
      padding-bottom: 10px; } }

.page-template-template-lookatmeme .meme_wrapper {
  background-color: #fff;
  border-radius: 25px 25px 0 0;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18); }
  .page-template-template-lookatmeme .meme_wrapper .top {
    border-radius: 25px 25px 0 0; }
  .page-template-template-lookatmeme .meme_wrapper .meme_intro {
    padding: 50px;
    padding-right: 15px;
    background-color: #f7f7f7;
    border-radius: 25px 0 0 0; }
    .page-template-template-lookatmeme .meme_wrapper .meme_intro h2 {
      font-family: "Cartwheel", sans-serif;
      font-size: 40px;
      padding: 20px;
      padding-bottom: 0;
      min-height: 50px;
      color: #e73787;
      -webkit-transform: rotate(-2deg);
           -o-transform: rotate(-2deg);
              transform: rotate(-2deg);
      -webkit-font-smoothing: antialiased;
      margin-bottom: 50px; }
      @media (max-width: 991px) {
        .page-template-template-lookatmeme .meme_wrapper .meme_intro h2 {
          width: 100%;
          font-size: 30px; } }
      @media (max-width: 767px) {
        .page-template-template-lookatmeme .meme_wrapper .meme_intro h2 {
          font-size: 36px;
          padding-top: 0px;
          margin-bottom: 30px; } }
    .page-template-template-lookatmeme .meme_wrapper .meme_intro .meme-hash {
      font-family: "Cartwheel", sans-serif;
      font-size: 30px;
      -webkit-transform: rotate(-2deg);
           -o-transform: rotate(-2deg);
              transform: rotate(-2deg);
      margin: 0;
      padding: 20px;
      padding-top: 0;
      margin-bottom: 30px; }
    .page-template-template-lookatmeme .meme_wrapper .meme_intro p {
      font-size: 16px;
      padding-left: 20px; }
      .page-template-template-lookatmeme .meme_wrapper .meme_intro p span {
        color: #e73787; }
    @media (max-width: 991px) {
      .page-template-template-lookatmeme .meme_wrapper .meme_intro {
        border-radius: 25px 25px 0 0;
        padding: 30px 15px; } }
  .page-template-template-lookatmeme .meme_wrapper .meme_image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 0 25px 0 0;
    background-color: #f7f7f7; }
    @media (max-width: 991px) {
      .page-template-template-lookatmeme .meme_wrapper .meme_image {
        min-height: 300px;
        border-radius: 0;
        margin-bottom: 30px; } }
    @media (max-width: 767px) {
      .page-template-template-lookatmeme .meme_wrapper .meme_image {
        margin-top: 0px; } }
  .page-template-template-lookatmeme .meme_wrapper .meme_gallery {
    padding: 50px 0px; }
    @media (max-width: 991px) {
      .page-template-template-lookatmeme .meme_wrapper .meme_gallery {
        padding: 0; } }

.page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid {
  padding-top: 40px;
  padding-bottom: 70px;
  position: relative;
  margin-bottom: 0;
  z-index: 2; }
  @media (max-width: 767px) {
    .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid {
      padding-top: 0; } }
  .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid:before {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 20%;
    right: 0;
    background: #e73787;
    -webkit-transform: skewY(-6.5deg);
         -o-transform: skewY(-6.5deg);
            transform: skewY(-6.5deg);
    -webkit-transform-origin: 100%;
         -o-transform-origin: 100%;
            transform-origin: 100%; }
  .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner {
    background-image: url("../images/backgrounds/retro-blue-bg.jpg");
    padding: 65px;
    border-radius: 0px 0px 25px 25px;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.24);
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative; }
    .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner:before {
      content: '';
      display: block;
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      background-color: rgba(57, 193, 205, 0.8);
      pointer-events: none;
      border-radius: 0px 0px 25px 25px; }
    .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner:after {
      content: '';
      display: block;
      position: absolute;
      height: 135%;
      width: 100%;
      left: 0;
      top: -35%;
      background-image: url("../images/meme/create-meme.png");
      pointer-events: none;
      background-repeat: no-repeat;
      background-position: 100px center;
      background-size: contain; }
      @media (max-width: 580px) {
        .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner:after {
          left: -88px;
          height: 90%;
          bottom: 0;
          top: auto; } }
    @media (max-width: 580px) {
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .col-xs-offset-6 {
        margin-left: 30px;
        width: calc(100% - 30px); }
        .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .col-xs-offset-6 a {
          width: 100%;
          padding: 10px;
          padding-left: 24px; }
          .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .col-xs-offset-6 a span {
            width: 90%; } }
    .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster {
      position: absolute;
      width: 50%;
      height: 100%;
      left: 0;
      top: 0;
      pointer-events: none; }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:first-child {
        right: 245px;
        top: -70px; }
        @media (max-width: 767px) {
          .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:first-child {
            right: 212px; } }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(2) {
        top: -10px;
        left: 140px; }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(3) {
        right: 245px;
        top: 60px; }
        @media (max-width: 1199px) {
          .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(3) {
            right: 145px; } }
        @media (max-width: 991px) {
          .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(3) {
            right: 100px; } }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(4) {
        left: 60px;
        bottom: 60px; }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(5) {
        right: 300px;
        bottom: 40px;
        z-index: 1; }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(6) {
        right: 190px;
        bottom: -30px; }
        @media (max-width: 1199px) {
          .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(6) {
            bottom: 0; } }
        @media (max-width: 991px) {
          .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .floating-cluster .floating:nth-child(6) {
            right: 100px; } }
    @media (max-width: 580px) {
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .col-xs-5.col-xs-offset-6 {
        width: 100%;
        margin-left: 0; } }
    .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .create-meme-box {
      background-color: #33a9b5;
      border-radius: 10px;
      font-family: "Sanuk-Fat", serif;
      font-size: 35px;
      color: #fff;
      padding: 20px 30px;
      text-transform: uppercase;
      display: table;
      -o-transition: all .3s ease-in-out;
         transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out; }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .create-meme-box span {
        display: inline-block;
        width: 70%; }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .create-meme-box .create-arrow {
        display: table-cell;
        vertical-align: middle; }
        .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .create-meme-box .create-arrow i {
          width: 40px;
          height: 40px;
          padding: 10px;
          border: 1px solid #fff;
          border-radius: 100%;
          font-size: 35px;
          text-align: center;
          line-height: 17px;
          padding-left: 13px;
          -o-transition: all .3s ease-in-out;
             transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -webkit-transition: all .3s ease-in-out; }
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .create-meme-box:hover i {
        background-color: #02d0d8;
        border-color: #02d0d8; }
      @media (max-width: 991px) {
        .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner .create-meme-box {
          font-size: 20px; } }
    @media (max-width: 768px) {
      .page-template-template-lookatmeme .meme-banner-wrapper > .container-fluid .meme_banner {
        width: 100%;
        padding: 30px; } }

.page-template-template-characters .page-content .container {
  padding: 40px 20px;
  border-radius: 25px 25px 0px 0px; }
  @media (max-width: 991px) {
    .page-template-template-characters .page-content .container {
      width: 100%; } }

.page-template-template-characters .characters-all {
  background-color: #fff; }
  .page-template-template-characters .characters-all .main-characters {
    padding: 15px 0; }
    .page-template-template-characters .characters-all .main-characters .character-single {
      width: 50%;
      display: inline-block;
      float: left; }
      .page-template-template-characters .characters-all .main-characters .character-single .character-photo {
        margin-top: 40px;
        float: left;
        position: relative;
        width: 50%;
        display: inline-block; }
        .page-template-template-characters .characters-all .main-characters .character-single .character-photo img {
          position: absolute;
          z-index: 1;
          bottom: 0;
          width: 135%; }
          @media (max-width: 1199px) {
            .page-template-template-characters .characters-all .main-characters .character-single .character-photo img {
              width: 125%; } }
          @media (max-width: 901px) {
            .page-template-template-characters .characters-all .main-characters .character-single .character-photo img {
              position: relative;
              width: 100%; } }
        @media (max-width: 901px) {
          .page-template-template-characters .characters-all .main-characters .character-single .character-photo {
            position: absolute;
            width: 50%;
            height: 100%;
            margin-top: -150px;
            left: 30%;
            z-index: 0; } }
        @media (max-width: 768px) {
          .page-template-template-characters .characters-all .main-characters .character-single .character-photo {
            width: 280px;
            left: 30px; } }
        @media (max-width: 350px) {
          .page-template-template-characters .characters-all .main-characters .character-single .character-photo {
            width: 100%;
            left: 0; } }
      .page-template-template-characters .characters-all .main-characters .character-single .character-details {
        width: 50%;
        display: inline-block;
        position: relative;
        border: 2px solid #fed800;
        border-radius: 30px;
        padding-top: 0;
        background: white; }
        .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-titles {
          background-image: url("../images/backgrounds/paper-bg-blue.png");
          background-size: contain;
          background-position: center center;
          background-repeat: no-repeat;
          padding: 50px;
          margin-left: -80px;
          margin-right: 80px;
          margin-top: -20px; }
          @media (max-width: 1199px) {
            .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-titles {
              padding: 30px 25px; } }
          @media (max-width: 901px) {
            .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-titles {
              margin-left: 0;
              margin-right: 0;
              margin-top: -30px;
              padding: 45px 25px; } }
          .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-titles .character-name {
            font-size: 35px;
            color: #fff;
            font-family: "Cartwheel", sans-serif;
            margin: 10px 20px 20px 20px;
            -webkit-font-smoothing: antialiased; }
            @media (max-width: 1199px) {
              .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-titles .character-name {
                font-size: 27px; } }
          .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-titles .actor-name {
            display: none;
            text-align: right;
            font-family: "Cartwheel", sans-serif;
            color: #fed800; }
            @media (max-width: 1199px) {
              .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-titles .actor-name {
                font-size: 21px; } }
        .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-excerpt {
          font-family: "chaparral-pro-display", serif;
          min-height: 150px;
          margin-bottom: 130px;
          padding: 0 20px; }
          .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-excerpt p {
            font-size: 20px;
            line-height: normal; }
            @media (max-width: 1199px) {
              .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-excerpt p {
                font-size: 18px; } }
        .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-quote {
          position: absolute;
          bottom: 0;
          font-family: "Cartwheel", sans-serif;
          font-size: 25px;
          padding: 20px;
          min-height: 50px;
          color: #02d0d8;
          -webkit-transform: rotate(4deg);
               -o-transform: rotate(4deg);
                  transform: rotate(4deg);
          opacity: 0;
          -o-transition: all .3s ease-in-out;
             transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -webkit-transition: all .3s ease-in-out; }
          .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-quote:before {
            content: '';
            background-image: url("../images/backgrounds/quotes-yellow.png");
            font-family: "chaparral-pro-display", serif;
            display: block;
            width: 65px;
            height: 75px;
            position: absolute;
            top: -5px;
            left: -30px;
            background-size: contain;
            background-repeat: no-repeat;
            z-index: -1;
            background-position: center center; }
          @media (max-width: 1199px) {
            .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-quote {
              font-size: 20px;
              padding: 15px; }
              .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-quote:before {
                width: 45px;
                height: 55px;
                top: -5px;
                left: -15px; } }
          @media (max-width: 768px) {
            .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-quote:before {
              left: 0; } }
          .page-template-template-characters .characters-all .main-characters .character-single .character-details .character-quote.visible {
            opacity: 1; }
        @media (max-width: 901px) {
          .page-template-template-characters .characters-all .main-characters .character-single .character-details {
            margin: 0 auto;
            display: block;
            padding-top: 0; } }
        @media (max-width: 768px) {
          .page-template-template-characters .characters-all .main-characters .character-single .character-details {
            width: 280px; } }
        @media (max-width: 350px) {
          .page-template-template-characters .characters-all .main-characters .character-single .character-details {
            width: 100%; } }
      .page-template-template-characters .characters-all .main-characters .character-single.kk .character-details {
        border: 2px solid #e73787; }
        .page-template-template-characters .characters-all .main-characters .character-single.kk .character-details .character-titles {
          background-image: url("../images/backgrounds/paper-bg-gold.png"); }
          .page-template-template-characters .characters-all .main-characters .character-single.kk .character-details .character-titles .character-name {
            -webkit-font-smoothing: antialiased;
            text-shadow: -1px -1px 1px #e73787, 1px -1px 1px #e73787, -2px 1px 1px #e73787, 1px 1px 1px #e73787; }
            @media (min-width: 1200px) {
              .page-template-template-characters .characters-all .main-characters .character-single.kk .character-details .character-titles .character-name {
                margin: 0; } }
          .page-template-template-characters .characters-all .main-characters .character-single.kk .character-details .character-titles .actor-name {
            color: #e73787; }
        .page-template-template-characters .characters-all .main-characters .character-single.kk .character-details .character-quote {
          color: #e73787; }
      .page-template-template-characters .characters-all .main-characters .character-single.character-1 {
        padding-left: 25px; }
      .page-template-template-characters .characters-all .main-characters .character-single.character-2 {
        padding-right: 25px; }
      @media (min-width: 1200px) {
        .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) {
          width: 33.3333333333%;
          padding: 10px; }
          .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-photo {
            margin-top: 10px; }
          .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details {
            padding-top: 15px; }
            .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-titles {
              padding: 22px 16px;
              margin-left: -40px;
              margin-right: 40px; }
              .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-titles .character-name {
                text-shadow: none;
                -webkit-font-smoothing: antialiased;
                font-size: 20px; }
              .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-titles .actor-name {
                font-size: 14px; }
            .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-excerpt {
              margin-bottom: 80px; }
              .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-excerpt p {
                font-size: 16px;
                line-height: normal; }
            .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-quote {
              font-size: 18px; }
              .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-quote:before {
                width: 35px;
                height: 45px;
                position: absolute;
                top: 5px;
                left: -5px; }
          .page-template-template-characters .characters-all .main-characters .character-single:not(.kk).character-6 {
            margin-left: 33.3333333333%; }
            .page-template-template-characters .characters-all .main-characters .character-single:not(.kk).character-6 .character-photo img {
              left: -30px; } }
      @media (max-width: 1199px) {
        .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-titles {
          padding: 35px;
          margin-left: -105px;
          margin-right: 60px; }
        .page-template-template-characters .characters-all .main-characters .character-single.character-3 {
          padding-left: 25px; }
        .page-template-template-characters .characters-all .main-characters .character-single.character-4 {
          padding-right: 25px; }
        .page-template-template-characters .characters-all .main-characters .character-single.character-5 {
          padding-left: 25px; }
        .page-template-template-characters .characters-all .main-characters .character-single.character-6 {
          padding-right: 25px; }
        .page-template-template-characters .characters-all .main-characters .character-single.character-7 {
          padding-left: 25px; } }
      @media (max-width: 901px) {
        .page-template-template-characters .characters-all .main-characters .character-single {
          width: 100%;
          margin: 0 auto;
          display: block;
          margin-bottom: 20px; }
          .page-template-template-characters .characters-all .main-characters .character-single .character-singler-inner {
            width: 80%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            padding-top: 150px; }
          .page-template-template-characters .characters-all .main-characters .character-single:not(.kk) .character-details .character-titles {
            padding: 35px;
            margin-left: 0;
            margin-right: 0; }
          .page-template-template-characters .characters-all .main-characters .character-single.character-1 {
            padding-left: 25px;
            padding-right: 25px; }
          .page-template-template-characters .characters-all .main-characters .character-single.character-2 {
            padding-left: 25px;
            padding-right: 25px; }
          .page-template-template-characters .characters-all .main-characters .character-single.character-3 {
            padding-left: 25px;
            padding-right: 25px; }
          .page-template-template-characters .characters-all .main-characters .character-single.character-4 {
            padding-left: 25px;
            padding-right: 25px; }
            .page-template-template-characters .characters-all .main-characters .character-single.character-4 .character-photo img {
              bottom: 45px; }
          .page-template-template-characters .characters-all .main-characters .character-single.character-5 {
            padding-left: 25px;
            padding-right: 25px; }
            .page-template-template-characters .characters-all .main-characters .character-single.character-5 .character-photo img {
              bottom: 30px; }
          .page-template-template-characters .characters-all .main-characters .character-single.character-6 {
            padding-left: 25px;
            padding-right: 25px; }
            .page-template-template-characters .characters-all .main-characters .character-single.character-6 .character-photo img {
              bottom: 50px; }
          .page-template-template-characters .characters-all .main-characters .character-single.character-7 {
            padding-left: 25px;
            padding-right: 25px; }
            .page-template-template-characters .characters-all .main-characters .character-single.character-7 .character-photo img {
              bottom: 60px; } }
      @media (max-width: 768px) {
        .page-template-template-characters .characters-all .main-characters .character-single .character-singler-inner {
          margin: 0 auto;
          width: 280px; }
        .page-template-template-characters .characters-all .main-characters .character-single.character-1, .page-template-template-characters .characters-all .main-characters .character-single.character-2, .page-template-template-characters .characters-all .main-characters .character-single.character-3, .page-template-template-characters .characters-all .main-characters .character-single.character-4, .page-template-template-characters .characters-all .main-characters .character-single.character-5, .page-template-template-characters .characters-all .main-characters .character-single.character-6, .page-template-template-characters .characters-all .main-characters .character-single.character-7 {
          padding-left: 0;
          padding-right: 0; } }
      @media (max-width: 350px) {
        .page-template-template-characters .characters-all .main-characters .character-single {
          width: 100%; }
          .page-template-template-characters .characters-all .main-characters .character-single .character-singler-inner {
            width: 100%; } }
    @media (max-width: 901px) {
      .page-template-template-characters .characters-all .main-characters {
        padding: 0; } }
  .page-template-template-characters .characters-all .recurring-characters {
    padding: 0px 40px;
    padding-top: 30px; }
    @media (max-width: 991px) {
      .page-template-template-characters .characters-all .recurring-characters {
        padding: 0px;
        top: 20px; } }
    .page-template-template-characters .characters-all .recurring-characters .recurring-single {
      margin-bottom: 30px; }
      @media (max-width: 767px) {
        .page-template-template-characters .characters-all .recurring-characters .recurring-single {
          padding-left: 0;
          padding-right: 0; } }
      @media (min-width: 540px) and (max-width: 786px) {
        .page-template-template-characters .characters-all .recurring-characters .recurring-single {
          width: 50%;
          text-align: center; } }
      @media (max-width: 539px) {
        .page-template-template-characters .characters-all .recurring-characters .recurring-single .re-twins {
          width: 100% !important;
          text-align: center; }
          .page-template-template-characters .characters-all .recurring-characters .recurring-single .re-twins .recharacter-name {
            margin-top: 5px;
            margin-bottom: 0px !important; } }
      @media (min-width: 787px) and (max-width: 901px) {
        .page-template-template-characters .characters-all .recurring-characters .recurring-single .recurring-images {
          width: auto; } }
      @media (max-width: 786px) {
        .page-template-template-characters .characters-all .recurring-characters .recurring-single .recurring-images {
          margin-bottom: 15px; } }
      .page-template-template-characters .characters-all .recurring-characters .recurring-single .recharacter-photo {
        overflow: hidden;
        border-radius: 15px; }
        .page-template-template-characters .characters-all .recurring-characters .recurring-single .recharacter-photo img {
          border-radius: 15px;
          margin: 0 auto; }
        @media (max-width: 768px) {
          .page-template-template-characters .characters-all .recurring-characters .recurring-single .recharacter-photo img {
            margin: 0 auto; } }
      .page-template-template-characters .characters-all .recurring-characters .recurring-single .recharacter-titles {
        height: 100%;
        display: table;
        width: 100%; }
        .page-template-template-characters .characters-all .recurring-characters .recurring-single .recharacter-titles .recharacter-titles-inner {
          display: table-cell;
          vertical-align: middle; }
        .page-template-template-characters .characters-all .recurring-characters .recurring-single .recharacter-titles .recharacter-name {
          font-family: "Cartwheel", sans-serif;
          font-size: 25px;
          letter-spacing: 1px;
          color: #fff;
          -webkit-font-smoothing: antialiased;
          text-shadow: -1px -1px 1px #e73787, 1px -1px 1px #e73787, -2px 1px 1px #e73787, 1px 1px 1px #e73787;
          margin-bottom: 10px; }
          @media (max-width: 767px) {
            .page-template-template-characters .characters-all .recurring-characters .recurring-single .recharacter-titles .recharacter-name {
              font-size: 20px; } }
        .page-template-template-characters .characters-all .recurring-characters .recurring-single .recharacter-titles .reactor-name {
          font-family: "Cartwheel", sans-serif;
          font-size: 14px;
          color: #02d0d8;
          margin: 0;
          display: none; }

.mg-wrapper {
  position: relative;
  text-align: center; }
  .mg-wrapper.mg-horizontal-layout .mg-image {
    float: left;
    width: 55%;
    margin-right: 5%; }
  .mg-wrapper.mg-horizontal-layout .mg-controls {
    float: left;
    width: 40%; }
  .mg-wrapper .mg-image {
    position: relative;
    display: inline-block;
    margin: 0 auto 10px;
    width: auto;
    overflow: hidden;
    text-align: left; }
    .mg-wrapper .mg-image > img {
      max-width: 100%;
      width: 100%; }
    .mg-wrapper .mg-image:hover .mg-helpers {
      visibility: visible; }
  .mg-wrapper .mg-canvas {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .mg-wrapper .mg-canvas canvas {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3; }
  .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox {
    margin-bottom: 25px;
    text-align: right; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox:last-child {
      margin: 0; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox:after {
      content: ' ';
      height: 0;
      display: block;
      clear: both; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox input {
      box-sizing: border-box;
      padding: 0 5px;
      max-width: 100%;
      height: 30px;
      font-size: 16px;
      border-top: none;
      border-right: none;
      border-left: none; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox .colorpickerContainer, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox input:not(:last-child) {
      float: left;
      margin-right: 2%; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox .mg-textbox-text {
      width: 40%; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox .mg-textbox-border-width, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox .mg-textbox-size, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox .colorpickerContainer {
      width: 13%; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-textbox .colorpickerReplacer {
      width: 100%; }
  .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-add-textbox, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-advanced-settings-toggle, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-toolbox-toggle {
    display: none;
    padding: 5px 0;
    text-align: center;
    font-size: 20px; }
  .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-add-textbox.active, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-advanced-settings-toggle.active, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-toolbox-toggle.active {
    font-weight: 700; }
  .mg-wrapper:not(.usingBootstrap) .mg-controls .option input {
    margin-right: 5%; }
  .mg-wrapper:not(.usingBootstrap) .mg-controls .option label {
    display: inline; }
  .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-toolbox .mg-toolbox-item {
    float: left;
    width: 21.25%;
    margin-right: 5%;
    text-align: center; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-toolbox .mg-toolbox-item .colorpickerReplacer, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-toolbox .mg-toolbox-item button, .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-toolbox .mg-toolbox-item input {
      box-sizing: border-box;
      width: 100%;
      height: 30px; }
    .mg-wrapper:not(.usingBootstrap) .mg-controls .mg-toolbox .mg-toolbox-item:last-child {
      margin-right: 0; }
  .mg-wrapper.usingBootstrap .mg-controls .row:not(:last-child) {
    margin-bottom: 10px; }
  .mg-wrapper.usingBootstrap .mg-controls .colorpickerReplacer, .mg-wrapper.usingBootstrap .mg-controls input {
    width: 100%; }
  .mg-wrapper.usingBootstrap .mg-controls .col-md-1, .mg-wrapper.usingBootstrap .mg-controls .col-md-2, .mg-wrapper.usingBootstrap .mg-controls .col-md-3, .mg-wrapper.usingBootstrap .mg-controls .col-md-4, .mg-wrapper.usingBootstrap .mg-controls .col-md-5, .mg-wrapper.usingBootstrap .mg-controls .col-md-6, .mg-wrapper.usingBootstrap .mg-controls .col-md-7, .mg-wrapper.usingBootstrap .mg-controls .col-md-8, .mg-wrapper.usingBootstrap .mg-controls .col-md-9, .mg-wrapper.usingBootstrap .mg-controls .col-md-10, .mg-wrapper.usingBootstrap .mg-controls .col-md-11, .mg-wrapper.usingBootstrap .mg-controls .col-md-12 {
    margin-bottom: 5px; }
  .mg-wrapper .mg-controls {
    text-align: left; }
    .mg-wrapper .mg-controls .mg-textbox {
      margin-bottom: 10px; }
      .mg-wrapper .mg-controls .mg-textbox > div {
        text-align: center; }
    .mg-wrapper .mg-controls .option :first-child {
      text-align: center; }
    .mg-wrapper .mg-controls .sp-preview {
      margin: 0;
      width: 80%; }
    .mg-wrapper .mg-controls .sp-dd {
      width: 20%;
      text-align: right; }
  .mg-wrapper .mg-helpers {
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .mg-wrapper .mg-helpers .draggable {
      box-sizing: border-box;
      position: absolute;
      top: 0;
      z-index: 4;
      width: 100%;
      border: 2px dashed #222; }
      .mg-wrapper .mg-helpers .draggable:hover:before {
        border-color: #fff; }
      .mg-wrapper .mg-helpers .draggable:before {
        display: block;
        content: ' ';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border: 2px dashed #ccc; }
  .mg-wrapper .mg-css-preview {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2; }
    .mg-wrapper .mg-css-preview div {
      position: absolute; }
  .mg-wrapper .mg-drawing {
    display: none;
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .mg-wrapper:after {
    content: ' ';
    height: 0;
    display: block;
    clear: both; }

@media (max-width: 767px) {
  .page-template-template-meme .page_content {
    margin: 0 15px; } }

.page-template-template-meme .meme-generator-wrapper {
  border-radius: 25px 25px 0px 0px;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.24);
  padding: 0; }

.page-template-template-meme #meme-slider {
  background-color: #fff;
  border-radius: 20px; }
  @media (max-width: 991px) {
    .page-template-template-meme #meme-slider {
      padding: 30px; } }
  @media (max-width: 600px) {
    .page-template-template-meme #meme-slider {
      padding: 0; } }
  @media (max-width: 600px) {
    .page-template-template-meme #meme-slider {
      margin: 0; } }
  .page-template-template-meme #meme-slider h2 {
    color: #e73787; }
    @media (max-width: 991px) {
      .page-template-template-meme #meme-slider h2 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px; } }
  .page-template-template-meme #meme-slider .meme-step {
    padding-bottom: 30px; }
    .page-template-template-meme #meme-slider .meme-step .instructions {
      margin-top: 200px;
      text-align: center;
      padding-left: 50px;
      text-align: center;
      padding-bottom: 10px; }
      @media (max-width: 1024px) {
        .page-template-template-meme #meme-slider .meme-step .instructions {
          margin-top: 175px; } }
      @media (max-width: 991px) {
        .page-template-template-meme #meme-slider .meme-step .instructions {
          margin-top: 0;
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%);
               -o-transform: translateY(-50%);
                  transform: translateY(-50%);
          left: 0;
          text-align: left;
          width: 80%; }
          .page-template-template-meme #meme-slider .meme-step .instructions p {
            font-size: 32px;
            line-height: 36px; } }
      @media (max-width: 400px) {
        .page-template-template-meme #meme-slider .meme-step .instructions p {
          font-size: 20px;
          line-height: 28px; } }
      @media (max-width: 600px) {
        .page-template-template-meme #meme-slider .meme-step .instructions {
          position: relative;
          -webkit-transform: none;
               -o-transform: none;
                  transform: none;
          top: 30px;
          width: 100%;
          padding-left: 10px; } }
      @media (max-width: 500px) {
        .page-template-template-meme #meme-slider .meme-step .instructions.in_2 p {
          font-size: 24px;
          line-height: 28px; } }
      @media (max-width: 320px) {
        .page-template-template-meme #meme-slider .meme-step .instructions.in_2 p {
          font-size: 20px;
          line-height: 24px; } }
    .page-template-template-meme #meme-slider .meme-step .meme-step-images {
      max-width: 500px;
      margin-top: 30px; }
      @media (max-width: 1199px) {
        .page-template-template-meme #meme-slider .meme-step .meme-step-images {
          max-width: 400px; } }
      @media (max-width: 991px) {
        .page-template-template-meme #meme-slider .meme-step .meme-step-images {
          margin: 0 auto;
          max-width: 100%; } }
    .page-template-template-meme #meme-slider .meme-step .step-content {
      display: table;
      width: 100%;
      height: 100%; }
      .page-template-template-meme #meme-slider .meme-step .step-content .step-inner {
        display: table-cell;
        vertical-align: middle; }
        .page-template-template-meme #meme-slider .meme-step .step-content .step-inner span {
          color: #e73787; }
        .page-template-template-meme #meme-slider .meme-step .step-content .step-inner .btn_main {
          width: 100%;
          padding: 10px;
          font-size: 30px;
          margin-top: 30px;
          -webkit-font-smoothing: antialiased; }
          .page-template-template-meme #meme-slider .meme-step .step-content .step-inner .btn_main i {
            border-radius: 100%;
            border: 1px solid #fff;
            display: inline-block;
            width: 35px;
            height: 35px;
            line-height: 30px;
            padding-left: 3px;
            margin-left: 15px; }
    .page-template-template-meme #meme-slider .meme-step:focus, .page-template-template-meme #meme-slider .meme-step:active {
      outline: none; }
    .page-template-template-meme #meme-slider .meme-step .meme-navs {
      padding: 20px 40px; }
      .page-template-template-meme #meme-slider .meme-step .meme-navs button {
        padding: 5px 40px;
        font-size: 30px;
        -webkit-font-smoothing: antialiased; }
        @media (max-width: 991px) {
          .page-template-template-meme #meme-slider .meme-step .meme-navs button {
            display: block;
            min-width: 250px;
            margin: 15px auto;
            font-size: 20px; } }
      @media (min-width: 992px) {
        .page-template-template-meme #meme-slider .meme-step .meme-navs button:first-child {
          float: left; }
        .page-template-template-meme #meme-slider .meme-step .meme-navs button:last-child {
          float: right; } }
      @media (max-width: 991px) {
        .page-template-template-meme #meme-slider .meme-step .meme-navs {
          padding: 0;
          margin: 0 auto; } }
    .page-template-template-meme #meme-slider .meme-step #adjustSlick {
      opacity: 0; }
  @media (min-width: 590px) and (max-width: 991px) {
    .page-template-template-meme #meme-slider img.first_image {
      max-width: 340px !important;
      width: 100%; } }
  @media (max-width: 480px) {
    .page-template-template-meme #meme-slider img.second_image {
      max-width: 145% !important; } }
  @media (max-width: 480px) {
    .page-template-template-meme #meme-slider img.third_image {
      max-width: 145% !important; } }
  .page-template-template-meme #meme-slider .slick-slide:focus, .page-template-template-meme #meme-slider .slick-slide:active, .page-template-template-meme #meme-slider .slick-slide:hover {
    outline: none; }

.page-template-template-meme .meme-generator-slide-wrapper {
  padding-left: 80px;
  padding-right: 30px;
  /* Meme Generator Slider */ }
  @media (max-width: 991px) {
    .page-template-template-meme .meme-generator-slide-wrapper {
      margin-top: 0;
      padding-left: 22px;
      padding-right: 22px; } }
  .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider {
    border-radius: 40px;
    background: #f7f7f7; }
    .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single {
      width: 25%;
      height: 200px;
      position: relative;
      padding: 20px;
      cursor: pointer; }
      @media (max-width: 991px) {
        .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single {
          width: 50%; } }
      @media (max-width: 991px) {
        .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single {
          width: 50%; } }
      @media (max-width: 580px) {
        .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single {
          width: 100%; } }
      .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single .meme-image {
        width: 100%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center; }
      .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single:focus, .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single:active {
        outline: none;
        text-decoration: none; }
      .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single:before {
        content: '\f00c';
        display: block;
        position: absolute;
        font-family: 'FontAwesome';
        bottom: 40px;
        right: 40px;
        width: 0;
        height: 0;
        line-height: 0px;
        border-radius: 100%;
        background-color: transparent;
        color: #fff;
        text-align: center;
        font-size: 0;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out; }
      .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single.selected-meme {
        background-color: #fff; }
        .page-template-template-meme .meme-generator-slide-wrapper #meme-generator-slider .meme-single.selected-meme:before {
          content: '\f00c';
          display: block;
          position: absolute;
          font-family: 'FontAwesome';
          bottom: 20px;
          right: 20px;
          width: 40px;
          height: 40px;
          line-height: 40px;
          border-radius: 100%;
          background-color: #02d0d8;
          color: #fff;
          text-align: center;
          font-size: 20px; }
  .page-template-template-meme .meme-generator-slide-wrapper .meme-generator-arrow {
    cursor: pointer;
    position: absolute;
    z-index: 90;
    top: calc(50% - 12.5px);
    font-size: 20px;
    color: #e73787;
    text-align: center;
    border: 1px solid #e73787;
    width: 25px;
    height: 25px;
    line-height: 22px;
    border-radius: 100%;
    -o-transition: all .3s ease-in-out;
       transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out; }
    @media (max-width: 991px) {
      .page-template-template-meme .meme-generator-slide-wrapper .meme-generator-arrow {
        font-size: 24px;
        width: 30px;
        height: 30px; } }
    .page-template-template-meme .meme-generator-slide-wrapper .meme-generator-arrow.right {
      right: 0px;
      padding-left: 2px; }
      @media (max-width: 991px) {
        .page-template-template-meme .meme-generator-slide-wrapper .meme-generator-arrow.right {
          right: -15px; } }
    .page-template-template-meme .meme-generator-slide-wrapper .meme-generator-arrow.left {
      left: 45px;
      padding-right: 2px; }
      @media (max-width: 991px) {
        .page-template-template-meme .meme-generator-slide-wrapper .meme-generator-arrow.left {
          left: -15px; } }
    .page-template-template-meme .meme-generator-slide-wrapper .meme-generator-arrow:hover {
      color: #fff;
      background-color: #e73787; }

@media (max-width: 360px) {
  .page-template-template-meme #meme-step2 {
    padding-bottom: 60px !important; } }

.page-template-template-meme #meme-step3 h2 {
  display: none; }

.page-template-template-meme #meme-step3 .meme-canvas-wrapper {
  margin-top: 200px;
  padding-left: 60px; }
  .page-template-template-meme #meme-step3 .meme-canvas-wrapper .mg-wrapper {
    padding: 30px; }
    @media (max-width: 480px) {
      .page-template-template-meme #meme-step3 .meme-canvas-wrapper .mg-wrapper {
        padding: 15px 0; } }
  @media (max-width: 991px) {
    .page-template-template-meme #meme-step3 .meme-canvas-wrapper {
      margin-top: 0;
      padding-left: 15px;
      width: 100%;
      margin: 0 auto; } }

.page-template-template-meme #meme-step4 .meme-preview-wrapper {
  margin-top: 100px;
  padding-left: 60px; }
  @media (max-width: 991px) {
    .page-template-template-meme #meme-step4 .meme-preview-wrapper {
      margin-top: 0;
      padding-left: 15px; } }

.page-template-template-meme #meme-step4 #meme-preview {
  min-height: 200px;
  background-color: #EFEFEF; }
  .page-template-template-meme #meme-step4 #meme-preview img {
    width: 100%; }
  @media (max-width: 991px) {
    .page-template-template-meme #meme-step4 #meme-preview {
      width: 80%;
      margin: 0 auto; } }

.page-template-template-meme #meme-step4 .meme-actions .wrapper {
  display: table;
  height: 100%;
  width: 100%; }
  .page-template-template-meme #meme-step4 .meme-actions .wrapper .inner {
    display: table-cell;
    vertical-align: middle; }
  @media (max-width: 991px) {
    .page-template-template-meme #meme-step4 .meme-actions .wrapper {
      width: 200px;
      margin: 0 auto; } }

.page-template-template-meme #meme-step4 .meme-actions .btn_main {
  display: block;
  padding: 10px;
  font-size: 25px;
  -webkit-font-smoothing: antialiased; }
  .page-template-template-meme #meme-step4 .meme-actions .btn_main:focus, .page-template-template-meme #meme-step4 .meme-actions .btn_main:active {
    outline: none;
    text-decoration: none; }
  @media (max-width: 1199px) {
    .page-template-template-meme #meme-step4 .meme-actions .btn_main {
      font-size: 20px; } }

.page-template-template-meme #meme-step4 .meme-actions .download img, .page-template-template-meme #meme-step4 .meme-actions .share img {
  width: 25px;
  margin-top: -2px;
  margin-right: 10px;
  display: inline-block; }

@media (max-width: 991px) {
  .page-template-template-meme #meme-step4 .meme-actions a {
    display: block; } }

@media (max-width: 768px) {
  .page-template-template-meme #meme-step4 .meme-actions a {
    font-size: 14px;
    padding: 15px 10px; } }

@media (max-width: 991px) {
  .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-image {
    width: 100%;
    margin: 0;
    margin-bottom: 10px; } }

@media (max-width: 991px) {
  .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls {
    width: 100%; } }

.page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-text:focus, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-text:active, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-size:focus, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-size:active, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .colorpickerContainer:focus, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .colorpickerContainer:active, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-border-width:focus, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-border-width:active {
  outline: none;
  text-decoration: none; }

.page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-text {
  width: 100% !important;
  display: block;
  float: none;
  padding: 0;
  margin: 0 !important;
  margin-bottom: 10px !important;
  border: 1px solid #adadad;
  font-family: "Cartwheel", sans-serif !important;
  font-size: 20px;
  padding: 20px 15px;
  border-radius: 8px; }

.page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-size, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .colorpickerContainer, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-border-width {
  width: 23.5%;
  border: none;
  font-size: 20px; }

.page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-size, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-border-width {
  border-radius: 8px;
  border: 1px solid #adadad;
  font-family: "Cartwheel", sans-serif !important;
  padding: 0px 15px;
  height: 42px; }
  @media (max-width: 480px) {
    .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-size, .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .mg-textbox-border-width {
      padding: 0px 8px;
      height: 42px;
      text-align: center; } }

.page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .colorpickerContainer .colorpickerReplacer {
  border-radius: 8px;
  border: 1px solid #adadad;
  font-family: "Cartwheel", sans-serif !important;
  background-color: #fff;
  padding: 4px 7px; }
  .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .colorpickerContainer .colorpickerReplacer .sp-preview {
    width: 100%;
    height: 32px; }
    .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .colorpickerContainer .colorpickerReplacer .sp-preview .sp-preview-inner {
      height: 30px; }
  .page-template-template-meme .mg-wrapper.mg-horizontal-layout .mg-controls .colorpickerContainer .colorpickerReplacer .sp-dd {
    display: none; }

.page-template-template-bts .title-custom {
  margin-bottom: -10px;
  margin-left: -60px;
  -webkit-transform: rotate(-5deg);
       -o-transform: rotate(-5deg);
          transform: rotate(-5deg);
  position: relative;
  z-index: 10; }
  @media (max-width: 1024px) {
    .page-template-template-bts .title-custom {
      margin-left: -50px; }
      .page-template-template-bts .title-custom h1 {
        font-size: 30px; } }
  @media (max-width: 810px) {
    .page-template-template-bts .title-custom {
      margin-left: -30px; } }
  @media (max-width: 768px) {
    .page-template-template-bts .title-custom {
      margin-bottom: -30px; }
      .page-template-template-bts .title-custom h1 {
        font-size: 26px; } }

.page-template-template-bts .page_content {
  padding-bottom: 0;
  position: relative; }
  @media (max-width: 768px) {
    .page-template-template-bts .page_content {
      padding: 30px; } }
  .page-template-template-bts .page_content .top_image {
    margin-top: -150px;
    position: relative; }
    .page-template-template-bts .page_content .top_image img {
      max-width: 350px;
      margin-right: 30px; }
      @media (max-width: 480px) {
        .page-template-template-bts .page_content .top_image img {
          max-width: 190px; } }
    .page-template-template-bts .page_content .top_image .floating-cluster {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      bottom: 0;
      pointer-events: none; }
      .page-template-template-bts .page_content .top_image .floating-cluster .floating:first-child {
        right: 9%;
        top: -10%; }
      .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(2) {
        right: 0%;
        top: 35%; }
      .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(3) {
        right: 33%;
        bottom: 40%; }
      .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(4) {
        right: 25%;
        bottom: 5%; }
      .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(5) {
        right: 0;
        bottom: 10%; }
      .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(6) {
        right: 30%;
        bottom: 10%; }
      @media (max-width: 991px) {
        .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(3) {
          right: 45%; }
        .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(4) {
          right: 38%; }
        .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(6) {
          right: 47%; } }
      @media (max-width: 620px) {
        .page-template-template-bts .page_content .top_image .floating-cluster .floating:first-child {
          right: 14%;
          top: 6%; }
        .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(3) {
          right: unset;
          left: 20%; }
        .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(4) {
          right: 38%; }
        .page-template-template-bts .page_content .top_image .floating-cluster .floating:nth-child(6) {
          right: unset;
          left: 34%; } }
    @media (max-width: 700px) {
      .page-template-template-bts .page_content .top_image {
        margin-top: -70px; } }
  .page-template-template-bts .page_content .bts_wrapper {
    background-color: #fff;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
    padding: 65px;
    position: relative;
    /* Meme Generator Slider */ }
    .page-template-template-bts .page_content .bts_wrapper .video-arrows {
      position: absolute;
      top: calc(50% - 25px);
      z-index: 1;
      width: 100%;
      left: 0;
      padding: 0px 0px; }
      .page-template-template-bts .page_content .bts_wrapper .video-arrows .video-arrow {
        width: 50px;
        height: 50px;
        background-color: #02d0d8;
        border-radius: 100%;
        color: #fff;
        text-align: center;
        line-height: 50px;
        font-size: 30px;
        cursor: pointer;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out; }
        @media (max-width: 767px) {
          .page-template-template-bts .page_content .bts_wrapper .video-arrows .video-arrow {
            width: 38px;
            height: 38px;
            line-height: 38px; } }
        .page-template-template-bts .page_content .bts_wrapper .video-arrows .video-arrow.left {
          margin-left: 8px;
          float: left; }
        .page-template-template-bts .page_content .bts_wrapper .video-arrows .video-arrow.right {
          margin-right: 8px;
          float: right; }
        .page-template-template-bts .page_content .bts_wrapper .video-arrows .video-arrow:hover {
          background-color: #e73787; }
    .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-slide:hover, .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-slide:focus {
      outline: none; }
    @media (max-width: 767px) {
      .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-slide {
        padding-left: 28px;
        padding-right: 28px; } }
    .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single {
      width: 25%;
      height: 200px;
      position: relative;
      padding: 8px;
      cursor: pointer; }
      .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single .video-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center; }
      .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single .video-title {
        opacity: 0;
        position: absolute;
        display: table;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        padding: 8px;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out; }
        .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single .video-title .inner {
          display: table-cell;
          vertical-align: middle;
          background-color: #02d0d8;
          text-align: center;
          font-family: "chaparral-pro-display", serif;
          font-style: italic;
          color: #fff;
          font-weight: bold;
          -webkit-font-smoothing: antialiased;
          font-size: 20px; }
        @media (max-device-width: 1024px) {
          .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single .video-title {
            display: none; } }
      .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single:hover .video-title {
        opacity: 1; }
      .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single:focus, .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single:active {
        outline: none;
        text-decoration: none; }
      .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single:before {
        content: '\f00c';
        display: block;
        position: absolute;
        font-family: 'FontAwesome';
        bottom: 40px;
        right: 40px;
        width: 0;
        height: 0;
        line-height: 0px;
        border-radius: 100%;
        background-color: transparent;
        color: #fff;
        text-align: center;
        font-size: 0;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out; }
      .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single.active-video:before {
        content: '\f00c';
        display: block;
        position: absolute;
        font-family: 'FontAwesome';
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 100%;
        background-color: #e73787;
        color: #fff;
        text-align: center;
        font-size: 20px;
        z-index: 1; }
      @media (max-width: 991px) {
        .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single {
          width: 50%; } }
      @media (max-width: 480px) {
        .page-template-template-bts .page_content .bts_wrapper #video-thumbnails-slider .video-single {
          width: 100%; } }
    @media (max-width: 767px) {
      .page-template-template-bts .page_content .bts_wrapper {
        padding: 35px 15px; } }

.search-results .page-content .container {
  border-radius: 25px 25px 0 0; }
  .search-results .page-content .container article {
    margin-top: 15px;
    margin-bottom: 15px; }
    .search-results .page-content .container article .entry-title {
      font-size: 20px;
      margin-bottom: 5px; }
    .search-results .page-content .container article:first-child {
      margin-top: 0; }
  .search-results .page-content .container .posts-navigation {
    width: 100%;
    margin-top: 20px; }
    .search-results .page-content .container .posts-navigation .nav-previous a, .search-results .page-content .container .posts-navigation .nav-next a {
      background: transparent;
      border: 1px solid #e73787;
      border-radius: 10px;
      padding: 8px 25px;
      padding-bottom: 10px;
      text-transform: uppercase;
      color: #e73787;
      letter-spacing: 0px;
      font-size: 16px;
      font-family: "Cartwheel", sans-serif;
      margin-top: 15px;
      font-weight: bold;
      font-weight: normal; }
      .search-results .page-content .container .posts-navigation .nav-previous a:hover, .search-results .page-content .container .posts-navigation .nav-next a:hover {
        background: #e73787;
        border: 1px solid #fff;
        color: #fff; }
    .search-results .page-content .container .posts-navigation .nav-previous {
      float: left; }
    .search-results .page-content .container .posts-navigation .nav-next {
      float: right; }

.page-template-template-howquiz .page-content .container {
  padding: 40px 20px;
  border-radius: 25px 25px 0px 0px;
  background-color: #fff; }
  @media (max-width: 600px) {
    .page-template-template-howquiz .page-content .container {
      padding-left: 0;
      padding-right: 0; } }

.page-template-template-howquiz .quiz_intro {
  padding-bottom: 40px;
  background-position: top right;
  background-size: 200px;
  background-repeat: no-repeat;
  position: relative; }
  @media (max-width: 480px) {
    .page-template-template-howquiz .quiz_intro {
      padding-bottom: 0px;
      text-align: center; } }
  .page-template-template-howquiz .quiz_intro h2 {
    color: #e73787;
    padding-right: 50%;
    text-shadow: 2px 2px 1px #fff;
    z-index: 5;
    position: relative; }
    @media (max-width: 1024px) {
      .page-template-template-howquiz .quiz_intro h2 {
        padding-right: 30%;
        font-size: 40px; } }
    @media (max-width: 991px) {
      .page-template-template-howquiz .quiz_intro h2 {
        padding-right: 40%;
        font-size: 30px; } }
    @media (max-width: 480px) {
      .page-template-template-howquiz .quiz_intro h2 {
        padding-right: 20%;
        padding-right: 0;
        font-size: 30px;
        text-align: left; } }
  .page-template-template-howquiz .quiz_intro img.kath_kel {
    position: absolute;
    bottom: 0px;
    right: 20px;
    width: 22%;
    z-index: 4; }
    @media (max-width: 991px) {
      .page-template-template-howquiz .quiz_intro img.kath_kel {
        width: 30%; } }
    @media (max-width: 480px) {
      .page-template-template-howquiz .quiz_intro img.kath_kel {
        width: 50%;
        position: relative;
        margin-top: 10px; } }
  .page-template-template-howquiz .quiz_intro img.quiz {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    right: 30px;
    width: 22%; }
    @media (max-width: 991px) {
      .page-template-template-howquiz .quiz_intro img.quiz {
        width: 30%; } }
    @media (max-width: 480px) {
      .page-template-template-howquiz .quiz_intro img.quiz {
        width: 30%;
        right: 80px; } }

.page-template-template-howquiz .kath_kel_top {
  position: relative; }
  .page-template-template-howquiz .kath_kel_top img.quiz {
    position: absolute;
    top: -60%;
    right: 30px;
    max-height: 250px;
    z-index: 3; }

.page-template-template-howquiz .question_wrapper, .page-template-template-howquiz .answers_wrapper {
  padding: 10px 20px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  margin-bottom: 10px; }

.page-template-template-howquiz .answers_wrapper ul {
  padding-left: 20px !important; }

.page-template-template-howquiz h3 {
  font-family: "Cartwheel", sans-serif;
  margin-top: 10px; }

.page-template-template-howquiz .a_label, .page-template-template-howquiz .answers li {
  color: #02d0d8;
  font-size: 22px;
  padding-left: 4px; }

.page-template-template-howquiz .answers li {
  color: #adadad; }

.page-template-template-howquiz ul {
  padding-left: 0px;
  font-family: "Cartwheel", sans-serif; }
  .page-template-template-howquiz ul span {
    color: #02d0d8;
    font-size: 22px;
    padding-left: 4px; }
  .page-template-template-howquiz ul .answer_wrapper {
    display: inline;
    padding-right: 5px; }
    @media (max-width: 768px) {
      .page-template-template-howquiz ul .answer_wrapper {
        display: block; } }
    .page-template-template-howquiz ul .answer_wrapper.character_wrapper {
      display: inline-block; }
      @media (max-width: 767px) {
        .page-template-template-howquiz ul .answer_wrapper.character_wrapper {
          display: block;
          margin-bottom: 20px; } }
    .page-template-template-howquiz ul .answer_wrapper .image_wrapper {
      display: block;
      text-align: center; }
      @media (max-width: 767px) {
        .page-template-template-howquiz ul .answer_wrapper .image_wrapper {
          text-align: left; } }
      .page-template-template-howquiz ul .answer_wrapper .image_wrapper img {
        max-width: 100px; }
  .page-template-template-howquiz ul .iradio_square-pink, .page-template-template-howquiz ul .icheckbox_square-pink {
    margin-top: -5px; }

.page-template-template-howquiz .answers ul li, .page-template-template-howquiz .legend ul li {
  position: relative;
  list-style: none; }
  .page-template-template-howquiz .answers ul li:after, .page-template-template-howquiz .legend ul li:after {
    font-size: 20px;
    top: 3px;
    font-family: 'FontAwesome';
    display: block;
    position: absolute;
    left: -20px; }
  .page-template-template-howquiz .answers ul li.wrong-selection:after, .page-template-template-howquiz .legend ul li.wrong-selection:after {
    content: '\f057';
    color: crimson; }
  .page-template-template-howquiz .answers ul li.right-selection, .page-template-template-howquiz .legend ul li.right-selection {
    color: #0ea56e; }
    .page-template-template-howquiz .answers ul li.right-selection:after, .page-template-template-howquiz .legend ul li.right-selection:after {
      content: '\f05d';
      color: #0ea56e; }
  .page-template-template-howquiz .answers ul li.actual-answer, .page-template-template-howquiz .legend ul li.actual-answer {
    color: #0ea56e; }
    .page-template-template-howquiz .answers ul li.actual-answer:after, .page-template-template-howquiz .legend ul li.actual-answer:after {
      font-family: 'FontAwesome';
      color: blue; }

.page-template-template-howquiz .legend {
  display: none; }
  .page-template-template-howquiz .legend li {
    display: inline-block;
    margin-right: 30px; }

.page-template-template-howquiz .score_wrapper {
  text-align: center;
  padding-top: 20px;
  border: 2px dotted #e73787;
  padding-bottom: 20px;
  border-radius: 20px;
  margin-bottom: 20px; }
  .page-template-template-howquiz .score_wrapper p {
    color: #383739;
    -webkit-text-stroke-width: 0px; }
  .page-template-template-howquiz .score_wrapper h4 {
    font-size: 50px;
    font-family: "Sanuk-Fat", serif;
    color: #f9a300;
    text-transform: uppercase; }
  .page-template-template-howquiz .score_wrapper .share_wrapper ul.score_sharer {
    margin: 0;
    list-style: none;
    font-size: 20px; }
    .page-template-template-howquiz .score_wrapper .share_wrapper ul.score_sharer li {
      display: inline-block; }
      .page-template-template-howquiz .score_wrapper .share_wrapper ul.score_sharer li a {
        cursor: pointer;
        display: block;
        width: 30px;
        height: 30px;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out; }
        .page-template-template-howquiz .score_wrapper .share_wrapper ul.score_sharer li a:hover {
          color: #02d0d8; }

.cart-tabs-wrapper {
  font-size: 1.25em;
  background-color: #ffffff; }

.woocommerce-cart .page-content .container, .woocommerce-checkout .page-content .container {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 0px; }

.woocommerce-cart .cross-sell-container, .woocommerce-checkout .cross-sell-container {
  border-radius: 0 !important;
  box-shadow: none !important; }
  .woocommerce-cart .cross-sell-container > .col-md-12, .woocommerce-checkout .cross-sell-container > .col-md-12 {
    padding: 0; }
  @media (min-width: 992px) {
    .woocommerce-cart .cross-sell-container, .woocommerce-checkout .cross-sell-container {
      padding: 0 !important; } }

.woocommerce-cart .cross-sells, .woocommerce-checkout .cross-sells {
  position: relative;
  background-size: 250px;
  clear: both;
  border-radius: 0px;
  padding: 0; }
  .woocommerce-cart .cross-sells .cross_sell_heading_wrapper, .woocommerce-checkout .cross-sells .cross_sell_heading_wrapper {
    position: absolute;
    top: 10px;
    left: -5px;
    background-image: url("../images/shop/related-title.png");
    padding: 10px 145px 20px 20px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999; }
    .woocommerce-cart .cross-sells .cross_sell_heading_wrapper h2, .woocommerce-checkout .cross-sells .cross_sell_heading_wrapper h2 {
      text-shadow: #ed499a 0 -1px 4px, #ed499a 0px 1px 4px, #ed499a -1px 0px 4px, #ed499a 1px 0px 4px;
      font-size: 30px;
      font-family: "Cartwheel", sans-serif;
      -webkit-font-smoothing: antialiased;
      letter-spacing: normal;
      color: #fff;
      -webkit-transform: rotate(-1deg);
           -o-transform: rotate(-1deg);
              transform: rotate(-1deg); }
      @media (max-width: 480px) {
        .woocommerce-cart .cross-sells .cross_sell_heading_wrapper h2, .woocommerce-checkout .cross-sells .cross_sell_heading_wrapper h2 {
          font-size: 20px; } }
    @media (max-width: 480px) {
      .woocommerce-cart .cross-sells .cross_sell_heading_wrapper, .woocommerce-checkout .cross-sells .cross_sell_heading_wrapper {
        top: 25px; } }
  .woocommerce-cart .cross-sells .cross_sell_inner, .woocommerce-checkout .cross-sells .cross_sell_inner {
    background-color: #fff;
    margin-top: 30px;
    padding: 0;
    border-radius: 20px;
    display: inline-block;
    width: 100%; }
    .woocommerce-cart .cross-sells .cross_sell_inner .products_loop, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop {
      padding-top: 0;
      border: none;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
      overflow: hidden; }
      .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single {
        border-top: 0;
        width: 25%; }
        @media (max-width: 991px) {
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single {
            width: 50%; } }
        @media (max-width: 610px) {
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single {
            width: 100%; } }
        .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single .product_image, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single .product_image {
          height: 150px;
          background-size: contain;
          background-position: center center;
          background-repeat: no-repeat;
          margin-bottom: 20px;
          width: 100%;
          background-color: #ffffff;
          border-radius: 10px; }
        .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single .product-info, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single .product-info {
          width: 100%; }
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_title, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_title {
            font-size: 16px;
            margin-bottom: 10px; }
            @media (max-width: 991px) {
              .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_title, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_title {
                text-align: center; } }
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_meta, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_meta {
            position: relative;
            text-align: left; }
            @media (max-width: 991px) {
              .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_meta, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_meta {
                text-align: center; } }
            .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_meta .price, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single .product-info .product_meta .price {
              font-size: 20px !important; }
        .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single .add_to_cart_button, .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single .add_to_cart_button {
          padding: 6px 25px !important;
          padding-bottom: 9px !important;
          font-size: 16px !important; }
        @media (min-width: 992px) {
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(3n), .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(3n) {
            border-right: 1px solid #e6e6e6; }
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(4n), .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(4n) {
            border-right: none; }
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single:last-child:not(:nth-child(4n)), .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single:last-child:not(:nth-child(4n)) {
            border-right: 1px solid #e6e6e6; } }
        @media (max-width: 991px) {
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(2n+1), .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(2n+1) {
            border-right: 1px solid #e6e6e6; }
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(2n), .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(2n) {
            border-right: 1px solid #e6e6e6; }
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(n+3), .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single:nth-child(n+3) {
            border-right: 1px solid #e6e6e6; }
          .woocommerce-cart .cross-sells .cross_sell_inner .products_loop .product_single:last-child:not(:nth-child(2n)), .woocommerce-checkout .cross-sells .cross_sell_inner .products_loop .product_single:last-child:not(:nth-child(2n)) {
            border-right: 1px solid #e6e6e6;
            width: calc(50% + 1px); } }
  @media (max-width: 991px) {
    .woocommerce-cart .cross-sells, .woocommerce-checkout .cross-sells {
      padding-bottom: 0; } }

.cart-tabs {
  font-weight: 300;
  font-size: 1.25em;
  background-color: #ffffff;
  padding-bottom: 0; }
  .cart-tabs nav {
    text-align: center; }
    .cart-tabs nav ul {
      position: relative;
      display: -ms-flexbox;
      display: -moz-flex;
      display: -ms-flex;
      display: -webkit-box;
      display: flex;
      margin: 0 auto;
      padding: 0;
      list-style: none;
      -ms-box-orient: horizontal;
      -ms-box-pack: center;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .cart-tabs nav ul .pt_cart_image {
        position: absolute;
        bottom: 100%;
        right: 5px;
        height: 200px; }
        @media (max-width: 767px) {
          .cart-tabs nav ul .pt_cart_image {
            margin-left: auto;
            margin-right: auto;
            left: 0px;
            right: 0px;
            max-width: 250px;
            width: 60%;
            height: auto; } }
      .cart-tabs nav ul li {
        display: block;
        position: relative;
        margin: 0;
        text-align: center;
        -moz-flex: 1;
        -ms-flex: 1;
        -webkit-box-flex: 1;
                flex: 1; }
        .cart-tabs nav ul li:first-child a, .cart-tabs nav ul li:first-child div {
          border-radius: 25px 0px 0px 0px; }
        .cart-tabs nav ul li:last-child a, .cart-tabs nav ul li:last-child div {
          border-radius: 0px 25px 0px 0px; }
        .cart-tabs nav ul li a, .cart-tabs nav ul li div {
          font-family: "chaparral-pro-display", serif;
          position: relative;
          display: block;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: visible;
          padding: 20px 0;
          line-height: 1;
          color: #2a154c;
          background-color: #e6e6e6;
          -o-transition: all .3s ease-in-out;
             transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -webkit-transition: all .3s ease-in-out; }
          .cart-tabs nav ul li a > span, .cart-tabs nav ul li div > span {
            vertical-align: middle;
            font-weight: 100;
            font-size: 0.7em;
            position: relative;
            font-family: "Cartwheel", sans-serif;
            -webkit-font-smoothing: antialiased;
            display: block; }
            .cart-tabs nav ul li a > span span.tab-icon, .cart-tabs nav ul li div > span span.tab-icon {
              width: 30px;
              height: 30px;
              display: none;
              position: absolute;
              left: -40px;
              top: -6px; }
              @media (max-width: 480px) {
                .cart-tabs nav ul li a > span span.tab-icon, .cart-tabs nav ul li div > span span.tab-icon {
                  display: inline-block; } }
              .cart-tabs nav ul li a > span span.tab-icon svg, .cart-tabs nav ul li div > span span.tab-icon svg {
                width: 100%;
                height: 100%; }
                .cart-tabs nav ul li a > span span.tab-icon svg path, .cart-tabs nav ul li div > span span.tab-icon svg path {
                  fill: #2a154c;
                  -o-transition: all .3s ease-in-out;
                     transition: all .3s ease-in-out;
                  -moz-transition: all .3s ease-in-out;
                  -webkit-transition: all .3s ease-in-out; }
              @media (max-width: 991px) {
                .cart-tabs nav ul li a > span span.tab-icon, .cart-tabs nav ul li div > span span.tab-icon {
                  margin-top: 4px;
                  position: initial; } }
              @media (max-width: 320px) {
                .cart-tabs nav ul li a > span span.tab-icon, .cart-tabs nav ul li div > span span.tab-icon {
                  width: 25px;
                  height: 25px;
                  margin-left: 5px; } }
            @media (max-width: 480px) {
              .cart-tabs nav ul li a > span .tab-text, .cart-tabs nav ul li div > span .tab-text {
                display: none; } }
            .cart-tabs nav ul li a > span .tab-text .tab-number, .cart-tabs nav ul li div > span .tab-text .tab-number {
              border-radius: 100%;
              background-color: #fff;
              display: inline-block;
              width: 15px;
              height: 15px;
              line-height: 14px; }
          .cart-tabs nav ul li a:focus, .cart-tabs nav ul li div:focus {
            outline: none;
            text-decoration: none;
            color: #e73787; }
            .cart-tabs nav ul li a:focus > span span.tab-icon svg path, .cart-tabs nav ul li div:focus > span span.tab-icon svg path {
              fill: #e73787; }
          .cart-tabs nav ul li a:active, .cart-tabs nav ul li a:hover, .cart-tabs nav ul li div:active, .cart-tabs nav ul li div:hover {
            outline: none;
            text-decoration: none;
            color: #e73787; }
            .cart-tabs nav ul li a:active > span span.tab-icon svg path, .cart-tabs nav ul li a:hover > span span.tab-icon svg path, .cart-tabs nav ul li div:active > span span.tab-icon svg path, .cart-tabs nav ul li div:hover > span span.tab-icon svg path {
              fill: #e73787; }
          .cart-tabs nav ul li a.done, .cart-tabs nav ul li div.done {
            background-color: #e73787;
            color: #fff; }
            .cart-tabs nav ul li a.done > span span.tab-icon svg path, .cart-tabs nav ul li div.done > span span.tab-icon svg path {
              fill: #fff; }
            .cart-tabs nav ul li a.done:focus, .cart-tabs nav ul li div.done:focus {
              outline: none;
              text-decoration: none;
              color: #fff; }
            .cart-tabs nav ul li a.done:active, .cart-tabs nav ul li a.done:hover, .cart-tabs nav ul li div.done:active, .cart-tabs nav ul li div.done:hover {
              outline: none;
              text-decoration: none;
              color: #f9a300; }
              .cart-tabs nav ul li a.done:active > span span.tab-icon svg path, .cart-tabs nav ul li a.done:hover > span span.tab-icon svg path, .cart-tabs nav ul li div.done:active > span span.tab-icon svg path, .cart-tabs nav ul li div.done:hover > span span.tab-icon svg path {
                fill: #f9a300; }
            .cart-tabs nav ul li a.done:after, .cart-tabs nav ul li div.done:after {
              background-image: url("../images/shop/arrow-active-r.png"); }
            .cart-tabs nav ul li a.done .tab-text .tab-number, .cart-tabs nav ul li div.done .tab-text .tab-number {
              color: #e73787; }
          @media screen and (max-width: 58em) {
            .cart-tabs nav ul li a.icon span, .cart-tabs nav ul li div.icon span {
              display: none; } }
          .cart-tabs nav ul li a.icon:before, .cart-tabs nav ul li div.icon:before {
            display: block;
            margin: 0 0 0.25em 0; }
          .cart-tabs nav ul li a#cart-help, .cart-tabs nav ul li div#cart-help {
            height: 100%;
            background-color: #383739;
            color: #fff;
            -o-transition: all .3s ease-in-out;
               transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out; }
            .cart-tabs nav ul li a#cart-help #help-span, .cart-tabs nav ul li div#cart-help #help-span {
              float: left;
              margin-left: 20px;
              text-transform: uppercase;
              font-family: "Cartwheel", sans-serif;
              margin-top: -2px;
              -webkit-font-smoothing: antialiased;
              font-weight: 100; }
              .cart-tabs nav ul li a#cart-help #help-span i, .cart-tabs nav ul li div#cart-help #help-span i {
                color: #adadad;
                font-size: 20px;
                float: left;
                margin-right: 5px;
                -o-transition: all .3s ease-in-out;
                   transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out; }
                @media (max-width: 480px) {
                  .cart-tabs nav ul li a#cart-help #help-span i, .cart-tabs nav ul li div#cart-help #help-span i {
                    font-size: 24px !important; } }
              @media (max-width: 991px) {
                .cart-tabs nav ul li a#cart-help #help-span, .cart-tabs nav ul li div#cart-help #help-span {
                  font-size: 0;
                  width: 100%;
                  margin: 0;
                  text-align: center;
                  margin-top: -4px; }
                  .cart-tabs nav ul li a#cart-help #help-span i, .cart-tabs nav ul li div#cart-help #help-span i {
                    font-size: 22px;
                    float: none;
                    margin: 0; } }
              @media (max-width: 480px) {
                .cart-tabs nav ul li a#cart-help #help-span, .cart-tabs nav ul li div#cart-help #help-span {
                  margin-top: 4px; } }
            .cart-tabs nav ul li a#cart-help #customer-care, .cart-tabs nav ul li div#cart-help #customer-care {
              font-size: 12px;
              color: #2a154c;
              float: right;
              margin-top: -4px;
              margin-right: 20px;
              padding: 5px;
              border: 1px solid grey;
              border-radius: 45px;
              font-family: "gotham-book-webfont", sans-serif;
              background-color: #fff;
              -o-transition: all .3s ease-in-out;
                 transition: all .3s ease-in-out;
              -moz-transition: all .3s ease-in-out;
              -webkit-transition: all .3s ease-in-out; }
              .cart-tabs nav ul li a#cart-help #customer-care:before, .cart-tabs nav ul li div#cart-help #customer-care:before {
                content: "";
                border-radius: 100%;
                width: 10px;
                height: 10px;
                background-color: green;
                display: inline-block;
                margin-right: 5px;
                margin-top: 1px;
                float: left;
                -o-transition: all .3s ease-in-out;
                   transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out; }
              @media (max-width: 1199px) {
                .cart-tabs nav ul li a#cart-help #customer-care, .cart-tabs nav ul li div#cart-help #customer-care {
                  font-size: 0; }
                  .cart-tabs nav ul li a#cart-help #customer-care:before, .cart-tabs nav ul li div#cart-help #customer-care:before {
                    margin-right: 0; } }
              @media (max-width: 991px) {
                .cart-tabs nav ul li a#cart-help #customer-care, .cart-tabs nav ul li div#cart-help #customer-care {
                  display: none; } }
            .cart-tabs nav ul li a#cart-help:hover, .cart-tabs nav ul li div#cart-help:hover {
              color: #e73787; }
              .cart-tabs nav ul li a#cart-help:hover #help-span i, .cart-tabs nav ul li div#cart-help:hover #help-span i {
                color: #fff; }
              .cart-tabs nav ul li a#cart-help:hover #customer-care, .cart-tabs nav ul li div#cart-help:hover #customer-care {
                border: 1px solid #fff; }
                .cart-tabs nav ul li a#cart-help:hover #customer-care:before, .cart-tabs nav ul li div#cart-help:hover #customer-care:before {
                  background-color: #e73787; }
          @media screen and (max-width: 58em) {
            .cart-tabs nav ul li a:before, .cart-tabs nav ul li div:before {
              margin-right: 0; } }
          .cart-tabs nav ul li a:after, .cart-tabs nav ul li div:after {
            content: '';
            display: block;
            background-image: url("../images/shop/arrow.png");
            position: absolute;
            top: 0;
            right: -15px;
            height: 100%;
            background-repeat: no-repeat;
            width: 28px;
            z-index: 1;
            background-size: contain; }
          .cart-tabs nav ul li a.cart-receipt:after, .cart-tabs nav ul li div.cart-receipt:after {
            background-image: url("../images/shop/arrow-receipt.png"); }
          @media (max-width: 480px) {
            .cart-tabs nav ul li a, .cart-tabs nav ul li div {
              padding: 15px 0; } }
        .cart-tabs nav ul li.tab-current a, .cart-tabs nav ul li.tab-current div {
          color: #fff;
          background-color: #e73787;
          box-shadow: -1px 0 0 #fff; }
          .cart-tabs nav ul li.tab-current a > span .tab-icon svg path, .cart-tabs nav ul li.tab-current div > span .tab-icon svg path {
            fill: #fff; }
          .cart-tabs nav ul li.tab-current a:focus, .cart-tabs nav ul li.tab-current div:focus {
            color: #fff; }
            .cart-tabs nav ul li.tab-current a:focus > span .tab-icon svg path, .cart-tabs nav ul li.tab-current div:focus > span .tab-icon svg path {
              fill: #fff; }
          .cart-tabs nav ul li.tab-current a:active, .cart-tabs nav ul li.tab-current a:hover, .cart-tabs nav ul li.tab-current div:active, .cart-tabs nav ul li.tab-current div:hover {
            color: #f9a300; }
            .cart-tabs nav ul li.tab-current a:active > span .tab-icon svg path, .cart-tabs nav ul li.tab-current a:hover > span .tab-icon svg path, .cart-tabs nav ul li.tab-current div:active > span .tab-icon svg path, .cart-tabs nav ul li.tab-current div:hover > span .tab-icon svg path {
              fill: #f9a300; }
          .cart-tabs nav ul li.tab-current a:after, .cart-tabs nav ul li.tab-current div:after {
            background-image: url("../images/shop/arrow-active-l.png"); }
          .cart-tabs nav ul li.tab-current a.cart-receipt:after, .cart-tabs nav ul li.tab-current div.cart-receipt:after {
            background-image: url("../images/shop/arrow-active-receipt.png"); }
          .cart-tabs nav ul li.tab-current a .tab-text .tab-number, .cart-tabs nav ul li.tab-current div .tab-text .tab-number {
            color: #e73787; }
        .cart-tabs nav ul li.tab-completed a:after {
          background-image: url("../images/shop/arrow-active-r.png"); }
        .cart-tabs nav ul li:first-child a:before {
          display: none; }
        .cart-tabs nav ul li:last-child a:after {
          display: none; }
  .cart-tabs .icon::before {
    z-index: 10;
    display: inline-block;
    margin: 0 0.4em 0 0;
    vertical-align: middle;
    text-transform: none;
    font-weight: normal;
    font-variant: normal;
    font-size: 1.3em;
    font-family: 'Pe-icon-7-stroke';
    line-height: 1;
    speak: none;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .cart-tabs .icon-cart::before {
    content: "\e66e"; }
  .cart-tabs .icon-checkout::before {
    content: "\e615"; }
  .cart-tabs .icon-pay::before {
    content: "\e68c"; }
  .cart-tabs .icon-done::before {
    content: "\e66c"; }
  .cart-tabs .icon-help::before {
    content: "\e64a"; }

.next-button {
  text-align: left; }
  .next-button button {
    text-align: left;
    font-size: 20px;
    line-height: 22px;
    padding-left: 20px;
    position: relative;
    padding-right: 60px; }
    .next-button button span {
      display: block;
      font-size: 26px; }
    .next-button button i {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
           -o-transform: translateY(-50%);
              transform: translateY(-50%);
      right: 15px;
      font-size: 24px;
      border: 1px solid #fff;
      height: 28px;
      width: 28px;
      border-radius: 20px;
      text-align: center; }
    @media (max-width: 991px) {
      .next-button button {
        width: 100%;
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 10px;
        padding-top: 15px;
        padding-bottom: 20px; }
        .next-button button span {
          font-size: 38px; }
        .next-button button i {
          height: 34px;
          width: 34px;
          line-height: 30px;
          font-size: 24px; } }
    @media (max-width: 480px) {
      .next-button button {
        padding-right: 10px; }
        .next-button button a {
          display: block;
          width: 100%; }
          .next-button button a button {
            width: 100%; } }

.cart-content h4, .woocommerce-cart-form h4 {
  font-family: "Cartwheel", sans-serif;
  color: #02d0d8;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 1px; }
  .cart-content h4 span, .woocommerce-cart-form h4 span {
    display: block;
    font-size: 14px;
    font-family: "gotham-light-webfont", sans-serif;
    text-transform: initial;
    color: #8c8c8c;
    margin-bottom: 10px;
    margin-top: 10px;
    letter-spacing: normal;
    line-height: 20px; }

.woocommerce-page.cart .page-content > .container {
  border-radius: 25px; }

@media (max-width: 767px) {
  .woocommerce-page.cart .kk_related_wrapper .kk_related {
    padding-bottom: 80px; } }

.woocommerce-cart-form table.shop_table {
  margin-left: -15px;
  width: calc(100% + 30px);
  border-radius: 0px;
  border-left: 0px;
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 30px; }
  .woocommerce-cart-form table.shop_table thead {
    font-family: "Cartwheel", sans-serif;
    color: #4b4b4b;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: normal; }
    .woocommerce-cart-form table.shop_table thead th {
      text-align: center;
      border-right: 1px solid #e8e8e8; }
      .woocommerce-cart-form table.shop_table thead th:last-child {
        border-right: none; }
  .woocommerce-cart-form table.shop_table td {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e9e8; }
    .woocommerce-cart-form table.shop_table td:last-child {
      border-right: none; }
      @media (max-width: 768px) {
        .woocommerce-cart-form table.shop_table td:last-child {
          border-right: 1px solid #e8e8e8;
          border-bottom: 3px solid #e73787; } }
    @media (max-width: 768px) {
      .woocommerce-cart-form table.shop_table td {
        padding-top: 5px;
        padding-bottom: 5px; } }
    .woocommerce-cart-form table.shop_table td:before {
      font-family: "Cartwheel", sans-serif; }
      @media (max-width: 580px) {
        .woocommerce-cart-form table.shop_table td:before {
          display: block;
          text-align: left;
          float: none !important; } }
  .woocommerce-cart-form table.shop_table td.product-name {
    text-align: left; }
    .woocommerce-cart-form table.shop_table td.product-name img {
      width: 80px;
      border: 1px solid #e8e9e8; }
    .woocommerce-cart-form table.shop_table td.product-name a {
      padding-left: 15px;
      font-family: "Sanuk-Fat", serif;
      color: #2a154c;
      font-size: 18px;
      -webkit-font-smoothing: antialiased; }
      @media (max-width: 768px) {
        .woocommerce-cart-form table.shop_table td.product-name a {
          display: block;
          padding: 0 15px; } }
  .woocommerce-cart-form table.shop_table .kk_quantity {
    margin-bottom: 0px !important; }
    .woocommerce-cart-form table.shop_table .kk_quantity .plus, .woocommerce-cart-form table.shop_table .kk_quantity .minus {
      height: 20px;
      width: 20px;
      border-radius: 6px;
      font-size: 20px;
      line-height: 16px;
      background-color: #e73787;
      margin-top: 5px;
      opacity: 0.8; }
      .woocommerce-cart-form table.shop_table .kk_quantity .plus:hover, .woocommerce-cart-form table.shop_table .kk_quantity .minus:hover {
        opacity: 1.0; }
    .woocommerce-cart-form table.shop_table .kk_quantity input {
      font-size: 28px;
      width: 30px;
      height: 30px; }
  .woocommerce-cart-form table.shop_table .woocommerce-Price-amount.amount, .woocommerce-cart-form table.shop_table .woocommerce-Price-amount.amount {
    font-family: "Cartwheel", sans-serif;
    color: #2a154c;
    font-size: 20px;
    font-weight: 100; }
  @media (max-width: 991px) {
    .woocommerce-cart-form table.shop_table {
      border-bottom: 1px solid #e8e8e8; } }
  @media (max-width: 768px) {
    .woocommerce-cart-form table.shop_table {
      padding-bottom: 0; } }

.woocommerce .cart_totals {
  padding-top: 40px;
  padding-left: 10px; }
  .woocommerce .cart_totals h3 {
    font-family: "Cartwheel", sans-serif;
    text-transform: uppercase;
    color: #2a154c;
    margin-top: 0px;
    margin-bottom: 0px; }
  .woocommerce .cart_totals h2 {
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    color: #2a154c;
    font-family: "Cartwheel", sans-serif;
    letter-spacing: 1px;
    font-size: 60px;
    margin-top: 0px;
    white-space: pre-wrap;
    word-break: break-all; }
    .woocommerce .cart_totals h2 .woocommerce-Price-amount {
      font-weight: 100 !important;
      font-size: 50px; }
      @media (max-width: 768px) {
        .woocommerce .cart_totals h2 .woocommerce-Price-amount {
          font-size: 55px; } }
      .woocommerce .cart_totals h2 .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
        font-size: 40px;
        color: #e73787;
        margin-top: 19px;
        line-height: 10px; }
  .woocommerce .cart_totals p.disclaimer {
    font-size: 16px;
    padding-top: 15px;
    color: #4b4b4b; }
  @media (max-width: 991px) {
    .woocommerce .cart_totals {
      padding-top: 10px; } }

.kk_quantity {
  float: none !important;
  margin-bottom: 5px !important; }
  .kk_quantity input {
    display: inline-block;
    max-width: 67px;
    height: 67px;
    padding: 0;
    font-size: 48px;
    color: #e73787;
    margin-top: -18px;
    font-family: "Cartwheel", sans-serif;
    -webkit-appearance: none;
    line-height: 46px;
    box-shadow: none;
    outline: none;
    border: none;
    background-color: #fff;
    border-bottom: 2px solid transparent;
    -moz-appearance: textfield; }
    .kk_quantity input:active, .kk_quantity input:focus {
      border-color: #c7c7c7;
      border-bottom: 2px solid #e73787; }
    .kk_quantity input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
    .kk_quantity input::-webkit-outer-spin-button, .kk_quantity input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .kk_quantity .plus, .kk_quantity .minus {
    display: inline-block;
    height: 46px;
    line-height: 30px;
    font-size: 36px;
    border: none;
    background-color: #02d0d8;
    background-color: #e2e2e2;
    font-family: "Cartwheel", sans-serif;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    vertical-align: top;
    -o-transition: all .3s ease-in-out;
       transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out; }
    .kk_quantity .plus:hover, .kk_quantity .minus:hover {
      background-color: #e73787; }
      .kk_quantity .plus:hover:before, .kk_quantity .minus:hover:before {
        color: #fff; }
    .kk_quantity .plus:before, .kk_quantity .minus:before {
      color: #494949;
      font-size: 20px;
      -webkit-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
         transition: all 0.2s linear;
      display: inline-block;
      width: 13px;
      text-rendering: auto; }
  .kk_quantity span.quantity_label {
    display: block;
    text-transform: uppercase;
    font-family: "Sanuk-Fat", serif;
    font-weight: normal;
    padding-bottom: 10px;
    font-size: 20px; }

.woocommerce-page .page-content {
  padding: 0 15px; }
  .woocommerce-page .page-content > .container {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 0;
    position: relative;
    border-radius: 25px 25px 0 0; }
    .woocommerce-page .page-content > .container .cart-empty-wrapper {
      text-align: center;
      padding: 65px; }
    .woocommerce-page .page-content > .container .cart-empty {
      text-align: center; }
    .woocommerce-page .page-content > .container .return-to-shop {
      text-align: center;
      font-style: normal; }
      .woocommerce-page .page-content > .container .return-to-shop a {
        font-size: 20px;
        display: inline-block; }

.woocommerce-page .prue_trude_wrapper {
  margin-top: -100px; }
  .woocommerce-page .prue_trude_wrapper .pt_inner {
    float: right;
    position: relative; }
    .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text {
      background-image: url("../images/homepage/prue-n-trude.png");
      background-size: cover;
      padding-left: 29.75px;
      padding-right: 26.74px;
      padding-top: 15.3822px;
      padding-bottom: 24.941px;
      width: 196px;
      display: inline-block;
      position: relative; }
      .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text .inner {
        -webkit-transform: rotate(-6deg);
             -o-transform: rotate(-6deg);
                transform: rotate(-6deg); }
        .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text .inner h3 {
          font-family: "Cartwheel", sans-serif;
          color: #e73787;
          font-size: 20.188px;
          padding: 0;
          margin: 0;
          margin-bottom: 4px;
          padding: 10px 0; }
          .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text .inner h3.alt {
            color: #383739; }
        .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text .inner span {
          font-family: "Cartwheel", sans-serif;
          font-size: 14.854px;
          color: #e73787;
          display: none; }
          .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text .inner span.alt {
            width: 67%;
            display: block;
            font-size: 16px; }
      .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text:before {
        content: '';
        background-image: url("../images/quotes-pink.png");
        display: block;
        width: 45.5px;
        height: 52.5px;
        position: absolute;
        top: -3.5px;
        left: -21px;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 1;
        background-position: center center; }
      @media (max-width: 540px) {
        .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text {
          display: none; } }
    .woocommerce-page .prue_trude_wrapper .pt_inner .shop-image {
      width: 210px;
      margin-left: -52.5px;
      z-index: 1;
      position: relative; }
    .woocommerce-page .prue_trude_wrapper .pt_inner .floating-cluster {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      bottom: 0;
      pointer-events: none; }
      .woocommerce-page .prue_trude_wrapper .pt_inner .floating-cluster .floating:first-child {
        right: 0;
        top: 0; }
      .woocommerce-page .prue_trude_wrapper .pt_inner .floating-cluster .floating:nth-child(2) {
        left: -60px;
        bottom: 40px; }
      .woocommerce-page .prue_trude_wrapper .pt_inner .floating-cluster .floating:nth-child(3) {
        right: -30px;
        bottom: 30px; }
      .woocommerce-page .prue_trude_wrapper .pt_inner .floating-cluster .floating:nth-child(4) {
        left: 30px;
        bottom: 0px; }
      @media (max-width: 540px) {
        .woocommerce-page .prue_trude_wrapper .pt_inner .floating-cluster {
          left: unset;
          right: 35px; } }
  @media (max-width: 991px) {
    .woocommerce-page .prue_trude_wrapper {
      margin-top: -45px; }
      .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text {
        padding-left: 29.75px;
        padding-right: 26.74px;
        padding-top: 21.3822px;
        padding-bottom: 24.941px;
        width: 196px; }
        .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text .inner h3 {
          font-size: 20.188px; }
        .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text .inner span {
          font-size: 14.854px; }
        .woocommerce-page .prue_trude_wrapper .pt_inner .prue_trude_text:before {
          width: 45.5px;
          height: 52.5px; }
      .woocommerce-page .prue_trude_wrapper .pt_inner .shop-image {
        width: 196px; } }

.woocommerce-page .kk_related_wrapper {
  background-color: #fff;
  margin-bottom: 0; }
  .woocommerce-page .kk_related_wrapper .kk_related {
    padding-top: 40px;
    padding-bottom: 70px;
    position: relative;
    margin-bottom: 0;
    z-index: 2; }
    @media (max-width: 767px) {
      .woocommerce-page .kk_related_wrapper .kk_related {
        padding-bottom: 230px; } }
    .woocommerce-page .kk_related_wrapper .kk_related > .container {
      padding: 0;
      border-radius: 25px;
      position: relative;
      background-color: #fff;
      box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.24); }
      .woocommerce-page .kk_related_wrapper .kk_related > .container p {
        text-shadow: none;
        -webkit-text-stroke-width: 0px;
        color: #fff;
        -webkit-font-smoothing: antialiased; }
      .woocommerce-page .kk_related_wrapper .kk_related > .container .floating-cluster {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        left: 0;
        pointer-events: none; }
        .woocommerce-page .kk_related_wrapper .kk_related > .container .floating-cluster .floating:first-child {
          right: 40px;
          top: -20px; }
        .woocommerce-page .kk_related_wrapper .kk_related > .container .floating-cluster .floating:nth-child(2) {
          right: -20px;
          top: 85px; }
        .woocommerce-page .kk_related_wrapper .kk_related > .container .floating-cluster .floating:nth-child(3) {
          right: 20px;
          top: 175px; }
      .woocommerce-page .kk_related_wrapper .kk_related > .container .related_heading_wrapper {
        position: absolute;
        top: -50px;
        left: -5px;
        background-image: url("../images/shop/related-title.png");
        padding: 10px 145px 20px 20px;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 999; }
        .woocommerce-page .kk_related_wrapper .kk_related > .container .related_heading_wrapper h2 {
          text-shadow: #ed499a 0 -1px 4px, #ed499a 0px 1px 4px, #ed499a -1px 0px 4px, #ed499a 1px 0px 4px;
          font-size: 30px;
          font-family: "Cartwheel", sans-serif;
          -webkit-font-smoothing: antialiased;
          letter-spacing: normal;
          color: #fff;
          -webkit-transform: rotate(-1deg);
               -o-transform: rotate(-1deg);
                  transform: rotate(-1deg); }
          @media (max-width: 480px) {
            .woocommerce-page .kk_related_wrapper .kk_related > .container .related_heading_wrapper h2 {
              font-size: 20px; } }
      .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop {
        padding-top: 0;
        padding-bottom: 0; }
        .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single {
          border-top: 0;
          border-bottom: 0; }
          .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single:nth-child(3) {
            border-right: 1px solid #e6e6e6; }
          .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single:last-child {
            border-right: none; }
          @media (max-width: 991px) {
            .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single {
              width: 50%; }
              .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single:first-child, .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single:nth-child(2) {
                border-bottom: 1px solid #e6e6e6; }
              .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single:nth-child(2) {
                border-right: none; }
              .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single:nth-child(3) {
                border-left: none; } }
          @media (max-width: 480px) {
            .woocommerce-page .kk_related_wrapper .kk_related > .container .products_loop .product_single {
              width: 100%; } }
    .woocommerce-page .kk_related_wrapper .kk_related:before {
      content: '';
      display: block;
      height: 100%;
      position: absolute;
      z-index: 0;
      left: 0;
      top: 10%;
      right: 0;
      background: #e73787;
      -webkit-transform: skewY(-6.5deg);
           -o-transform: skewY(-6.5deg);
              transform: skewY(-6.5deg);
      -webkit-transform-origin: 100%;
           -o-transform-origin: 100%;
              transform-origin: 100%; }

.products_loop {
  padding-left: 0;
  padding-right: 0;
  border-radius: 15px;
  padding-top: 30px;
  padding-bottom: 0; }
  .products_loop .product_single {
    padding: 18px;
    outline: none;
    text-align: center;
    border: 1px solid #e6e6e6;
    border-right: 0px; }
    @media (min-width: 992px) {
      .products_loop .product_single:first-child {
        border-left: none; }
      .products_loop .product_single:nth-child(3n) {
        border-right: none; }
      .products_loop .product_single:nth-child(3n+1) {
        border-left: none; }
      .products_loop .product_single:last-child:not(:nth-child(3n)) {
        border-right: 1px solid #e6e6e6; }
      .products_loop .product_single:nth-child(n+4) {
        border-top: 0; } }
    @media (max-width: 991px) {
      .products_loop .product_single:nth-child(2n+1) {
        border-left: none; }
      .products_loop .product_single:nth-child(2n) {
        border-right: none; }
      .products_loop .product_single:nth-child(n+3) {
        border-top: 0; }
      .products_loop .product_single:last-child:not(:nth-child(2n)) {
        border-right: 1px solid #e6e6e6;
        width: calc(50% + 1px); } }
    @media (min-width: 768px) and (max-width: 1199px) {
      .products_loop .product_single {
        padding: 7px; } }
    @media (max-width: 480px) {
      .products_loop .product_single {
        border-left: none;
        border-right: none; }
        .products_loop .product_single:nth-child(n+1) {
          border-top: 0; } }
    .products_loop .product_single a.woocommerce-LoopProduct-link {
      display: inline-block;
      width: 100%; }
      .products_loop .product_single a.woocommerce-LoopProduct-link:focus, .products_loop .product_single a.woocommerce-LoopProduct-link:active {
        outline: none; }
        .products_loop .product_single a.woocommerce-LoopProduct-link:focus .product_title, .products_loop .product_single a.woocommerce-LoopProduct-link:active .product_title {
          text-decoration: none; }
      .products_loop .product_single a.woocommerce-LoopProduct-link:hover .product_title {
        color: #e73787; }
    .products_loop .product_single .product_image {
      height: 200px;
      background-size: contain;
      background-position: center center;
      background-repeat: no-repeat;
      margin-bottom: 20px; }
      @media (min-width: 768px) and (max-width: 991px) {
        .products_loop .product_single .product_image {
          width: 100%; } }
    .products_loop .product_single .product-info {
      padding: 0;
      padding-left: 5px;
      text-align: left; }
      .products_loop .product_single .product-info .product_title {
        font-family: "Sanuk-Fat", serif;
        font-weight: 100;
        color: #e73787;
        font-size: 18px;
        -webkit-font-smoothing: antialiased;
        color: #2a154c;
        margin-bottom: 30px;
        -o-transition: all .3s ease-in-out;
           transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out; }
        @media (min-width: 768px) and (max-width: 1199px) {
          .products_loop .product_single .product-info .product_title {
            font-size: 15px; } }
      .products_loop .product_single .product-info .product_meta {
        position: absolute;
        bottom: 0;
        margin-top: 5px;
        margin-bottom: 8px; }
        .products_loop .product_single .product-info .product_meta p.price, .products_loop .product_single .product-info .product_meta p.rrp {
          font-family: "Cartwheel", sans-serif;
          font-style: normal;
          font-weight: 100;
          -webkit-font-smoothing: antialiased;
          display: inline-block;
          color: #2a154c !important;
          -webkit-text-stroke: 0.2px #2a154c; }
        .products_loop .product_single .product-info .product_meta p.price {
          font-size: 24px !important;
          line-height: 26px;
          letter-spacing: normal; }
        .products_loop .product_single .product-info .product_meta p.rrp {
          font-size: 13px;
          text-decoration: line-through;
          display: none;
          margin-bottom: 20px; }
        @media (min-width: 768px) and (max-width: 1199px) {
          .products_loop .product_single .product-info .product_meta {
            position: relative; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .products_loop .product_single .product-info {
          width: 100%; } }
      @media (max-width: 768px) {
        .products_loop .product_single .product-info {
          padding: 0 15px; }
          .products_loop .product_single .product-info .product_meta {
            position: initial; } }
    .products_loop .product_single a.add_to_cart_button {
      display: inline-block;
      margin: 0 auto; }
    .products_loop .product_single .add_to_cart_wrapper {
      margin: 0 auto; }
      .products_loop .product_single .add_to_cart_wrapper form {
        display: inline-block; }
    @media (max-width: 480px) {
      .products_loop .product_single {
        width: 100%; } }
  @media (max-width: 991px) {
    .products_loop {
      padding-bottom: 0; } }

.featured_product {
  padding: 18px;
  outline: none;
  text-align: center; }
  .featured_product a:focus, .featured_product a:active {
    outline: none; }
    .featured_product a:focus .product_title, .featured_product a:active .product_title {
      text-decoration: none; }
  .featured_product .product_image {
    height: 200px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 20px; }
  .featured_product .product_title {
    font-family: "Cartwheel", sans-serif;
    font-weight: 100;
    color: #e73787;
    font-size: 18px;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 1025px) and (min-width: 992px) {
      .featured_product .product_title {
        min-height: 50px; } }
  .featured_product .product_meta {
    margin-top: 5px;
    margin-bottom: 8px; }
    .featured_product .product_meta p.price, .featured_product .product_meta p.rrp {
      font-family: "Cartwheel", sans-serif;
      font-style: normal;
      font-weight: 100;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      color: #2a154c !important;
      -webkit-text-stroke: 0.2px #2a154c; }
    .featured_product .product_meta p.price {
      font-size: 24px !important;
      line-height: 26px;
      letter-spacing: normal; }
    .featured_product .product_meta p.rrp {
      font-size: 13px;
      text-decoration: line-through;
      display: none;
      margin-bottom: 20px; }
  .featured_product .add_to_cart_wrapper {
    margin: 0 auto; }
    .featured_product .add_to_cart_wrapper form {
      display: inline-block; }

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  padding: 8px 15px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  box-shadow: none;
  font-family: "chaparral-pro-display", serif;
  -webkit-text-stroke: 0px;
  font-style: normal;
  font-weight: normal; }

.woocommerce select {
  -webkit-text-stroke: 0px;
  font-style: normal;
  font-weight: normal; }

.woocommerce .select2 {
  padding: 8px 15px;
  border-radius: 10px;
  border: 1px solid #e6e6e6; }

.woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
  border-color: #e6e6e6; }

.woocommerce form .form-row.woocommerce-invalid .select2-container, .woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select {
  border-color: #ffc1c1; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  border: none;
  font-family: "chaparral-pro-display", serif;
  -webkit-text-stroke: 0px;
  font-style: normal;
  font-weight: normal; }
  .select2-container--default .select2-selection--single .select2-selection__rendered:active, .select2-container--default .select2-selection--single .select2-selection__rendered:focus {
    outline: none; }

.select2-container--default .select2-selection--single {
  border: none; }
  .select2-container--default .select2-selection--single:active, .select2-container--default .select2-selection--single:focus {
    outline: none; }

.select2-selection__rendered {
  padding-left: 0px !important; }

.select2-selection__arrow {
  top: 6px !important;
  right: 6px !important; }
  .select2-selection__arrow:focus {
    outline: none; }

.woocommerce a.remove {
  font-size: 20px;
  line-height: 15px;
  color: #02d0d8 !important; }
  .woocommerce a.remove:hover {
    background-color: #02d0d8 !important; }
  @media (max-width: 768px) {
    .woocommerce a.remove {
      width: 100%;
      text-align: left;
      color: #878c8c !important;
      padding-top: 4px; }
      .woocommerce a.remove:after {
        content: 'Remove Product';
        font-family: "Cartwheel", sans-serif;
        position: relative;
        width: 100%;
        display: inline;
        padding-left: 8px;
        font-weight: 100;
        font-size: 16px;
        top: -2px; }
      .woocommerce a.remove:hover {
        background-color: transparent !important;
        color: #02d0d8 !important; } }

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  font-weight: normal; }

.order-total strong {
  font-weight: normal !important; }

.woocommerce-order-received .kk_related_wrapper .kk_related > .container {
  display: none; }

.woocommerce-order-received .page-content > .container {
  border-radius: 25px; }

.kk-invalid-msg {
  font-size: 12px;
  font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
  font-style: normal;
  letter-spacing: 1px;
  padding: 0 10px; }

.checkout-form-wrapper.shipping #step-2-title {
  display: none; }

.checkout-form-wrapper.shipping .shipping-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px; }

.checkout-form-wrapper.shipping .shipping-options-wrapper {
  padding-left: 0px;
  overflow: hidden; }
  .checkout-form-wrapper.shipping .shipping-options-wrapper h3 {
    font-family: "Cartwheel", sans-serif;
    color: #4b4b4b;
    font-size: 20px;
    margin-top: 0px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px; }
  .checkout-form-wrapper.shipping .shipping-options-wrapper p {
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px; }
  @media (max-width: 991px) {
    .checkout-form-wrapper.shipping .shipping-options-wrapper {
      padding-right: 0; } }

.checkout-form-wrapper.shipping .woocommerce-billing-fields h3 {
  font-family: "Cartwheel", sans-serif;
  color: #4b4b4b;
  font-size: 20px;
  margin-top: -1px;
  margin-bottom: 15px; }
  @media (max-width: 991px) {
    .checkout-form-wrapper.shipping .woocommerce-billing-fields h3 {
      margin-top: 15px; } }

.checkout-form-wrapper.shipping ul#shipping_method {
  list-style: none;
  border: 1px #cccccc solid;
  border-bottom: none;
  border-left: none;
  height: 100%; }
  .checkout-form-wrapper.shipping ul#shipping_method li {
    cursor: pointer;
    min-height: 150px;
    padding: 50px 15px;
    border-bottom: 1px #cccccc solid;
    position: relative;
    display: table;
    width: 100%;
    font-family: "chaparral-pro-display", serif;
    font-size: 18px;
    font-style: italic; }
    .checkout-form-wrapper.shipping ul#shipping_method li > div {
      display: table-cell;
      vertical-align: middle; }
    .checkout-form-wrapper.shipping ul#shipping_method li input.shipping_method {
      display: none; }
    .checkout-form-wrapper.shipping ul#shipping_method li:after {
      content: '';
      width: 26px;
      height: 26px;
      display: block;
      font-size: 15px;
      color: #fff;
      top: calc(50% - 14px);
      right: 10px;
      position: absolute;
      text-indent: 0px;
      text-align: center;
      border-radius: 8px;
      padding-top: 2px;
      border: 1px solid #02d0d8; }
    .checkout-form-wrapper.shipping ul#shipping_method li.selected-shipping {
      border-bottom: 2px solid #e73787; }
      .checkout-form-wrapper.shipping ul#shipping_method li.selected-shipping:after {
        content: '\f00c';
        font-family: 'FontAwesome';
        background-color: #e73787;
        border: 1px solid #e73787; }
    .checkout-form-wrapper.shipping ul#shipping_method li label {
      display: block; }
      .checkout-form-wrapper.shipping ul#shipping_method li label span {
        display: block; }
        .checkout-form-wrapper.shipping ul#shipping_method li label span.woocommerce-Price-currencySymbol {
          padding: 0px 10px 0px 0px;
          float: left; }
      .checkout-form-wrapper.shipping ul#shipping_method li label .tax_label {
        float: left; }
  @media (max-width: 991px) {
    .checkout-form-wrapper.shipping ul#shipping_method {
      border-right: none; } }

.checkout-form-wrapper.shipping .order-review-wrapper .insurance-wrapper {
  padding: 0 20px;
  text-align: center;
  font-size: 18px; }
  .checkout-form-wrapper.shipping .order-review-wrapper .insurance-wrapper a.btn_main {
    display: block;
    -webkit-font-smoothing: antialiased; }

@media (max-width: 991px) {
  .checkout-form-wrapper.shipping .order-review-wrapper {
    border-top: 1px solid #cccccc;
    padding-top: 10px; } }

.checkout-form-wrapper.shipping .order-review-wrapper #order_review .review-title {
  display: none; }

.checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table {
  border: none;
  font-family: "Cartwheel", sans-serif;
  margin: 0; }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tbody {
    display: none; }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr {
    border: none; }
    .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr th, .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr td {
      border: none; }
    .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr th {
      padding: 0 15px; }
    @media (max-width: 991px) {
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr td {
        text-align: right; } }
    .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.shipping-total {
      color: #383739;
      font-size: 20px; }
    .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.cart-subtotal {
      color: #02d0d8;
      font-size: 20px; }
    .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total {
      color: #2a154c; }
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.one th {
        font-size: 24px; }
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.one th:nth-child(2) {
        display: none; }
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.one td {
        display: none; }
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.two td {
        letter-spacing: 1px;
        font-size: 60px;
        margin-top: 0px;
        text-align: center; }
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.three {
        display: none; }
        .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.three th, .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.three td {
          font-size: 28px; }
      @media (max-width: 991px) {
        .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.one, .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.two {
          display: none; }
        .checkout-form-wrapper.shipping .order-review-wrapper #order_review .shop_table tfoot tr.order-total.three {
          display: table-row; } }

.checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon {
  margin: 20px 0; }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon p.form-row {
    width: calc(100% - 60px);
    float: left;
    display: inline-block;
    padding-left: 0; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon p.form-row {
        display: block;
        width: 100%;
        float: none; } }
    @media (max-width: 768px) {
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon p.form-row {
        width: 75%; } }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon .button {
    float: left;
    width: 50px;
    padding: 0;
    font-size: 13px;
    font-family: "Cartwheel", sans-serif;
    font-weight: 400;
    margin-left: 7.5px;
    margin-top: 3px;
    height: 37px;
    border-radius: 10px;
    text-align: center;
    -o-transition: all .3s ease-in-out;
       transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    color: #fff;
    border: 1px solid #fff;
    background-color: #adadad;
    -webkit-font-smoothing: antialiased; }
    .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon .button:hover {
      color: #fff;
      background-color: #e73787; }
    .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon .button:focus, .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon .button:active {
      outline: none; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon .button {
        display: block;
        width: 100%;
        float: none;
        margin: 0; } }
    @media (max-width: 991px) {
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon .button {
        width: calc(25% - 7.5px); } }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon label {
    opacity: 1;
    color: #383739;
    font-family: "chaparral-pro-display", serif;
    font-style: normal;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 0; }
    @media (max-width: 991px) {
      .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon label {
        width: 100%;
        display: block; } }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 20px;
    font-family: "chaparral-pro-display", serif;
    font-style: italic; }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 20px;
    font-family: "chaparral-pro-display", serif;
    font-style: italic; }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 20px;
    font-family: "chaparral-pro-display", serif;
    font-style: italic; }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon :-moz-placeholder {
    /* Firefox 18- */
    font-size: 20px;
    font-family: "chaparral-pro-display", serif;
    font-style: italic; }
  .checkout-form-wrapper.shipping .order-review-wrapper #order_review .coupon .input-text {
    padding: 6px 10px; }

.checkout-form-wrapper.shipping .order-review-wrapper .next-button {
  padding: 0 15px;
  width: 100%; }
  .checkout-form-wrapper.shipping .order-review-wrapper .next-button a {
    display: block;
    width: 100%; }
    .checkout-form-wrapper.shipping .order-review-wrapper .next-button a button {
      width: 100%;
      padding: 20px;
      margin-bottom: 15px; }

.checkout-form-wrapper.shipping .order-review-wrapper.is-payment {
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 0; }
  .checkout-form-wrapper.shipping .order-review-wrapper.is-payment #order_review .coupon-form {
    display: none; }
  .checkout-form-wrapper.shipping .order-review-wrapper.is-payment #order_review .review-title {
    display: block;
    padding: 10px 15px;
    margin: 0;
    color: #383739;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .checkout-form-wrapper.shipping .order-review-wrapper.is-payment #order_review .shop_table tbody {
    display: table-row-group; }

.checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1, .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 {
  margin-bottom: 50px; }
  @media (max-width: 991px) {
    .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1, .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 {
      margin-bottom: 20px; } }

.checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1 .create-account #createaccount {
  display: inline-block;
  float: left;
  margin: 0;
  position: relative;
  height: 36px;
  margin-right: 10px; }

.checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1 .create-account span {
  color: #383739;
  font-size: 20px;
  font-family: "chaparral-pro-display", serif;
  text-transform: none;
  font-style: italic; }

.checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1 .woocommerce-shipping-fields #ship-to-different-address input {
  margin-left: 0;
  position: relative;
  margin-top: 0; }
  @media (max-width: 767px) {
    .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1 .woocommerce-shipping-fields #ship-to-different-address input {
      margin-left: 5px; } }

.checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1 .woocommerce-shipping-fields #ship-to-different-address span {
  color: #383739;
  font-size: 20px;
  font-family: "chaparral-pro-display", serif;
  text-transform: none;
  font-style: italic; }
  @media (max-width: 375px) {
    .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1 .woocommerce-shipping-fields #ship-to-different-address span {
      font-size: 18px; } }
  @media (max-width: 320px) {
    .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step1 .woocommerce-shipping-fields #ship-to-different-address span {
      font-size: 16px; } }

.checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 {
  padding-left: 0;
  padding-right: 0; }
  .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment {
    background-color: #fff;
    border: none; }
    .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods {
      list-style: none;
      border: none;
      height: 100%;
      padding-left: 0;
      padding-right: 0; }
      .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods img.paypal {
        margin-top: 7px; }
      .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li {
        cursor: pointer;
        min-height: 150px;
        padding: 50px 15px;
        border-bottom: 1px #cccccc solid;
        position: relative;
        display: table;
        width: 100%;
        padding-top: 30px;
        padding-bottom: 10px;
        font-family: "chaparral-pro-display", serif;
        font-size: 18px;
        font-style: italic; }
        .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li > div {
          display: table-cell;
          vertical-align: middle; }
        .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li input.input-radio {
          display: none; }
        .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li:after {
          content: '';
          width: 26px;
          height: 26px;
          display: block;
          font-size: 15px;
          line-height: 21px;
          color: #fff;
          top: calc(50% - 14px);
          right: 10px;
          position: absolute;
          text-indent: 0px;
          text-align: center;
          border-radius: 8px;
          padding-top: 2px;
          border: 1px solid #02d0d8; }
        .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li .about_paypal {
          float: none;
          display: table; }
        .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li.selected-payment {
          border-bottom: 2px solid #e73787;
          padding-bottom: 0px;
          padding-top: 20px; }
          .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li.selected-payment:after {
            content: '\f00c';
            font-family: 'FontAwesome';
            background-color: #e73787;
            border: 1px solid #e73787;
            top: calc(30% - 14px); }
        .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li div.payment_box {
          background-color: transparent;
          padding-top: 0px; }
        .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods li label {
          display: block; }
      @media (max-width: 991px) {
        .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment ul.payment_methods {
          padding-bottom: 0; } }
    .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment span.payment-notice {
      color: #e73787;
      font-style: normal;
      font-size: 21px;
      margin-top: 25px;
      display: block;
      border: 2px solid #e73787;
      border-radius: 30px;
      padding: 15px 40px;
      text-align: center;
      background: #fff; }
    @media (max-width: 991px) {
      .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 #payment .place-order.form-row {
        padding: 0;
        margin: 0; } }
  @media (max-width: 991px) {
    .checkout-form-wrapper.shipping .checkout-steps-wrapper .checkout-step2 {
      margin-bottom: 0; } }

.checkout-form-wrapper.shipping.is-payment #shipping-form {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: none; }

.checkout-form-wrapper.shipping.is-payment .shipping-wrapper {
  border-right: none; }

.checkout-form-wrapper.shipping.is-payment .order-review-wrapper #order_review .shop_table tfoot tr th, .checkout-form-wrapper.shipping.is-payment .order-review-wrapper #order_review .shop_table tfoot tr td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.checkout-form-wrapper.shipping.is-payment .order-review-wrapper #order_review .shop_table tfoot tr.cart-subtotal {
  color: #383739; }

.checkout-form-wrapper.shipping.is-payment .order-review-wrapper #order_review .shop_table tfoot tr.order-total.one {
  display: none; }

.checkout-form-wrapper.shipping.is-payment .order-review-wrapper #order_review .shop_table tfoot tr.order-total.two {
  display: none; }

.checkout-form-wrapper.shipping.is-payment .order-review-wrapper #order_review .shop_table tfoot tr.order-total.three {
  display: table-row;
  color: #02d0d8;
  font-size: 20px; }

.payment_box {
  background-color: #e73787;
  -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out; }
  .payment_box:before {
    display: none !important; }
  .payment_box p {
    color: #2a154c;
    -webkit-text-stroke: 0; }

.woocommerce-thankyou-order-received {
  text-align: center;
  padding: 20px; }

.woocommerce-customer-details .woocommerce-column h2 {
  font-size: 26px;
  margin-bottom: 5px; }

.woocommerce-customer-details .woocommerce-column address {
  font-family: "chaparral-pro-display", serif;
  font-weight: bold;
  font-style: italic;
  -webkit-transform: scale(1, 0.98);
       -o-transform: scale(1, 0.98);
          transform: scale(1, 0.98);
  -webkit-text-stroke: 0.2px #2a154c;
  color: #2a154c;
  line-height: 26px;
  font-size: 20px; }
  .woocommerce-customer-details .woocommerce-column address p.woocommerce-customer-details--phone, .woocommerce-customer-details .woocommerce-column address p.woocommerce-customer-details--email {
    padding-left: 23px; }
    .woocommerce-customer-details .woocommerce-column address p.woocommerce-customer-details--phone:before, .woocommerce-customer-details .woocommerce-column address p.woocommerce-customer-details--email:before {
      font-style: normal;
      font-size: 16px; }

.woocommerce-order-details h2.woocommerce-order-details__title {
  background-image: url(../images/placeholders/menu-1-pink.png);
  padding: 10px 30px;
  text-align: center;
  display: table;
  font-size: 30px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  background-size: 100% 100%;
  padding-right: 35px;
  padding-bottom: 18px; }

.woocommerce-order-details table.shop_table {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px; }
  .woocommerce-order-details table.shop_table tfoot th {
    font-size: 18px; }
  .woocommerce-order-details table.shop_table tfoot td {
    font-size: 16px; }

.woocommerce-order-details table.order_details {
  margin-top: 20px; }
  .woocommerce-order-details table.order_details thead th {
    background-color: #02d0d8;
    font-family: "Sanuk-Fat", serif;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: normal;
    text-transform: uppercase;
    border-top-right-radius: 20px; }
    .woocommerce-order-details table.order_details thead th.product-name {
      border-top-right-radius: 0px;
      border-top-left-radius: 20px; }
  .woocommerce-order-details table.order_details tbody th {
    color: #02d0d8; }
  .woocommerce-order-details table.order_details th, .woocommerce-order-details table.order_details td, .woocommerce-order-details table.order_details a {
    font-family: "Cartwheel", sans-serif; }

ul.woocommerce-thankyou-order-details.order_details {
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  margin-bottom: 20px; }
  ul.woocommerce-thankyou-order-details.order_details li {
    display: table-cell;
    float: none;
    margin: 0;
    padding: 15px;
    width: inherit;
    font-size: 12px;
    font-family: "Sanuk-Fat", serif;
    color: #02d0d8; }
    ul.woocommerce-thankyou-order-details.order_details li strong {
      display: block;
      font-size: 22px;
      text-transform: none;
      line-height: 1.5;
      font-family: "Cartwheel", sans-serif;
      font-weight: normal;
      color: #383739; }
    @media (max-width: 991px) {
      ul.woocommerce-thankyou-order-details.order_details li {
        width: 100%;
        display: block;
        border-right: none; } }
  @media (max-width: 991px) {
    ul.woocommerce-thankyou-order-details.order_details {
      width: 100%;
      display: block;
      background-color: #f1f1f1;
      border-radius: 20px; } }

/* MINI CART */
.kk_mini_cart_wrapper {
  background-color: #02d0d8;
  padding: 0px 5px;
  position: relative;
  margin-top: 70px;
  margin-bottom: 20px;
  margin-left: 5px;
  margin-right: 5px; }
  .kk_mini_cart_wrapper:before, .kk_mini_cart_wrapper:after {
    content: '';
    left: 0px;
    position: absolute;
    width: 100%;
    height: 20px;
    background-image: url("../images/placeholders/Basket-blue-top.png");
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat; }
  .kk_mini_cart_wrapper:before {
    top: -19px; }
  .kk_mini_cart_wrapper:after {
    bottom: -19px;
    -webkit-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg); }
  .kk_mini_cart_wrapper .final_pricing table {
    width: 100%; }
    .kk_mini_cart_wrapper .final_pricing table td {
      width: 50%;
      font-size: 20px;
      color: #e73787;
      font-family: "Cartwheel", sans-serif;
      padding: 10px 4px;
      text-shadow: -1px -1px 1px #fff, 1px -1px 1px #fff, -2px 1px 1px #fff, 1px 1px 1px #fff; }
      .kk_mini_cart_wrapper .final_pricing table td.text {
        text-align: left;
        width: 40%; }
      .kk_mini_cart_wrapper .final_pricing table td.price {
        text-align: right;
        width: 60%; }
  .kk_mini_cart_wrapper .your_basket_wrapper {
    position: relative;
    height: 10px; }
    .kk_mini_cart_wrapper .your_basket_wrapper .your_basket {
      position: absolute;
      width: 60%;
      max-width: 160px;
      right: 5px;
      float: right;
      top: -30px; }
      .kk_mini_cart_wrapper .your_basket_wrapper .your_basket img {
        width: 100%;
        height: auto; }
      .kk_mini_cart_wrapper .your_basket_wrapper .your_basket .basket_info {
        width: 30%;
        position: relative;
        float: right;
        top: 0px;
        position: absolute;
        right: 5px; }
        .kk_mini_cart_wrapper .your_basket_wrapper .your_basket .basket_info img {
          max-width: 40px;
          margin-top: -10px;
          z-index: 1;
          position: relative; }
        .kk_mini_cart_wrapper .your_basket_wrapper .your_basket .basket_info .basket_count {
          width: auto;
          min-width: 25px;
          width: 25px;
          height: 25px;
          background-color: #e73787;
          color: #fff;
          font-family: "Cartwheel", sans-serif;
          border-radius: 100%;
          text-align: center;
          line-height: 22px;
          padding-left: 0px;
          font-size: 13px;
          display: block;
          border: 1px solid #e73787;
          font-weight: bold;
          -o-transition: all .3s ease-in-out;
             transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -webkit-transition: all .3s ease-in-out;
          position: absolute;
          left: 0px;
          right: 0px;
          margin-left: auto;
          margin-right: auto;
          top: -22px;
          z-index: 0;
          right: -8px; }
  @media (max-width: 991px) {
    .kk_mini_cart_wrapper {
      max-width: 400px;
      margin: 0 auto;
      margin-top: 70px;
      margin-bottom: 20px; } }

.kk_mini_cart {
  background-color: #02d0d8;
  width: 100%;
  list-style: none;
  padding-left: 0;
  display: block; }
  .kk_mini_cart tbody {
    display: block; }
  .kk_mini_cart img {
    max-width: 50px; }
  .kk_mini_cart td {
    color: #fff;
    font-family: "Cartwheel", sans-serif;
    text-align: center;
    min-width: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px; }
  .kk_mini_cart tr {
    background-color: #e73787;
    padding-left: 3px;
    padding-right: 3px;
    text-align: left; }
  .kk_mini_cart tr:nth-child(odd) {
    background-color: #02d0d8; }
    .kk_mini_cart tr:nth-child(odd) span a {
      color: #fff !important; }
    .kk_mini_cart tr:nth-child(odd) td a {
      color: #fff !important; }
  .kk_mini_cart tr:nth-child(even) {
    background-color: #fff; }
    .kk_mini_cart tr:nth-child(even) td {
      color: #02d0d8; }
      .kk_mini_cart tr:nth-child(even) td a {
        color: #02d0d8 !important; }
  .kk_mini_cart td.name {
    text-align: left; }
  .kk_mini_cart td.image {
    width: 15%;
    padding: 5px 5px; }
    .kk_mini_cart td.image img {
      max-width: 100%; }
  .kk_mini_cart td.quantity {
    padding-left: 3px;
    padding-right: 3px;
    width: 15%; }
    .kk_mini_cart td.quantity:after {
      content: '|';
      display: inline-block;
      font-size: 10px;
      position: relative;
      top: -2px;
      left: -50%; }
    .kk_mini_cart td.quantity:before {
      content: '|';
      display: inline-block;
      font-size: 10px;
      position: relative;
      top: -2px;
      right: -50%; }
  .kk_mini_cart td.price {
    width: 15%; }

.buttons .btn_checkout {
  max-width: 60%;
  position: relative;
  top: -25px;
  float: right;
  margin-right: 5px; }

@media (max-width: 991px) {
  .buttons {
    max-width: 400px;
    margin: 0 auto;
    display: block; }
    .buttons .btn_checkout {
      max-width: 170px; } }

.kk_mini_all .empty_text {
  font-family: "Cartwheel", sans-serif;
  color: #fff;
  font-size: 30px;
  text-align: center;
  padding: 20px;
  padding-bottom: 0px;
  list-style: none; }
  @media (width: 1024px) and (height: 768px) {
    .kk_mini_all .empty_text {
      font-size: 20px; } }

.kk_mini_all .btn_main {
  text-align: center; }

.kk_mini_all.empty_cart p.buttons, .kk_mini_all.empty_cart .final_pricing, .kk_mini_all.empty_cart .btn_checkout {
  display: none; }

.kk_mini_all.empty_cart .kk_mini_cart_wrapper {
  padding-bottom: 20px;
  padding-top: 10px; }

.woocommerce-page.archive .wc_content_wrapper {
  padding: 0; }
  .woocommerce-page.archive .wc_content_wrapper .woocommerce-error, .woocommerce-page.archive .wc_content_wrapper .woocommerce-info, .woocommerce-page.archive .wc_content_wrapper .woocommerce-message {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px; }
  .woocommerce-page.archive .wc_content_wrapper .woocommerce-result-count {
    padding: 10px 25px 6px 25px;
    margin: 0;
    float: right;
    display: inline-block;
    height: 39px;
    margin-top: 10px;
    margin-bottom: 10px; }
    @media (max-width: 991px) {
      .woocommerce-page.archive .wc_content_wrapper .woocommerce-result-count {
        padding: 10px; } }
    @media (max-width: 768px) {
      .woocommerce-page.archive .wc_content_wrapper .woocommerce-result-count {
        text-align: center;
        display: block;
        width: 100%;
        float: none; } }
  .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering {
    float: none;
    display: block;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 0; }
    .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering .select-wrapper {
      display: inline-block;
      background-color: #02d0d8;
      border-radius: 10px;
      padding: 5px 15px;
      border-radius: 25px;
      font-style: normal;
      font-size: 12px;
      color: #bbbbbb;
      position: relative; }
      .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering .select-wrapper select {
        vertical-align: top;
        background: transparent;
        border: none;
        font-size: 14px;
        height: 29px;
        padding: 5px;
        width: 268px;
        color: white;
        border-radius: 50px !important;
        font-family: "Cartwheel", sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-appearance: none;
        -webkit-appearance: none; }
        .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering .select-wrapper select option {
          color: #2a154c; }
        .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering .select-wrapper select:focus, .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering .select-wrapper select:active {
          outline: none; }
      .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering .select-wrapper:after {
        content: '\f107';
        font-family: 'FontAwesome';
        position: absolute;
        right: 16px;
        font-size: 18px;
        line-height: 18px;
        top: calc(50% - 9px);
        color: #fff;
        pointer-events: none; }
      @media (max-width: 480px) {
        .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering .select-wrapper {
          width: 100%; }
          .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering .select-wrapper select {
            width: 100%; } }
    @media (max-width: 768px) {
      .woocommerce-page.archive .wc_content_wrapper .woocommerce-ordering {
        text-align: center;
        display: block;
        float: none;
        margin-bottom: 20px; } }
  .woocommerce-page.archive .wc_content_wrapper .products_loop {
    padding-top: 0; }
    @media (max-width: 991px) {
      .woocommerce-page.archive .wc_content_wrapper .products_loop {
        padding-bottom: 0; } }

.woocommerce-page .woocommerce-pagination {
  padding-top: 10px;
  padding-bottom: 8px; }
  .woocommerce-page .woocommerce-pagination ul.page-numbers {
    border: none; }
    .woocommerce-page .woocommerce-pagination ul.page-numbers li {
      font-family: "Sanuk-Fat", serif;
      margin-right: 10px;
      border: 1px solid #d3ced2;
      border-radius: 20px; }
      .woocommerce-page .woocommerce-pagination ul.page-numbers li span, .woocommerce-page .woocommerce-pagination ul.page-numbers li a {
        padding: 8px 11px; }
      .woocommerce-page .woocommerce-pagination ul.page-numbers li a:hover {
        background-color: #e73787 !important;
        color: #fff !important; }

/** --------------------- **/
/** 0. SINGLE PAGE LAYOUT **/
/** --------------------- **/
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  width: 20%; }
  @media (max-width: 768px) {
    .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
      float: left;
      width: 33%; } }
  @media (max-width: 480px) {
    .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
      float: none;
      width: 50%;
      margin: 0 auto; } }

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  width: 76%; }
  @media (max-width: 768px) {
    .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
      float: right;
      width: 65%; } }
  @media (max-width: 480px) {
    .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
      width: 100%; } }

.wc_content_wrapper {
  padding-top: 20px;
  border-bottom: 1px solid #e2e2e2; }
  .wc_content_wrapper .summary.entry-summary {
    padding-left: 0; }

.woocommerce div.product div.summary {
  margin-bottom: 100px; }
  @media (max-width: 768px) {
    .woocommerce div.product div.summary {
      margin-bottom: 50px; } }

/** ------------------ **/
/** 1. PRODUCT CONTENT **/
/** ------------------ **/
h4.product_description_label {
  font-family: "Sanuk-Fat", serif;
  color: #8e8e8e;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: normal;
  display: none; }

.additional_info {
  color: #e73787;
  font-family: "gotham-medium-webfont", sans-serif;
  font-size: 16px; }

.woocommerce-product-details__short-description {
  padding: 15px 0;
  padding-top: 0;
  max-width: 80%;
  border-radius: 20px; }
  @media (max-width: 480px) {
    .woocommerce-product-details__short-description {
      max-width: 100%; } }
  .woocommerce-product-details__short-description p {
    font-family: "chaparral-pro-display", serif;
    line-height: 30px; }

/* PRODUCT CATEGORIES */
.product_meta {
  font-family: "Cartwheel", sans-serif;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 15px; }
  .product_meta .posted_in .meta-label {
    display: block;
    font-size: 18px;
    letter-spacing: normal;
    margin-bottom: 5px; }
  .product_meta .posted_in a {
    border: 1px solid #e73787;
    padding: 4px 8px;
    padding-bottom: 6px;
    font-size: 18px;
    font-family: "Cartwheel", sans-serif;
    letter-spacing: normal;
    margin-right: 4px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-style: italic;
    font-weight: normal;
    white-space: nowrap; }
    @media (max-width: 1199px) {
      .product_meta .posted_in a {
        display: inline-block;
        font-size: 16px;
        padding: 3px 6px; } }
    .product_meta .posted_in a:hover {
      border-color: #f9a300; }

/* PRICE */
.woocommerce .summary.entry-summary p.price {
  font-family: "Cartwheel", sans-serif;
  font-size: 50px;
  padding-top: 30px;
  padding-bottom: 35px;
  -webkit-text-stroke: 0px;
  color: #02d0d8; }
  .woocommerce .summary.entry-summary p.price ins {
    text-decoration: none;
    font-weight: 100 !important;
    letter-spacing: -1px; }
    .woocommerce .summary.entry-summary p.price ins .woocommerce-Price-currencySymbol {
      margin-right: 5px; }
  .woocommerce .summary.entry-summary p.price del {
    display: none; }

/** ------------------- **/
/** 2. RELATED PRODUCTS **/
/** ------------------- **/
.related.products {
  position: relative;
  background-size: 250px;
  clear: both;
  border-radius: 0px;
  padding: 20px 0;
  margin-top: 30px;
  margin-left: -65px;
  padding-bottom: 0; }
  .related.products .related_heading_wrapper {
    position: absolute;
    top: 10px;
    left: -5px;
    background-image: url("../images/shop/related-title.png");
    padding: 10px 145px 20px 20px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999; }
    .related.products .related_heading_wrapper h2 {
      text-shadow: #ed499a 0 -1px 4px, #ed499a 0px 1px 4px, #ed499a -1px 0px 4px, #ed499a 1px 0px 4px;
      font-size: 30px;
      font-family: "Cartwheel", sans-serif;
      -webkit-font-smoothing: antialiased;
      letter-spacing: normal;
      color: #fff;
      -webkit-transform: rotate(-1deg);
           -o-transform: rotate(-1deg);
              transform: rotate(-1deg); }
      @media (max-width: 480px) {
        .related.products .related_heading_wrapper h2 {
          font-size: 20px; } }
    @media (max-width: 480px) {
      .related.products .related_heading_wrapper {
        top: 25px; } }
  .related.products .related_inner {
    background-color: #fff;
    margin-top: 10px;
    padding: 0;
    border-radius: 20px;
    display: inline-block;
    width: 100%; }
    .related.products .related_inner .products_loop .product_single {
      border-bottom: none; }
      @media (max-width: 991px) {
        .related.products .related_inner .products_loop .product_single:nth-child(3) {
          display: none; } }
  @media (max-width: 991px) {
    .related.products {
      padding-bottom: 0; } }
  @media (max-width: 768px) {
    .related.products {
      width: calc(100% + 70px) !important;
      margin-left: -35px; } }
  @media (max-width: 420px) {
    .related.products {
      width: calc(100% + 30px) !important;
      margin-left: -15px; } }
  @media (max-width: 767px) {
    .related.products .related_inner .products_loop .product_single:nth-child(n+3) {
      border-left: 0;
      border-right: 0;
      border-bottom: 0; } }

/** --------------- **/
/** 3. ON SALE TAB **/
/** -------------- **/
.woocommerce span.onsale {
  /*background-image: url('../../assets/images/shock-value.png');
    background-size: cover;
    background-color: transparent;
    border-radius: 0px;*/
  width: 90px;
  border-radius: 0;
  -webkit-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transform: rotate(-10deg);
       -o-transform: rotate(-10deg);
          transform: rotate(-10deg);
  padding-left: 3px;
  padding-right: 3px;
  background-color: #8025d6;
  font-family: "Cartwheel", sans-serif;
  position: absolute;
  line-height: 25px;
  min-height: 10px; }
  .woocommerce span.onsale:before {
    content: '';
    background-image: url("../../assets/images/purple-star.png");
    background-size: cover;
    width: 25px;
    height: 25px;
    position: absolute;
    top: -10px;
    left: -13px;
    z-index: 100;
    -webkit-transform: rotate(-32deg);
         -o-transform: rotate(-32deg);
            transform: rotate(-32deg); }

.single-product .wc_content_wrapper {
  padding: 65px 0 0 65px; }
  .single-product .wc_content_wrapper > .product > .summary {
    padding-right: 15px; }
  @media (max-width: 991px) {
    .single-product .wc_content_wrapper {
      padding: 45px 0 0 45px;
      padding-bottom: 0; } }
  @media (max-width: 768px) {
    .single-product .wc_content_wrapper {
      padding: 40px 35px;
      padding-bottom: 0; } }
  @media (max-width: 420px) {
    .single-product .wc_content_wrapper {
      padding: 30px 15px;
      padding-bottom: 0; } }

.single-product .kk_club_wrapper {
  display: table;
  width: 100%; }
  .single-product .kk_club_wrapper .kk_club {
    padding-top: 25px; }
  @media (min-width: 768px) {
    .single-product .kk_club_wrapper .container {
      width: 730px; } }
  @media (min-width: 992px) {
    .single-product .kk_club_wrapper .container {
      width: 940px; } }
  @media (min-width: 1200px) {
    .single-product .kk_club_wrapper .container {
      width: 1050px; } }
  @media (min-width: 1440px) {
    .single-product .kk_club_wrapper .container {
      width: 1050px; } }
  @media (min-width: 1500px) {
    .single-product .kk_club_wrapper .container {
      width: 1170px; } }

/** ------------------- **/
/** 2. UPSELL PRODUCTS **/
/** ------------------- **/
.upsell-container {
  border-radius: 0 !important;
  box-shadow: none !important; }
  .upsell-container > .col-md-12 {
    padding: 0; }
  @media (min-width: 992px) {
    .upsell-container {
      padding: 0 !important; } }

.upsells.products {
  position: relative;
  background-size: 250px;
  clear: both;
  border-radius: 0px;
  padding: 0; }
  .upsells.products .upsell_heading_wrapper {
    position: absolute;
    top: 10px;
    left: -5px;
    background-image: url("../images/shop/related-title.png");
    padding: 10px 145px 20px 20px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999; }
    .upsells.products .upsell_heading_wrapper h2 {
      text-shadow: #ed499a 0 -1px 4px, #ed499a 0px 1px 4px, #ed499a -1px 0px 4px, #ed499a 1px 0px 4px;
      font-size: 30px;
      font-family: "Cartwheel", sans-serif;
      -webkit-font-smoothing: antialiased;
      letter-spacing: normal;
      color: #fff;
      -webkit-transform: rotate(-1deg);
           -o-transform: rotate(-1deg);
              transform: rotate(-1deg); }
      @media (max-width: 480px) {
        .upsells.products .upsell_heading_wrapper h2 {
          font-size: 20px; } }
    @media (max-width: 480px) {
      .upsells.products .upsell_heading_wrapper {
        top: 25px; } }
  .upsells.products .upsell_inner {
    background-color: #fff;
    margin-top: 30px;
    padding: 0;
    border-radius: 20px;
    display: inline-block;
    width: 100%; }
    .upsells.products .upsell_inner .products_loop {
      padding-top: 0;
      border: none;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
      overflow: hidden; }
      .upsells.products .upsell_inner .products_loop .product_single {
        border-top: 0;
        width: 25%; }
        @media (max-width: 991px) {
          .upsells.products .upsell_inner .products_loop .product_single {
            width: 50%; } }
        @media (max-width: 610px) {
          .upsells.products .upsell_inner .products_loop .product_single {
            width: 100%; } }
        .upsells.products .upsell_inner .products_loop .product_single .product_image {
          height: 150px;
          background-size: contain;
          background-position: center center;
          background-repeat: no-repeat;
          margin-bottom: 20px;
          width: 100%;
          background-color: #ffffff;
          border-radius: 10px; }
        .upsells.products .upsell_inner .products_loop .product_single .product-info {
          width: 100%; }
          .upsells.products .upsell_inner .products_loop .product_single .product-info .product_title {
            font-size: 16px;
            margin-bottom: 10px; }
            @media (max-width: 991px) {
              .upsells.products .upsell_inner .products_loop .product_single .product-info .product_title {
                text-align: center; } }
          .upsells.products .upsell_inner .products_loop .product_single .product-info .product_meta {
            position: relative;
            text-align: left; }
            @media (max-width: 991px) {
              .upsells.products .upsell_inner .products_loop .product_single .product-info .product_meta {
                text-align: center; } }
            .upsells.products .upsell_inner .products_loop .product_single .product-info .product_meta .price {
              font-size: 20px !important; }
        .upsells.products .upsell_inner .products_loop .product_single .add_to_cart_button {
          padding: 6px 25px !important;
          padding-bottom: 9px !important;
          font-size: 16px !important; }
        @media (min-width: 992px) {
          .upsells.products .upsell_inner .products_loop .product_single:nth-child(3n) {
            border-right: 1px solid #e6e6e6; }
          .upsells.products .upsell_inner .products_loop .product_single:nth-child(4n) {
            border-right: none; }
          .upsells.products .upsell_inner .products_loop .product_single:last-child:not(:nth-child(4n)) {
            border-right: 1px solid #e6e6e6; } }
        @media (max-width: 991px) {
          .upsells.products .upsell_inner .products_loop .product_single:nth-child(2n+1) {
            border-right: 1px solid #e6e6e6; }
          .upsells.products .upsell_inner .products_loop .product_single:nth-child(2n) {
            border-right: 1px solid #e6e6e6; }
          .upsells.products .upsell_inner .products_loop .product_single:nth-child(n+3) {
            border-right: 1px solid #e6e6e6; }
          .upsells.products .upsell_inner .products_loop .product_single:last-child:not(:nth-child(2n)) {
            border-right: 1px solid #e6e6e6;
            width: calc(50% + 1px); } }
  @media (max-width: 991px) {
    .upsells.products {
      padding-bottom: 0; } }
