/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -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%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -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;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-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);
  }

  to {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-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(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -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(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -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, to {
    -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;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-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);
  }

  to {
    -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);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.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);
  }

  to {
    -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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-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);
  }

  to {
    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);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    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);
  }
}
@keyframes bounceOutLeft {
  20% {
    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);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    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);
  }
}
@keyframes bounceOutRight {
  20% {
    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);
  }
}
.bounceOutRight {
  -webkit-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);
  }

  to {
    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);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-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(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-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;
    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(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-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);
  }

  to {
    -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;
    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);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-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);
  }

  to {
    -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;
    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);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-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;
  }

  to {
    -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;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-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;
  }

  to {
    -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;
  }

  to {
    -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;
  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;
  }

  to {
    -webkit-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);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-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;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@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;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-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;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@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;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-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;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@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;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-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;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@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;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-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;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@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;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-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;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-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;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-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;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-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;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-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;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-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;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-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;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-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;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-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;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-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;
  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;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@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;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-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);
  }

  to {
    opacity: 1;
    -webkit-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);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    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;
  }

  to {
    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;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.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.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.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.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.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.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.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.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -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;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -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;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -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;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -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;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    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);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    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);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    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);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    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);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
#owl-demo .item {
  margin: 3px;
  padding: 40px;
}

#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}

/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
/* --------------------- color ----------------------------*/
@font-face {
  font-family: 'StemWeb-Bold';
  src: url("/Content/fonts/StemWeb/StemWeb-Bold_gdi.eot");
  /* IE9 Compat Modes */
  src: url("/Content/fonts/StemWeb/StemWeb-Bold_gdi.eot?#iefix") format("embedded-opentype"), url("/Content/fonts/StemWeb/StemWeb-Bold_gdi.woff2") format("woff2"), url("/Content/fonts/StemWeb/StemWeb-Bold_gdi.woff") format("woff"), url("/Content/fonts/StemWeb/StemWeb-Bold_gdi.ttf") format("truetype"), url("/Content/fonts/StemWeb/StemWeb-Bold_gdi.svg#svgFontName") format("svg");
  /* Legacy iOS */
}
body {
  background: white;
  color: #515151;
  font-size: 16px;
  font-family: "proxima-nova", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 1200px) {
  .container.c-1600 {
    max-width: 1600px;
  }

  .container.c-1000 {
    max-width: 1000px;
  }
}
@media (min-width: 993px) {
  .no-gutter [class*="-6"] {
    padding-left: 0;
    padding-right: 0;
  }
}
.upper {
  text-transform: uppercase;
}

p {
  margin: 13px 0 10px;
  line-height: 1.8;
  font-size: 18px;
}

.box-product-info p {
  font-size: 13px;
  margin: 0 0 10px;
}

a:link, a:visited, a:active {
  color: #db1b1b;
}
a:hover {
  color: #b11010;
  text-decoration: none;
}

.title h1 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 65px;
  text-transform: uppercase;
  color: black;
  z-index: 9;
  position: relative;
}
.title h1 span {
  opacity: 0.31;
  color: #c7c7c7;
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 65px;
  font-weight: bold;
  line-height: 0px;
  margin-top: 62px;
  margin-left: -141px;
  position: absolute;
  text-transform: uppercase;
}
.title h3 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 65px;
  text-transform: uppercase;
  color: black;
  z-index: 9;
  position: relative;
}
.title span {
  opacity: 0.31;
  color: #c7c7c7;
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 65px;
  font-weight: bold;
  line-height: 0px;
  margin-top: -15px;
  margin-left: 65px;
  position: absolute;
  text-transform: uppercase;
}

/*------------------------- forms ----------------------------------*/
.form-control {
  text-transform: uppercase;
  display: block;
  width: 100%;
  height: 34px;
  padding: 21px 12px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

/*------------------------- footer ----------------------------------*/
footer {
  color: white;
}
footer a:link, footer a:visited, footer a:active {
  color: white;
}
footer a:hover {
  color: #b11010;
  text-decoration: none;
}
footer .footer-top {
  background: url("/Content/images/footer-bg.jpg") center top no-repeat #15191c;
  padding-top: 50px;
  padding-bottom: 10px;
}
footer .footer-top .maps-testmonials {
  float: left;
  width: 100%;
  /*------------------------- slider -------------------------------------*/
  /* Carousel */
}
footer .footer-top .maps-testmonials h2 {
  color: #FFFFFF;
  font-size: 41px;
  font-weight: bold;
  line-height: 49px;
  margin-top: 0;
  margin-left: 10px;
  text-transform: uppercase;
  font-family: "proxima-nova", Arial, sans-serif;
}
footer .footer-top .maps-testmonials p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
}
footer .footer-top .maps-testmonials span {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 22px;
  padding-top: 50px;
  display: -webkit-box;
}
footer .footer-top .maps-testmonials #quote-carousel {
  padding: 0 10px 30px 10px;
  margin-top: 30px;
  /* Control buttons  */
  /* Previous button  */
  /* Next button  */
  /* Changes the position of the indicators */
  /* Changes the color of the indicators */
}
footer .footer-top .maps-testmonials #quote-carousel .carousel-control {
  background: none;
  color: #CACACA;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 30px;
}
footer .footer-top .maps-testmonials #quote-carousel .carousel-control.left {
  left: -60px;
}
footer .footer-top .maps-testmonials #quote-carousel .carousel-control.right {
  right: -60px;
}
footer .footer-top .maps-testmonials #quote-carousel .carousel-indicators {
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px;
}
footer .footer-top .maps-testmonials #quote-carousel .carousel-indicators li {
  width: 50px;
  height: 50px;
  margin: 5px;
  cursor: pointer;
  border: 4px solid #CCC;
  border-radius: 50px;
  opacity: 0.4;
  overflow: hidden;
  transition: all 0.4s;
}
footer .footer-top .maps-testmonials #quote-carousel .carousel-indicators .active {
  background: #db1b1b;
  width: 128px;
  height: 128px;
  border-radius: 100px;
  border-color: #db1b1b;
  opacity: 1;
  overflow: hidden;
}
footer .footer-top .maps-testmonials .carousel-inner {
  min-height: 260px;
}
footer .footer-top .maps-testmonials .item blockquote {
  border-left: none;
  margin: 0;
}
footer .footer-top .maps-testmonials .item blockquote p:before {
  content: "\f10d";
  font-family: 'Fontawesome', Arial, sans-serif;
  float: left;
  margin-right: 10px;
}
footer .footer-top .footer-logo {
  float: left;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 50px;
}
footer .footer-top .footer-logo > div {
  text-align: center;
}
footer .footer-top .footer-logo > div img {
  display: -webkit-inline-box;
}
footer .footer-top .footer-info {
  float: left;
  width: 100%;
  padding-bottom: 30px;
}
footer .footer-top .footer-info h3 {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}
footer .footer-top .footer-info p {
  font-size: 17px;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 35px;
}
footer .footer-top .footer-info ul {
  font-size: 17px;
  line-height: 31px;
  font-weight: 600;
  padding-left: 0;
}
footer .footer-top .footer-info ul li {
  list-style: none;
}
footer .footer-top .footer-info a.btn-link-maps, footer .footer-top .footer-info a.btn-link-maps:focus {
  width: 220px;
  padding: 15px 20px;
  display: inline-block;
  margin: 15px 0 0px 0;
  background: #db1b1b;
  color: white;
  text-decoration: none;
  border-radius: 3px;
}
footer .footer-top .footer-info a.btn-link-maps img, footer .footer-top .footer-info a.btn-link-maps:focus img {
  width: 16px;
  float: right;
  padding-top: 2px;
}
footer .footer-top .footer-info a.btn-link-maps:hover {
  background: #b11010;
  color: white;
  text-decoration: none;
}
footer .footer-bottom {
  background-color: #75797c;
  float: left;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}
footer .footer-bottom .copy-right {
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
}

/*---------------------------------------------------- product-group ----------------------------------------------------------------*/
.c-1400 {
  max-width: 1400px;
}

.c-760 {
  max-width: 760px;
}

.bg-range {
  background: white;
}

.product-group {
  float: left;
  width: 100%;
  margin-top: 40px;
}
.product-group .product-list {
  float: left;
  width: 100%;
}
.product-group .product-list .product-title {
  height: 110px;
}
.product-group .product-list .product-title h3 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 65px;
  text-transform: uppercase;
  color: black;
  z-index: 9;
  position: relative;
}
.product-group .product-list .product-title span {
  opacity: 0.31;
  color: #c7c7c7;
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 65px;
  font-weight: bold;
  line-height: 0px;
  margin-top: -15px;
  margin-left: 65px;
  position: absolute;
  text-transform: uppercase;
}
.product-group .product-list a, .product-group .product-list a:focus {
  margin-bottom: 60px;
  width: 100%;
  display: inline-block;
  text-decoration: none;
}
.product-group .product-list a .item, .product-group .product-list a:focus .item {
  text-align: center;
}
.product-group .product-list a .item p, .product-group .product-list a .item span, .product-group .product-list a .item h4, .product-group .product-list a:focus .item p, .product-group .product-list a:focus .item span, .product-group .product-list a:focus .item h4 {
  text-align: left;
  display: -webkit-box;
}
.product-group .product-list a .item img, .product-group .product-list a:focus .item img {
  display: -webkit-inline-box !important;
}
.product-group .product-list a .item h4, .product-group .product-list a:focus .item h4 {
  color: black;
  font-size: 23px;
  line-height: 28px;
  margin-top: 25px;
  height: 55px;
  margin-bottom: 0;
}
.product-group .product-list a .item p.title-class, .product-group .product-list a:focus .item p.title-class {
  color: #515151;
  font-size: 15px;
  line-height: 28px;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}
.product-group .product-list a .item span, .product-group .product-list a:focus .item span {
  color: #515151;
  font-size: 9px;
  line-height: 28px;
}
.product-group .product-list a .item p.btn-viewdetails, .product-group .product-list a:focus .item p.btn-viewdetails {
  float: right;
  color: #000000;
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
}
.product-group .product-list a .item hr, .product-group .product-list a:focus .item hr {
  border-top: 1px solid #979797;
  margin-top: 0;
  margin-bottom: 10px;
}
.product-group .product-list a:hover .item h4, .product-group .product-list a:hover .item p.btn-viewdetails {
  color: #b11010;
  text-decoration: none;
}

.header-toowoomba {
  color: white;
}
.header-toowoomba .kymco-header-bg {
  background: black;
}
.header-toowoomba .header-bg {
  background: black;
}
.header-toowoomba .title-header {
  height: 425px;
}
.header-toowoomba .title-header > div {
  padding-top: 100px;
}
.header-toowoomba .title-header h1 {
  text-align: center;
  font-family: "StemWeb-Bold", Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.2;
}
.header-toowoomba .title-header h2 {
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}
.header-toowoomba .header-brands {
  background: #db1b1b;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}
.header-toowoomba .header-brands a {
  color: #fff;
  line-height: 3;
}
.header-toowoomba .header-brands a img {
  padding-right: 15px;
}
.header-toowoomba .header-brands img.img-responsive {
  padding-top: 6px;
}
@media (max-width: 992px) {
  .header-toowoomba .header-brands img.img-responsive {
    display: -webkit-inline-box;
    margin-bottom: 15px;
  }
}
.header-toowoomba .header-brands.header-kymco-class {
  background: #db1b1b;
}
.header-toowoomba .header-brands.header-swm-class {
  background: #db1b1b;
}
.header-toowoomba .header-brands.header-sherco-class {
  background: #0000cc;
}
.header-toowoomba .header-brands.header-hyosung-class {
  background: #005aab;
}
.header-toowoomba .header-brands.header-cfmoto-class {
  background: #00abbd;
}

hr.line-header {
  width: 140px;
  height: 5px;
  text-align: center;
  background: #db1b1b;
  border-top: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

hr.line-title {
  width: 140px;
  height: 5px;
  text-align: center;
  background: #db1b1b;
  border-top: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

#btnTopPages {
  position: fixed;
  bottom: 65px;
  right: 20px;
  z-index: 999;
  background: #db1b1b;
  padding: 3px 5px;
}

#btnTopPages a, #btnTopPages a:focus, #btnTopPages:hover {
  color: white !important;
  text-decoration: inherit;
  background: #db1b1b;
}

div.tooltip {
  background: #db1b1b !important;
}

/*----------------------------- stock list -----------------------------------------*/
.stock-list {
  margin-top: 50px;
  margin-bottom: 50px;
}
.stock-list h1 {
  margin-top: 0;
  margin-bottom: 30px;
}

.frm-view19 {
  background: #292c2e;
  float: left;
  width: 100%;
  border-radius: 4px;
  padding-top: 15px;
}
.frm-view19 .countVehicles {
  color: white;
  font-size: 18px;
}
.frm-view19 .countVehicles b {
  font-size: 24px;
}
.frm-view19 .titleCurrent {
  color: white;
  font-size: 18px;
  text-align: right;
  line-height: 2;
}

@media (max-width: 767px) {
  .frm-view19 .titleCurrent {
    text-align: left;
  }
}
#div-stock-content > div .box-product {
  background: #f0f0f0;
  display: block;
  margin-bottom: 30px;
  color: #515151;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
#div-stock-content > div .box-product img {
  display: initial;
}
#div-stock-content > div .box-product h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px;
  font-size: 16px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}
#div-stock-content > div .box-product .box-product-specifications {
  background: #e1e2e2;
  padding: 10px 10px 0px 10px;
  height: 65px;
}
#div-stock-content > div .box-product .box-product-specifications .col-xs-3 {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}
#div-stock-content > div .box-product .box-product-description {
  padding: 0 15px;
  margin: 15px 0;
  display: -webkit-box;
  height: 70px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#div-stock-content > div .box-product .box-product-price {
  padding: 0 15px 15px 15px;
  text-align: left;
}
#div-stock-content > div .box-product .box-product-price .cl-price h4 {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: bold;
}
#div-stock-content > div .box-product .box-product-price .cl-price span {
  font-size: 14px;
}
#div-stock-content > div .box-product .box-product-info .more-info {
  text-align: center;
  display: block;
  background: #db1b1b;
  color: white;
  padding: 10px;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
#div-stock-content > div .box-product-hover:hover {
  -moz-box-shadow: 0 0 5px #75797c;
  -webkit-box-shadow: 0 0 5px #75797c;
  box-shadow: 0 0 5px #75797c;
}
#div-stock-content > div .box-product-hover:hover .box-product-info .more-info {
  background: #b11010;
  color: white !important;
  box-shadow: inset 0 0px 0px transparent;
}
#div-stock-content > div a:hover, #div-stock-content > div a:focus {
  text-decoration: initial;
}

.css-view19 input.btn-success, .js-search input.btn-success {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline: none;
  background: #db1b1b;
}

.css-view19 input.btn-success:hover, .js-search input.btn-success:hover {
  background: #b11010;
  color: white !important;
  box-shadow: inset 0 0px 0px transparent;
}

/* --------------------------------- pagination ----------------------------------------------*/
ul.pagination {
  margin-top: 0;
}
ul.pagination li input {
  background-color: #f0f0f0;
  float: left;
  padding: 5px 10px;
}
ul.pagination li.active input {
  background-color: #db1b1b;
  color: white;
  float: left;
  padding: 5px 10px;
}

/*------------------------------------ begin detail ------------------------------------------*/
.DetailViewTwelve {
  margin-top: 60px;
  margin-bottom: 50px;
}
.DetailViewTwelve .product-title {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.DetailViewTwelve .product-title h2 {
  margin-top: 10px;
  float: left;
  font-size: 24px;
}
.DetailViewTwelve .product-title .cl_search_results {
  background: #db1b1b;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  color: white;
}
.DetailViewTwelve .product-title .cl_search_results input {
  color: white;
}
.DetailViewTwelve .product-title .product-header {
  float: right;
}
.DetailViewTwelve .product-title .product-header .product-price {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
.DetailViewTwelve .product-title .product-header .drive-away-label {
  font-size: 13px;
}
.DetailViewTwelve .widget.form {
  background: #f0f0f0;
  padding: 15px;
  margin-bottom: 30px;
}
.DetailViewTwelve .widget.form h3 {
  border-bottom: 0;
  font-size: 22px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.DetailViewTwelve .widget.form label {
  font-weight: inherit;
}
.DetailViewTwelve .product-slider {
  margin-bottom: 20px;
}
.DetailViewTwelve .product-comments {
  margin-bottom: 40px;
}
.DetailViewTwelve .product-comments h3 {
  background: #f0f0f0;
  font-size: 24px;
  padding: 15px;
}
.DetailViewTwelve #btnSendMail {
  text-align: center;
  display: block;
  background: #db1b1b;
  color: white;
  padding: 10px;
  text-transform: uppercase;
  width: 100%;
  border-radius: 0;
  border: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.DetailViewTwelve #btnSendMail:hover {
  background: #b11010;
  color: white !important;
  box-shadow: inset 0 0px 0px transparent;
}

@media (min-width: 993px) {
  .DetailViewTwelve .product-title {
    background: #f0f0f0;
  }
  .DetailViewTwelve .product-title .col-md-4.col-lg-3 {
    float: right;
  }
  .DetailViewTwelve .product-title .col-md-4.col-lg-3 .cl_search_results {
    margin-right: -15px;
    margin-left: 8px;
  }
}
@media (max-width: 992px) {
  .DetailViewTwelve .product-title .col-md-8.col-lg-9 {
    background: #f0f0f0;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
  }
  .DetailViewTwelve .product-title .col-md-4.col-lg-3 {
    float: left;
  }
  .DetailViewTwelve .product-title .col-md-4.col-lg-3 .cl_search_results {
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .main-content .tab-content {
    padding: 30px 20px;
  }
  .main-content .tab-content .frm2-calculator {
    margin: 30px 20%;
  }
}
.main-content .tab-content .vehicle_details_body table tr th {
  font-weight: 500;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading {
  padding-bottom: 0;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading a {
  padding-left: 10px;
  padding-right: 10px;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading a:hover {
  background: #fbfbfb;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading i {
  margin-right: 10px;
}
.main-content ul.nav-tabs {
  border-bottom: 0;
  text-align: center;
}
.main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
  background: #f0f0f0;
  background-image: url("/Content/images/icondetails12.png");
  background-repeat: no-repeat;
  float: left;
  height: 85px;
}
@media (min-width: 768px) {
  .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li:hover a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
    width: 49%;
    margin: 0.5%;
  }
}
.main-content ul.nav-tabs li a, .main-content ul.nav-tabs li a:hover, .main-content ul.nav-tabs li:hover a, .main-content ul.nav-tabs li:hover a:hover {
  background-color: transparent;
  border: 0;
  color: #515151;
  padding-top: 55px;
}
.main-content ul.nav-tabs li.tabs1, .main-content ul.nav-tabs li.tabs1:hover {
  background-position: center 5px;
}
.main-content ul.nav-tabs li.tabs2, .main-content ul.nav-tabs li.tabs2:hover {
  background-position: center -195px;
}
.main-content ul.nav-tabs li.tabs3, .main-content ul.nav-tabs li.tabs3:hover {
  background-position: center -195px;
}
.main-content ul.nav-tabs li.tabs4, .main-content ul.nav-tabs li.tabs4:hover {
  background-position: center -395px;
}
.main-content ul.nav-tabs li.active {
  background: #515151;
  background-image: url("/Content/images/icondetails12.png");
  background-repeat: no-repeat;
  float: left;
  height: 85px;
}
@media (min-width: 768px) {
  .main-content ul.nav-tabs li.active {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-content ul.nav-tabs li.active a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .main-content ul.nav-tabs li.active {
    width: 49%;
    margin: 0.5%;
  }
}
.main-content ul.nav-tabs li.active a, .main-content ul.nav-tabs li.active a:hover {
  background-color: transparent;
  border: 0;
  color: white;
  padding-top: 55px;
}
.main-content ul.nav-tabs li.tabs1.active {
  background-position: center -95px;
}
.main-content ul.nav-tabs li.tabs2.active {
  background-position: center -295px;
}
.main-content ul.nav-tabs li.tabs3.active {
  background-position: center -295px;
}
.main-content ul.nav-tabs li.tabs4.active {
  background-position: center -495px;
}
.main-content .panel-group .panel {
  box-shadow: 0 0px 0px transparent;
  border: 0;
  border-radius: 0;
}
.main-content .panel-group .panel .panel-heading {
  background: transparent;
  padding: 0 0 5px 0;
  border: 1px solid #f0f0f0;
}
.main-content .panel-group .panel .panel-heading a {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-content .panel-group .panel .panel-heading a, .main-content .panel-group .panel .panel-heading a:focus, .main-content .panel-group .panel .panel-heading a:hover {
  text-decoration: none;
}
.main-content .panel-group .panel .panel-heading i {
  position: relative;
  margin-top: -30px;
}
.main-content .panel-group .panel > div.panel-collapse.collapse, .main-content .panel-group .panel > div.panel-collapse.collapsing, .main-content .panel-group .panel > div.panel-collapse.collapse.in {
  background: #f9f9f9;
  border: 1px solid #f0f0f0;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 2.4;
}

.panel-group .panel + .panel {
  margin-top: 10px;
}

/*------------------------------------ end detail ------------------------------------------*/
.content-main {
  margin-top: 60px;
  margin-bottom: 60px;
}
.content-main h3 {
  margin-top: 52px;
  font-size: 32px;
  color: black;
}
.content-main a:link, .content-main a:visited, .content-main a:active {
  color: #db1b1b;
}
.content-main a:hover {
  color: #b11010;
}

.finance-your-bike-class .content-main h3 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  line-height: 1.4;
}
.finance-your-bike-class .content-main .finance-bg-1 {
  padding-bottom: 60px;
}
.finance-your-bike-class .content-main .finance-bg-2 {
  border-top: 1px dotted #c7c7c7;
  background: #f0f0f0;
  padding-top: 60px;
  padding-bottom: 60px;
}
.finance-your-bike-class .content-main .calc-box {
  background: #f0f0f0;
  border: 1px dotted #c7c7c7;
  padding: 25px 40px;
}
.finance-your-bike-class .content-main .calc-box h4 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
}

.about-us-class .content-main h3, .clothing-accessories-class .content-main h3 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (min-width: 993px) {
  .elemental .p-1 {
    padding: 0 60px 0 0;
  }

  .elemental .p-2 {
    padding: 60px 0 60px 60px;
  }

  .elemental .p-3 {
    padding: 60px 60px 60px 0;
  }

  .elemental .p-4 {
    padding: 60px 0 60px 60px;
  }

  .elemental .i-bump {
    margin-top: -110px;
  }
}
@media (min-width: 993px) {
  .shaded-section > .container > .row {
    margin-left: 0;
    margin-right: 0;
  }
}
a.btnLink {
  background: #db1b1b;
  color: white !important;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 2px;
  font-weight: 500;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
}

a.btnLink:hover, a.btnLink:focus {
  background: #b11010;
  color: white;
  text-decoration: inherit;
}

button.btn-sendEmail, button.btn-sendEmail:focus {
  background: #db1b1b;
  color: white;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 2px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
  border: 0;
  outline: none;
  text-shadow: inherit !important;
}

button.btn-sendEmail:hover {
  background: #b11010;
  color: white;
  text-decoration: inherit;
  outline: none;
  border: 0;
}

.header-toowoomba .title-header {
  background: black;
}

.clothing-accessories-class .header-toowoomba .title-header {
  background: black url("/Content/images/banner-bg/clothing-and-accessories2.jpg") center top no-repeat;
}

.contact-class .header-toowoomba .title-header {
  background: black url("/Content/images/banner-bg/toowoomba-contact2.jpg") center top no-repeat;
}

.about-us-class .header-toowoomba .title-header {
  background: black url("/Content/images/banner-bg/about-us.jpg") right top no-repeat;
}

.service-booking-class .header-toowoomba .title-header {
  background: black url("/Content/images/banner-bg/a-service-appointment.jpg") center top no-repeat;
}

.parts-request-class .header-toowoomba .title-header {
  background: black url("/Content/images/banner-bg/spare-parts.jpg") center top no-repeat;
}

.finance-your-bike-class .header-toowoomba .title-header {
  background: black url("/Content/images/banner-bg/finance.jpg") center top no-repeat;
}

.promotions-class .header-toowoomba .title-header {
  background: black url("/Content/images/banner-bg/current-promotions.jpg") left top no-repeat;
}

.header-toowoomba .title-header.hyosung-class {
  background: black url("/Content/images/banner-bg/hyosung-range.jpg") left top no-repeat;
}

.header-toowoomba .title-header.kymco-class {
  background: black url("/Content/images/banner-bg/kymco-range.jpg") center top no-repeat;
}

.header-toowoomba .title-header.sherco-class {
  background: black url("/Content/images/banner-bg/sherco-range.jpg") center top no-repeat;
}

.header-toowoomba .title-header.landboss-class {
  background: black url("/Content/images/banner-bg/landboss-range.jpg") center top no-repeat;
}

.header-toowoomba .title-header.swm-class {
  background: black url("/Content/images/banner-bg/swm-range.jpg") center top no-repeat;
}

.header-toowoomba .title-header.cfmoto-class {
  background: black url("/Content/images/banner-bg/cf-moto.jpg") center top no-repeat;
}

.navbar-default {
  background: black;
  /* Old browsers */
  border: none !important;
  color: #333;
}

@media (max-width: 767px) {
  .navbar-collapse {
    text-transform: uppercase;
    padding-left: 20px;
  }
  .navbar-collapse p {
    text-transform: initial;
  }

  .dropdown .dropdown-menu li a {
    padding: 8px 15px 8px 40px !important;
  }
  .dropdown .dropdown-menu li a h6 {
    font-size: 12px;
    font-weight: 400;
  }
}
.navbar {
  margin-bottom: 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.navbar .nav > li a:hover, .navbar .nav > li a:focus {
  background: #515151;
  color: #fff;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  background: #515151;
  color: #fff;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    background: #515151 !important;
    color: white !important;
  }
}
.js-menu {
  text-align: center;
  background: black;
}
.js-menu .c-1400 {
  padding-left: 0;
  padding-right: 0;
}
.js-menu .navbar {
  border-bottom: black solid 1px;
}
@media (min-width: 768px) {
  .js-menu .nav.navbar-nav {
    display: -webkit-inline-box;
    float: none;
    margin-bottom: -7px;
  }
}
@media (min-width: 1200px) {
  .js-menu .grid-of-8 .short {
    width: 24%;
  }
  .js-menu .navbar .nav > li a.top-level {
    padding: 24px 15px;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
  }
}
@media (min-width: 1200px) and (min-width: 1400px) {
  .js-menu .navbar .nav > li a.top-level {
    padding: 24px 26px !important;
  }
}
@media (min-width: 1200px) {
  .js-menu .navbar .nav > li a.top-level:hover, .js-menu .navbar .nav > li a.top-level:active {
    background: #515151;
    color: white;
  }
  .js-menu .dropdown li a h6 {
    font-size: 16px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-menu .navbar .nav > li a {
    padding: 15px 11px;
    font-size: 13px;
    text-transform: uppercase;
  }
  .js-menu .dropdown li a h6 {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .js-menu .navbar-nav {
    margin-left: 0%;
  }
  .js-menu .navbar .nav > li a {
    padding: 15px 4.4px;
    font-size: 11px;
    text-transform: uppercase;
  }
  .js-menu .dropdown li a h6 {
    font-size: 11px;
  }
}
.js-menu .navbar-collapse {
  padding-left: 0;
}
.js-menu .top-nav-collapse .active-home {
  display: none;
}
.js-menu .navbar-fixed-top .navbar-brand {
  display: none;
}
.js-menu .navbar-fixed-top.top-nav-collapse .navbar-brand {
  display: block;
  padding-top: 2px;
}
.js-menu .dropdown.open a.dropdown-toggle:link, .js-menu .dropdown.open a.dropdown-toggle:visited, .js-menu .dropdown.open a.dropdown-toggle:hover, .js-menu .dropdown.open a.dropdown-toggle:active {
  background: #515151;
  color: white;
}
.js-menu .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 200px;
  padding: 0px 0;
  margin: 0px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #db1b1b;
  border-radius: 0px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: none;
}
.js-menu .dropdown .dropdown-menu li a {
  padding: 25px 30px 25px 55px !important;
  background: #15191c url("../../Content/images/keyboard-right-arrow-button.svg") 18px center no-repeat;
  background-size: 14px 14px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.js-menu .dropdown .dropdown-menu li a:hover, .js-menu .dropdown .dropdown-menu li a:active {
  background: #75797c url("../../Content/images/keyboard-right-arrow-button.svg") 25px center no-repeat;
  color: white;
  background-size: 14px 14px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.js-menu .dropdown .dropdown-menu li a h6 {
  color: white;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.js-menu .dropdown .dropdown-menu li a p {
  font-size: 13px;
  text-transform: none;
  margin: 4px 0 0 0;
  padding: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .js-menu .dropdown .dropdown-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .showMobile {
    text-align: right;
    padding-top: 10px;
    font-size: 20px;
    padding-right: 55px;
    color: white;
  }

  .page-scroll .container-fluid .navbar-collapse {
    margin-left: 0;
    margin-top: 6px;
    border-color: #000;
  }
  .page-scroll .container-fluid .navbar-toggle {
    padding: 0;
    border: 0;
    margin-top: 14px;
  }
  .page-scroll .container-fluid .navbar-toggle .icon-bar {
    height: 4px;
    width: 30px;
    background: white;
  }
  .page-scroll .container-fluid .navbar-toggle:hover, .page-scroll .container-fluid .navbar-toggle:focus {
    background-color: transparent !important;
  }
  .page-scroll .container-fluid .navbar-toggle:hover .icon-bar, .page-scroll .container-fluid .navbar-toggle:focus .icon-bar {
    background: white;
  }

  .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #515151;
  }
}
/* --------------------- end menu ----------------------------*/
.header {
  background: #15191c;
}
.header .logo-social {
  padding-top: 22px;
  padding-bottom: 22px;
}
.header .logo-social .logo {
  float: left;
}
@media (min-width: 993px) {
  .header .logo-social .social-icon {
    float: left;
    margin-left: 20px;
    margin-top: 5px;
  }
  .header .logo-social .social-icon img {
    float: left;
    margin: 5px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .header .logo-social .social-icon {
    float: left;
    margin-left: 20px;
    margin-top: -12px;
    margin-bottom: -15px;
    width: 90px;
  }
  .header .logo-social .social-icon img {
    float: left;
    margin: 2px;
  }
}
@media (max-width: 767px) {
  .header .logo-social .social-icon {
    margin-top: 5px;
  }
  .header .logo-social .social-icon img {
    float: left;
    margin: 5px;
  }
}
@media (max-width: 767px) {
  .header .logo-social {
    width: 100%;
    text-align: center;
  }
  .header .logo-social .logo {
    width: 100%;
  }
  .header .logo-social .logo img {
    display: -webkit-inline-box;
    margin-bottom: 15px;
  }
  .header .logo-social .social-icon {
    width: 175px;
    display: -webkit-inline-box;
  }
}
@media (min-width: 768px) {
  .header .info-contact {
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: right;
  }
}
@media (max-width: 767px) {
  .header .info-contact {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
    margin-top: -20px;
  }
}
.header .info-contact .phone {
  font-size: 31px;
  font-weight: bold;
  line-height: 38px;
}
.header .info-contact .address {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
.header .info-contact a, .header .info-contact a:focus {
  color: white;
  text-decoration: none;
}
.header .info-contact a:hover {
  color: #db1b1b;
  text-decoration: none;
}

/*------------------------ begin banner-home -----------------------------*/
@media (min-width: 768px) {
  .banner-home {
    overflow: hidden;
    position: relative;
  }
  .banner-home #carousel img {
    display: block;
    float: left;
  }
}
.banner-home ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.banner-home ul li {
  display: block;
  float: left;
}
.banner-home ul li .text-banner {
  text-shadow: 0 0px 0px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  color: white;
}
@media (min-width: 1200px) {
  .banner-home ul li .text-banner {
    margin-left: 0.5%;
    text-align: left;
    max-width: 600px;
    position: absolute;
    margin-top: 80px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .banner-home ul li .text-banner {
    margin-left: 1.4%;
    text-align: left;
    max-width: 600px;
    position: absolute;
    margin-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .banner-home ul li .text-banner {
    margin-left: 1.7%;
    text-align: left;
    max-width: 600px;
    position: absolute;
    margin-top: 100px;
  }
  .banner-home ul li .text-banner h2 {
    font-size: 30px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .banner-home ul li .text-banner {
    margin-left: 2.3%;
    text-align: left;
    max-width: 400px;
    position: absolute;
    margin-top: 90px;
  }
  .banner-home ul li .text-banner h2 {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .banner-home ul li .text-banner {
    margin-left: 2.7%;
    text-align: left;
    width: 280px;
    position: absolute;
    margin-top: 60px;
    padding: 20px;
  }
  .banner-home ul li .text-banner h2 {
    font-size: 24px;
  }
  .banner-home ul li .text-banner a {
    font-size: 13px;
  }
}
.banner-home ul li .text-banner h2 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 38px;
  text-transform: uppercase;
  margin-top: 0;
}
.banner-home ul li .text-banner a {
  background: #db1b1b;
  color: white;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 30px;
  font-weight: 500;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
}
.banner-home ul li .text-banner a:hover, .banner-home ul li .text-banner a:focus {
  background: #b11010;
  color: white;
  text-decoration: inherit;
}
@media (max-width: 767px) {
  .banner-home ul li img {
    float: left;
  }
}
.banner-home .list_carousel.responsive {
  width: auto;
  margin-left: 0;
}

#prev, #next {
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  height: 425px;
  width: 50%;
  top: 0;
  position: absolute;
}

#prev:hover, #next:hover {
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
}

#prev {
  left: -622px;
}

#next {
  right: -622px;
}

/*------------------------ end banner-home -----------------------------*/
.services-home {
  padding-top: 60px;
  background: url("/Content/images/bg-home.png") left top no-repeat;
}
.services-home .box-services {
  margin-bottom: 30px;
  position: relative;
}
.services-home .box-services a {
  background: url("/Content/images/services/hover.png") right top no-repeat;
  margin-bottom: 40px;
}
.services-home .box-services a h3 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: right;
  color: white;
  z-index: 99;
}
@media (min-width: 768px) {
  .services-home .box-services a h3 {
    font-size: 28px;
    width: 200px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .services-home .box-services a h3 {
    font-size: 28px;
    width: 200px;
    line-height: 1.2;
  }
}
.services-home .box-services .image {
  display: block;
  width: 100%;
  height: auto;
}
.services-home .box-services .overlay {
  position: absolute;
  bottom: 0;
  left: 100%;
  right: 0;
  background: url("/Content/images/services/hover.png") right top no-repeat;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}
.services-home .box-services :hover .overlay {
  width: 100%;
  left: 0;
}

.about-home {
  margin-top: 40px;
  padding-bottom: 50px;
  background: url("/Content/images/light_edge_text_bg.png") left top no-repeat;
}
.about-home h1 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  padding: 0;
}
.about-home .box-about {
  margin-top: 0px;
  text-align: center;
  display: inline-block;
  width: 100%;
}
.about-home .box-about img {
  margin-top: 40px;
  padding-bottom: 10px;
}
.about-home .box-about .img-pad img {
  padding-top: 10px;
}
.about-home .box-about p {
  font-weight: bold;
  line-height: 1.4;
}

.events-class {
  background: url("/Content/images/overlay.png") left top no-repeat #15191c;
  padding-top: 50px;
}
.events-class .events-title {
  height: 130px;
}
.events-class .events-title h3 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 65px;
  text-transform: uppercase;
  color: white;
  z-index: 9;
  position: relative;
  margin-top: 0;
}
.events-class .events-title span {
  opacity: 0.31;
  color: #c7c7c7;
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 65px;
  font-weight: bold;
  line-height: 0px;
  margin-top: -15px;
  margin-left: 65px;
  position: absolute;
  text-transform: uppercase;
}
.events-class .box-events .boxNews {
  margin-bottom: 50px;
  cursor: pointer;
}
.events-class .box-events .boxNews .dateMonth {
  background: url("/Content/images/facebook-overlay.png") left top no-repeat;
  width: 136px;
  height: 178px;
  text-indent: -9999px;
  position: absolute;
}
.events-class .box-events .boxNews a {
  color: white;
}
.events-class .box-events .boxNews a h3 {
  font-size: 20px;
  font-weight: bold;
}
.events-class .box-events .boxNews p {
  color: white;
}
.events-class .box-events .boxNews .time {
  font-size: 13px;
  color: #a8a8a8;
}
@media (min-width: 768px) {
  .events-class .box-events {
    text-align: center;
  }
  .events-class .box-events > div {
    margin-left: -15px;
    margin-right: -15px;
  }
  .events-class .box-events .boxNews {
    width: 33.33333333%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .events-class .box-events {
    text-align: center;
  }
}

.follow-class {
  margin-top: 60px;
  margin-bottom: 60px;
}
.follow-class h2 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 28px;
  margin-top: 0;
  color: black;
  line-height: 1.4;
}
.follow-class .social-home {
  width: 240px;
  margin-top: 20px;
  display: -webkit-inline-box;
}
.follow-class .social-home img {
  float: left;
  margin-left: 7px;
  padding-right: 7px;
}

.privacy-class h1 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 49px;
  margin-top: 0;
  color: black;
  line-height: 1.4;
  padding-left: 0;
  text-transform: uppercase;
}

.designed-class {
  float: left;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #f8f8f8;
  margin-top: 50px;
  margin-bottom: 40px;
}
.designed-class h2 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  text-align: center;
  color: black;
  line-height: 1.3;
}

.specifications-class {
  margin-bottom: 50px;
}
.specifications-class h3 {
  margin-top: 0;
}
.specifications-class .title-specifications {
  margin-bottom: 35px;
  line-height: 1.4;
}

.video-class {
  background: url("/Content/images/bg-video.png") left top no-repeat #181818;
  padding-top: 40px;
  padding-bottom: 50px;
  color: white;
  text-align: center;
  margin-bottom: 50px;
}
.video-class .embed-responsive {
  margin-bottom: 30px;
}

.enquiry-frm {
  margin-bottom: 50px;
}
.enquiry-frm .product-group {
  margin-top: 0;
}
.enquiry-frm .product-group .product-title {
  text-align: center;
}
.enquiry-frm .product-group .product-title h3 {
  margin-top: 0;
}
.enquiry-frm .product-group .product-title span {
  margin-left: 0;
}

.cl-validate {
  color: #db1b1b;
  font-size: 14px;
}

@media (max-width: 500px) {
  .product-group .product-list .product-title {
    height: 120px;
  }
  .product-group .product-list .product-title h3 {
    font-size: 32px;
    margin-top: 0;
  }
  .product-group .product-list .product-title span {
    font-size: 32px;
  }
}

@media (min-width: 1100px) {
  .header-toowoomba h1 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 58px !important;
  }
}
.designed-class {
  display: none;
}

.new-model-detail .box-dark {
  color: #FFF;
  background-color: #262626;
}
.new-model-detail .parallax {
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .new-model-detail .fixed-model-header {
    background: rgba(0, 0, 0, 0.7) !important;
    position: fixed;
    top: 0px;
    padding-top: 0px;
    width: 100%;
    z-index: 99;
  }
  .new-model-detail .fixed-model-header ul {
    margin-top: 10px !important;
  }
}
.new-model-detail .banner h2 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 40px;
  margin: 0;
}
.new-model-detail .banner p {
  font-size: 24px;
  margin: 0;
}
.new-model-detail .banner ul {
  padding-left: 0;
  margin-top: 20px;
  list-style: none;
}
.new-model-detail .banner ul li {
  margin-right: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  border: 1px solid #e1ff00;
  float: left;
}
.new-model-detail .banner ul li a, .new-model-detail .banner ul li a:focus {
  padding: 10px 20px;
  display: inline-block;
  color: #e1ff00;
  text-decoration: none;
}
.new-model-detail .banner ul li a:hover, .new-model-detail .banner ul li a:focus:hover {
  background: #e1ff00;
  color: #515151;
  text-decoration: none;
}
.new-model-detail .banner .shadow-bg {
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 70px;
  padding-bottom: 50px;
}
.new-model-detail .models-details-photos {
  padding-top: 30px;
}
.new-model-detail .models-details-photos .owl-nav > div {
  margin-top: -12%;
  position: relative;
  text-indent: -9999px;
  padding: 15px 20px;
}
.new-model-detail .models-details-photos .owl-nav .owl-prev {
  float: left;
  background: url("/Content/images/prev-icon2.png") center center no-repeat gainsboro;
}
.new-model-detail .models-details-photos .owl-nav .owl-prev:hover {
  background: url("/Content/images/prev-icon2.png") center center no-repeat #cacaca;
}
.new-model-detail .models-details-photos .owl-nav .owl-next {
  float: right;
  background: url("/Content/images/next-icon2.png") center center no-repeat gainsboro;
}
.new-model-detail .models-details-photos .owl-nav .owl-next:hover {
  background: url("/Content/images/next-icon2.png") center center no-repeat #cacaca;
}
.new-model-detail .models-details-about > div {
  padding-top: 60px;
}
.new-model-detail .models-details-about .title {
  margin-bottom: 50px;
}
.new-model-detail .models-details-about .title h1 {
  margin-top: 0;
  padding-left: 0;
}
.new-model-detail .specifications-class .product-group {
  margin-top: 0;
  padding-top: 60px;
}
.new-model-detail .specifications-class .product-group .item-spec a {
  margin-bottom: 10px;
}
.new-model-detail .action-shots > div {
  padding-top: 60px;
}
.new-model-detail .action-shots > div h3 {
  margin-top: 0;
}
.new-model-detail .action-shots .photo-action > div:nth-of-type(odd) {
  border-bottom: 15px solid #75797c;
}
.new-model-detail .action-shots .photo-action > div:nth-of-type(even) {
  border-bottom: 15px solid #db1b1b;
}
.new-model-detail .enquiry-frm {
  display: inline-block;
  width: 100%;
}
.new-model-detail .enquiry-frm > div {
  padding-top: 60px;
}
.new-model-detail .hover-effect figure {
  overflow: hidden;
}
.new-model-detail .hover-effect figure {
  margin: 0;
}
.new-model-detail .hover-effect img {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}
.new-model-detail .hover-effect img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.new-model-detail .hover-effect .img-full {
  width: 100%;
}
