/*!
 * 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: 'DCC - Ash';
  font-style: normal;
  font-weight: normal;
  src: local("DCC-Ash"), url("DCC-Ash.woff") format("woff");
}
h1, h2 {
  font-family: "DCC - Ash";
  letter-spacing: 1px;
}

.no-gutter > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

p {
  line-height: 1.8;
}

.orange {
  color: #ee7121;
}

.calc-box {
  background: #22232b;
  padding: 30px;
  margin-bottom: 30px;
}

.noUi-value-horizontal {
  color: white !important;
}

.responsive-calendar .controls h4 {
  font-size: 19px !important;
}

div.tooltip {
  background-color: #ee7121 !important;
}

.small-text {
  font-size: 12px;
  color: #999999;
}

.testimonials p.person {
  font-size: 31px;
  text-transform: uppercase;
}
.testimonials p.quote {
  font-size: 80px;
}
.testimonials p.message {
  margin-bottom: 50px;
}

.bg-orange {
  background: #ee7121;
}

.bg-grey {
  background: #1f2024;
}

.bg-grey1 {
  background-color: #0c0d14;
}

.bg-grey-2 {
  background-color: #22232b;
}

.bg-dark {
  background: black;
}

.padd-standard {
  padding-top: 60px;
  padding-bottom: 60px;
}

.centering {
  margin: 0 auto;
  text-align: center;
}

body {
  background: #1f2024;
  color: white;
  font-size: 15px;
  line-height: 1.5;
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: 100;
}

@media (min-width: 1200px) {
  .container.c-1600 {
    max-width: 1600px;
  }

  .container.c-1000 {
    max-width: 1000px;
  }
}
.no-gutter [class*="-6"] {
  padding-left: 0;
  padding-right: 0;
}

.container {
  width: 100%;
  max-width: 1244px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 38px;
  }
}

.staffname {
  font-size: 42px;
}

.stafftitle {
  text-transform: uppercase;
  font-size: 15px;
}

/* --------------------- generic titles ----------------------------*/
h1 {
  text-align: left;
  font-size: 54px;
  padding-left: 0;
  padding-right: 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h1 {
    font-size: 46px;
  }
}

h1.home {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 27px;
}

h3.question {
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 2.5%;
  font-size: 29px;
  font-weight: 400;
}
h3.question span {
  text-transform: capitalize;
}

a.question {
  margin-left: 2.5%;
}

a {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
a:link, a:visited, a:active {
  color: #ee7121;
}
a:hover {
  color: #ffd200;
  text-decoration: none;
}

a.white {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  font-size: 20px;
  font-weight: 400;
}
a.white:link, a.white:visited, a.white:active {
  color: white;
  opacity: 1;
}
a.white:hover {
  color: #ee7121;
  opacity: 0.8;
  text-decoration: none;
}

/* --------------------- spacers ----------------------------*/
.top-1 {
  margin-top: 10px;
}

/* --------------------- banners ----------------------------*/
.bg-19 {
  background: url("/Content/images/page-bg/about-bg.jpg") right top no-repeat;
  background-size: contain;
}

.bg-1 {
  background: url("/Content/images/page-bg/shade-1.jpg") right top no-repeat;
}

.bg-2 {
  background: url("/Content/images/page-bg/shade-2.jpg") right top no-repeat;
}

.bg-3 {
  background: url("/Content/images/page-bg/shade-3.jpg") right top no-repeat;
}

.bg-4 {
  background: url("/Content/images/page-bg/shade-4.jpg") right top no-repeat;
}

.bg-5 {
  background: url("/Content/images/page-bg/shade-5.jpg") right top no-repeat;
}

.bg-6 {
  background: url("/Content/images/page-bg/shade-6.jpg") right top no-repeat;
}

.bg-7 {
  background: url("/Content/images/page-bg/shade-7.jpg") right top no-repeat;
}

.bg-8 {
  background: url("/Content/images/page-bg/shade-8.jpg") right top no-repeat;
}

.bg-9 {
  background: url("/Content/images/page-bg/shade-9.jpg") right top no-repeat;
}

.bg-10 {
  background: url("/Content/images/page-bg/shade-10.jpg") left top no-repeat;
}

.bg-11 {
  background: url("/Content/images/page-bg/shade-11.jpg") center top no-repeat;
}

.bg-12 {
  background: url("/Content/images/page-bg/shade-12.jpg") right top no-repeat;
}

.bg-13 {
  background: url("/Content/images/page-bg/shade-13.jpg") right top no-repeat;
}

/* --------------------- About ----------------------------*/
.chunkysection-pre {
  padding-bottom: 206px;
}

.chunkysection-post {
  padding-top: 206px;
}

.chunkysection {
  position: relative;
  height: 778px;
  background: #ee7121;
  z-index: 60;
}
.chunkysection .left_img {
  position: absolute;
  left: 0;
  top: -206px;
  width: 50%;
}
.chunkysection .right_img {
  position: absolute;
  right: 0;
  bottom: -382px;
  width: 45%;
  text-align: right;
}
.chunkysection img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.elemental-pre {
  padding-bottom: 70px;
}

@media (min-width: 993px) {
  .elemental-post {
    padding-top: 206px;
  }
}

.shaded-section {
  background-color: #22232b;
}

.elemental {
  zoom: 1;
  clear: both;
  position: relative;
}
@media (min-width: 993px) {
  .elemental {
    margin-top: -110px;
  }
}
@media (max-width: 992px) {
  .elemental {
    margin-top: 0px;
  }
}
@media (min-width: 993px) {
  .elemental .i-bump {
    margin-top: -110px;
  }
}
@media (min-width: 993px) {
  .elemental .p-1 {
    padding: 215px 61px 0 33px;
  }
}
@media (max-width: 992px) {
  .elemental .p-1 {
    padding: 45px 61px 45px 33px;
  }
}
@media (min-width: 1200px) {
  .elemental .p-2 {
    padding: 120px 0 0 61px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .elemental .p-2 {
    padding: 35px 0 0 61px;
  }
}
@media (max-width: 992px) {
  .elemental .p-2 {
    padding: 35px 0 0 61px;
  }
}
@media (min-width: 993px) {
  .elemental .p-3 {
    padding: 96px 61px 0 33px;
  }
}
@media (max-width: 992px) {
  .elemental .p-3 {
    padding: 45px 61px 45px 33px;
  }
}

.chunkysection-2 .left_img {
  position: absolute;
  left: 0;
  top: -206px;
  width: 50%;
}
.chunkysection-2 .right_img {
  position: absolute;
  right: 0;
  bottom: -382px;
  width: 45%;
  text-align: right;
}
.chunkysection-2 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* --------------------- header ----------------------------*/
header .header .logo {
  margin-top: 10px;
  margin-bottom: 10px;
}
header .header .info-contact .info-class {
  display: inline-block;
}
header .header .info-contact .info-class .address {
  font-size: 18px;
  line-height: 1.2;
}
header .header .info-contact .info-class .address img {
  margin-right: 10px;
}
header .header .info-contact .info-class .address a, header .header .info-contact .info-class .address a:focus {
  color: white;
  text-decoration: inherit;
}
header .header .info-contact .info-class .address a:hover {
  text-decoration: inherit;
}
header .header .info-contact .info-class .phone {
  font-size: 28px;
  font-weight: bold;
  color: #ee7121;
  line-height: 1.5;
  float: right;
  width: 100%;
}
header .header .info-contact .info-class .phone a, header .header .info-contact .info-class .phone a:focus {
  color: #ee7121;
  text-decoration: inherit;
}
header .header .info-contact .info-class .phone a:hover {
  text-decoration: inherit;
}
header .header .info-contact .info-class .fb-class img {
  margin-left: 10px;
}
header .header .info-contact .social-icon {
  float: right;
}
header .header .info-contact .social-icon img {
  margin-bottom: 5px;
}

@media (min-width: 470px) {
  header .info-contact {
    margin-top: 20px;
    text-align: right;
  }
}
@media (max-width: 469px) {
  header {
    text-align: center;
  }
  header .logo.pull-left, header .info-contact.pull-right {
    float: inherit !important;
    display: inline-block;
  }
  header .info-contact {
    margin-bottom: 20px;
  }
}
@media (max-width: 340px) {
  .info-contact .phone {
    font-size: 30px !important;
  }
}
/*---------------------- begin menu -----------------------------*/
body .js-menu .navbar {
  border-bottom: 0;
}

.js-menu, .navbar-default {
  background: #0c0d14;
  height: 60px;
  box-shadow: none;
  border: 0;
}

.js-menu {
  z-index: 9999;
  position: relative;
  /*.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus 
  {
  	background: $colorOrange !important;
  	color:$colorWhite;
  }*/
}
.js-menu .container-fluid ul {
  background: #0c0d14;
  padding: 0;
}
.js-menu .container-fluid ul li a {
  color: white;
  text-transform: uppercase;
  font-weight: normal;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.js-menu .container-fluid ul li > a:hover, .js-menu .container-fluid ul li.active > a, .js-menu .container-fluid ul li.active > a:hover, .js-menu .container-fluid ul li.active > a:focus {
  background: #ee7121;
  color: white !important;
  box-shadow: inset 0 0px 0px transparent;
}
.js-menu .navbar-default .navbar-nav > li > a:hover, .js-menu .navbar-default .navbar-nav > li > a:focus {
  color: white;
}
.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: #ee7121 !important;
  color: white;
}
.js-menu .btn {
  float: left;
  height: 52px;
  text-align: left;
  width: 100%;
  font-size: 22px;
  color: #d51125;
}
.js-menu i {
  font-size: 22px;
}
.js-menu .container-menu {
  float: left;
  width: 100%;
}
.js-menu .container-menu ul {
  background: #000;
  width: 100%;
}
.js-menu .container-menu .btn-navbar {
  float: left;
  width: 100%;
  text-align: left;
}
.js-menu ul.dropdown-menu li a {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.js-menu ul.dropdown-menu li hr {
  margin: 0;
  border-top: 1px solid #333;
}
.js-menu .navbar-nav > .dropdown > a .caret {
  border-top-color: #ee7121 !important;
  border-bottom-color: #ee7121 !important;
  border-top: 6px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.js-menu .navbar-nav > .dropdown > a:hover .caret, .js-menu .navbar-nav > .dropdown.active > a .caret {
  border-top-color: white !important;
  border-bottom-color: white !important;
}

@media (min-width: 1244px) {
  .js-menu .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .js-menu .container-fluid ul li a {
    padding: 20px 26px;
    font-size: 16px;
  }
}
@media (min-width: 1170px) and (max-width: 1243px) {
  .js-menu .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .js-menu .container-fluid ul li a {
    padding: 20px 34px;
    font-size: 16px;
  }
}
@media (min-width: 993px) and (max-width: 1169px) {
  .js-menu .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .js-menu .container-fluid ul li a {
    font-size: 14px;
    padding: 20px 25px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .js-menu .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .js-menu .container-fluid .navbar-collapse.collapse {
    margin-left: -15px;
    padding-right: 0px;
  }
  .js-menu .container-fluid ul li a {
    font-size: 13px;
    padding: 20px 15px;
  }
}
@media (min-width: 768px) {
  ul.nav li.dropdown:hover > ul.dropdown-menu {
    display: block;
  }

  .navbar-nav {
    text-align: center;
    float: none;
  }
  .navbar-nav > li {
    display: inline-block;
    float: none;
  }
}
@media (max-width: 767px) {
  .showMobile {
    text-align: right;
    padding-top: 10px;
    font-size: 20px;
    padding-right: 55px;
    color: white;
  }

  .js-menu {
    height: 50px;
  }
  .js-menu .navbar-default {
    height: 50px;
  }
  .js-menu .navbar-default .container-fluid ul {
    position: relative;
    z-index: 999;
    margin-top: 0;
  }
  .js-menu .navbar-default .container-fluid ul li a {
    font-size: 14px;
    padding: 15px;
    text-align: left;
  }
  .js-menu .navbar-default .container-fluid .navbar-collapse {
    margin-left: -15px;
    margin-top: 6px;
    border-color: #1f2024;
  }
  .js-menu .navbar-default .container-fluid .navbar-toggle {
    padding: 0;
    border: 0;
    margin-top: 12px;
  }
  .js-menu .navbar-default .container-fluid .navbar-toggle .icon-bar {
    height: 5px;
    width: 30px;
    background: white;
  }
  .js-menu .navbar-default .container-fluid .navbar-toggle:hover, .js-menu .navbar-default .container-fluid .navbar-toggle:focus {
    background-color: transparent !important;
  }
  .js-menu .navbar-default .container-fluid .navbar-toggle:hover .icon-bar, .js-menu .navbar-default .container-fluid .navbar-toggle:focus .icon-bar {
    background: white;
  }
}
/*---------------------- end menu -----------------------------*/
/*---------------------------------- begin service-home --------------------------------------*/
.js-services {
  background: url("/Content/images/services_bg.jpg") center bottom no-repeat;
  padding-top: 70px;
  padding-bottom: 50px;
}
.js-services h2 {
  margin-bottom: 30px;
  margin-top: 0;
}
.js-services .sub-title {
  font-size: 18px;
  margin-bottom: 40px;
}
.js-services .col-xs-6.col-sm-4 {
  margin-bottom: 40px;
}
.js-services .col-xs-6.col-sm-4 a {
  -moz-transform: skewx(-6deg);
  -webkit-transform: skewx(-6deg);
  height: 100%;
  float: left;
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  display: -webkit-box;
}
@media (min-width: 1200px) {
  .js-services .col-xs-6.col-sm-4 a {
    width: -moz-calc(100% - 58px);
    width: -webkit-calc(100% - 58px);
    width: calc(100% - 58px);
    margin-left: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-services .col-xs-6.col-sm-4 a {
    width: -moz-calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    margin-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .js-services .col-xs-6.col-sm-4 a {
    width: -moz-calc(100% - 46px);
    width: -webkit-calc(100% - 46px);
    width: calc(100% - 46px);
    margin-left: 8px;
  }
}
@media (max-width: 767px) {
  .js-services .col-xs-6.col-sm-4 a {
    width: -moz-calc(100% - 38px);
    width: -webkit-calc(100% - 38px);
    width: calc(100% - 38px);
    margin-left: 4px;
  }
}
.js-services .col-xs-6.col-sm-4 a h3 {
  text-align: center;
  width: 100%;
  background: url("/Content/images/service-title-bg.png") center center no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  margin-top: 0;
  color: white;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .js-services .col-xs-6.col-sm-4 a h3 {
    height: 70px;
    margin-top: 30%;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-services .col-xs-6.col-sm-4 a h3 {
    height: 70px;
    margin-top: 25%;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .js-services .col-xs-6.col-sm-4 a h3 {
    height: 70px;
    margin-top: 25%;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .js-services .col-xs-6.col-sm-4 a h3 {
    height: 70px;
    margin-top: 8%;
    font-size: 14px;
  }
}
.js-services .col-xs-6.col-sm-4 a:hover {
  -moz-transform: skewx(-6deg);
  -webkit-transform: skewx(-6deg);
  height: 100%;
  float: left;
  position: absolute;
  background: rgba(238, 113, 33, 0.7);
  text-decoration: inherit;
  -webkit-transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
}
@media (min-width: 1200px) {
  .js-services .col-xs-6.col-sm-4 a:hover {
    width: -moz-calc(100% - 58px);
    width: -webkit-calc(100% - 58px);
    width: calc(100% - 58px);
    margin-left: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-services .col-xs-6.col-sm-4 a:hover {
    width: -moz-calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    margin-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .js-services .col-xs-6.col-sm-4 a:hover {
    width: -moz-calc(100% - 46px);
    width: -webkit-calc(100% - 46px);
    width: calc(100% - 46px);
    margin-left: 8px;
  }
}
@media (max-width: 767px) {
  .js-services .col-xs-6.col-sm-4 a:hover {
    width: -moz-calc(100% - 38px);
    width: -webkit-calc(100% - 38px);
    width: calc(100% - 38px);
    margin-left: 4px;
  }
}
.js-services .col-xs-6.col-sm-4 a:hover h3 {
  background-image: linear-gradient(rgba(238, 113, 33, 0.2), rgba(238, 113, 33, 0.2)), url("/Content/images/service-title-bg.png");
}

/*---------------------------------- end service-home --------------------------------------*/
/*---------------------------------- begin newsletter-home --------------------------------------*/
.js-newsletter {
  display: inline-block;
  width: 100%;
}
.js-newsletter .left-newsletter {
  padding: 30px 20px;
}
.js-newsletter .left-newsletter h2 {
  margin-top: 0;
}
.js-newsletter .left-newsletter a {
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-decoration: inherit;
}
.js-newsletter .right-newsletter {
  padding: 50px 30px;
}
.js-newsletter .right-newsletter button.btn-Subscribe {
  background: #ee7121;
  color: white;
  text-transform: uppercase;
  outline: none;
  padding: 15px 30px;
  margin-top: 10px;
  display: inline-block;
  border-radius: 0px;
  border: 0;
  font-weight: 500;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.js-newsletter .right-newsletter button.btn-Subscribe i {
  padding-left: 15px;
}
.js-newsletter .right-newsletter button.btn-Subscribe:hover, .js-newsletter .right-newsletter button.btn-Subscribe:focus {
  background: #e25900;
  color: white;
  text-decoration: inherit;
}

@media (min-width: 768px) {
  .js-newsletter {
    background: linear-gradient(90deg, #ee7121 50.1%, #22232b 50%);
  }
}
@media (max-width: 767px) {
  .js-newsletter .left-newsletter {
    background: #ee7121;
  }
  .js-newsletter .right-newsletter {
    background: #22232b;
  }
}
/*---------------------------------- end newsletter-home --------------------------------------*/
/*---------------------------------- begin events-home --------------------------------------*/
.js-events {
  width: 100%;
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 20px;
}
.js-events hr {
  margin-bottom: 40px;
}
.js-events p.text-center a.btnLink {
  margin-top: 40px;
}
.js-events .left-events {
  padding-bottom: 40px;
}
.js-events .right-events .boxNews {
  margin-bottom: 20px;
  float: left;
  /*border-bottom: 1px solid #171a1b;
  -webkit-box-shadow: 0px 3px 0px -2px #2e3335;
  -moz-box-shadow: 0px 3px 0px -2px #2e3335;
  box-shadow: 0px 3px 0px -2px #2e3335;*/
  padding-bottom: 20px;
}
.js-events .right-events .boxNews .dateMonth {
  width: 60px;
  float: left;
  text-transform: uppercase;
}
.js-events .right-events .boxNews .dateMonth .month {
  background: #ee7121;
  width: 50px;
  display: block;
  text-align: center;
  padding-top: 2px;
  padding-bottom: 2px;
  border: 1px solid #ee7121;
}
.js-events .right-events .boxNews .dateMonth .date {
  width: 50px;
  display: block;
  text-align: center;
  font-size: 24px;
  padding: 0;
  line-height: 1.3;
  border: 1px solid #ee7121;
}
.js-events .right-events .boxNews .images {
  float: left;
  width: calc(100% - 60px);
  border: 1px solid #444444;
  padding: 2px;
}
.js-events .right-events .boxNews .desTimeLocation {
  display: table;
  padding-left: 60px;
  padding-top: 15px;
}
.js-events .right-events .boxNews .desTimeLocation a {
  color: #fff;
}
.js-events .right-events .boxNews .desTimeLocation a h3.description {
  font-size: 18px;
  font-weight: 400;
  margin-top: 0px;
  line-height: 1.3;
}
.js-events .right-events .boxNews .desTimeLocation a:hover {
  text-decoration: none;
}
.js-events .right-events .boxNews .desTimeLocation .location, .js-events .right-events .boxNews .desTimeLocation .time {
  color: #989898;
  line-height: 1.3;
  margin-bottom: 8px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .js-events .right-events > div {
    margin-left: -15px;
    margin-right: -15px;
  }
  .js-events .right-events .boxNews {
    width: 33.33333333%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*---------------------------------- end events-home --------------------------------------*/
/*---------------------------------- begin about-home --------------------------------------*/
.js-about {
  background: #ee7121;
  float: left;
  width: 100%;
}
@media (min-width: 768px) {
  .js-about {
    height: 550px;
  }
}
@media (min-width: 768px) {
  .js-about .left-about {
    padding-top: 70px;
  }
  .js-about .left-about h2 {
    width: 395px;
  }
}
@media (max-width: 767px) {
  .js-about .left-about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .js-about .left-about h2 {
    width: 290px;
  }
  .js-about .left-about h2 span {
    margin-left: 25%;
  }
}
.js-about .left-about h2 {
  background: url("/Content/images/bg-and.png") center center no-repeat;
  margin-top: 0;
  height: 150px;
  padding-top: 30px;
}
@media (min-width: 993px) {
  .js-about .left-about h2 span {
    margin-left: 135px;
  }
}
@media (min-width: 768px) and (max-width: 922px) {
  .js-about .left-about h2 span {
    margin-left: 95px;
  }
}
.js-about .left-about p.text-about {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 35px;
}
.js-about .left-about a {
  border: 1px solid white;
  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;
}
.js-about .left-about a:hover, .js-about .left-about a:focus {
  background: #e25900;
  color: white;
  text-decoration: inherit;
}
.js-about .right-about {
  overflow: hidden;
}
@media (max-width: 767px) {
  .js-about .right-about img {
    height: 410px;
    margin-bottom: -20px;
  }
}

/*---------------------------------- end about-home --------------------------------------*/
/*---------------------------------- begin range-home --------------------------------------*/
.want-togo {
  margin-top: 60px;
  margin-bottom: 20px;
}

.shade-bg {
  width: 100%;
  overflow: hidden;
  background-color: #232323;
  background-repeat: repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

footer {
  padding-top: 50px;
}
footer a:link, footer a:visited, footer a:active {
  color: white;
}
footer a:hover {
  color: #ee7121;
}
footer .footer-info2 {
  background: #ee7121;
  padding-top: 40px;
  padding-bottom: 35px;
}
footer .footer-info2 img {
  margin-right: 10px;
}
footer .footer-info2 p {
  margin-top: 15px;
  margin-bottom: 15px;
}
footer .footer-info2 p .b1 {
  font-weight: 500;
}
footer .footer-info2 a:link, footer .footer-info2 a:visited, footer .footer-info2 a:active {
  color: white;
}
footer .footer-info2 a:hover {
  color: white;
}
footer .copy-right {
  padding-top: 20px;
  padding-bottom: 10px;
  background: #0c0d14;
}
footer .footer-info {
  margin-bottom: 50px;
}
footer .footer-info h2 {
  color: white;
}
footer .footer-info .title-footer {
  font-size: 18px;
  margin-bottom: 20px;
}
footer .footer-info h4 {
  text-transform: uppercase;
  padding-top: 10px;
  color: #ee7121;
}
footer .footer-info ul {
  font-size: 14px;
  line-height: 2;
  padding-left: 0;
  text-transform: uppercase;
}
footer .footer-info ul li {
  list-style: none;
}
footer .footer-info .row > div {
  display: inline-block;
}
@media (min-width: 768px) {
  footer .footer-info .row > div {
    min-height: 245px;
  }
}
@media (max-width: 767px) {
  footer .footer-info .row > div.col-h-class {
    min-height: 260px;
    display: inline-block;
  }
}
footer .footer-info-text {
  opacity: 0.7;
}

@media (min-width: 1921px) {
  footer {
    background-size: inherit;
  }
}
@media (max-width: 1920px) {
  footer {
    background-size: contain;
  }
}
/*---------------------------------- end range-home --------------------------------------*/
/*----------------------------------  begin btnLink -------------------------------------*/
a.btnLink {
  background: #ee7121;
  color: white;
  padding: 20px 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;
  cursor: pointer;
}

a.btnLink:hover, a.btnLink:focus {
  background: #e25900;
  color: white;
  text-decoration: inherit;
}

button.btn-sendEmail, button.btn-sendEmail:focus {
  background: #ee7121;
  color: white;
  padding: 20px 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;
  border: 0;
  outline: none;
}

button.btn-sendEmail:hover {
  background: #e25900;
  color: white;
  text-decoration: inherit;
  outline: none;
  border: 0;
}

.btn-primary {
  background: #ee7121;
  color: white;
  padding: 20px 50px;
  display: inline-block;
  border-radius: 30px;
  font-weight: 500;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-size: 16px;
  font-family: effra, sans-serif;
  border: none;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: #e25900;
  color: white;
  text-decoration: inherit;
}

/*----------------------------------  end btnLink -------------------------------------*/
/* --- begin slide banner --- */
.jsBanner {
  max-width: 1244px;
  margin: 0 auto;
}

#c-carousel {
  height: 100%;
  padding: 0;
  margin: 0;
}

#c-carousel {
  /*min-height: 500px;*/
}

#c-carousel * {
  font-family: Arial, Geneva, SunSans-Regular, sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 22px;
}

#wrapper {
  background-color: #fff;
  width: 100%;
  height: 425px;
  /*margin-top: -225px;
  top: 50%;*/
  overflow: hidden;
  position: absolute;
  left: 0;
}

#carousel img {
  display: block;
  float: left;
}

#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;
}

#pager {
  margin-left: -600px;
  position: absolute;
  left: 50%;
  bottom: 10px;
}

#pager a {
  border: 2px solid #fff;
  border-radius: 10px;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px 0 0;
}

#pager a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

#pager a span {
  display: none;
}

#pager a.selected {
  background-color: #fff;
}

@media (min-width: 1000px) {
  #banner {
    height: 425px;
  }

  .clMobile {
    display: none;
  }

  .clPC {
    display: block;
  }
}
@media (max-width: 999px) {
  #banner {
    max-height: 425px;
  }

  .clMobile {
    display: block;
  }

  .clPC {
    display: none;
  }
}
/* --- end slide banner --- */
/*------ begin News & Events -----*/
.newsEvents {
  margin-bottom: 60px;
  z-index: 99;
  position: relative;
}
.newsEvents .boxNews {
  margin-top: 20px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #171a1b;
  -webkit-box-shadow: 0px 3px 0px -2px #2e3335;
  -moz-box-shadow: 0px 3px 0px -2px #2e3335;
  box-shadow: 0px 3px 0px -2px #2e3335;
  padding-bottom: 20px;
}
.newsEvents .boxNews .dateMonth {
  width: 65px;
  float: left;
  text-transform: uppercase;
}
.newsEvents .boxNews .dateMonth .month {
  background: #22232b;
  width: 50px;
  display: block;
  text-align: center;
  padding-top: 2px;
  padding-bottom: 2px;
}
.newsEvents .boxNews .dateMonth .date {
  background: #ee7121;
  width: 50px;
  display: block;
  text-align: center;
  font-size: 24px;
  padding: 0;
  line-height: 1.3;
}
.newsEvents .boxNews .images {
  float: left;
  max-width: 150px;
  margin-right: 15px;
  border: 1px solid #444444;
  padding: 2px;
}
.newsEvents .boxNews .images a:hover img {
  opacity: 0.75;
}
.newsEvents .boxNews .desTimeLocation {
  display: table;
}
.newsEvents .boxNews .desTimeLocation a {
  color: #fff;
}
.newsEvents .boxNews .desTimeLocation a h3.description {
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
  line-height: 1.3;
}
.newsEvents .boxNews .desTimeLocation a:hover {
  text-decoration: initial;
}
.newsEvents .boxNews .desTimeLocation a:hover h3.description {
  opacity: 0.75;
}
.newsEvents .boxNews .desTimeLocation p {
  margin-bottom: 3px;
}
.newsEvents .boxNews .desTimeLocation .location, .newsEvents .boxNews .desTimeLocation .time {
  color: #989898;
}
.newsEvents .clUpcomingEvents h2 {
  margin-top: 0;
  font-size: 36px;
}
.newsEvents .clUpcomingEvents .BoxUpcomingEvents {
  background: #22232b;
  padding: 15px;
}

@media (max-width: 993px) {
  .clUpcomingEvents h2 {
    padding-top: 40px;
  }
}
/*------ end News & Events -----*/
/*------ begin contact ----------*/
.titleResult {
  margin-top: 60px;
}

.MainContact {
  z-index: 999;
  position: relative;
  margin-bottom: 60px;
}
.MainContact h3 {
  margin-bottom: 20px;
}
.MainContact .clContactDetails {
  background-color: rgba(12, 13, 20, 0.25);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.MainContact .clContactDetails table tr {
  margin-bottom: 10px;
  display: block;
}
.MainContact .clContactDetails table tr td {
  width: 150px;
}
.MainContact .clContactDetails table tr a {
  color: #ee7121;
}
.MainContact .clContactDetails table tr a:hover {
  color: rgba(238, 113, 33, 0.7);
}
.MainContact .clOpenHours table {
  background-color: rgba(12, 13, 20, 0.25);
}
.MainContact .clOpenHours table tr {
  margin-bottom: 5px;
}
.MainContact .clOpenHours table tr td {
  padding: 5px 15px;
  border-right: 1px solid #22232b;
  border-bottom: 10px solid #22232b;
}
.MainContact .clFormContact .formEmailUs {
  background-color: rgba(12, 13, 20, 0.25);
  padding: 20px 15px;
  float: left;
  width: 100%;
}
.MainContact .clFormContact .formEmailUs button.btn-Subscribe {
  background: #ee7121;
  padding: 15px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  border: 0;
  margin-top: 15px;
}
.MainContact .clFormContact .formEmailUs button.btn-Subscribe:hover {
  -webkit-transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  background: rgba(238, 113, 33, 0.7);
}

/*------ end contact ----------*/
/*------ begin shhh ----------*/
.shhh {
  margin-bottom: 30px;
  display: inline-block;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.shhh img {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.shhh .item {
  background: #22232b;
  color: #fff;
  float: left;
}
.shhh .item div.staffinfo {
  background-color: rgba(12, 13, 20, 0.75);
  text-align: center;
  display: block;
  padding: 8px 5px;
  position: relative;
  margin-top: -95px;
  height: 95px;
}
.shhh .item div.staffinfo p {
  margin: 5px 0;
}

/*------ end shhh ----------*/
/*-----begin tabsStock------*/
.tabsStock {
  margin-top: 60px;
  margin-bottom: 60px;
  z-index: 99;
  position: relative;
}
.tabsStock .tab-content .tab-pane a {
  margin-bottom: 30px;
  display: inline-block;
}
.tabsStock .tab-content .tab-pane a .item {
  background: #22232b;
  color: #fff;
  float: left;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.tabsStock .tab-content .tab-pane a .item img {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.tabsStock .tab-content .tab-pane a .item span {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  background: center right no-repeat #17191a;
  text-align: center;
  display: block;
  padding: 14px 0;
}
@media (min-width: 500px) {
  .tabsStock .tab-content .tab-pane a .item span {
    font-size: 20px;
  }
}
@media (max-width: 499px) {
  .tabsStock .tab-content .tab-pane a .item span {
    font-size: 12px;
  }
}
.tabsStock .tab-content .tab-pane a:hover .item {
  background: #17191a;
  -webkit-transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
}
.tabsStock .tab-content .tab-pane a:hover .item img {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.tabsStock .tab-content .tab-pane a:hover .item span {
  background: center right no-repeat #ee7121;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  margin: -8px 0 8px;
}
.tabsStock h4 {
  font-size: 46px;
  text-align: center;
  margin-bottom: 40px;
}
.tabsStock h4 hr {
  width: 100px;
  margin-top: 10px;
  border-top: 6px solid #eee;
}
.tabsStock .nav-sidebar {
  margin-bottom: 40px;
  text-align: center;
}
.tabsStock .nav-sidebar ul {
  display: -webkit-inline-box;
}
.tabsStock .nav-sidebar ul li {
  margin: 0 10px;
}
.tabsStock .nav-sidebar ul li a {
  background: #1f2024;
  border-bottom: 3px solid #1f2024;
  color: white;
  -webkit-transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  padding: 10px;
}
.tabsStock .nav-sidebar ul li a:hover {
  border-bottom: 3px solid #ee7121;
}
.tabsStock .nav-sidebar ul li.active a, .tabsStock .nav-sidebar ul li.active a:hover {
  border-bottom: 3px solid #ee7121;
  color: white;
}
@media (max-width: 767px) {
  .tabsStock .nav-sidebar ul li {
    margin: 5px 0px;
    width: 100%;
    display: table-caption;
    text-align: center;
  }
}
.tabsStock .hBottomStock {
  height: 200px;
  float: left;
  width: 100%;
}

/*-----end tabsStock------*/
.abs {
  position: absolute;
  opacity: 0.5;
}

/*----- showroom-detail ----*/
.bg-detail {
  position: absolute;
  z-index: 99;
  margin-top: 30%;
  max-width: 250px;
}

.bannerModel {
  position: absolute;
}

.showroom-detail .BoxDetail h2 {
  background: #ee7121;
  padding: 15px 26px;
  margin-bottom: 0;
  margin-top: 40px;
  font-size: 32px;
  text-transform: uppercase;
}
.showroom-detail .BoxDetail > div {
  background: #282d2f;
  padding: 15px 26px;
}
.showroom-detail .BoxDetail2 h2 {
  background: #ee7121;
  padding: 15px 26px;
  margin-bottom: 0;
  margin-top: 40px;
  font-size: 32px;
  text-transform: uppercase;
}
.showroom-detail .BoxDetail2 > div .table-striped > tbody > tr:nth-of-type(odd) {
  background: #282d2f;
}
.showroom-detail .BoxDetail2 > div th, .showroom-detail .BoxDetail2 > div td {
  border-top: 0;
}
.showroom-detail .BoxDetail3 {
  background: url("/Content/images/ModelGallery/bgGallery.png") center right no-repeat #282d2f;
  margin-top: 40px;
  padding: 5px 15px;
}
.showroom-detail .BoxDetail3 h2 {
  text-align: center;
  font-size: 32px;
}
.showroom-detail .BoxDetail3 > div > div {
  margin-bottom: 15px;
}
.showroom-detail .ModelsRange {
  background: #22232b;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.showroom-detail .ModelsRange span {
  height: 34px;
  display: block;
  text-align: center;
  line-height: 3.1;
  font-size: 17px;
  font-weight: 900;
}
.showroom-detail .titlePrice {
  background-color: rgba(44, 46, 46, 0.65);
  float: left;
  padding: 20px;
  margin-top: 12%;
  min-width: 300px;
}
.showroom-detail .titlePrice a {
  color: #fff;
  background: url("/Content/images/icon_button.png") left center no-repeat #ee7121;
  margin-top: 20px;
  float: left;
  padding: 13px 15px 13px 30px;
  min-width: 240px;
  text-transform: uppercase;
}
.showroom-detail .titlePrice a i {
  font-size: 20px;
}
.showroom-detail .titlePrice a:hover {
  text-decoration: initial;
}
.showroom-detail .titlePrice .big-note {
  font-weight: 700;
  font-size: 19px;
}
.showroom-detail #Make_Enquiry {
  padding: 20px;
  margin-top: 50px;
}
.showroom-detail #Make_Enquiry h3 {
  color: white;
  border: 0;
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 54px;
  font-weight: 500;
}
.showroom-detail #Make_Enquiry button.btn-Subscribe, .showroom-detail #Make_Enquiry input.btn_calculator {
  background: #ee7121;
  box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0.15), 0 0px 0px rgba(0, 0, 0, 0.075);
  border-radius: 0px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
  margin-top: 15px;
}
.showroom-detail .pageStockBikes {
  z-index: 99;
  position: relative;
}
.showroom-detail .pageStockBikes .BoxDetail2 > div {
  background: #22232b;
}

/*---------- search -----------*/
.bannerModelPages .titleResult h2 {
  margin-top: 20%;
  position: absolute;
  background: #ee7121;
  float: left;
  padding: 12px 24px;
}

.SearchView16 {
  background: #24252c;
  padding: 25px 20px 10px 20px;
  margin-bottom: 30px;
}
.SearchView16 span {
  margin-bottom: 15px;
  display: block;
}
.SearchView16 .form-group.filterPriceView16 .form-control {
  padding: 0;
  margin-top: 10px;
  background: none;
  border: 0;
  color: #fff;
  height: auto;
}
.SearchView16 .form-group.filterPriceView16 .ui-slider {
  background: #636363;
}
.SearchView16 .form-group.filterPriceView16 .ui-slider-range {
  background: #ee7121;
}
.SearchView16 .form-group.filterPriceView16 .ui-slider-handle {
  background: url("/Content/images/iconRange.png") right center no-repeat;
  border: 0;
  border-radius: 0;
  width: 10px;
  height: 18px;
  z-index: 9;
}
.SearchView16 .form-group > .form-control {
  background: url("/Content/images/iconDropdown.jpg") right center no-repeat #ee7121;
  /*background: $color-orange;*/
  color: #fff;
  border: none;
  border-radius: 0;
}
.SearchView16 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
.SearchView16 input.btnUpdateSearch {
  background: #ee7121;
  border: 0;
  display: inline-block;
  padding: 4px 12px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  height: 60px;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 5px;
  font-weight: bold;
}
.SearchView16 input.btnUpdateSearch:hover {
  -webkit-transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  background: rgba(238, 113, 33, 0.7);
}

/*---------- stock -------------*/
.css-view16 {
  padding-top: 50px;
  z-index: 999;
  position: relative;
}
.css-view16 .product {
  margin-bottom: 50px;
  border: none;
  padding: 0;
}
.css-view16 .product:hover {
  border: none;
  padding: 0;
}
.css-view16 .product a {
  background: #24252c;
  color: #fff;
  display: block;
  padding-bottom: 30px;
}
.css-view16 .product a .product-image-v8 {
  display: inline-block;
}
@media (min-width: 993px) {
  .css-view16 .product a .product-image-v8 {
    margin: 16px 16px 0 16px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .css-view16 .product a .product-image-v8 {
    margin: 10px 10px 0 10px;
  }
}
@media (max-width: 767px) {
  .css-view16 .product a .product-image-v8 {
    margin: 6px 6px 0 6px;
  }
}
.css-view16 .product a .product-image-v8 img {
  margin: 0 auto;
}
.css-view16 .product a .product-details {
  height: 85px;
  margin-top: -6px;
}
@media (min-width: 993px) {
  .css-view16 .product a .product-details {
    padding: 0 16px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .css-view16 .product a .product-details {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .css-view16 .product a .product-details {
    padding: 0 6px;
  }
}
@media (min-width: 993px) {
  .css-view16 .product a .divHeight {
    padding: 0 6px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .css-view16 .product a .divHeight {
    padding: 0;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .css-view16 .product a .divHeight {
    padding: 0;
    font-size: 14px;
  }
}
.css-view16 .product a:hover {
  text-decoration: initial;
  opacity: 0.7;
  -webkit-transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
  transition: all 0.2s cubic-bezier(0.53, 1, 0.53, 1.3);
}
.css-view16 .product span.product-name {
  background: #ee7121;
  color: #fff;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  /*display: inline-block;
  vertical-align: middle;*/
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .css-view16 .product span.product-name {
    padding: 10px;
    font-size: 18px;
    height: 70px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .css-view16 .product span.product-name {
    padding: 10px;
    font-size: 15px;
    height: 70px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .css-view16 .product span.product-name {
    padding: 10px;
    font-size: 12px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .css-view16 .product span.product-name {
    padding: 10px 5px;
    font-size: 14px;
  }
}
.css-view16 .product h4 {
  font-size: 40px;
}
@media (min-width: 768px) and (max-width: 992px) {
  .css-view16 .product h4 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .css-view16 .product h4 {
    font-size: 30px;
  }
}
.css-view16 .product .btn-Enquire-info {
  background: #ee7121;
  padding: 15px;
  color: #fff;
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
.css-view16 .product .divHeight {
  height: 100px;
}
.css-view16 .product .divHeight p {
  margin-bottom: 5px;
}
.css-view16 .product .divHeight h4 {
  margin-top: 0px;
}
.css-view16 .product .divHeight .product-price {
  font-weight: normal;
  display: block;
  text-align: right;
}
@media (min-width: 768px) and (max-width: 992px) {
  .css-view16 .product .divHeight .product-price {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .css-view16 .product .divHeight .product-price {
    font-size: 16px;
  }
}
.css-view16 ul.pagination li input {
  background-color: #1f2024;
  border: 1px solid #4f4f4f;
}
.css-view16 ul.pagination li:hover input {
  background-color: #24252c;
  border: 1px solid #4f4f4f;
}
.css-view16 ul.pagination li.active input {
  background-color: #22232b;
  border: 1px solid #4f4f4f;
}

.DetailViewThree {
  z-index: 99;
  position: relative;
  /*background: url("/Content/images/ModelBanner/bgDeails.jpg") center top no-repeat;	*/
  padding-top: 50px;
}
.DetailViewThree h2 {
  font-size: 40px;
}
.DetailViewThree .product-accordion {
  background: #24252c;
  padding: 15px 15px 0 15px;
}
.DetailViewThree .product-accordion .accordion-body .accordion-inner {
  border-radius: 0;
  border: 0;
  line-height: 1.8;
}
.DetailViewThree .product-accordion .accordion-heading {
  background: none;
  color: #ee7121;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
}
.DetailViewThree #Make_Enquiry {
  background-color: rgba(44, 46, 46, 0.65);
  padding: 1px 15px 10px 15px;
}
.DetailViewThree #Make_Enquiry h3 {
  color: #ee7121;
  font-size: 40px;
  border-bottom: 0;
  padding-bottom: 0;
}
.DetailViewThree #Make_Enquiry .textTitle {
  padding-bottom: 10px;
}
.DetailViewThree #Make_Enquiry input.form-control, .DetailViewThree #Make_Enquiry textarea.form-control {
  border-radius: 0;
}
.DetailViewThree .product-price {
  color: #ee7121;
  font-size: 40px;
  font-weight: normal;
}
.DetailViewThree #btnSendMail {
  background: #ee7121;
  box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0.15), 0 0px 0px rgba(0, 0, 0, 0.075);
  border-radius: 0px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
  margin-top: 5px;
}
.DetailViewThree #btnSendMail:hover {
  opacity: 0.75;
}
.DetailViewThree .galleria-container {
  background: #4f4f4f;
  border: solid 1px #24252c;
}
.DetailViewThree .galleria-container.notouch .galleria-thumblink, .DetailViewThree .galleria-thumblink, .DetailViewThree .galleria-container.notouch .galleria-fullscreen, .DetailViewThree .galleria-container.notouch .galleria-play, .DetailViewThree .galleria-container.notouch .galleria-popout {
  background-color: #ee7121;
  border-right: 1px solid #5d5d5d;
  outline: 1px solid #a2a2a2;
}
.DetailViewThree .galleria-container.notouch .galleria-thumblink:hover, .DetailViewThree .galleria-container.touch .galleria-thumblink:active, .DetailViewThree .galleria-thumblink.open, .DetailViewThree .galleria-container.notouch .galleria-fullscreen:hover, .DetailViewThree .galleria-container.touch .galleria-fullscreen:active, .DetailViewThree .galleria-container.notouch .galleria-play:hover, .DetailViewThree .galleria-container.touch .galleria-play:active, .DetailViewThree .galleria-container.notouch .galleria-popout:hover, .DetailViewThree .galleria-container.touch .galleria-popout:active {
  background-color: #ee7121;
  opacity: 0.75;
}
.DetailViewThree .accordion-body .product-attribute > tbody > tr:nth-of-type(odd) {
  background-color: #1f2024;
}
.DetailViewThree .accordion-body .table > thead > tr > th, .DetailViewThree .accordion-body .table > tbody > tr > th, .DetailViewThree .accordion-body .table > tfoot > tr > th, .DetailViewThree .accordion-body .table > thead > tr > td, .DetailViewThree .accordion-body .table > tbody > tr > td, .DetailViewThree .accordion-body .table > tfoot > tr > td {
  border-top: 0;
}
.DetailViewThree .cl_search_results {
  background: #24252c;
  float: left;
  padding-bottom: 0 !important;
}
.DetailViewThree .cl_search_results input {
  background-color: #ee7121;
  padding: 10px 15px 10px 10px;
  margin-left: 0;
  text-transform: capitalize;
  color: #fff;
}
.DetailViewThree .cl_search_results input:hover {
  opacity: 0.75;
}

.form-group #images {
  margin-bottom: 10px;
}

.form-control {
  border-radius: 0px;
}

.clFinance .frmCalculator, .clFinance #Make_Enquiry {
  background-color: rgba(44, 46, 46, 0.65);
  padding: 20px;
  margin-top: 50px;
}
.clFinance .frmCalculator h3, .clFinance #Make_Enquiry h3 {
  color: white;
  border: 0;
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 54px;
  font-weight: 500;
}
.clFinance .frmCalculator button.btn-Subscribe, .clFinance .frmCalculator input.btn_calculator, .clFinance #Make_Enquiry button.btn-Subscribe, .clFinance #Make_Enquiry input.btn_calculator {
  background: #ee7121;
  box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0.15), 0 0px 0px rgba(0, 0, 0, 0.075);
  border-radius: 0px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
  margin-top: 15px;
}

.modal-open .modal {
  z-index: 9999;
}
.modal-open .modal .modal-content {
  color: #22232b;
}
.modal-open .modal .modal-content h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 30px;
}

@media (min-width: 1300px) {
  .showroom-detail #Make_Enquiry {
    margin-bottom: 80px;
  }
}
.form-horizontal .form-group span.cl-validate {
  color: #ee7121;
  font-size: 15px;
}

.thanks-page {
  padding-top: 60px;
  padding-bottom: 70px;
}
.thanks-page h1 {
  text-align: center;
  font-size: 42px;
  padding-bottom: 20px;
}
.thanks-page h3 {
  padding-bottom: 10px;
}

.btnZindex {
  position: relative;
  z-index: 99;
}

#btnTopPages {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 999;
  background: #ee7121;
  padding: 3px 5px;
}

#btnTopPages a, #btnTopPages a:focus, #btnTopPages:hover {
  color: white !important;
  text-decoration: inherit;
  background: #ee7121;
}

/*------------------------ 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;
}
.banner-home ul li .text-banner h2 {
  font-family: "DCC - Ash";
  letter-spacing: 1px;
}
@media (min-width: 1200px) {
  .banner-home ul li .text-banner {
    margin-left: 0.5%;
    text-align: left;
    max-width: 680px;
    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.2%;
    text-align: left;
    max-width: 400px;
    position: absolute;
    margin-top: 100px;
  }
  .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: 290px;
    position: absolute;
    margin-top: 70px;
    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 {
  text-transform: uppercase;
  margin-top: 0;
}
.banner-home .list_carousel.responsive {
  width: auto;
  margin-left: 0;
}

/*------------------------ end banner-home -----------------------------*/
.js-online-store {
  background: url("/Content/images/online-store-img.jpg") center top no-repeat;
  height: 755px;
}
.js-online-store .left-about {
  margin-top: 15%;
}
.js-online-store a {
  background: url("/Content/images/store-icon.png") 15px center no-repeat #ee7121;
  color: white;
  padding: 20px 30px 20px 55px;
  display: inline-block;
  border-radius: 30px;
  font-weight: 500;
  margin-top: 20px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
}
.js-online-store a:hover, .js-online-store a:focus {
  background: url("/Content/images/store-icon.png") 15px center no-repeat #e25900;
  color: white;
  text-decoration: inherit;
}

.hr-line {
  width: 72px;
  height: 5px;
  text-align: center;
  background: #ee7121;
  border-top: 0;
  margin-bottom: 30px;
}

.hr-line2 {
  width: 72px;
  height: 5px;
  text-align: left;
  background: #ee7121;
  border-top: 0;
  margin-bottom: 20px;
  margin-top: 10px;
  display: inline-block;
}

.product-image-v8 {
  width: calc(100% - 32px);
  padding-top: 65%;
  position: relative;
}
.product-image-v8 .resize-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.product-image-v8 .resize-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
