/*!
 * 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);
  }
}
/*-------------------------------- begin menu-mobile ------------------------------------*/
.is-hidden {
  overflow: hidden;
}
.is-hidden .menu-mobile .topNav {
  position: fixed;
  top: 10px;
}

.menu-mobile .topNav-toggle, .menu-mobile [hidden], .menu-mobile template {
  display: none;
}
.menu-mobile .main.-hp:after, .menu-mobile .mainHeader-scrollDown, .menu-mobile .mainHeader-videoBackground, .menu-mobile .topNav, .menu-mobile .topNav-bannerWrapper:after, .menu-mobile .topNav-inner {
  left: 0;
  right: 0;
  bottom: 0;
}
.menu-mobile .darkTheme .mainHeader-intro, .menu-mobile .grid-item, .menu-mobile .headline, .menu-mobile .mainNav-itemTitle, .menu-mobile .newsletter-title, .menu-mobile .section-figcaption {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}
.menu-mobile .topNav-logoIndicator, .menu-mobile .topNav-menu:before {
  letter-spacing: .2em;
  text-transform: uppercase;
}
.menu-mobile button, .menu-mobile html input[type=button], .menu-mobile input[type=reset], .menu-mobile input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
.menu-mobile button[disabled], .menu-mobile html input[disabled] {
  cursor: default;
}
.menu-mobile .roundedCta, .menu-mobile .topNav-menu {
  cursor: pointer;
  text-decoration: none;
}
.menu-mobile .topNav {
  position: absolute;
  z-index: 990;
  pointer-events: none;
  color: #fff;
}
@media (min-width: 510px) {
  .menu-mobile .topNav {
    top: 78px;
  }
}
@media (max-width: 509px) {
  .menu-mobile .topNav {
    top: 10px;
  }
}
.menu-mobile .topNav-inner {
  position: absolute;
  top: 0;
  overflow-y: hidden;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner {
  overflow-y: scroll;
}
.menu-mobile .topNav-bannerWrapper {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 48em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 5rem;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 5rem;
  }
}
.menu-mobile .topNav-bannerWrapper:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
}
.menu-mobile .mainHeader-cover, .menu-mobile .mainHeader-intro, .menu-mobile .topNav-backToHome {
  position: relative;
  z-index: 1;
}
.menu-mobile .topNav-bannerWrapper.is-scrolled:after {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-bannerWrapper:after {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.menu-mobile .topNav-bannerInner {
  margin: auto;
  display: table;
  width: 100%;
  height: 5rem;
  max-width: 144rem;
}
@media screen and (min-width: 48em) {
  .menu-mobile .topNav-bannerInner {
    height: 6rem;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .topNav-bannerInner {
    height: 8rem;
  }
}
.menu-mobile .topNav-left, .menu-mobile .topNav-right {
  display: table-cell;
  vertical-align: middle;
  font-size: 0;
}
.menu-mobile .topNav-backToHome, .menu-mobile .topNav-logoIndicator, .menu-mobile .topNav-menu, .menu-mobile .topNav-menu:before, .menu-mobile .topNav-menuIcon {
  display: inline-block;
  vertical-align: middle;
}
.menu-mobile .topNav-left svg g, .menu-mobile .topNav-right svg g {
  -webkit-transition: stroke .3s ease-out;
  transition: stroke .3s ease-out;
}
.menu-mobile .darkTheme .topNav-left svg g, .menu-mobile .darkTheme .topNav-right svg g, .menu-mobile .is-scrolled .topNav-left svg g, .menu-mobile .is-scrolled .topNav-right svg g, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-left svg g, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-right svg g {
  stroke: #fff;
}
.menu-mobile .topNav-backToHome {
  text-decoration: none;
  pointer-events: auto;
}
.menu-mobile .topNav-backToHome:focus ~ .topNav-logoIndicator, .menu-mobile .topNav-backToHome:hover ~ .topNav-logoIndicator {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.menu-mobile .topNav-logo {
  width: 30px;
  height: 15px;
}
@media screen and (min-width: 93.75em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 9rem;
  }
  .menu-mobile .topNav-logo {
    width: 35px;
    height: 18px;
  }
}
.menu-mobile .topNav-logo path {
  -webkit-transition: fill .3s ease-out;
  transition: fill .3s ease-out;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logo {
  background-color: transparent;
}
.menu-mobile .darkTheme .topNav-logo path, .menu-mobile .is-scrolled .topNav-logo path, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logo path {
  fill: #fff;
}
.menu-mobile .topNav-logoIndicator {
  padding-left: 1rem;
  font-size: 1.1rem;
  text-decoration: none;
  color: #13171F;
  opacity: 0;
  -webkit-transform: translateX(-0.5em);
  -ms-transform: translateX(-0.5em);
  transform: translateX(-0.5em);
  -webkit-transition: -webkit-transform .2s ease-out, opacity .2s ease-out, color .3s ease-out;
  transition: transform .2s ease-out, opacity .2s ease-out, color .3s ease-out;
  pointer-events: none;
}
@media screen and (min-width: 93.75em) {
  .menu-mobile .topNav-logoIndicator {
    font-size: 1.2rem;
  }
}
.menu-mobile .darkTheme .topNav-logoIndicator, .menu-mobile .is-scrolled .topNav-logoIndicator, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logoIndicator {
  color: #fff;
}
.menu-mobile .topNav-right {
  font-size: 0;
  text-align: right;
  text-decoration: none;
}
.menu-mobile .topNav-menu {
  pointer-events: auto;
  outline-width: 0;
}
.menu-mobile .topNav-menu:before {
  content: 'Menu';
  padding-right: 1rem;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
}
.menu-mobile .article-inner .article-intro, .menu-mobile .cards-desc, .menu-mobile .cards-info, .menu-mobile .cards-intro, .menu-mobile .grid-desc, .menu-mobile .headline-desc, .menu-mobile .mainHeader-headline, .menu-mobile .section-ctaTxt, .menu-mobile .section-quote, .menu-mobile .section-subtitle, .menu-mobile .team-desc {
  letter-spacing: .05em;
}
.menu-mobile .darkTheme .topNav-menu:before, .menu-mobile .is-scrolled .topNav-menu:before, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu:before {
  color: #fff;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu:before {
  content: 'Close';
}
.menu-mobile .headline-title.-bubble:after, .menu-mobile .main.-hp:after, .menu-mobile .mainHeader-videoContainer:after, .menu-mobile .mainHeader-videoContainer:before {
  content: '';
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-1 {
  -webkit-transform: rotate(45deg) translateX(5px) translateY(-3px);
  -ms-transform: rotate(45deg) translateX(5px) translateY(-3px);
  transform: rotate(45deg) translateX(5px) translateY(-3px);
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
  opacity: 0;
}
@media all and (-ms-high-contrast: none) {
  .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
    opacity: 1;
  }
  .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu ::-ms-backdrop {
    opacity: 1;
  }
}
.menu-mobile .edge .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
  opacity: 1;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-3 {
  -webkit-transform: rotate(-45deg) translateX(5px) translateY(3px);
  -ms-transform: rotate(-45deg) translateX(5px) translateY(3px);
  transform: rotate(-45deg) translateX(5px) translateY(3px);
}
.menu-mobile .topNav-menuIcon {
  width: 24px;
  height: 24px;
}
.menu-mobile .topNav-menuIcon .path-1, .menu-mobile .topNav-menuIcon .path-3 {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.67, -0.57, 0.43, 1.51);
  transition: transform 0.35s cubic-bezier(0.67, -0.57, 0.43, 1.51);
}
.menu-mobile .topNav-menuIcon .path-2 {
  -webkit-transition: opacity .35s ease-out;
  transition: opacity .35s ease-out;
}
.menu-mobile .topNav-menuIcon .path-1 {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
.menu-mobile .topNav-menuIcon .path-3 {
  -webkit-transform-origin: 0 24px;
  -ms-transform-origin: 0 24px;
  transform-origin: 0 24px;
}
.menu-mobile .mainNav-itemTitleExternal:after, .menu-mobile .mainNav-link:after, .menu-mobile .mainNav:after, .menu-mobile .mainNav:before, .menu-mobile .team-desc:before, .menu-mobile .team-imgContainer:before {
  content: '';
}
.menu-mobile .mainNav-list, .menu-mobile .roundedCta {
  vertical-align: middle;
  text-align: center;
}
.menu-mobile .mainNav {
  background: #0e0e0e;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s linear .3s, opacity ease-out .3s;
  transition: visibility 0s linear .3s, opacity ease-out .3s;
  pointer-events: auto;
  overflow-y: scroll;
}
.menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  height: 5rem;
  display: none;
}
@media screen and (min-width: 48em) {
  .menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
    height: 6rem;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
    height: 8rem;
  }
}
.menu-mobile .mainNav:before {
  top: 0;
  background: -webkit-linear-gradient(#4b8bf2, rgba(83, 144, 236, 0));
  background: linear-gradient(#4b8bf2, rgba(83, 144, 236, 0));
}
.menu-mobile .mainNav:after {
  bottom: 0;
  background: -webkit-linear-gradient(rgba(83, 144, 236, 0), #4b8bf2);
  background: linear-gradient(rgba(83, 144, 236, 0), #4b8bf2);
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .mainNav {
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s linear 0s, opacity ease-out .3s;
  transition: visibility 0s linear 0s, opacity ease-out .3s;
}
.menu-mobile .mainNav-inner {
  padding: 5rem 0;
  display: table;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .menu-mobile .mainNav-inner {
    padding: 6rem 0;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-inner {
    padding: 8rem 0;
  }
}
.menu-mobile .mainNav-list {
  margin: 0 auto;
  padding: 0;
  display: table-cell;
  list-style: none;
}
.menu-mobile .mainNav-item {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.menu-mobile .mainNav-item + .mainNav-item .mainNav-link:before {
  content: '';
  margin: auto;
  display: block;
  max-width: 144rem;
  height: 1px;
  background-color: #8e8e8e;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(1) {
  -webkit-transition: opacity ease-out .3s -.14118s, -webkit-transform ease-out .3s -.14118s;
  transition: opacity ease-out .3s -.14118s, transform ease-out .3s -.14118s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(2) {
  -webkit-transition: opacity ease-out .3s -.08235s, -webkit-transform ease-out .3s -.08235s;
  transition: opacity ease-out .3s -.08235s, transform ease-out .3s -.08235s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(3) {
  -webkit-transition: opacity ease-out .3s -.02353s, -webkit-transform ease-out .3s -.02353s;
  transition: opacity ease-out .3s -.02353s, transform ease-out .3s -.02353s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(4) {
  -webkit-transition: opacity ease-out .3s 35.29ms, -webkit-transform ease-out .3s 35.29ms;
  transition: opacity ease-out .3s 35.29ms, transform ease-out .3s 35.29ms;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(5) {
  -webkit-transition: opacity ease-out .3s .09412s, -webkit-transform ease-out .3s .09412s;
  transition: opacity ease-out .3s .09412s, transform ease-out .3s .09412s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(6) {
  -webkit-transition: opacity ease-out .3s .15294s, -webkit-transform ease-out .3s .15294s;
  transition: opacity ease-out .3s .15294s, transform ease-out .3s .15294s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(7) {
  -webkit-transition: opacity ease-out .3s .21176s, -webkit-transform ease-out .3s .21176s;
  transition: opacity ease-out .3s .21176s, transform ease-out .3s .21176s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(8) {
  -webkit-transition: opacity ease-out .3s .27059s, -webkit-transform ease-out .3s .27059s;
  transition: opacity ease-out .3s .27059s, transform ease-out .3s .27059s;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .mainNav-item {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.menu-mobile .mainNav-link {
  padding: 0 2rem;
  display: block;
  height: 6rem;
  line-height: 6rem;
  font-size: 1.8rem;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-link {
    height: 11rem;
    line-height: 11rem;
    font-size: 3.2rem;
  }
  .menu-mobile .mainNav-link:focus:after, .menu-mobile .mainNav-link:hover:after {
    opacity: 1;
  }
  .menu-mobile .mainNav-link:focus .mainNav-itemTitle, .menu-mobile .mainNav-link:hover .mainNav-itemTitle {
    -webkit-transform: translateY(-1.2rem);
    -ms-transform: translateY(-1.2rem);
    transform: translateY(-1.2rem);
  }
  .menu-mobile .mainNav-link:focus .mainNav-itemSubtitle, .menu-mobile .mainNav-link:hover .mainNav-itemSubtitle {
    opacity: 1;
    -webkit-transform: translateY(-9.2rem);
    -ms-transform: translateY(-9.2rem);
    transform: translateY(-9.2rem);
  }
}
@media screen and (min-width: 93.75em) {
  .menu-mobile .mainNav-link {
    padding: 0 9rem;
    font-size: 3.8rem;
  }
  .menu-mobile .mainNav-link:focus .mainNav-itemTitle, .menu-mobile .mainNav-link:hover .mainNav-itemTitle {
    -webkit-transform: translateY(-1.4rem);
    -ms-transform: translateY(-1.4rem);
    transform: translateY(-1.4rem);
  }
  .menu-mobile .mainNav-link:focus .mainNav-itemSubtitle, .menu-mobile .mainNav-link:hover .mainNav-itemSubtitle {
    opacity: 1;
    -webkit-transform: translateY(-8.8rem);
    -ms-transform: translateY(-8.8rem);
    transform: translateY(-8.8rem);
  }
}
.menu-mobile .mainNav-link:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: -1px;
  opacity: 0;
  background-color: #8e8e8e;
  -webkit-transition: .2s opacity ease-out;
  transition: .2s opacity ease-out;
}
.menu-mobile .mainNav-itemSubtitle, .menu-mobile .mainNav-itemTitle {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform .25s ease-out, opacity .25s ease-out;
  transition: transform .25s ease-out, opacity .25s ease-out;
}
.menu-mobile .mainNav-itemTitle {
  display: block;
  font-weight: 300;
}
.menu-mobile .mainNav-itemTitleExternal {
  position: relative;
  display: inline-block;
}
.menu-mobile .mainNav-itemTitleExternal:after {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(50% + 2px);
  right: -30px;
  background-image: url(icon-external-link.svg);
  background-size: cover;
  opacity: .4;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 48em) {
  .menu-mobile {
    .mainNav-itemTitleExternal: after;
    .mainNav-itemTitleExternal-width: 35px;
    .mainNav-itemTitleExternal-height: 35px;
    .mainNav-itemTitleExternal-top: calc(50% + 3px);
    .mainNav-itemTitleExternal-right: -35px;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile {
    .mainNav-itemTitleExternal: after;
    .mainNav-itemTitleExternal-width: 41px;
    .mainNav-itemTitleExternal-height: 41px;
    .mainNav-itemTitleExternal-right: -41px;
  }
}
.menu-mobile .mainNav-itemSubtitle {
  display: none;
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-itemSubtitle {
    display: block;
    letter-spacing: .05em;
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0;
    -webkit-transform: translateY(-10rem);
    -ms-transform: translateY(-10rem);
    transform: translateY(-10rem);
  }
}
@media screen and (min-width: 93.75em) {
  .menu-mobile {
    .mainNav-itemTitleExternal: after;
    .mainNav-itemTitleExternal-width: 48px;
    .mainNav-itemTitleExternal-height: 48px;
    .mainNav-itemTitleExternal-top: calc(50% + 4px);
    .mainNav-itemTitleExternal-right: -48px;
  }
  .menu-mobile .mainNav-itemSubtitle {
    font-size: 1.6rem;
  }
}

/*-------------------------------- end menu-mobile ------------------------------------*/
/* --------------------- color ----------------------------*/
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.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-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.bg-grey {
  background: #e3e9eb;
  width: 100%;
  padding: 40px;
  position: relative;
}

.bg-grey-dark {
  background: #2e3537;
  width: 100%;
  position: relative;
}

.grey-light {
  color: #aeb3b4;
}

.green {
  color: #00b900;
}

.white {
  color: white !important;
}

/* --------------------- base ----------------------------*/
.container {
  width: 100%;
  max-width: 1400px;
}

@media (min-width: 1200px) {
  .container.c-2400 {
    max-width: 2400px;
    padding: 0 85px;
  }

  .container.c-1600 {
    max-width: 1600px;
  }

  .container.c-1000 {
    max-width: 1000px;
  }
}
@-webkit-keyframes width-fill {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}
@keyframes width-fill {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}
@-webkit-keyframes line-fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-12px, -50%, 0);
    transform: translate3d(-12px, -50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes line-fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-12px, -50%, 0);
    transform: translate3d(-12px, -50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@-webkit-keyframes line-fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(12px, -50%, 0);
    transform: translate3d(12px, -50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes line-fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(12px, -50%, 0);
    transform: translate3d(12px, -50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@-webkit-keyframes stroke-dash {
  0% {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke-dash {
  0% {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes stroke-dash-delayed {
  0% {
    stroke-dasharray: 0;
  }

  4.9% {
    stroke-dasharray: 0;
  }

  5% {
    stroke-dasharray: 80;
  }

  to {
    stroke-dasharray: 80;
    stroke-dashoffset: 0;
  }
}
@keyframes stroke-dash-delayed {
  0% {
    stroke-dasharray: 0;
  }

  4.9% {
    stroke-dasharray: 0;
  }

  5% {
    stroke-dasharray: 80;
  }

  to {
    stroke-dasharray: 80;
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes close-up {
  0% {
    opacity: .5;
    -webkit-transform: translate3d(-50%, 100px, -200px) rotateX(-10deg);
    transform: translate3d(-50%, 100px, -200px) rotateX(-10deg);
    stroke-dashoffset: 1000;
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 50px, 0) rotateX(0);
    transform: translate3d(-50%, 50px, 0) rotateX(0);
    stroke-dashoffset: 0;
  }
}
@keyframes close-up {
  0% {
    opacity: .5;
    -webkit-transform: translate3d(-50%, 100px, -200px) rotateX(-10deg);
    transform: translate3d(-50%, 100px, -200px) rotateX(-10deg);
    stroke-dashoffset: 1000;
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 50px, 0) rotateX(0);
    transform: translate3d(-50%, 50px, 0) rotateX(0);
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes left-out-right-in {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-65px);
    transform: translateX(-65px);
  }

  50.001% {
    -webkit-transform: translateX(65px);
    transform: translateX(65px);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes left-out-right-in {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-65px);
    transform: translateX(-65px);
  }

  50.001% {
    -webkit-transform: translateX(65px);
    transform: translateX(65px);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes right-out-left-in {
  0% {
    -webkit-transform: translateX(0) rotate(180deg);
    transform: translateX(0) rotate(180deg);
  }

  50% {
    -webkit-transform: translateX(65px) rotate(180deg);
    transform: translateX(65px) rotate(180deg);
  }

  50.001% {
    -webkit-transform: translateX(-65px) rotate(180deg);
    transform: translateX(-65px) rotate(180deg);
  }

  to {
    -webkit-transform: translateX(0) rotate(180deg);
    transform: translateX(0) rotate(180deg);
  }
}
@keyframes right-out-left-in {
  0% {
    -webkit-transform: translateX(0) rotate(180deg);
    transform: translateX(0) rotate(180deg);
  }

  50% {
    -webkit-transform: translateX(65px) rotate(180deg);
    transform: translateX(65px) rotate(180deg);
  }

  50.001% {
    -webkit-transform: translateX(-65px) rotate(180deg);
    transform: translateX(-65px) rotate(180deg);
  }

  to {
    -webkit-transform: translateX(0) rotate(180deg);
    transform: translateX(0) rotate(180deg);
  }
}
@-webkit-keyframes mouse-scroll {
  0%,to {
    -webkit-transform: scaleY(0.4) translateY(0);
    transform: scaleY(0.4) translateY(0);
  }

  20% {
    -webkit-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }

  60% {
    -webkit-transform: scaleY(0.4) translateY(6px);
    transform: scaleY(0.4) translateY(6px);
  }
}
@keyframes mouse-scroll {
  0%,to {
    -webkit-transform: scaleY(0.4) translateY(0);
    transform: scaleY(0.4) translateY(0);
  }

  20% {
    -webkit-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }

  60% {
    -webkit-transform: scaleY(0.4) translateY(6px);
    transform: scaleY(0.4) translateY(6px);
  }
}
@-webkit-keyframes scale-up {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes scale-up {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@-webkit-keyframes scale-up-x {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes scale-up-x {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@-webkit-keyframes scale-down-x {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  to {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@keyframes scale-down-x {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  to {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@-webkit-keyframes flip-from-right {
  0% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
  }

  0.001% {
    opacity: 1;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}
@keyframes flip-from-right {
  0% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
  }

  0.001% {
    opacity: 1;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}
.animate-flip-from-right {
  opacity: 0;
  -webkit-animation: flip-from-right 1.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation: flip-from-right 1.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.animate-stroke, .homepage-advantages-animate-first .homepage-advantages-house-icon {
  -webkit-animation: stroke-dash 3s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation: stroke-dash 3s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  stroke-dasharray: 1000;
}

.animate-fade-in {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-fade-in, .animate-fade-in-up {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animate-fade-in-up {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-fade-out-up {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-fade-in-down, .animate-fade-out-up {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animate-fade-in-down {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-fade-in-left {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-fade-in-left, .animate-fade-in-right {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animate-fade-in-right {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-zoom-out {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-zoom-out, .animation-slide-in-down {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animation-slide-in-down {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-slide-in-left {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-slide-in-left, .animate-slide-in-right {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animate-slide-in-right {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-iteration-count: 1s;
  animation-iteration-count: 1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate-line-fade-in-left {
  -webkit-animation: line-fade-in-left 1s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation: line-fade-in-left 1s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

.animate-line-fade-in-right {
  -webkit-animation: line-fade-in-right 1s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation: line-fade-in-right 1s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

.animate-width {
  -webkit-animation: width-fill 2.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation: width-fill 2.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.animation-delay-1 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.animation-delay-01 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.animation-delay-2 {
  -webkit-animation-delay: 2s !important;
  animation-delay: 2s !important;
}

.animation-delay-02 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.animation-delay-3 {
  -webkit-animation-delay: 3s !important;
  animation-delay: 3s !important;
}

.animation-delay-03 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.animation-delay-4 {
  -webkit-animation-delay: 4s !important;
  animation-delay: 4s !important;
}

.animation-delay-04 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.animation-delay-5 {
  -webkit-animation-delay: 5s !important;
  animation-delay: 5s !important;
}

.animation-delay-05 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.animation-delay-06 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}

.animation-delay-7 {
  -webkit-animation-delay: 7s !important;
  animation-delay: 7s !important;
}

.animation-delay-07 {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}

.animation-delay-8 {
  -webkit-animation-delay: 8s !important;
  animation-delay: 8s !important;
}

.animation-delay-08 {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}

.animation-delay-9 {
  -webkit-animation-delay: 9s !important;
  animation-delay: 9s !important;
}

.animation-delay-09 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}

.animation-delay-10 {
  -webkit-animation-delay: 10s !important;
  animation-delay: 10s !important;
}

.animation-delay-010 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.animate-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

/* --------------------- base ----------------------------*/
/* --------------------- typography ----------------------------*/
@font-face {
  font-family: "GoBold";
  src: url("/Content/fonts/gobold/Gobold Regular.otf");
}
h1, h2, h3, h4, h5, h6 {
  font-family: "GoBold", arial;
  text-transform: uppercase;
}

h1.dark, h2.dark, h3.dark, h4.dark, h5.dark, h6.dark, p.dark {
  color: #2e3537 !important;
}

h1.light, h2.light, h3.light, h4.light, h5.light, h6.light, p.light {
  color: #707a7d !important;
}

h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, p.white {
  color: white !important;
}

.big-title {
  font-size: 46px;
  color: #2e3537;
  line-height: 150%;
}

.big-title-nm {
  font-size: 38px;
  color: #2e3537;
  line-height: 1.2;
}

.big-title-page {
  font-size: 48px;
  color: #2e3537;
  line-height: 1.2;
}

.medium-upper-title {
  font-size: 30px;
  color: #2e3537;
  line-height: 150%;
}

.medium-title {
  font-size: 20px !important;
  color: #2e3537;
  line-height: 150%;
}

.mini-title {
  font-size: 16px;
  color: #2e3537;
  line-height: 150%;
}

.mini-title2 {
  font-size: 20px;
  color: #2e3537;
  line-height: 150%;
}

.paragraph {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
  color: #707a7d;
  line-height: 31px;
  letter-spacing: 2px;
  padding: 0;
}

.tag {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  color: white;
  line-height: 31px;
  background: #00b900;
  letter-spacing: 2px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.big-paragraph {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
  color: #707a7d;
  line-height: 31px;
  letter-spacing: 2px;
  padding: 90px 7% 43px 7%;
}

.announce {
  max-width: 100%;
  width: 600px;
}

.mega-title-specs {
  font-size: 29px;
  text-align: center;
  color: #707a7d;
  line-height: 1;
  letter-spacing: 6px;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 40px 0;
  background-size: 0;
}

.mega-title-grey {
  font-size: 44px;
  color: #e3e9eb;
  line-height: 1;
  letter-spacing: 10px;
}

.mega-title-banner {
  position: absolute;
  bottom: 0;
  z-index: 5;
  left: 53%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 108px;
  opacity: 0.3;
  color: white;
  line-height: 1;
  letter-spacing: 5px;
}

.mega-title-gallery {
  font-size: 84px;
  color: #e3e9eb;
  line-height: 1;
  letter-spacing: 10px;
}

.mega-title-white {
  font-size: 44px;
  color: white;
  line-height: 1;
  letter-spacing: 10px;
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  .mega-title-specs {
    font-size: 64px;
    color: #fff;
    text-align: left;
    padding: 54px 0 59px 160px;
    background-size: 136px;
    margin-top: 0px;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
  }
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .mega-title-specs {
    font-size: 94px;
    padding: 154px 0 159px 260px;
    background-size: 244px;
    margin-top: -100px;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
  }

  .mega-title-grey {
    font-size: 164px;
    color: #e3e9eb;
    line-height: 1;
    letter-spacing: 10px;
  }

  .mega-title-gallery {
    font-size: 164px;
    color: #e3e9eb;
    line-height: 1;
    letter-spacing: 10px;
    margin-bottom: -44px;
  }

  .mega-title-white {
    font-size: 164px;
    color: white;
    line-height: 1;
    letter-spacing: 10px;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  .mega-title-specs {
    font-size: 164px;
    padding: 154px 0 159px 360px;
    background-size: 344px;
    margin-top: -100px;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
  }
}
/* HUGE Devices, Wide Screens */
@media only screen and (min-width: 2050px) {
  .mega-title-specs {
    margin-bottom: -100px;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
  }
}
/* --------------------- typography ----------------------------*/
/* --------------------- buttons ----------------------------*/
.btn {
  font-family: "GoBold", arial;
}

.btn-default {
  font-size: 21px;
  padding: 13px 47px;
  color: #2e3537;
  border: 2px solid #2e3537;
  border-radius: 0;
  background: none;
  text-transform: uppercase;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.btn-default:hover {
  color: #00b900;
  border: 2px solid #00b900;
  background: none;
  box-shadow: none;
}

.btn-small {
  font-size: 16px;
  padding: 13px 47px;
  color: white;
  border: 2px solid #2e3537;
  border-radius: 0;
  background: #2e3537;
  text-transform: uppercase;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.btn-small:hover {
  color: white;
  border: 2px solid #00b900;
  background: #00b900;
  box-shadow: none;
}

a.btn-link, a.btn-link:focus {
  text-align: center;
  padding: 15px 60px;
  font-family: "GoBold";
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  text-decoration: none;
}

a.btn-colorGreyDark, a.btn-colorGreyDark:focus {
  border: 2px solid #2e3537;
  color: #2e3537 !important;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

a.btn-colorGreyDark:hover {
  border: 2px solid #2e3537;
  color: white !important;
  background: #2e3537;
  text-decoration: none;
}

a.btn-colorGreen, a.btn-colorGreen:focus {
  border: 2px solid #00b900;
  cursor: pointer;
  color: #00b900;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

a.btn-colorGreen:hover {
  border: 2px solid #00b900;
  color: white;
  background: #00b900;
  text-decoration: none;
}

a.btn-colorWhite, a.btn-colorWhite:focus {
  border: 2px solid white;
  color: white;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

a.btn-colorWhite:hover {
  border: 2px solid white;
  color: #2e3537;
  background: white;
  text-decoration: none;
}

.btn-colorWhite2, .btn-colorWhite2:focus {
  border: 2px solid white;
  color: white;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  position: relative;
  z-index: 2;
}

.btn-colorWhite2:hover {
  border: 2px solid #00b900;
  position: relative;
  color: white;
  background: #00b900;
  text-decoration: none;
  z-index: 2;
}

#btnTopPages {
  position: fixed;
  bottom: 65px;
  right: 20px;
  z-index: 9999;
  background: #00b900;
  padding: 3px 5px;
}

#btnTopPages a, #btnTopPages a:focus, #btnTopPages:hover {
  color: white !important;
  text-decoration: inherit;
  background: #00b900;
}

.btn-colorGreen2, .btn-colorGreen2:focus {
  border: 2px solid #00b900;
  color: #00b900;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  text-shadow: 0 0px 0 #fff;
}

.btn-colorGreen2:hover {
  border: 2px solid #00b900;
  color: white;
  background: #00b900;
  text-decoration: none;
}

a.btn-colorGreen3, a.btn-colorGreen3:focus {
  background: #00b900;
  border: 2px solid #00b900;
  color: white !important;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

a.btn-colorGreen3:hover {
  border: 2px solid #2e3537;
  background: #2e3537;
  color: white !important;
  text-decoration: none;
}

/* --------------------- end buttons ----------------------------*/
.nav-tabs {
  border-bottom: 1px solid #707a7d;
}

.nav-tabs > li > a {
  margin-right: 33px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-bottom: 5px solid transparent;
  border-radius: none;
  font-size: 20px;
  line-height: 46px;
  font-family: "GoBold";
  text-transform: uppercase;
  border-radius: none;
  color: #707a7d;
  letter-spacing: 2px;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  border-color: transparent;
}
.nav-tabs > li > a:hover {
  background: none;
  border-color: transparent;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  color: #2e3537;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #2e3537;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  cursor: default;
  border-color: transparent;
  border-bottom: 5px solid #2e3537;
}

.table-striped > tbody > tr {
  background-color: #fefefe;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #fefefe;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  padding: 16px 5%;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
}

th {
  width: 25%;
}

.homepage-hero-slider-arrow-next {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 115px;
  left: 50%;
}

.slider-arrow-next {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
}

.slider-arrow-next, .slider-arrow-prev {
  width: 64px;
  height: 64px;
  margin-top: -32px;
  overflow: hidden;
  line-height: 64px;
  text-align: center;
  background-color: #2e3537;
}

.slider-arrow-next .icon {
  left: 2px;
}

.slider-arrow-next .icon, .slider-arrow-prev .icon {
  position: relative;
  z-index: 1;
  color: white;
  transition: 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition-property: color,left,-webkit-transform;
  transition-property: color,left,transform;
  transition-property: color,left,transform,-webkit-transform;
}

svg:not(:root) {
  overflow: hidden;
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-md {
  font-size: 22px;
}

.slick-arrow .icon {
  width: 1em;
  height: 1em;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  -webkit-mask: url(../../Content/images/back.svg) no-repeat 50% 50%;
  mask: url(../../Content/images/back.svg) no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: white;
}

.btn-animated:after, .btn-default-bordered:after, .btn-gray-darker:after, .btn-gray-lighter-bordered:after, .btn-white-bordered:after, .btn-white:after, .slider-arrow-next:after, .slider-arrow-prev:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.btn-animated:hover:after, .btn-default-bordered:hover:after, .btn-gray-darker:hover:after, .btn-gray-lighter-bordered:hover:after, .btn-white-bordered:hover:after, .btn-white:hover:after, .slider-arrow-next:hover:after, .slider-arrow-prev:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.slider-arrow-next, .slider-arrow-prev {
  width: 64px;
  height: 64px;
  margin-top: -32px;
  overflow: hidden;
  line-height: 64px;
  text-align: center;
  background-color: #2e3537;
  border: none;
}

.slider-arrow-next .icon, .slider-arrow-prev .icon {
  position: relative;
  z-index: 1;
  color: #2e3537;
  transition: 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition-property: color,left,-webkit-transform;
  transition-property: color,left,transform;
  transition-property: color,left,transform,-webkit-transform;
}

.slider-arrow-next:after, .slider-arrow-prev:after {
  background-color: #00b900;
}

.slider-arrow-next:hover .icon, .slider-arrow-prev:hover .icon {
  color: #fff;
}

.slider-arrow-next {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
}

.slider-arrow-next .icon {
  left: 2px;
}

.slider-arrow-next:hover .icon {
  -webkit-animation: right-out-left-in 0.4s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation: right-out-left-in 0.4s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}

.slider-arrow-prev {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 1;
}

.slider-arrow-prev .icon {
  left: -2px;
}

.slider-arrow-prev:hover .icon {
  -webkit-animation: left-out-right-in 0.4s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation: left-out-right-in 0.4s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}

.homepage-hero-slider-arrow-prev {
  position: absolute;
  cursor: pointer;
  bottom: auto;
  left: 0px;
}

.homepage-hero-slider-arrow-next {
  position: absolute;
  right: 0px;
  bottom: auto;
  cursor: pointer;
}

.controls-colours {
  box-sizing: border-box;
}
.controls-colours a.test {
  position: absolute;
  top: 46%;
  margin-top: -16px;
  outline: 0;
  text-indent: -9999px;
  z-index: 9999;
  background-color: white;
  color: #e3e9eb;
  border: 2px solid #e3e9eb;
  width: 64px;
  height: 64px;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  cursor: pointer;
  background: url(../../Content/images/back.svg);
  background-size: 30px 30px;
}
.controls-colours a.test:hover {
  color: #707a7d;
  border: 2px solid #707a7d;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.controls-colours .coloursNextBtn {
  right: 0px;
}
.controls-colours .coloursPrevBtn {
  left: 0px;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  color: #2e3537;
}

header {
  position: relative;
  z-index: 999;
}
header .header-top {
  background: #2e3537;
  color: #b3b3b3;
  border-bottom: 5px solid #00b900;
}
@media (min-width: 431px) and (max-width: 500px) {
  header .header-top .pull-right {
    padding-right: 150px;
    margin-bottom: 10px;
  }
}
@media (max-width: 430px) {
  header .header-top .pull-right {
    padding-right: 90px;
    margin-bottom: 10px;
  }
}
header .header {
  background: white;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 8px solid #2e3537;
}

footer .footer-top {
  display: inline-block;
  width: 100%;
  background: black;
}
footer .footer-top .newsletters-class .frm-newsletters {
  margin-top: 50px;
  margin-bottom: 40px;
}
footer .footer-top .newsletters-class .frm-newsletters .frm-div {
  margin-top: 20px;
}
footer .footer-top .newsletters-class .frm-newsletters .title-newsletters {
  border-left: 3px solid #00b900;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  margin-bottom: 10px;
}
footer .footer-top .newsletters-class .frm-newsletters .title-newsletters span {
  font-family: "GoBold", arial;
  font-size: 24px;
}
footer .footer-top .newsletters-class .frm-newsletters p {
  margin-bottom: 15px;
}
footer .footer-top .newsletters-class .frm-newsletters form input {
  border-radius: 0;
  padding: 32px 12px;
  height: 40px;
  font-size: 18px;
}
footer .footer-top .newsletters-class .frm-newsletters form .btn-subscribe {
  padding: 0;
  border-radius: 0;
  border: 0;
}
footer .footer-top .newsletters-class .frm-newsletters form .btn-subscribe button, footer .footer-top .newsletters-class .frm-newsletters form .btn-subscribe button:focus {
  background: #00b900;
  color: white;
  padding: 22px 20px;
  text-decoration: none;
  border-radius: 0;
  border: 0;
  outline: none;
}
footer .footer-center {
  background: url(../../Content/images/footer-bg1.jpg) center center no-repeat #252525;
  color: white;
  padding-top: 70px;
  margin-top: -12px;
}
footer .footer-center .container > .row > div a, footer .footer-center .container > .row > div a:focus {
  color: white;
  text-decoration: none;
}
footer .footer-center .container > .row > div a:hover {
  color: #b3b3b3;
  text-decoration: none;
}
footer .footer-center h3 {
  color: #00b900;
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 20px;
}
footer .footer-center ul {
  padding-left: 0;
  list-style: none;
}
footer .footer-center ul li {
  margin-bottom: 20px;
}
footer .footer-center .social-icon img {
  margin-left: 25px;
}
footer .footer-center .phone-class img {
  margin-right: 15px;
}
footer .footer-center .phone-class h5 {
  font-size: 22px;
}
footer .footer-center .phone-class h4 {
  color: #00b900;
  font-size: 14px;
}
footer .footer-center .footer-link {
  border-top: 1px solid #5c5c5c;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
}
footer .footer-center .footer-link ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
footer .footer-center .footer-link ul li {
  display: inline-block;
  color: #b3b3b3;
  font-size: 24px;
}
footer .footer-center .footer-link ul li a, footer .footer-center .footer-link ul li a:focus {
  color: #b3b3b3;
  margin-left: 15px;
  margin-right: 15px;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  font-family: "GoBold", arial;
  font-size: 18px;
  text-decoration: none;
}
footer .footer-center .footer-link ul li a:hover {
  color: white;
  text-decoration: none;
}
footer .footer-center .class-about p {
  margin-top: 30px;
  margin-bottom: 30px;
}
footer .footer-bottom {
  background: black;
  color: #b3b3b3;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .footer-bottom a, footer .footer-bottom a:focus {
  color: #b3b3b3;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  text-decoration: none;
}
footer .footer-bottom a:hover {
  color: white;
  text-decoration: none;
}

/*------------------------ begin banner-home -----------------------------*/
@media (min-width: 961px) {
  .banner-home {
    overflow: hidden;
    position: relative;
  }
  .banner-home #carousel img {
    display: block;
    float: left;
  }
  .banner-home .caroufredsel_wrapper {
    height: 505px !important;
  }
}
@media (max-width: 960px) {
  .banner-home {
    overflow: hidden;
    position: relative;
  }
  .banner-home .caroufredsel_wrapper {
    height: 168px !important;
  }
  .banner-home .caroufredsel_wrapper ul li img {
    width: 320px;
    height: 168px;
  }
}
.banner-home ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.banner-home ul li {
  display: block;
  float: left;
}
.banner-home ul li .text-banner {
  text-shadow: 0 0px 0px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  color: white;
}
@media (min-width: 1200px) {
  .banner-home ul li .text-banner {
    margin-left: 0.5%;
    text-align: left;
    max-width: 600px;
    position: absolute;
    margin-top: 80px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .banner-home ul li .text-banner {
    margin-left: 1.4%;
    text-align: left;
    max-width: 600px;
    position: absolute;
    margin-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .banner-home ul li .text-banner {
    margin-left: 1.7%;
    text-align: left;
    max-width: 600px;
    position: absolute;
    margin-top: 100px;
  }
  .banner-home ul li .text-banner h2 {
    font-size: 30px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .banner-home ul li .text-banner {
    margin-left: 2.3%;
    text-align: left;
    max-width: 400px;
    position: absolute;
    margin-top: 90px;
  }
  .banner-home ul li .text-banner h2 {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .banner-home ul li .text-banner {
    margin-left: 2.7%;
    text-align: left;
    width: 280px;
    position: absolute;
    margin-top: 60px;
    padding: 20px;
  }
  .banner-home ul li .text-banner h2 {
    font-size: 24px;
  }
  .banner-home ul li .text-banner a {
    font-size: 13px;
  }
}
.banner-home ul li .text-banner h2 {
  font-family: "StemWeb-Bold", Arial, sans-serif;
  font-size: 38px;
  text-transform: uppercase;
  margin-top: 0;
}
.banner-home ul li .text-banner a {
  color: white;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 30px;
  font-weight: 500;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
}
.banner-home ul li .text-banner a:hover, .banner-home ul li .text-banner a:focus {
  color: white;
  text-decoration: inherit;
}
@media (max-width: 767px) {
  .banner-home ul li img {
    float: left;
  }
}
.banner-home .list_carousel.responsive {
  width: auto;
  margin-left: 0;
}

.btn-prev, .btn-next {
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  height: 505px;
  width: 50%;
  top: 0;
  position: absolute;
}
.btn-prev i, .btn-next i {
  width: 50px;
  height: 50px;
  margin-top: 232px;
}

.btn-prev:hover, .btn-next:hover {
  background-color: white;
  background-color: rgba(0, 0, 0, 0.6);
}

.btn-prev:hover i {
  background: url(../../Content/images/left2-icon.png) right center no-repeat;
}

.btn-next:hover i {
  background: url(../../Content/images/right2-icon.png) right center no-repeat;
}

.btn-prev {
  left: -470px;
}
.btn-prev i {
  background: url(../../Content/images/left1-icon.png) right center no-repeat;
  float: right;
  margin-right: -25px;
}

.btn-next {
  right: -470px;
}
.btn-next i {
  background: url(../../Content/images/right1-icon.png) right center no-repeat;
  float: left;
  margin-left: -25px;
}

/*------------------------ end banner-home -----------------------------*/
.service-class {
  padding-top: 50px;
}
.service-class h2 {
  text-align: center;
  margin: 0 0 10px 0;
}
.service-class h2 span {
  color: #00b900;
}
.service-class .service-box {
  padding-top: 30px;
  padding-bottom: 20px;
  background: #f0f0f0;
}

.slider-box > div {
  max-width: 1200px;
}
.slider-box .list_carousel ul {
  padding: 0;
  list-style: none;
  display: block;
}
.slider-box .list_carousel ul li {
  text-align: center;
  background-color: #707a7d;
  padding: 0;
  margin: 2px;
  display: block;
  float: left;
}
.slider-box .list_carousel ul li a h3, .slider-box .list_carousel ul li a:focus h3 {
  margin-top: -92px;
  margin-bottom: 0;
  line-height: 1.4;
  background: url(../../Content/images/bg-service.png) center top repeat-x;
  z-index: 9;
  position: relative;
  height: 92px;
  color: white;
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.slider-box .list_carousel ul li a:hover {
  text-decoration: none;
}
.slider-box .list_carousel ul li a:hover h3 {
  color: #00b900;
}
.slider-box .list_carousel.responsive {
  width: auto;
  margin-left: 0;
}
.slider-box .pager {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.slider-box .pager a {
  margin: 0 5px;
  text-decoration: none;
}
.slider-box .pager a span {
  width: 30px;
  height: 5px;
  background: #b3b3b3;
  display: inline-block;
  text-indent: -9999px;
}
.slider-box .pager a.selected {
  width: 30px;
  height: 5px;
  background: #00b900;
  display: inline-block;
  text-indent: -9999px;
}

.slider-product > div {
  max-width: 1200px;
}
.slider-product .list_carousel ul {
  padding: 0;
  list-style: none;
  display: block;
}
.slider-product .list_carousel ul li {
  text-align: center;
  background-color: white;
  padding: 15px;
  margin: 10px;
  display: block;
  float: left;
  height: auto !important;
}
.slider-product .list_carousel ul li .box-class img {
  display: -webkit-inline-box;
}
.slider-product .list_carousel ul li .box-class h5 {
  color: black;
  line-height: 1.4;
  height: 75px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 400px) {
  .slider-product .list_carousel ul li .box-class h5 {
    font-size: 18px;
  }
}
@media (max-width: 399px) {
  .slider-product .list_carousel ul li .box-class h5 {
    font-size: 15px;
  }
}
.slider-product .list_carousel ul li .box-class p {
  color: #00b900;
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
  line-height: 1.3;
}
.slider-product .list_carousel ul li .box-class a.btn-more, .slider-product .list_carousel ul li .box-class a.btn-more:focus {
  text-align: center;
  padding: 10px;
  width: 100%;
  max-width: 150px;
  margin-bottom: 10px;
  font-family: "GoBold";
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-decoration: none;
  border: 2px solid #2e3537;
  color: #2e3537;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.slider-product .list_carousel ul li .box-class a.btn-more:hover {
  border: 2px solid #2e3537;
  color: white;
  background: #2e3537;
  text-decoration: none;
}
.slider-product .list_carousel ul li .box-class .icon-class {
  color: #00b900;
  font-size: 24px;
}
.slider-product .list_carousel ul li .box-class .icon-class img {
  margin: 0 10px;
}
.slider-product .list_carousel ul li .box-class .icon-class {
  width: 120px;
  display: inline-block;
}
.slider-product .list_carousel ul li .box-class .icon-class span {
  float: left;
  padding: 5px 5px 0 3px;
  line-height: 0.8;
}
.slider-product .list_carousel ul li .box-class .icon-class a.img-follow {
  width: 23px;
  height: 21px;
  background: url(../../Content/images/follow-icon.svg) center top no-repeat;
  float: left;
  margin-right: 10px;
}
.slider-product .list_carousel ul li .box-class .icon-class a.img-follow:hover {
  background: url(../../Content/images/follow-icon1.svg) center top no-repeat;
}
.slider-product .list_carousel ul li .box-class .icon-class a.img-shop {
  cursor: pointer;
  color: black;
  font-family: "GoBold";
  display: inline-block;
}
.slider-product .list_carousel ul li .box-class .icon-class a.img-shop span {
  font-size: 14px;
}
.slider-product .list_carousel ul li .box-class .icon-class a.img-shop i {
  width: 23px;
  height: 21px;
  background: url(../../Content/images/cart-icon.svg) center top no-repeat;
  float: left;
}
.slider-product .list_carousel ul li .box-class .icon-class a.img-shop:hover i {
  background: url(../../Content/images/cart-icon1.svg) center top no-repeat;
}
.slider-product .list_carousel ul li .box-class:hover {
  text-decoration: none;
}
.slider-product .list_carousel.responsive {
  width: auto;
  margin-left: 0;
}
.slider-product .pager {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.slider-product .pager a {
  margin: 0 5px;
  text-decoration: none;
}
.slider-product .pager a span {
  width: 30px;
  height: 5px;
  background: #b3b3b3;
  display: inline-block;
  text-indent: -9999px;
}
.slider-product .pager a.selected {
  width: 30px;
  height: 5px;
  background: #00b900;
  display: inline-block;
  text-indent: -9999px;
}

.banner-class {
  margin-top: 50px;
  margin-bottom: 20px;
}
.banner-class img {
  margin-bottom: 30px;
}

.twisted-bg {
  background: url(../../Content/images/twisted-background.png) center 60px no-repeat;
}

.content-class {
  background: url(../../Content/images/bg-home.png) center center no-repeat;
}
.content-class .readytoride-class {
  margin-bottom: 30px;
}
.content-class .readytoride-class h2 {
  margin-bottom: 20px;
}
.content-class .readytoride-class h2 span {
  color: #00b900;
}
.content-class .about-class {
  margin-bottom: 30px;
}
.content-class .about-class .about-line {
  border-left: 3px solid #00b900;
  padding-left: 30px;
  padding-top: 150px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.content-class .about-class .about-line h1 {
  margin: 0;
  padding-left: 0;
  line-height: 1.4;
  padding: 0 0 25px 0;
}
@media (min-width: 381px) {
  .content-class .about-class .about-line h1 {
    font-size: 52px;
  }
}
@media (max-width: 380px) {
  .content-class .about-class .about-line h1 {
    font-size: 42px;
  }
}
.content-class .about-class .about-line h1 span {
  color: #00b900;
}
.content-class .about-class a {
  margin-left: 30px;
}
.content-class .about-class img {
  margin-top: 75px;
}

.shopOnline-class {
  margin-bottom: 60px;
}
.shopOnline-class h2 {
  font-size: 60px;
}
.shopOnline-class .title-product {
  margin-top: 40px;
}
.shopOnline-class .title-product h4 {
  text-align: left;
  padding-left: 10px;
  float: left;
}
.shopOnline-class .title-product span {
  width: 75px;
  height: 3px;
  float: left;
  margin-top: 18px;
  margin-left: 10px;
  background: #00b900;
}
.shopOnline-class .box-product {
  padding-bottom: 50px;
}
.shopOnline-class .slider-product ul li {
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.shopOnline-class .slider-product ul li:hover {
  -webkit-box-shadow: 0px 0px 15px 0px #d1d1d1;
  -moz-box-shadow: 0px 0px 15px 0px #d1d1d1;
  box-shadow: 0px 0px 15px 0px #d1d1d1;
}

.events-class {
  background: url(../../Content/images/events-bg.png) center bottom no-repeat #2e3537;
  padding-top: 70px;
  padding-bottom: 70px;
  color: white;
}
.events-class h2 {
  color: white;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 50px;
}
.events-class .btn-colorWhite {
  margin-top: 20px;
  margin-bottom: 40px;
}
.events-class .box-event-3 {
  display: none;
}
@media (min-width: 768px) {
  .events-class .boxNews {
    width: calc(50% - 30px);
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .events-class .boxNews {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.events-class .boxNews .dateMonth {
  width: 136px;
  height: 178px;
  text-indent: -9999px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.events-class .boxNews .desTimeLocation a h3, .events-class .boxNews .desTimeLocation a:focus h3 {
  line-height: 1.4;
  margin-top: 15px;
  color: #00b900;
}
.events-class .boxNews .desTimeLocation a:hover {
  text-decoration: none;
}
.events-class .boxNews:hover .dateMonth {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .events-class .events-right > div > div > div {
    padding-left: 0;
    padding-right: 0;
  }
}

.header-top .pull-left {
  color: white;
  margin-top: 5px;
}
.header-top .pull-left h4 {
  line-height: 1.4;
  margin-top: 17px;
}
.header-top .pull-right {
  margin-top: 5px;
  margin-bottom: 5px;
}
.header-top .pull-right .address {
  float: left;
  margin-right: 30px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 6px;
}
.header-top .pull-right .address img {
  padding-right: 10px;
  float: left;
  margin-top: 12px;
}
.header-top .pull-right .address span {
  float: left;
}
.header-top .pull-right .phone {
  font-family: "GoBold", arial;
  font-size: 26px;
  margin-top: 9px;
}
@media (min-width: 400px) {
  .header-top .pull-right .phone {
    float: left;
    margin-left: 40px;
  }
}
@media (max-width: 399px) {
  .header-top .pull-right .phone {
    display: inline-block;
    width: 195px;
  }
}
.header-top .pull-right .phone img {
  padding-right: 10px;
  float: left;
  padding-top: 7px;
}
.header-top .pull-right .phone p {
  text-transform: uppercase;
  color: #00b900;
  margin: 0;
  text-align: right;
  line-height: 0.5;
}
.header-top a, .header-top a:focus, .header-top a:hover {
  color: white;
  text-decoration: none;
}

.header .menu-desktop {
  font-family: "GoBold", arial;
  margin-top: 18px;
  /*ul {
  	@media(min-width: 1200px) {
  		margin-right: 20px;
  	}
  	@media(min-width:993px) and (max-width:1199px) {
  		margin-right: 5px;
  	}
  	li {
  		a {				
  			@media(min-width:1401px) {
  				padding: 15px 30px;
  				font-size: 18px;
  			}
  			@media(min-width:1200px) and (max-width:1400px) {
  				padding: 15px 20px;
  				font-size: 18px;
  			}
  			@media(min-width:993px) and (max-width:1199px) {
  				padding: 12px 13px;
  				font-size: 15px;
  				margin-top: 3px;
  			}
  			@media(min-width:768px) and (max-width:992px) {
  				padding: 15px 20px;
  				font-size: 16px;
  			}
  		}			
  		a, a:focus {
  			color: $colorGreyDark;
  		}
  		a:hover {
  			background: $colorGreen !important;
  			color: $colorWhite;
  		}
  		.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  			background: $colorGreen;
  			color: $colorWhite;
  		}
  	}
  }
  .icon-header {
  	img {			
  		margin-top: 5px;
  		margin-left: 10px;
  	}
  }*/
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header {
    text-align: center;
  }
  .header .logo-class {
    float: none !important;
  }
  .header .logo-class img {
    display: -webkit-inline-box;
  }
  .header .menu-desktop {
    float: none !important;
    display: -webkit-inline-box;
  }
}

.follow-class {
  padding-top: 60px;
  padding-bottom: 40px;
}
.follow-class h2 {
  margin-bottom: 30px;
  margin-top: 0;
  text-align: center;
}
@media (max-width: 380px) {
  .follow-class h2 {
    font-size: 36px;
  }
}
.follow-class h2 span {
  color: #00b900;
}
.follow-class .instagram-class a .item-instagram {
  margin-bottom: 30px;
  position: relative;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.follow-class .instagram-class a .item-instagram .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 9;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  background: url(../../Content/images/instagram-bg.png) center center no-repeat;
}
.follow-class .instagram-class a:hover .item-instagram .overlay, .follow-class .instagram-class a.active .item-instagram .overlay {
  opacity: 1;
  background-size: contain;
}
.follow-class .box-resize {
  width: 100%;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  position: relative;
}
.follow-class .box-resize > .resize-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.follow-class .box-resize > .resize-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.content-page .header-class .title-header {
  height: 425px;
  color: white;
}
.content-page .header-class .title-header > div {
  padding-top: 100px;
}
@media (min-width: 768px) {
  .content-page .header-class .title-header > div {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .content-page .header-class .title-header > div {
    padding-top: 70px;
  }
}
.content-page .header-class .title-header h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .content-page .header-class .title-header h1 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .content-page .header-class .title-header h1 {
    font-size: 36px;
  }
}
.content-page .header-class .title-header h1 span {
  color: #00b900;
}
.content-page .header-class .title-header h2 {
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .content-page .header-class .title-header h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .content-page .header-class .title-header h2 {
    font-size: 18px;
  }
}
.content-page .content-class {
  padding-top: 60px;
  padding-bottom: 60px;
}
.content-page .content-class h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 46px;
  line-height: 1.2;
  /*span {
  	color: $colorGreen;
  }*/
}
.content-page .content-class h3 {
  margin-top: 0;
}
.content-page .content-class button {
  font-size: 20px;
}
.content-page .content-class .cl-validate {
  font-size: 14px;
  color: #00b900;
}
.content-page .content-class table tr {
  line-height: 1.8;
}
.content-page .content-class a, .content-page .content-class a:focus {
  color: #00b900;
}
.content-page .content-class a:hover {
  color: #2e3537;
  text-decoration: none;
}

.contact-page .title-header {
  background: black url("/Content/images/banner-pages/banner-contact.jpg") center top no-repeat;
}

.service-page .title-header {
  background: black url("/Content/images/banner-pages/banner-service.jpg") center top no-repeat;
}

.finance-page .title-header {
  background: black url("/Content/images/banner-pages/banner-finance.jpg") center top no-repeat;
}

.about-page .title-header {
  background: black url("/Content/images/banner-pages/banner-about.jpg") center top no-repeat;
}

hr.line-header {
  width: 140px;
  height: 5px;
  text-align: center;
  background: #00b900;
  border-top: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.form-control {
  border-radius: 0;
  padding: 10px 12px;
}

input.form-control {
  height: 40px;
}

.finance-page .content-class {
  padding-bottom: 0;
}
.finance-page .finance-bg-1 .calc-box {
  background: #e3e9eb;
  padding: 25px 40px;
}
.finance-page .finance-bg-1 .calc-box h4 {
  font-size: 24px;
}
.finance-page .finance-bg-2 {
  background: url(../../Content/images/events-bg.png) center bottom no-repeat #2e3537;
  padding-top: 70px;
  padding-bottom: 70px;
  color: white;
}
.finance-page .finance-bg-2 h3 {
  font-size: 42px;
}
.finance-page .btn-sendEmail {
  border: 2px solid white;
  color: white;
  text-shadow: 0 0 0 transparent;
}
.finance-page .btn-sendEmail:hover {
  border: 2px solid #00b900;
  color: #00b900;
  text-shadow: 0 0px 0 #fff;
}

.about-page .content-class h3 {
  margin-top: 55px;
}

a.btn-direction, a.btn-direction:focus {
  border: 2px solid #00b900;
  background: #00b900;
  color: white !important;
  text-align: center;
  padding: 10px 40px;
  font-family: "GoBold";
  font-size: 18px;
  line-height: 1.6;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 30px;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
a.btn-direction i, a.btn-direction:focus i {
  background: url(../../Content/images/location-icon.svg) left center no-repeat;
  float: left;
  width: 35px;
  height: 30px;
}

a.btn-direction:hover {
  border: 2px solid #2e3537;
  background: #2e3537;
  color: white !important;
}
a.btn-direction:hover i {
  background: url(../../Content/images/location-icon.svg) left center no-repeat;
}

a.btn-direction2 i, a.btn-direction2:focus i {
  background: url(../../Content/images/location-icon.svg) left center no-repeat;
}

.vehicleList-info .vehicleList-specifications p i {
  background-image: url("../../Content/images/iconStockView19_Bike.png");
  background-repeat: no-repeat;
  float: left;
  width: 100%;
  height: 25px;
}
.vehicleList-info .vehicleList-specifications p.cl-type i {
  background-position: center -95px;
}
.vehicleList-info .vehicleList-specifications p.cl-displacement i {
  background-position: center -30px;
}
.vehicleList-info .vehicleList-specifications p.cl-odometer i {
  background-position: center 0;
}
.vehicleList-info .vehicleList-specifications p.cl-stocknumber i {
  background-position: center -64px;
}

.container-listview19 .container-filter-top {
  background: #2e3537;
  border-radius: 0px;
  padding: 15px 15px 0 15px;
  margin-bottom: 30px;
}
.container-listview19 .container-filter-top .div-search-5 {
  padding-bottom: 5px;
}
.container-listview19 .container-filter-top .div-search-5 input.btn-filter {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline: none;
  background: #2e3537;
  border: 2px solid white;
  border-radius: 0px;
  padding: 8px 12px;
  width: 100%;
  font-size: 16px;
}
.container-listview19 .container-filter-top .div-search-5 input.btn-filter:hover {
  background: #5c5c5c;
  color: white !important;
  box-shadow: inset 0 0px 0px transparent;
}
.container-listview19 .container-filter-top .div-sortby-1 {
  background: rgba(0, 0, 0, 0.25);
  padding-top: 15px;
  padding-bottom: 5px;
}
.container-listview19 .container-filter-top .div-sortby-1 .count-vehicles {
  color: white;
  font-size: 18px;
}
.container-listview19 .container-filter-top .div-sortby-1 .count-vehicles b {
  font-size: 24px;
}
.container-listview19 .container-filter-top .div-sortby-1 .title-current {
  color: white;
  font-size: 18px;
  text-align: right;
  line-height: 2;
}
@media (max-width: 767px) {
  .container-listview19 .container-filter-top .div-sortby-1 .title-current {
    text-align: left;
  }
}
.container-listview19 .container-filter-top select.form-control {
  font-size: 13px;
  line-height: 2.4em;
  height: 41px;
  padding: 10px;
  margin-bottom: 10px;
}
.container-listview19 .vehicleList-img {
  width: 100%;
  padding-top: 65%;
  /* 1:1 Aspect Ratio */
  position: relative;
}
.container-listview19 .vehicleList-img .resize-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.container-listview19 .vehicleList-img .resize-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.container-listview19 .vehicleList {
  background: #fefefe;
  box-shadow: 0 0 19px 4px #eee;
  display: block;
  margin-bottom: 30px;
  color: #2e3537;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 0px;
}
.container-listview19 .vehicleList .vehicleList-title h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px;
  font-size: 16px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  color: #2e3537;
}
.container-listview19 .vehicleList .vehicleList-info .vehicleList-specifications {
  background: #f1f1f1;
  padding: 10px 10px 0px 10px;
  height: 65px;
}
.container-listview19 .vehicleList .vehicleList-info .vehicleList-specifications .col-xs-3 {
  padding-left: 10px;
  padding-right: 10px;
}
.container-listview19 .vehicleList .vehicleList-info .vehicleList-specifications .col-xs-3 p {
  margin: 0;
  font-size: 14px;
}
.container-listview19 .vehicleList .vehicleList-info .vehicleList-description {
  padding: 0 15px;
  margin: 15px 0;
  display: -webkit-box;
  height: 70px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.container-listview19 .vehicleList:hover {
  box-shadow: 0 0 19px 4px #ddd;
  border-radius: 0px;
}
.container-listview19 .vehicleList:hover h3 {
  color: #00b900;
}
.container-listview19 .vehicleList a:hover, .container-listview19 .vehicleList a:focus {
  text-decoration: initial;
}

.justify-content-md-center {
  text-align: center;
}
.justify-content-md-center ul.pagination {
  margin-top: 0;
}
.justify-content-md-center ul.pagination li a {
  color: #2e3537;
  background-color: #f0f0f0;
  border-radius: 0;
  float: left;
  padding: 5px 10px;
  border: 1px solid #e1e2e2;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}
.justify-content-md-center ul.pagination li.active a {
  background-color: #00b900;
  color: white;
  border-radius: 0;
  float: left;
  padding: 5px 10px;
  border: 1px solid #00b900;
}

.container-detailview12 {
  margin-top: 60px;
  margin-bottom: 50px;
}
.container-detailview12 .product-title {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.container-detailview12 .product-title h2 {
  margin-top: 10px;
  float: left;
  font-size: 24px;
}
.container-detailview12 .product-title .cl_search_results a {
  background: #2e3537;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  color: white;
  float: left;
  width: 100%;
  text-decoration: none;
}
.container-detailview12 .product-title .product-header {
  float: right;
}
.container-detailview12 .product-title .product-header .product-price {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 24px;
  line-height: 1.4;
}
.container-detailview12 .product-title .product-header .drive-away-label {
  font-size: 13px;
}
.container-detailview12 .widget.form {
  background: #e3e9eb;
  padding: 15px;
  margin-bottom: 30px;
}
.container-detailview12 .widget.form h3 {
  border-bottom: 0;
  font-size: 22px;
  margin-top: 5px;
  padding-bottom: 5px;
  font-weight: normal;
}
.container-detailview12 .widget.form label {
  font-weight: inherit;
}
.container-detailview12 .product-slider {
  margin-bottom: 20px;
}
.container-detailview12 .product-comments {
  margin-bottom: 40px;
}
.container-detailview12 .product-comments h3 {
  background: #e3e9eb;
  font-size: 24px;
  padding: 15px;
}
.container-detailview12 #btnSendMail {
  font-size: 20px;
  text-align: center;
  display: block;
  background: #2e3537;
  color: white;
  padding: 10px;
  text-transform: uppercase;
  width: 100%;
  border-radius: 0;
  border: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.container-detailview12 #btnSendMail:hover {
  background: #00b900;
  color: white !important;
  box-shadow: inset 0 0px 0px transparent;
}

@media (min-width: 993px) {
  .container-detailview12 .product-title {
    background: #e3e9eb;
  }
  .container-detailview12 .product-title .col-md-4.col-lg-3 {
    float: right;
  }
  .container-detailview12 .product-title .col-md-4.col-lg-3 .cl_search_results {
    margin-right: -15px;
    margin-left: 8px;
  }
}
@media (max-width: 992px) {
  .container-detailview12 .product-title .col-md-8.col-lg-9 {
    background: #e3e9eb;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
  }
  .container-detailview12 .product-title .col-md-4.col-lg-3 {
    float: left;
  }
  .container-detailview12 .product-title .col-md-4.col-lg-3 .cl_search_results {
    margin-left: -15px;
  }
  .container-detailview12 .product-title .col-md-4.col-lg-3 .cl_search_results a {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .main-content .tab-content {
    padding: 30px 20px;
  }
  .main-content .tab-content .frm2-calculator {
    margin: 30px 20%;
  }
}
.main-content .tab-content h4 {
  margin-bottom: 20px;
}
.main-content .tab-content .vehicle-detail-body table tr th {
  font-weight: 500;
}
.main-content .tab-content .vehicle-detail-body table tr th, .main-content .tab-content .vehicle-detail-body table tr td {
  border-top: 1px solid #ddd;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading {
  padding-bottom: 0;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading a {
  padding-left: 10px;
  padding-right: 10px;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading a:hover {
  background: #fbfbfb;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading i {
  margin-right: 10px;
}
.main-content ul.nav-tabs {
  border-bottom: 0;
  text-align: center;
}
.main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
  background: #e3e9eb;
  background-image: url("/Content/images/icondetails12.png");
  background-repeat: no-repeat;
  float: left;
  height: 90px;
}
@media (min-width: 768px) {
  .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li:hover a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
    width: 49%;
    margin: 0.5%;
  }
}
.main-content ul.nav-tabs li a, .main-content ul.nav-tabs li a:hover, .main-content ul.nav-tabs li:hover a, .main-content ul.nav-tabs li:hover a:hover {
  background-color: transparent;
  border: 0;
  color: #272727;
  padding-top: 48px;
  margin-right: 0;
  font-size: 18px;
}
@media (min-width: 993px) and (max-width: 1100px) {
  .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li a:hover, .main-content ul.nav-tabs li:hover a, .main-content ul.nav-tabs li:hover a:hover {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li a:hover, .main-content ul.nav-tabs li:hover a, .main-content ul.nav-tabs li:hover a:hover {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li a:hover, .main-content ul.nav-tabs li:hover a, .main-content ul.nav-tabs li:hover a:hover {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 4px;
  }
}
.main-content ul.nav-tabs li.tabs1, .main-content ul.nav-tabs li.tabs1:hover {
  background-position: center 5px;
}
.main-content ul.nav-tabs li.tabs2, .main-content ul.nav-tabs li.tabs2:hover {
  background-position: center -195px;
}
.main-content ul.nav-tabs li.tabs3, .main-content ul.nav-tabs li.tabs3:hover {
  background-position: center -195px;
}
.main-content ul.nav-tabs li.tabs4, .main-content ul.nav-tabs li.tabs4:hover {
  background-position: center -395px;
}
.main-content ul.nav-tabs li.tabs5, .main-content ul.nav-tabs li.tabs5:hover {
  background-position: center -585px;
}
.main-content ul.nav-tabs li.active {
  background: #2e3537;
  background-image: url("/Content/images/icondetails12.png");
  background-repeat: no-repeat;
  float: left;
  height: 90px;
}
@media (min-width: 768px) {
  .main-content ul.nav-tabs li.active {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-content ul.nav-tabs li.active a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .main-content ul.nav-tabs li.active {
    width: 49%;
    margin: 0.5%;
  }
}
.main-content ul.nav-tabs li.active a, .main-content ul.nav-tabs li.active a:hover {
  background-color: transparent;
  border: 0;
  color: white;
  padding-top: 48px;
  margin-right: 0;
}
.main-content ul.nav-tabs li.tabs1.active {
  background-position: center -95px;
}
.main-content ul.nav-tabs li.tabs2.active {
  background-position: center -295px;
}
.main-content ul.nav-tabs li.tabs3.active {
  background-position: center -295px;
}
.main-content ul.nav-tabs li.tabs4.active {
  background-position: center -495px;
}
.main-content ul.nav-tabs li.tabs5.active {
  background-position: center -665px;
}
.main-content .panel-group .panel {
  box-shadow: 0 0px 0px transparent;
  border: 0;
  border-radius: 0;
}
.main-content .panel-group .panel .panel-heading {
  background: transparent;
  padding: 0 0 5px 0;
  border: 1px solid #f0f0f0;
}
.main-content .panel-group .panel .panel-heading a {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-content .panel-group .panel .panel-heading a, .main-content .panel-group .panel .panel-heading a:focus, .main-content .panel-group .panel .panel-heading a:hover {
  text-decoration: none;
}
.main-content .panel-group .panel .panel-heading i {
  position: relative;
  margin-top: -30px;
}
.main-content .panel-group .panel > div.panel-collapse.collapse, .main-content .panel-group .panel > div.panel-collapse.collapsing, .main-content .panel-group .panel > div.panel-collapse.collapse.in {
  background: #f9f9f9;
  border: 1px solid #f0f0f0;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 2.4;
}

.panel-group .panel + .panel {
  margin-top: 10px;
}

.frm2-calculator div.tooltip {
  background-color: #2e3537 !important;
}

.galleria-container {
  background: #7b7b7b !important;
}

.galleria-fullscreen, .galleria-play {
  border-right: 1px solid rgba(0, 0, 0, 0.3) !important;
  outline: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.galleria-container.notouch .galleria-thumblink:hover,
.galleria-container.touch .galleria-thumblink:active,
.galleria-thumblink.open,
.galleria-container.notouch .galleria-fullscreen:hover,
.galleria-container.touch .galleria-fullscreen:active,
.galleria-container.notouch .galleria-play:hover,
.galleria-container.touch .galleria-play:active,
.galleria-container.notouch .galleria-popout:hover,
.galleria-container.touch .galleria-popout:active {
  background-color: #2e3537 !important;
}

.galleria-info-description {
  margin: 10px 14px 10px !important;
  display: none;
}

.addCart-class i {
  border: 1px solid #7b7b7b;
  cursor: pointer;
}
.addCart-class i:hover {
  border: 1px solid #00b900;
}

.vehicleList-price {
  padding: 0 15px 15px 15px;
  text-align: left;
  display: inline-block;
  width: 100%;
}
.vehicleList-price .price-class {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.vehicleList-price .price-class h4 {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: bold;
}
.vehicleList-price .price-class span {
  font-size: 14px;
}
.vehicleList-price .moreDetails-class {
  float: left;
}
.vehicleList-price .listButton-class {
  float: right;
}
.vehicleList-price .listButton-class i.opencart-icon {
  background: url(../../Content/images/cart-icon.svg) center center no-repeat;
  width: 42px;
  height: 42px;
  display: inline-block;
}

.btn-moreDetails {
  text-align: center;
  display: block;
  background: #2e3537;
  color: white !important;
  color: white;
  padding: 10px 20px;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: 0;
  border-radius: 0;
  text-decoration: none;
}
.btn-moreDetails:hover {
  background: #5c5c5c !important;
  color: white !important;
  box-shadow: inset 0 0px 0px transparent;
  text-decoration: none;
}

.view-cart-page .table > thead > tr > th, .view-cart-page .table > tbody > tr > th, .view-cart-page .table > tfoot > tr > th, .view-cart-page .table > thead > tr > td, .view-cart-page .table > tbody > tr > td, .view-cart-page .table > tfoot > tr > td {
  padding: 15px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
}
.view-cart-page .table th {
  width: auto;
  font-size: 14px;
  color: #888;
}
.view-cart-page .table thead.thead-top {
  background: white;
  color: #2e3537;
}
.view-cart-page .table thead.thead-bottom {
  background: #2e3537;
  color: white;
}
.view-cart-page .table thead.thead-bottom th {
  font-size: 30px;
}
.view-cart-page .table tbody tr {
  border-bottom: 1px solid #e1e2e2;
}
.view-cart-page .table tbody tr td.col-image {
  max-width: 133px;
}
.view-cart-page .table tbody tr img {
  background: white;
}
@media (min-width: 768px) {
  .view-cart-page .table tbody tr img {
    float: left;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .view-cart-page .table tbody tr img {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .view-cart-page .table tbody tr p.title {
    padding-top: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.view-cart-page .table tbody tr p.description {
  color: #999;
  font-size: 13px;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: none;
}
.view-cart-page .table tbody tr p.price {
  font-size: 24px;
}
.view-cart-page .table tbody tr p {
  padding-top: 40px;
}
.view-cart-page .table tbody tr p .form-control {
  width: 80px;
}
.view-cart-page .table tbody tr a.remove-item {
  color: #2e3537;
  fill: currentColor;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  width: 34px;
  height: 34px;
}
.view-cart-page .table tbody tr a.remove-item:hover {
  color: #00b900;
  fill: currentColor;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.view-cart-page .table tbody tr a.remove-item img {
  width: 34px;
  border: none;
}
.view-cart-page a.btn-link, .view-cart-page a.btn-link:focus {
  font-size: 18px;
}
.view-cart-page a.btn-link:hover {
  color: white;
}
.view-cart-page a.btn-continue {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 20px;
  display: inline-block;
  font-family: "GoBold";
  text-decoration: none;
}
.view-cart-page a.btn-continue span {
  font-size: 28px;
  font-weight: 600;
  padding-right: 10px;
}

.login-page .table tbody tr p {
  padding-top: 0;
}
.login-page .frm-login {
  border: 1px solid #cccccc;
  padding: 20px;
  margin-top: 42px;
}
.login-page .frm-login .frm-title-header {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.login-page .frm-login .frm-title-header .radio-item {
  display: inline-block;
  position: relative;
  padding: 0;
}
.login-page .frm-login .frm-title-header .radio-item input[type='radio'] {
  display: none;
}
.login-page .frm-login .frm-title-header .radio-item label {
  font-weight: normal;
  font-size: 18px;
  font-weight: bold;
}
.login-page .frm-login .frm-title-header .radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 10px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  border: 2px solid #00b900;
  background-color: transparent;
}
.login-page .frm-login .frm-title-header .radio-item input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 9px;
  left: 4px;
  content: " ";
  display: block;
  background: #00b900;
}

.product-group {
  margin-top: 60px;
  margin-bottom: 60px;
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.product-group .product-list {
  float: left;
  width: 100%;
}
.product-group .product-list .product-title {
  height: 110px;
}
.product-group .product-list .product-title h3 {
  font-size: 48px;
  font-weight: bold;
  line-height: 65px;
  text-transform: uppercase;
  color: black;
  z-index: 9;
  position: relative;
}
.product-group .product-list .product-title span {
  opacity: 0.31;
  color: #5c5c5c;
  font-size: 65px;
  font-weight: bold;
  line-height: 0px;
  margin-top: -15px;
  margin-left: 65px;
  position: absolute;
  text-transform: uppercase;
}
.product-group .product-list .product-list-boxs {
  margin-bottom: 60px;
  width: 100%;
  display: inline-block;
  text-decoration: none;
}
.product-group .product-list .product-list-boxs .item {
  float: left;
  width: 100%;
  text-align: center;
}
.product-group .product-list .product-list-boxs .item p, .product-group .product-list .product-list-boxs .item span, .product-group .product-list .product-list-boxs .item h4 {
  text-align: left;
  display: -webkit-box;
}
.product-group .product-list .product-list-boxs .item img {
  display: -webkit-inline-box !important;
}
.product-group .product-list .product-list-boxs .item h4 {
  color: black;
  margin-top: 15px;
  height: 60px;
  margin-bottom: 0;
}
@media (min-width: 501px) {
  .product-group .product-list .product-list-boxs .item h4 {
    font-size: 23px;
    line-height: 28px;
  }
}
@media (max-width: 500px) {
  .product-group .product-list .product-list-boxs .item h4 {
    font-size: 16px;
    line-height: 22px;
  }
}
.product-group .product-list .product-list-boxs .item p.title-class {
  color: #5c5c5c;
  font-size: 15px;
  line-height: 20px;
  display: -webkit-box;
  height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
.product-group .product-list .product-list-boxs .item span {
  color: #5c5c5c;
  font-size: 11px;
  line-height: 16px;
  height: 50px;
}
.product-group .product-list .product-list-boxs .item p.btn-viewdetails {
  float: right;
  text-align: center;
  padding: 10px;
  width: 100%;
  max-width: 150px;
  margin-bottom: 10px;
  font-family: "GoBold";
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-decoration: none;
  border: 2px solid #00b900;
  color: #2e3537;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.product-group .product-list .product-list-boxs .item hr {
  border-top: 1px solid #e1e2e2;
  margin-top: 0;
  margin-bottom: 10px;
}
.product-group .product-list .product-list-boxs .vehicleList-price {
  padding: 0;
  margin-top: 5px;
}
.product-group .product-list .product-list-boxs:hover .item h4, .product-group .product-list .product-list-boxs:hover .item p.btn-viewdetails {
  color: #079007;
  text-decoration: none;
}
.product-group .product-list .product-list-boxs:hover p.btn-viewdetails {
  border: 2px solid #00b900;
  color: white !important;
  background: #00b900;
  text-decoration: none;
}

.view-cart-page .title-header {
  background: black url("/Content/images/banner-pages/banner-about.jpg") center top no-repeat;
}

.add-shopping-cart .modal-lg {
  max-width: 1170px;
  width: calc(100% - 20px);
}
.add-shopping-cart .modal-lg .modal-content {
  border-radius: 0;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .close {
  position: absolute;
  right: 8px;
  top: 0px;
  font-size: 32px;
}
@media (min-width: 768px) {
  .add-shopping-cart .modal-lg .modal-content .modal-body {
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup {
    border-bottom: 1px solid #e3e9eb;
  }
}
@media (min-width: 768px) {
  .add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-border-cart {
    border-right: 1px solid #e3e9eb;
  }
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup {
  display: inline-block;
}
@media (min-width: 768px) {
  .add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup {
    padding: 0 40px 20px 0;
  }
}
@media (max-width: 767px) {
  .add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup {
    padding: 0 0 30px 0;
  }
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup .title-cart {
  margin-bottom: 30px;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup .title-cart span {
  float: left;
  font-size: 46px;
  margin-right: 15px;
  color: #00b900;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup .title-cart h2 {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 0;
  display: -webkit-box;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup .info-cart h3 {
  margin-top: 0;
  font-size: 18px;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup .info-cart .img-cart img {
  border: 1px solid #e3e9eb;
  padding: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup .info-cart p {
  margin-bottom: 5px;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .left-box-popup .info-cart h4 {
  color: #00b900;
}
@media (min-width: 768px) {
  .add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .right-box-popup {
    padding: 0 0 20px 15px;
  }
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .right-box-popup h3 {
  margin-top: 0;
  font-size: 18px;
  border-bottom: 1px solid #e3e9eb;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .right-box-popup .total-price {
  margin-bottom: 30px;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .right-box-popup .total-price span {
  color: #00b900;
  float: right;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .right-box-popup .view-cart span {
  padding-top: 10px;
  display: inline-block;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .right-box-popup .view-cart a.btn-more, .add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .right-box-popup .view-cart a.btn-more:focus {
  float: right;
  text-align: center;
  padding: 10px;
  width: 100%;
  max-width: 150px;
  margin-bottom: 10px;
  font-family: "GoBold";
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  text-decoration: none;
  border: 2px solid #00b900;
  color: #2e3537;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .header-cart-popup .right-box-popup .view-cart a.btn-more:hover {
  border: 2px solid #00b900;
  color: white;
  background: #00b900;
  text-decoration: none;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .content-cart-popup h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .content-cart-popup .slider-product {
  margin-left: -10px;
  margin-right: -10px;
}
.add-shopping-cart .modal-lg .modal-content .modal-body .content-cart-popup .slider-product ul li {
  border: 1px solid #e3e9eb;
}

.heroBackground {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 376px;
  width: 750px;
  z-index: 0;
  background-size: cover !important;
  background-position: 50% !important;
}

.heroBackground2Wrap {
  height: 77px;
  width: 175px;
  position: relative;
  float: left;
}

.heroBackground2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 77px;
  width: 175px;
  z-index: 0;
  background-size: cover !important;
  background-position: 50% !important;
}

.shardRight {
  right: 0;
  left: auto;
  bottom: 0;
}

.clubHero .shardLeft {
  left: -1px;
  right: auto;
  top: 0;
}

.shard {
  position: absolute;
  fill: #2e3537;
  height: 100%;
}

.streak {
  position: relative;
  height: 378px;
  overflow: hidden;
}

.streak:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  background-image: url(../../Content/images/streak.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  -ms-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

.my-container:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  background-image: url("http://placekitten.com/1500/1000");
  background-repeat: no-repeat;
  background-position: 50% 0;
  -ms-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

.nm-option-tile {
  margin-top: 80px;
  display: inline-block;
}
.nm-option-tile a {
  width: 99px;
  margin: 1px;
  display: block;
  float: left;
  height: 90px;
  background: black;
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.nm-option-tile a:hover {
  background: #00b900;
  text-decoration: none;
}
.nm-option-tile a img {
  margin-bottom: 6px;
  margin-top: 9px;
}

/*-----------------Navbar for Detail Page */
.fixed {
  z-index: 999;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

#pinnedbar {
  height: 78px;
  padding-left: 15px;
  position: fixed;
  top: -80px;
  z-index: 999;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  -webkit-box-shadow: 0px 0px 14px 0px #000;
  /* Android 2.3+, iOS 4.0.2-4.2, Safari 3-4 */
  box-shadow: 0px 0px 14px 0px #000;
  /* Chrome 6+, Firefox 4+, IE 9+, iOS 5+, Opera 10.50+ */
  /*.calc-box 
  {
  	color: white;
  	.noUi-value-horizontal
  	{
  		color: white;
  	}
  
  }*/
}
#pinnedbar .navbar {
  border-bottom: none;
  margin-bottom: none;
  background: transparent;
  border-radius: 0;
  border: none;
}
#pinnedbar .navbar li a {
  height: 78px;
}
#pinnedbar .navbar li a img.icon {
  margin-top: 3px;
  margin-bottom: 4px;
}
#pinnedbar .navbar li a:link, #pinnedbar .navbar li a:visited, #pinnedbar .navbar li a:focus {
  color: white;
}
#pinnedbar .navbar li a:hover, #pinnedbar .navbar li a:active {
  background: #00b900;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  color: white;
}
#pinnedbar .navbar li a.button {
  background-color: #000;
  padding-left: 26px;
  padding-right: 26px;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  padding-top: 26px;
  margin-right: 3px;
}
#pinnedbar .navbar li a.button:hover {
  background: #00b900;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.calc-box {
  /*color: white;
  .noUi-value-horizontal
  {
  	color: white;
  }*/
}
.calc-box .loan-repayments-class {
  background: #707a7d;
  color: white;
  padding: 5px 0 0 0;
}
.calc-box .loan-repayments-class b {
  font-weight: normal;
}
.calc-box .loan-repayments-class #payment {
  margin-top: 15px;
}

.disc {
  padding-right: 76px;
}

/*------ begin News & Events -----*/
.events-page {
  margin-top: 60px;
  margin-bottom: 60px;
}
.events-page h1 {
  padding-left: 0;
  margin-top: 0;
  font-size: 46px;
}
.events-page .newsEvents {
  z-index: 99;
  position: relative;
}
.events-page .newsEvents .boxNews {
  margin-top: 20px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 20px;
}
.events-page .newsEvents .boxNews .dateMonth {
  width: 65px;
  float: left;
  text-transform: uppercase;
}
.events-page .newsEvents .boxNews .dateMonth .month {
  background: #eff2f4;
  width: 50px;
  display: block;
  text-align: center;
  padding-top: 2px;
  padding-bottom: 2px;
}
.events-page .newsEvents .boxNews .dateMonth .date {
  background: #00b900;
  color: white;
  width: 50px;
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 5px 0;
  line-height: 1.3;
}
.events-page .newsEvents .boxNews .images {
  float: left;
  max-width: 150px;
  margin-right: 15px;
  border: 1px solid #b3b3b3;
  padding: 2px;
}
.events-page .newsEvents .boxNews .images a:hover img {
  opacity: 0.75;
}
.events-page .newsEvents .boxNews .desTimeLocation {
  display: table;
}
.events-page .newsEvents .boxNews .desTimeLocation a {
  color: #fff;
}
.events-page .newsEvents .boxNews .desTimeLocation a h3.description {
  color: #00b900;
  font-size: 18px;
  margin-top: 5px;
  line-height: 1.3;
}
.events-page .newsEvents .boxNews .desTimeLocation a:hover {
  text-decoration: initial;
}
.events-page .newsEvents .boxNews .desTimeLocation a:hover h3.description {
  opacity: 0.75;
}
.events-page .newsEvents .boxNews .desTimeLocation p {
  margin-bottom: 3px;
}
.events-page .newsEvents .boxNews .desTimeLocation .location, .events-page .newsEvents .boxNews .desTimeLocation .time {
  color: #989898;
}
.events-page .newsEvents .clUpcomingEvents h2 {
  margin-top: 0;
  font-size: 36px;
}
.events-page .newsEvents .clUpcomingEvents .BoxUpcomingEvents {
  background: #eff2f4;
  padding: 15px;
}
.events-page .newsEvents .clUpcomingEvents .BoxUpcomingEvents h4 {
  font-size: 24px;
}
.events-page .newsEvents .clUpcomingEvents .BoxUpcomingEvents .day.active a {
  background: #00b900;
}
.events-page .newsEvents .clUpcomingEvents .BoxUpcomingEvents .responsive-calendar .controls a {
  color: #00b900;
}
@media (max-width: 993px) {
  .events-page .clUpcomingEvents h2 {
    padding-top: 40px;
  }
}

/*------ end News & Events -----*/
.icon-header {
  float: left;
  /*img {			
  	margin-top: 10px;
  	margin-left: 10px;
  }*/
}
.icon-header > div {
  float: left;
}

.js-menu {
  font-family: "GoBold", arial;
  text-align: center;
  /*@media (min-width: 993px) and (max-width: 1199px) {
  	margin-top: 15px;
  	.navbar .nav > li {
  		a.top-level {
  			padding: 12px 15px;
  			margin-top: 5px;
  		}
  		a {
  			font-size: 15px;
  		}
  	}
  }*/
}
.js-menu .navbar-default {
  border: none !important;
}
.js-menu .navbar {
  margin-bottom: 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.js-menu .navbar .nav > li a {
  font-weight: normal;
  color: #2e3537;
}
.js-menu .navbar .nav > li a:hover, .js-menu .navbar .nav > li a:focus {
  background: rgba(46, 53, 55, 0.8);
  color: white;
}
.js-menu .navbar-nav > .active > a, .js-menu .navbar-nav > .active > a:hover, .js-menu .navbar-nav > .active > a:focus {
  background: #2e3537 !important;
  color: white !important;
}
@media (min-width: 768px) {
  .js-menu .nav.navbar-nav {
    display: -webkit-inline-box;
    float: none;
    margin-bottom: -9px;
  }
}
@media (min-width: 1541px) {
  .js-menu .navbar .nav > li a.top-level {
    padding: 20px 27px;
  }
  .js-menu .navbar .nav > li a {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .js-menu {
    margin-top: 10px;
  }
  .js-menu .navbar {
    margin-right: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1540px) {
  .js-menu .navbar .nav > li a.top-level {
    padding: 20px 15px;
  }
  .js-menu .navbar .nav > li a {
    font-size: 16px;
  }
  .js-menu .home-menu {
    display: none;
  }
}
@media (min-width: 768px) {
  .js-menu .navbar > .container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .js-menu .navbar-nav {
    margin-left: 0%;
  }
  .js-menu .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-menu {
    margin-top: 15px;
    float: none !important;
    display: -webkit-inline-box;
  }
  .js-menu .navbar .nav > li a {
    padding: 15px 20px;
    font-size: 16px;
    margin-top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .js-menu {
    margin-top: 15px;
    float: none !important;
    display: -webkit-inline-box;
  }
  .js-menu .navbar .nav > li a {
    padding: 15px 11px;
    font-size: 14px;
    margin-top: 5px;
  }
}
@media (min-width: 768px) {
  .js-menu .dropdown .dropdown-menu {
    display: none;
  }
}
.js-menu .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 205px;
  padding: 0px 0;
  margin: 0px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  border-radius: 0px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: none;
}
.js-menu .dropdown .dropdown-menu li a {
  text-transform: uppercase;
  background: white url("../../Content/images/keyboard-right-arrow-button.svg") 20px center no-repeat;
  background-size: 14px 14px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
@media (min-width: 1200px) {
  .js-menu .dropdown .dropdown-menu li a {
    padding: 20px 30px 20px 55px !important;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-menu .dropdown .dropdown-menu li a {
    padding: 15px 30px 15px 55px !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .js-menu .dropdown .dropdown-menu li a {
    padding: 15px 30px 15px 55px !important;
  }
}
.js-menu .dropdown .dropdown-menu li a:hover, .js-menu .dropdown .dropdown-menu li a:active {
  background: #707a7d url("../../Content/images/keyboard-right-arrow-button-hover.svg") 30px center no-repeat;
  color: white;
  background-size: 14px 14px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

@media (max-width: 767px) {
  .mainNav-sub-item {
    position: relative;
    z-index: 9;
    padding-left: 20px;
    padding-right: 20px;
    list-style: none;
  }
  .mainNav-sub-item li a {
    border-top: 1px solid #4e4e4e;
    width: 100%;
    display: inline-block;
    padding: 10px;
    background: #232323;
    color: #a0a0a0;
    text-transform: uppercase;
  }
  .mainNav-sub-item li a:hover {
    text-decoration: none;
  }

  .js-menu {
    height: 40px;
  }
}
.shopping-class {
  background: white;
  margin-top: 30px;
  margin-bottom: 30px;
}

.header-shopping {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #888;
}
.header-shopping .item-class {
  padding-left: 15px;
  display: inline-block;
}

.content-shopping .shopping-row {
  border-top: 1px solid #eee;
  padding-top: 15px;
  padding-bottom: 15px;
  display: inline-block;
  width: 100%;
}
.content-shopping .shopping-row .img-shop {
  width: 120px;
  float: left;
}
.content-shopping .shopping-row img {
  padding-left: 10px;
  margin-top: 10px;
}
.content-shopping .shopping-row .delete-icon {
  float: right;
  margin-right: 15px;
}
.content-shopping .shopping-row .delete-icon a {
  font-size: 32px;
  cursor: pointer;
  color: #2e3537;
}
.content-shopping .shopping-row .delete-icon a:hover {
  color: #00b900;
}
.content-shopping .shopping-row .title {
  text-transform: uppercase;
  margin-bottom: 0px;
}
.content-shopping .shopping-row .item-class {
  margin-left: 15px;
  display: inline-block;
  width: calc(100% - 135px);
}
.content-shopping .shopping-row .pull-right .price {
  margin-right: 20px;
}
.content-shopping .shopping-row .pull-right .price span {
  width: 100%;
  display: block;
  font-size: 14px;
  opacity: 0.75;
}
.content-shopping .shopping-row .number {
  float: right;
  line-height: 2.4;
}
.content-shopping .shopping-row .description {
  color: #999;
  font-size: 13px;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: none;
}
.content-shopping .shopping-row select.form-control {
  max-width: 80px;
  float: right;
}
.content-shopping .shopping-row input.form-control {
  width: 70px;
  float: right;
  height: 38px;
  text-align: right;
}
.content-shopping .shopping-row .price {
  text-align: right;
}
@media (min-width: 768px) {
  .content-shopping .shopping-row .price {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .content-shopping .shopping-row select.form-control {
    padding: 6px;
  }
  .content-shopping .shopping-row .price b, .content-shopping .shopping-row .number b {
    padding-top: 10px;
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .content-shopping .shopping-row .pull-left {
    width: calc(100% - 130px);
  }
  .content-shopping .shopping-row .pull-right {
    width: 130px;
  }
}

.footer-shopping {
  font-family: "GoBold", arial;
  border-top: 1px solid #eee;
  color: #888;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 22px;
}
.footer-shopping > div {
  margin-bottom: 10px;
}
.footer-shopping .subtotal-class {
  color: #2e3537;
}
.footer-shopping .total-class {
  font-size: 30px;
  color: #2e3537;
  margin-top: 10px;
}

.order-imformation-class h1 {
  margin-bottom: 12px !important;
  padding-left: 0;
}
.order-imformation-class .order-imfo-content-class {
  background: white;
}
.order-imformation-class .order-imfo-content-class .description-row p {
  margin-left: 10px;
}
.order-imformation-class .title-order {
  display: inline-block;
  width: 100%;
}
.order-imformation-class .title-order a.btn-continue {
  margin-top: 12px;
  margin-bottom: 0px;
  display: inline-block;
  font-family: "GoBold";
}

.view-cart-page h1 {
  padding-left: 0;
}
@media (min-width: 1200px) {
  .view-cart-page .shopping-left {
    width: calc(100% - 200px);
    float: left;
  }
  .view-cart-page .shopping-right {
    width: 200px;
    float: right;
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .view-cart-page .shopping-right {
    display: none;
  }
}

.step1-class h3, .step2-class h3, .step3-class h3 {
  margin-bottom: 20px;
}
.step1-class h3 span, .step2-class h3 span, .step3-class h3 span {
  font-size: 14px;
  width: 25px;
  height: 25px;
  display: inline-block;
  float: left;
  text-align: center;
  border: 2px solid;
  border-radius: 50%;
  margin-right: 10px;
  line-height: 1.5;
  color: #00b900;
}

.payment-class .panel-heading h4 {
  margin-top: 5px;
  margin-bottom: 5px;
}
.payment-class .panel-heading p {
  margin-bottom: 0;
  margin-top: 5px;
}
.payment-class .panel-heading a.accordion-toggle.collapsed, .payment-class .panel-heading a.accordion-toggle.collapsed:focus {
  color: #2e3537;
  text-decoration: none;
}
.payment-class .panel-heading a.accordion-toggle, .payment-class .panel-heading a.accordion-toggle:hover {
  color: #00b900;
  text-decoration: none;
}
.payment-class .panel-heading a:hover {
  text-decoration: none;
}

.payment-icons {
  float: right;
}
.payment-icons i {
  background-image: url("../../Content/images/payment-icon.png");
  width: 50px;
  height: 25px;
  margin-top: -2px;
  display: inline-block;
}
.payment-icons i.icon-visa {
  background-position: -10px -10px;
  width: 40px;
}
.payment-icons i.icon-mastercard {
  background-position: -56px -10px;
  width: 40px;
}
.payment-icons i.icon-amex {
  background-position: -100px -10px;
  width: 32px;
}
.payment-icons i.icon-paypal {
  background-position: -16px -44px;
  width: 60px;
}
.payment-icons i.icon-ge {
  background-position: -16px -264px;
  width: 94px;
}

.btn-frm-login .fa {
  font-size: 40px;
  margin: 10px 8px;
  cursor: pointer;
}
.btn-frm-login .fa-facebook-square {
  color: #3b5998;
}
.btn-frm-login .fa-google-plus-square {
  color: #d94530;
}
.btn-frm-login .fa-paypal {
  color: #179bd7;
}
.btn-frm-login .fa-at {
  color: #00b900;
}

.wizard {
  margin: 0px auto;
}
.wizard .nav-tabs {
  position: relative;
  margin: 0px auto;
  margin-bottom: 0;
  border-bottom-color: #e0e0e0;
}
.wizard .tooltip.top .tooltip-inner {
  background-color: #00b900;
}
.wizard .tooltip.top .tooltip-arrow {
  border-top-color: #00b900;
}

.wizard > div.wizard-inner {
  position: relative;
}

.connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
}

span.round-tab {
  width: 70px;
  height: 70px;
  line-height: 60px;
  display: inline-block;
  border-radius: 100px;
  background: #fff;
  border: 2px solid #e0e0e0;
  z-index: 2;
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 25px;
}

span.round-tab i {
  color: #555555;
}

.wizard li.active span.round-tab {
  background: #fff;
  border: 2px solid #00b900;
}

.wizard li.active span.round-tab i {
  color: #00b900;
}

span.round-tab:hover {
  color: #333;
  border: 2px solid #333;
}

.wizard .nav-tabs > li {
  width: 25%;
}

.wizard li:after {
  content: " ";
  position: absolute;
  left: 43%;
  opacity: 0;
  margin: 0 auto;
  bottom: 0px;
  border: 5px solid transparent;
  border-bottom-color: #00b900;
  transition: 0.1s ease-in-out;
}

.wizard li.active:after {
  content: " ";
  position: absolute;
  left: 43%;
  opacity: 1;
  margin: 0 auto;
  bottom: 0px;
  border: 10px solid transparent;
  border-bottom-color: #00b900;
}

.wizard .nav-tabs > li a {
  width: 70px;
  height: 70px;
  margin: 5px auto 20px auto;
  border-radius: 100%;
  padding: 0;
}

.wizard .nav-tabs > li a:hover {
  background: transparent;
}

.wizard .tab-pane {
  position: relative;
  padding-top: 40px;
}
.wizard .tab-pane button {
  margin-bottom: 20px;
}

.wizard h3 {
  margin-top: 0;
}

@media (max-width: 585px) {
  .wizard {
    width: 100%;
    height: auto !important;
  }

  span.round-tab {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .wizard .nav-tabs > li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .wizard li.active:after {
    content: " ";
    position: absolute;
    left: 35%;
  }
}
.login-class .modal-body {
  padding: 20px;
}
.login-class .header-login-popup {
  margin-bottom: 40px;
}
.login-class .header-login-popup span {
  float: left;
  color: #00b900;
  font-size: 24px;
  margin-right: 15px;
}
.login-class .header-login-popup h2 {
  margin-top: 5px;
  font-size: 24px;
}
.login-class .content-login-popup h2 {
  font-size: 18px;
}
.login-class .content-login-popup .facebook, .login-class .content-login-popup .google, .login-class .content-login-popup .paypal {
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 5px;
  margin-right: 5px;
  display: inline-block;
}
.login-class .content-login-popup .facebook {
  background-color: #3b5998;
}
.login-class .content-login-popup .google {
  background-color: #d94530;
}
.login-class .content-login-popup .paypal {
  background-color: #179bd7;
}
.login-class .or-class {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
  margin-top: -15px;
}
.login-class .form-control {
  border-radius: 0;
  padding: 10px 12px;
  height: 40px;
}
.login-class a {
  color: #00b900;
}

.frm2-calculator .loan-residual-class {
  display: none;
}

#getFinance .frm2-calculator {
  color: white;
}
#getFinance .frm2-calculator .noUi-value-horizontal {
  color: white;
}
#getFinance .frm2-calculator div.tooltip {
  background-color: #616769 !important;
}

.cl-validate {
  color: red !important;
}

@media (max-width: 1120px) {
  .heroBackground2Wrap {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  #pinnedbar #navbar ul li {
    /*img.icon {
    	padding-top: 10px;
    }
    span {
    	display: none;
    }*/
  }
}
@media (max-width: 930px) {
  #pinnedbar .navbar {
    box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0), 0 0px 0px transparent !important;
  }
  #pinnedbar #navbar {
    float: right;
    width: 150px;
  }
}
@media (max-width: 930px) and (max-width: 767px) {
  #pinnedbar #navbar {
    width: 46px;
    margin-right: -80px;
    border-top: 0px solid transparent !important;
  }
}
@media (max-width: 930px) and (max-width: 767px) {
  #pinnedbar #navbar ul {
    margin-top: 85px;
    float: right;
  }
}
@media (max-width: 930px) {
  #pinnedbar #navbar ul li {
    width: 38px;
    height: 38px;
    margin-left: 2px;
    margin-bottom: 2px;
  }
  #pinnedbar #navbar ul li a, #pinnedbar #navbar ul li a:focus {
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    background: black;
  }
  #pinnedbar #navbar ul li a img.icon, #pinnedbar #navbar ul li a:focus img.icon {
    padding-top: 6px;
    padding-left: 0px;
  }
  #pinnedbar #navbar ul li a img, #pinnedbar #navbar ul li a:focus img {
    padding-top: 6px;
    padding-left: 12px;
  }
  #pinnedbar #navbar ul li a span, #pinnedbar #navbar ul li a:focus span {
    display: none;
  }
  #pinnedbar #navbar ul li a:hover {
    background: #00b900;
  }
  #pinnedbar #navbar ul li a.button {
    padding-top: 0px;
    padding-left: 0px;
  }
  #pinnedbar .navbar-collapse {
    box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0);
  }
}
#pinnedbar .navbar.navbar-default {
  float: left;
}
#pinnedbar #navbar {
  border-bottom: none;
  margin-bottom: none;
  background: transparent;
  border-radius: 0;
  border: none;
  float: right;
}
#pinnedbar #navbar li a {
  height: 78px;
  font-size: 13px;
  font-weight: bold;
}
#pinnedbar #navbar li a img.icon {
  margin-top: 3px;
  margin-bottom: 4px;
}
#pinnedbar #navbar li a:link, #pinnedbar #navbar li a:visited, #pinnedbar #navbar li a:focus {
  color: white;
}
@media (min-width: 931px) {
  #pinnedbar #navbar li a:link, #pinnedbar #navbar li a:visited, #pinnedbar #navbar li a:focus {
    background: #2e3537;
  }
}
@media (max-width: 930px) {
  #pinnedbar #navbar li a:link, #pinnedbar #navbar li a:visited, #pinnedbar #navbar li a:focus {
    background: black;
  }
}
#pinnedbar #navbar li a:hover, #pinnedbar #navbar li a:active {
  background: #00b900;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  color: white;
}
#pinnedbar #navbar li a.button {
  background-color: #000;
  padding-left: 26px;
  padding-right: 26px;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  padding-top: 26px;
  margin-right: 3px;
}
#pinnedbar #navbar li a.button:hover {
  background: #00b900;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

@media (min-width: 768px) {
  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
}
.icon-header a, .icon-header a:focus {
  cursor: pointer;
  text-decoration: none !important;
}
.icon-header a span, .icon-header a:focus span {
  color: #d60c0f;
  text-decoration: none !important;
  float: right;
  margin-left: -15px;
  position: relative;
  margin-top: -45px;
}
.icon-header .shop-class {
  margin-right: 10px;
}
.icon-header .dropbtn img {
  padding: 10px;
  height: 50px;
  border: none;
  cursor: pointer;
}
.icon-header .shop-class, .icon-header .account-class {
  position: relative;
  display: inline-block;
}
.icon-header .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  text-align: left;
}
.icon-header .shop-class .dropdown-content {
  min-width: 350px;
  margin-left: -305px;
}
.icon-header .account-class .dropdown-content {
  min-width: 150px;
  margin-left: -103px;
}
@media (min-width: 510px) and (max-width: 767px) {
  .icon-header {
    margin-top: 40px;
  }
}
@media (min-width: 466px) and (max-width: 509px) {
  .icon-header {
    margin-top: -80px;
  }
}
@media (max-width: 465px) {
  .icon-header {
    margin-top: -165px;
  }
}

.dropdown-content-login {
  padding: 0 !important;
}

.dropdown-content {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  /*overflow: scroll;
  height: 150px;*/
}
.dropdown-content .shopping-row {
  float: left;
  width: 100%;
  border-bottom: 1px solid #ececec;
  padding-top: 7px;
  padding-bottom: 7px;
}
.dropdown-content .shopping-row .img-shop {
  float: left;
}
.dropdown-content .shopping-row .img-shop img {
  width: 100px;
  margin-right: 15px;
}
.dropdown-content .shopping-row .item-class p {
  font-size: 13px;
  margin: 0 0 5px 0;
}
.dropdown-content .shopping-row .item-class p span {
  color: #5c5c5c;
}
.dropdown-content .shopping-row .item-class .stock-number {
  font-size: 12px;
  color: #5c5c5c;
}

.shop-class .totalprice-class {
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.shop-class a.btn-link:hover {
  background: #2e3537 !important;
  width: 100%;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.shop-class:hover .dropdown-content {
  display: block;
}

.shop-class:hover .dropbtn img {
  background-color: #dcdcdc;
}

.account-class:hover .dropdown-content {
  display: block;
}

.account-class:hover .dropbtn img {
  background-color: #dcdcdc;
}

.postcode-group.list-group {
  margin-top: -35px;
}

span.help-block.with-errors {
  margin-top: -30px;
}

.tab-content .product-price {
  font-size: 24px;
  color: #00b900;
}

.shopping-right {
  display: none;
}

.deposit-box {
  background: #e3e9eb;
  display: inline-block;
  padding: 20px 30px 30px 30px;
}

#BuyNowTab {
  padding-top: 110px;
}

.part-finder-page .nav-tabs {
  margin-bottom: 20px;
  text-align: center;
}
.part-finder-page .nav-tabs li {
  float: initial;
  display: -webkit-inline-box;
}
.part-finder-page .nav-tabs li a {
  margin-right: 0;
}
.part-finder-page #PartSearch {
  background: #2e3537;
  padding: 15px;
  margin-bottom: 30px;
}
.part-finder-page #PartSearch #PartQuery legend {
  font-family: "GoBold";
  color: white;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #7b7b7b;
}
.part-finder-page #PartSearch #PartQuery > div > label {
  color: white;
  float: left;
  font-weight: inherit;
  padding-top: 10px;
  padding-right: 10px;
}
.part-finder-page #PartSearch #PartQuery > div > input {
  width: 200px;
  float: left;
}
.part-finder-page #PartSearch #PartQuery > div > button {
  background: #00b900;
  color: white;
  padding: 6px 20px;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.part-finder-page #PartSearch #PartQuery > div > button:hover {
  background: #079007;
  color: white;
}
.part-finder-page #FilterPanel {
  background: #2e3537;
  padding: 15px 15px 5px 15px;
  margin-bottom: 30px;
}
.part-finder-page select.form-control {
  font-size: 13px;
  line-height: 2.4em;
  height: 41px;
  padding: 10px;
  margin-bottom: 10px;
}
.part-finder-page table {
  border: solid 1px #333;
  margin-bottom: 50px;
  font-size: 14px;
  min-width: 720px;
  width: 100%;
}
.part-finder-page table th {
  border: solid 1px #707a7d;
  padding: 5px;
  font-weight: inherit;
  background: rgba(179, 179, 179, 0.7);
}
.part-finder-page table .col-1 {
  width: 55px;
}
.part-finder-page table .col-2 {
  width: calc(100% - 550px);
}
.part-finder-page table .col-3 {
  width: 120px;
}
.part-finder-page table .col-4 {
  width: 110px;
}
.part-finder-page table .col-5 {
  width: 90px;
}
.part-finder-page table .col-6 {
  width: 90px;
}
.part-finder-page table .col-7 {
  width: 95px;
}
.part-finder-page table td {
  border: solid 1px #707a7d;
  padding: 5px;
  font-weight: inherit;
}
.part-finder-page table td input.qtyTextbox {
  width: 80px;
  padding: 5px 10px;
}
.part-finder-page table input.btnAddToCart {
  background: #00b900;
  color: white;
  padding: 6px 12px;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.part-finder-page table input.btnAddToCart:hover {
  background: #079007;
  color: white;
}
.part-finder-page #imageCanvas {
  height: 60%;
  width: 100%;
  margin-bottom: 40px;
  border: solid 1px rgba(179, 179, 179, 0.3);
  background: white;
}
.part-finder-page canvas {
  display: block;
}
.part-finder-page .zoomIn-class, .part-finder-page .zoomOut-class {
  background: #2e3537;
  color: white;
  border: 0;
  width: 28px;
  height: 28px;
  font-size: 18px;
}
.part-finder-page .zoomIn-class:hover, .part-finder-page .zoomOut-class:hover {
  background: #00b900;
}

a, a:focus {
  color: white;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
a .box-parts, a:focus .box-parts {
  position: relative;
  margin-bottom: 25px;
}
a .box-parts .info-parts, a:focus .box-parts .info-parts {
  position: absolute;
  width: 100%;
  bottom: 100px;
}
a .box-parts .info-parts h2, a:focus .box-parts .info-parts h2 {
  font-size: 48px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  color: white;
  margin-top: 0;
  margin-bottom: 30px;
}
a .box-parts .info-parts h4, a:focus .box-parts .info-parts h4 {
  font-size: 18px;
  text-shadow: 0px 0px 10px black;
  color: white;
}
a .box-parts .info-parts span, a:focus .box-parts .info-parts span {
  font-family: "GoBold";
  color: #272727;
  background: white;
  border: 1px solid #00b900;
  padding: 10px 40px;
  display: inline-block;
}
a:hover .box-parts .info-parts span, a:focus:hover .box-parts .info-parts span {
  font-family: "GoBold";
  color: white;
  background: #00b900;
  border: 1px solid #00b900;
  padding: 10px 40px;
  display: inline-block;
}

.dvDeposit {
  cursor: pointer;
}

.product-list-boxs .vehicleList-price .listButton-class {
  display: none;
}
