@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 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;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
            transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
            transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    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 {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
          animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
            transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
            transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
            transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
            transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
          animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
          animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
          animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
          animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
          animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
          animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
            transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
            transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  -webkit-animation-name: flip;
          animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
          animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.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;
  }

  100% {
    -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;
  }

  100% {
    -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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
          animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
          animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
            transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
            transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
          animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
            transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
            transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
          animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
          animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}









@-webkit-keyframes expand {
  from {
    -webkit-transform: scale(0); }

  to {
    -webkit-transform: scale(1); } }

@-o-keyframes expand {
  from {
    -o-transform: scale(0); }

  to {
    -o-transform: scale(1); } }

@keyframes expand {
  from {
    -webkit-transform: scale(0);
            transform: scale(0); }

  to {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes expand-y {
  from {
    -webkit-transform: scale(1, 0); }

  to {
    -webkit-transform: scale(1, 1); } }

@-o-keyframes expand-y {
  from {
    -o-transform: scale(1, 0); }

  to {
    -o-transform: scale(1, 1); } }

@keyframes expand-y {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); }

  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); } }

@-webkit-keyframes expand-with-bounce {
  0% {
    -webkit-transform: scale(0); }

  90% {
    -webkit-transform: scale(1.1); }

  100% {
    -webkit-transform: scale(1); } }

@-o-keyframes expand-with-bounce {
  0% {
    -o-transform: scale(0); }

  90% {
    -o-transform: scale(1.1); }

  100% {
    -o-transform: scale(1); } }

@keyframes expand-with-bounce {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }

  90% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes collapse {
  from {
    -webkit-transform: scale(1); }

  to {
    -webkit-transform: scale(0); } }

@-o-keyframes collapse {
  from {
    -o-transform: scale(1); }

  to {
    -o-transform: scale(0); } }

@keyframes collapse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1); }

  to {
    -webkit-transform: scale(0);
            transform: scale(0); } }

@-webkit-keyframes fade-in {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-o-keyframes fade-in {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@keyframes fade-in {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-webkit-keyframes slide-out-down {
  from {
    -webkit-transform: translateY(0); }

  to {
    -webkit-transform: translateY(100%); } }

@-o-keyframes slide-out-down {
  from {
    -o-transform: translateY(0); }

  to {
    -o-transform: translateY(100%); } }

@keyframes slide-out-down {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0); }

  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); } }

@-webkit-keyframes fade-in-up {
  from {
    margin-top: 2em;
    opacity: 0; }

  to {
    margin-top: 0;
    opacity: 1; } }

@-o-keyframes fade-in-up {
  from {
    margin-top: 2em;
    opacity: 0; }

  to {
    margin-top: 0;
    opacity: 1; } }

@keyframes fade-in-up {
  from {
    margin-top: 2em;
    opacity: 0; }

  to {
    margin-top: 0;
    opacity: 1; } }

@-webkit-keyframes opacity-pulse {
  from {
    opacity: 0.5; }

  to {
    opacity: 1; } }

@-o-keyframes opacity-pulse {
  from {
    opacity: 0.5; }

  to {
    opacity: 1; } }

@keyframes opacity-pulse {
  from {
    opacity: 0.5; }

  to {
    opacity: 1; } }

@-webkit-keyframes reveal-alert-text {
  0% {
    opacity: 0; }

  50% {
    opacity: 1; }

  100% {
    opacity: 1; } }

@-o-keyframes reveal-alert-text {
  0% {
    opacity: 0; }

  50% {
    opacity: 1; }

  100% {
    opacity: 1; } }

@keyframes reveal-alert-text {
  0% {
    opacity: 0; }

  50% {
    opacity: 1; }

  100% {
    opacity: 1; } }

@-webkit-keyframes alert-action {
  0% {
    background-color: rgba(24, 91, 85, 0); }

  60% {
    background-color: #185b55; }

  100% {
    background-color: #185b55; } }

@-o-keyframes alert-action {
  0% {
    background-color: rgba(24, 91, 85, 0); }

  60% {
    background-color: #185b55; }

  100% {
    background-color: #185b55; } }

@keyframes alert-action {
  0% {
    background-color: rgba(24, 91, 85, 0); }

  60% {
    background-color: #185b55; }

  100% {
    background-color: #185b55; } }

@-webkit-keyframes phone-button {
  0% {
    background-color: #fbd800; }

  60% {
    background-color: #d6b801; }

  100% {
    background-color: #d6b801; } }

@-o-keyframes phone-button {
  0% {
    background-color: #fbd800; }

  60% {
    background-color: #d6b801; }

  100% {
    background-color: #d6b801; } }

@keyframes phone-button {
  0% {
    background-color: #fbd800; }

  60% {
    background-color: #d6b801; }

  100% {
    background-color: #d6b801; } }

@-webkit-keyframes change-phone-screen {
  from {
    -webkit-transform: translateX(0); }

  to {
    -webkit-transform: translateX(-50%); } }

@-o-keyframes change-phone-screen {
  from {
    -o-transform: translateX(0); }

  to {
    -o-transform: translateX(-50%); } }

@keyframes change-phone-screen {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); }

  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); } }

@-webkit-keyframes award-star {
  0% {
    color: #b35219; }

  95% {
    color: #b35219;
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

  100% {
    color: #b35219;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-o-keyframes award-star {
  0% {
    color: #b35219; }

  95% {
    color: #b35219;
    transform: scale(1.05); }

  100% {
    color: #b35219;
    transform: scale(1); } }

@keyframes award-star {
  0% {
    color: #b35219; }

  95% {
    color: #b35219;
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

  100% {
    color: #b35219;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes draw-route {
  from {
    -webkit-transform: rotate(0); }

  to {
    -webkit-transform: rotate(-75deg); } }

@-o-keyframes draw-route {
  from {
    -o-transform: rotate(0); }

  to {
    -o-transform: rotate(-75deg); } }

@keyframes draw-route {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0); }

  to {
    -webkit-transform: rotate(-75deg);
            transform: rotate(-75deg); } }

@-webkit-keyframes draw-transit {
  from {
    -webkit-transform: rotate(15deg); }

  to {
    -webkit-transform: rotate(-60deg); } }

@-o-keyframes draw-transit {
  from {
    -o-transform: rotate(15deg); }

  to {
    -o-transform: rotate(-60deg); } }

@keyframes draw-transit {
  from {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }

  to {
    -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg); } }

@-webkit-keyframes draw-inverse-transit {
  from {
    -webkit-transform: rotate(-15deg); }

  to {
    -webkit-transform: rotate(60deg); } }

@-o-keyframes draw-inverse-transit {
  from {
    -o-transform: rotate(-15deg); }

  to {
    -o-transform: rotate(60deg); } }

@keyframes draw-inverse-transit {
  from {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg); }

  to {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg); } }

@-webkit-keyframes transit-label {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }

  22% {
    -webkit-transform: scale(1);
            transform: scale(1); }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-o-keyframes transit-label {
  0% {
    transform: scale(0); }

  22% {
    transform: scale(1); }

  100% {
    transform: scale(1); } }

@keyframes transit-label {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }

  22% {
    -webkit-transform: scale(1);
            transform: scale(1); }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes move-hero-caret-in {
  from {
    -webkit-transform: translateY(57px); }

  to {
    -webkit-transform: translate(0); } }

@-o-keyframes move-hero-caret-in {
  from {
    -o-transform: translateY(57px); }

  to {
    -o-transform: translate(0); } }

@keyframes move-hero-caret-in {
  from {
    -webkit-transform: translateY(57px);
            transform: translateY(57px); }

  to {
    -webkit-transform: translate(0);
            transform: translate(0); } }

@-webkit-keyframes move-hero-caret-out {
  from {
    -webkit-transform: translateY(0); }

  to {
    -webkit-transform: translateY(-57px); } }

@-o-keyframes move-hero-caret-out {
  from {
    -o-transform: translateY(0); }

  to {
    -o-transform: translateY(-57px); } }

@keyframes move-hero-caret-out {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0); }

  to {
    -webkit-transform: translateY(-57px);
            transform: translateY(-57px); } }



@media only screen and (min-width:768px) {
  .pageHeader.is-transparent {
    background: transparent;
    border-color: transparent;
    color: #FFFFFF; }
  .pageHeader.is-transparent .pageHeader-homeLink {
    background: url("") no-repeat 6px 6px; }
  .pageHeader.is-transparent .pageHeader-logo {
    opacity: 0; }
  .pageHeader.is-transparent .siteNav-button {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    border-radius: 0; }
  .pageHeader.is-transparent .siteNav-button:hover {
    background-color: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    transition: none; }
  .pageHeader.is-transparent .siteNav-link {
    color: #FFFFFF; }
  .pageHeader.is-transparent .siteNav-link:hover {
    background-color: rgba(0, 0, 0, 0.25); }
  .pageHeader {
    transition: background 0.25s, color 0.25s, border-color .0625s .1875s;
    transition-timing-function: linear; }
  .pageHeader.is-transparent {
    transition: background 0.25s, color 0.25s, border-color .0625s; }
  .pageHeader .pageHeader-logo {
    transition: opacity 0.25s linear; }
  .pageHeader .siteNav-button {
    transition: all 0.25s linear; }
  .pageHeader .siteNav-link {
    transition: color 0.25s linear; }
  .pageHeader .siteNav-link:hover {
    transition: color .25s; } }

@media only screen and (max-width: 767px) {
  .page-content {
    padding-bottom: 0; }
  .content {
    padding-bottom: 0; } }

.featurePanel {
  position: relative;
  width: 100%; }

.featurePanel-row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
/*  max-width: 1080px; */
}
  .featurePanel-row:before, .featurePanel-row:after {
    content: " ";
    display: table; }
  .featurePanel-row:after {
    clear: both; }

.featurePanel-titleBar {
  text-align: center;
  padding: 36px 0; }

.featurePanel-copy, .featurePanel-illustration {
  position: relative;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left; }

.featurePanel-copy {
  text-align: center;
  padding: 3.5em 0;
  background-color: #FFFFFF; }
  .featurePanel-copy:first-child {
    padding-bottom: 1em; }

.featurePanel-illustration {
  min-height: 240px; }

@media only screen and (min-width:768px) {
  .featurePanel {
    min-height: 560px; }
  .featurePanel-copy, .featurePanel-illustration {
    position: relative;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 50%;
    float: left;
    min-height: 560px; }
  header.hgroup {
    margin: 0; }
  .featurePanel-copy {
    padding-top: 220px;
    text-align: left;
    background-color: transparent; }
  .responsive-header {
    -webkit-transform: translate3d(0, 0, 0); } }

.simulatedAlert {
  position: absolute; }

.simulatedAlert h4 {
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 0.875rem;
  line-height: 1em;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 5px; }

.simulatedAlert p {
  margin-bottom: 0;
  font-size: .8125em;
  line-height: .8125em; }

.simulatedAlert-timestamp {
  color: #0e6159;
  text-align: right;
  font-size: .875em;
  margin-bottom: .4375em; }

.simulatedAlert-screen {
 
  opacity: .85;
  color: #E81E25;
  position: relative; }

.simulatedAlert-screenOverflowContainer {
  height: 100%;
  width: 100%;
  padding: .625em .625em .3125em .625em;
  overflow: hidden; }

.simulatedAlert-screen:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  z-index: 2; }

.simulatedAlert-actions {
  margin-top: .625em;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 5px; }
  .simulatedAlert-actions:before, .simulatedAlert-actions:after {
    content: " ";
    display: table; }
  .simulatedAlert-actions:after {
    clear: both; }

.simulatedAlert-action {
  font-size: 16px;
  float: left;
  text-align: center;
  font-size: 0.875rem;
  line-height: 0.875rem;
  text-transform: uppercase;
  padding: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 1px; }

.simulatedAlert-action:first-child {
  border-left: none; }

.simulatedAlert-confirmation {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  padding: .625em;
  width: 100%;
  text-align: center; }

.simulatedAlert-confirmation-checkmark {
  margin-top: 2em;
  opacity: 0;
  font-size: 2em;
  margin-bottom: .5em; }

.simulatedAlert-confirmation-message {
  margin-top: 2em;
  opacity: 0;
  font-size: .8em; }

.simulatedAlert {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  overflow: hidden; }

.simulatedAlert-timestamp {
  opacity: 0; }

.simulatedAlert-notification {
  opacity: 0; }

.featurePanel.is-visible .simulatedAlert {
  -webkit-animation: expand-with-bounce .25s 0s forwards ease-out;
  animation: expand-with-bounce .25s 0s forwards ease-out;
  overflow: visible; }

.featurePanel.is-visible .simulatedAlert-timestamp {
  -webkit-animation: fade-in .5s .25s forwards;
  animation: fade-in .5s .25s forwards; }

.featurePanel.is-visible .simulatedAlert-notification {
  -webkit-animation: reveal-alert-text 1s .25s 2 alternate, slide-out-down .5s 1.75s ease-in;
  animation: reveal-alert-text 1s .25s 2 alternate, slide-out-down .5s 1.75s ease-in; }

.featurePanel.is-visible .simulatedAlert-action:first-child {
  -webkit-animation: alert-action .25s 1.25s 2 alternate cubic-bezier(0, .4, .6, 1);
  animation: alert-action .25s 1.25s 2 alternate cubic-bezier(0, .4, .6, 1); }

.featurePanel.is-visible .simulatedAlert-confirmation-checkmark {
  -webkit-animation: fade-in-up .5s 2.75s forwards;
  animation: fade-in-up .5s 2.75s forwards; }

.featurePanel.is-visible .simulatedAlert-confirmation-message {
  -webkit-animation: fade-in-up .5s 3.25s forwards;
  animation: fade-in-up .5s 3.25s forwards; }

@media only screen and (min-width:768px) {
  .simulatedAlert {
    max-width: 330px; }
  .simulatedAlert-screen {
    min-height: 7.8125rem; }
  .simulatedAlert-screenOverflowContainer {
    padding: 1.25em 1.25em .625em 1.25em; }
  .simulatedAlert h4 {
    font-size: 1.3125rem;
    line-height: 1.3125rem;
    margin-bottom: 5px; }
  .simulatedAlert p {
    font-size: .875em;
    line-height: .875em; }
  .simulatedAlert-actions {
    margin-top: 1.25em;
    border-style: solid;
    border-width: 1px 0 0; }
  .simulatedAlert-action {
    padding: 10px;
    border-style: solid;
    border-width: 0 0 0 1px; }
  .simulatedAlert-confirmation {
    font-size: 1.25em;
    padding: 1.25em; } }

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none; }

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  display: block;
  background: url("../../images/homepage/hero-image.jpg") no-repeat bottom center;
  height: 100%;
  background-size: cover; }

.hero-video-panel {
  position: relative;
  min-height: 375px;
  overflow: hidden; }

.hero-bottom {
  position: relative;
  bottom: 0;
  min-height: 65px;
  right: 0;
  left: 0;
  background: #29425f;
  z-index: 1;
  overflow: visible; }

.hero-bottom-copy {
  color: #FFFFFF;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2px;
  padding-right: 2px;
  font-size: 18px;
  font-family: "SourceSans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; }

.hero-bottom-howItWorks {
  position: absolute;
  bottom: -3.2em;
  width: 100%;
  font-size: 1em;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  color: #777; }

.hero-bottom:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #29425f;
  bottom: -20px;
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto; }

.billboard-text-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-top: 22.5px; }

.billboard-text-center {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.billboard-text-center-wrapper {
  display: table;
  height: 100%;
  width: 100%; }

.billboard-header {
  margin: 0;
  color: #FFFFFF;
  font-size: 56px;
  text-shadow: 1px 1px #222222;
  line-height: 1em; }

.billboard-subheader {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 1px 1px #222222; }

.hero-button {
  font-size: 24px;
  color: #000000;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: .6em;
  padding-bottom: .6em;
  background-color: #FCD900;
  display: inline-block;
  transition: background-color 300ms ease-out;
  font-weight: bold; }

.hero-button:hover {
  color: #000000;
  background-color: #CAAE00; }

.hero-caret {
  position: absolute;
  font-size: 3em;
  color: #fff;
  bottom: 17px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0.5;
  -webkit-animation: move-hero-caret-in .5s 1.5s ease-out forwards, opacity-pulse .75s 1.5s 2 alternate ease-out;
  animation: move-hero-caret-in .5s 1.5s ease-out forwards, opacity-pulse .75s 1.5s 2 alternate ease-out;
  -webkit-transform: translateY(57px);
      -ms-transform: translateY(57px);
          transform: translateY(57px);
  transition: opacity .2s;
  display: none;
  cursor: pointer; }

.hero-caret.dismissed {
  -webkit-animation: move-hero-caret-out 1s ease-out;
  animation: move-hero-caret-out 1s ease-out;
  transition: opacity 1s;
  opacity: 0; }

.hero-caret:hover {
  opacity: 1; }

@media only screen and (min-width:768px) {
  .billboard-header {
    font-size: 90px;
    line-height: 70px; }
  .hero-image {
    background-image: none; }
  .billboard-subheader {
    margin-bottom: 40px; }
  .hero-button {
    font-size: 27px; }
  .hero-bottom-howItWorks {
    font-size: 1.45em; }
  .hero-caret {
    display: block; }
  .hero-caret:hover {
    opacity: 1; }
  .billboard-text-container {
    margin-top: 0; }
  .hero-video-panel {
    min-height: 420px; } }

@media only screen and (min-width:1025px) {
  .billboard-header {
    font-size: 130px;
    line-height: 130px; } }

.getInstantPricing {
  background-color: #FFFFFF; }

.getInstantPricing .featurePanel-illustration {
  background: url("../../images/homepage/hiw-estimates-small.jpg") no-repeat center center;
  padding: 0; }

.tabletIllustration-screen {
  height: 15em;
  width: 100%;
  max-width: 31.4em;
  padding: 1em;
  overflow: hidden;
  margin: 0 auto;
  background: #f5f5f5; }

.tabletIllustration-graph {
  height: 100%;
  width: 100%;
  position: relative;
  border-bottom: .2em solid #0e6159; }

.tabletIllustration-bars, .tabletIllustration-curve {
  height: 55%;
  width: 75%;
  margin: 0 12.5%;
  position: absolute;
  bottom: 0; }

.tabletIllustration-barContainer {
  height: 100%;
  width: 4.5%;
  margin: 0 2.25%;
  float: left;
  position: relative; }

.tabletIllustration-fullBar {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0; }

.tabletIllustration-bar {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  background-color: #cacbca; }

.tabletIllustration-barContainer:nth-child(1) .tabletIllustration-fullBar {
  height: 5%; }

.tabletIllustration-barContainer.and-bar1 .tabletIllustration-fullBar {
  height: 5%; }

.tabletIllustration-barContainer:nth-child(2) .tabletIllustration-fullBar {
  height: 32%; }

.tabletIllustration-barContainer.and-bar2 .tabletIllustration-fullBar {
  height: 32%; }

.tabletIllustration-barContainer:nth-child(3) .tabletIllustration-fullBar {
  height: 35%; }

.tabletIllustration-barContainer.and-bar3 .tabletIllustration-fullBar {
  height: 35%; }

.tabletIllustration-barContainer:nth-child(4) .tabletIllustration-fullBar {
  height: 67%; }

.tabletIllustration-barContainer.and-bar4 .tabletIllustration-fullBar {
  height: 67%; }

.tabletIllustration-barContainer:nth-child(5) .tabletIllustration-fullBar {
  height: 100%; }

.tabletIllustration-barContainer.and-bar5 .tabletIllustration-fullBar {
  height: 100%; }

.tabletIllustration-barContainer:nth-child(6) .tabletIllustration-fullBar {
  height: 70%; }

.tabletIllustration-barContainer.and-bar6 .tabletIllustration-fullBar {
  height: 70%; }

.tabletIllustration-barContainer:nth-child(7) .tabletIllustration-fullBar {
  height: 85%; }

.tabletIllustration-barContainer.and-bar7 .tabletIllustration-fullBar {
  height: 85%; }

.tabletIllustration-barContainer:nth-child(8) .tabletIllustration-fullBar {
  height: 45%; }

.tabletIllustration-barContainer.and-bar8 .tabletIllustration-fullBar {
  height: 45%; }

.tabletIllustration-barContainer:nth-child(9) .tabletIllustration-fullBar {
  height: 45%; }

.tabletIllustration-barContainer.and-bar9 .tabletIllustration-fullBar {
  height: 45%; }

.tabletIllustration-barContainer:nth-child(10) .tabletIllustration-fullBar {
  height: 17%; }

.tabletIllustration-barContainer.and-bar10 .tabletIllustration-fullBar {
  height: 17%; }

.tabletIllustration-barContainer:nth-child(11) .tabletIllustration-fullBar {
  height: 7%; }

.tabletIllustration-barContainer.and-bar11 .tabletIllustration-fullBar {
  height: 7%; }

.tabletIllustration-curve {
  height: 48%;
  bottom: -.2em; }

.tabletIllustration-peak {
  position: absolute;
  bottom: 45%;
  font-size: .8em;
  left: 50%; }

.tabletIllustration-peakPoint {
  background: #f5f5f5;
  border: .3em solid #0e6159;
  border-radius: .5em;
  height: 1em;
  width: 1em;
  position: absolute;
  bottom: -.5em;
  left: -.5em; }

.tabletIllustration-priceInfo {
  position: absolute;
  bottom: 2em;
  left: .5em;
  font-size: 1em; }

.tabletIllustration-averagePrice {
  display: inline-block;
  line-height: 2em;
  white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
  color: #0e6159; }

.tabletIllustration-priceBox {
  display: inline-block;
  font-size: 2em;
  line-height: 1.5em;
  padding: 0 .5em;
  color: #FFFFFF;
  background-color: #0e6159; }
  .tabletIllustration-priceBox:before {
    height: 0;
    width: 0;
    border-top: 0.25em solid #0e6159;
    border-right: 0.25em solid transparent;
    bottom: -.25em;
    left: .25em;
    position: absolute;
    content: '';
    font-size: 1.25em; }

@media only screen and (min-width:768px) {
  .getInstantPricing {
    background: #FFFFFF url("../../images/homepage/hiw-estimates-large.jpg") no-repeat bottom center; }
  .getInstantPricing .featurePanel-illustration {
    background-image: none;
    overflow: hidden;
    padding: 8.55em 0 2.9em 3.35em; }
  .tabletIllustration-screen {
    height: 23.6em;
    width: 31.4em;
    background: none; }
  .tabletIllustration-curve {
    height: 52%; }
  .tabletIllustration-peak {
    bottom: 50%;
    font-size: 1em; }
  .tabletIllustration-priceBox:before {
    font-size: 1em; } }

.tabletIllustration-bar {
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
          transform: scale(1, 0); }

.tabletIllustration-curve {
  opacity: 0; }

.tabletIllustration-peakPoint {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0); }

.tabletIllustration-priceInfo {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: -.5em 7.5em;
      -ms-transform-origin: -.5em 7.5em;
          transform-origin: -.5em 7.5em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(1) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.0375s 0.2s forwards ease;
  animation: expand-y 0.0375s 0.2s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(2) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.24s 0.25s forwards ease;
  animation: expand-y 0.24s 0.25s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(3) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.2625s 0.3s forwards ease;
  animation: expand-y 0.2625s 0.3s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(4) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.5025s 0.35s forwards ease;
  animation: expand-y 0.5025s 0.35s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(5) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.75s 0.4s forwards ease;
  animation: expand-y 0.75s 0.4s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(6) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.525s 0.45s forwards ease;
  animation: expand-y 0.525s 0.45s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(7) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.6375s 0.5s forwards ease;
  animation: expand-y 0.6375s 0.5s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(8) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.3375s 0.55s forwards ease;
  animation: expand-y 0.3375s 0.55s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(9) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.3375s 0.6s forwards ease;
  animation: expand-y 0.3375s 0.6s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(10) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.1275s 0.65s forwards ease;
  animation: expand-y 0.1275s 0.65s forwards ease; }

.featurePanel.is-visible .tabletIllustration-barContainer:nth-child(11) .tabletIllustration-bar {
  -webkit-animation: expand-y 0.0525s 0.7s forwards ease;
  animation: expand-y 0.0525s 0.7s forwards ease; }

.featurePanel.is-visible .tabletIllustration-curve {
  -webkit-animation: fade-in .75s 1s forwards ease-out;
  animation: fade-in .75s 1s forwards ease-out; }

.featurePanel.is-visible .tabletIllustration-peakPoint {
  -webkit-animation: expand .1s 1.25s forwards;
  animation: expand .1s 1.25s forwards; }

.featurePanel.is-visible .tabletIllustration-priceInfo {
  -webkit-animation: expand .25s 1.25s forwards cubic-bezier(0, 0, .3, 1);
  animation: expand .25s 1.25s forwards cubic-bezier(0, 0, .3, 1); }

.alertNearbyTrucks .featurePanel-illustration {
  background: url("../../images/homepage/alert-nearby-trucks_small.jpg") no-repeat center bottom; }

.alertNearbyTrucks .simulatedAlert {
  left: 50%;
  margin-left: -100px;
  bottom: 90px;
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left; }

.alertNearbyTrucks .simulatedAlert-action {
  width: 48%;
  margin-right: 2%; }

.alertNearbyTrucks .simulatedAlert-screen:after {
  height: 0;
  width: 0;
  border-top: 10px solid #0e6159;
  border-right: 10px solid transparent;
  bottom: -10px;
  left: 10px; }

@media only screen and (min-width:768px) {
  .alertNearbyTrucks .featurePanel-row, .alertNearbyTrucks .featurePanel-illustration {
    background-image: none; }
  .alertNearbyTrucks {
    background: url("../../images/homepage/alert-nearby-trucks_large.jpg") no-repeat center bottom;
    background-color: #EFEFEF; }
  .alertNearbyTrucks .simulatedAlert {
    right: 20px;
    bottom: 150px;
    margin-left: -115px; }
  .alertNearbyTrucks .simulatedAlert-screen:after {
    height: 0;
    width: 0;
    border-top: 20px solid #0e6159;
    border-right: 20px solid transparent;
    bottom: -20px;
    left: 15px; } }

@media only screen and (min-width:768px) and (max-width:1024px) {
  .alertNearbyTrucks .simulatedAlert {
    left: 150px;
    margin-left: 0; }
  .alertNearbyTrucks, .alertNearbyTrucks .featurePanel-illustration {
    background-image: none; }
  .alertNearbyTrucks .featurePanel-row {
    background: url("../../images/homepage/alert-nearby-trucks_large.jpg") no-repeat -465px bottom; } }

.bookShipment .featurePanel-illustration {
  background: url("../../images/homepage/hiw-book-small.jpg") no-repeat center center; }

.bookShipment {
  background-color: #FFFFFF; }

.bookShipment .simulatedAlert {
  top: 30px;
  right: 45%;
  min-width: 155px;
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right; }

.bookShipment-currency {
  float: right;
  top: 0px;
  font-size: 1.625rem; }

.bookShipment .simulatedAlert-screen:after {
  height: 0;
  width: 0;
  border-bottom: 10px solid #0e6159;
  border-right: 10px solid transparent;
  bottom: 15px;
  right: -10px; }

.bookShipment .simulatedAlert-action {
  width: 100%; }

@media only screen and (min-width:768px) {
  .bookShipment .featurePanel-row, .bookShipment .featurePanel-illustration {
    background-image: none;
    overflow: visible; }
  .bookShipment .simulatedAlert {
    top: 50px;
    right: 20px;
    left: 20px; }
  .bookShipment .simulatedAlert-screen:after {
    height: 0;
    width: 0;
    border-bottom: 20px solid #0e6159;
    border-right: 20px solid transparent;
    left: 330px; }
  .bookShipment {
    background: url("../../images/homepage/hiw-book-large.jpg") no-repeat center center;
    background-color: #FFFFFF; }
  .bookShipment__currency {
    font-size: 2.75rem; } }

.trackAndManage .featurePanel-illustration {
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 15px;
  padding: 8.25em 1.75em 1.125em 5.75em; }

.trackAndManage-trackingIllustration {
  position: relative;
  top: -3.03%;
  left: -11.9%;
  width: 177.8%;
  max-width: 60%;
  left: 5em; }
  .trackAndManage-trackingIllustration:before {
    content: "";
    display: block;
    padding-top: 100%; }

.trackAndManage-routeContainer, .trackAndManage-transitContainer {
  width: 50%;
  height: 100%;
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
          transform: rotate(15deg);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0; }

.trackAndManage-routeDrawer {
  width: 100%;
  height: 100%;
  position: relative;
  left: 100%;
  -webkit-transform: rotate(-37.5deg);
      -ms-transform: rotate(-37.5deg);
          transform: rotate(-37.5deg);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  overflow: hidden; }

.trackAndManage-route {
  width: 200%;
  height: 100%;
  border: 3px dashed #E81E25;
  border-radius: 50%;
  position: relative;
  right: 100%; }

.trackAndManage-point {
  position: absolute; }

.trackAndManage-originPoint {
  left: 62.94095%;
  bottom: 98.29629%; }

.trackAndManage-destinationPoint {
  left: 6.69873%;
  bottom: 75%; }

.trackAndManage-destinationPoint .trackAndManage-label {
  display: none; }

.trackAndManage-pin {
  font-size: 4.5em;
  position: absolute;
  left: -.5em;
  bottom: 0;
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center; }

.trackAndManage-originPoint .trackAndManage-pin {
  color: #0e6159; }

.trackAndManage-destinationPoint .trackAndManage-pin {
  color: #842020; }

.trackAndManage-label {
  position: absolute;
  right: 0;
  bottom: 6em;
  white-space: nowrap;
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right; }

.trackAndManage-originPoint .trackAndManage-label {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.trackAndManage-label .simulatedAlert-screen {
 opacity: 1;
font-size: 17px;
font-weight: bold;
padding: 0em;
  
  
  }

/*.trackAndManage-label .simulatedAlert-screen:after {
  height: 0;
  width: 0;
  border-top: 0.6875em solid #0e6159;
  border-left: 0.6875em solid transparent;
  bottom: -.625em;
  right: .625em;
  opacity: 1; }*/

.trackAndManage-transitContainer {
  -webkit-transform: rotate(-22.5deg);
      -ms-transform: rotate(-22.5deg);
          transform: rotate(-22.5deg);
  overflow: visible; }

.trackAndManage-transitInverseContainer {
  width: 100%;
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(22.5deg);
      -ms-transform: rotate(22.5deg);
          transform: rotate(22.5deg); }

.trackAndManage-transitPoint {
  top: -.625em;
  right: -.625em; }

.trackAndManage-dot {
  width: 1.25em;
  height: 1.25em;
  background: #2462bb;
  border: .125em solid #FFFFFF;
  border-radius: 50%; }

.trackAndManage-transitPoint .trackAndManage-label {
  bottom: 2.5em; }

@media only screen and (min-width:768px) {
  .trackAndManage {
    background-repeat: no-repeat;
    background-position: center center; }
  .trackAndManage .featurePanel-illustration {
    background-image: none;
    height: 35em; }
  .trackAndManage-trackingIllustration {
    max-width: none;
    left: -8.9%;
    margin-top: 52%; } 
  }

.trackAndManage-routeDrawer {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0); }

.trackAndManage-pin {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0); }

.trackAndManage-label {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0); }

.trackAndManage-dot {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0); }

.trackAndManage-destinationPoint .trackAndManage-label {
  display: block; }

.trackAndManage-transitContainer {
  -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
          transform: rotate(15deg); }

.trackAndManage-transitInverseContainer {
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
          transform: rotate(-15deg); }

.featurePanel.is-visible .trackAndManage .simulatedAlert {
  -webkit-animation-duration: .25s;
  animation-duration: .25s; }

.featurePanel.is-visible .trackAndManage-originPoint .trackAndManage-pin {
  -webkit-animation: expand .25s forwards ease-in;
  animation: expand .25s forwards ease-in; }

.featurePanel.is-visible .trackAndManage-originPoint .trackAndManage-label {
  -webkit-animation-delay: .25s;
  animation-delay: .25s; }

.featurePanel.is-visible .trackAndManage-dot {
  -webkit-animation: expand .5s .5s forwards ease;
  animation: expand .5s .5s forwards ease; }

.featurePanel.is-visible .trackAndManage-transitPoint .trackAndManage-label {
  -webkit-animation: transit-label 1.125s .75s 2 alternate cubic-bezier(0, 0, .3, 1);
  animation: transit-label 1.125s .75s 2 alternate cubic-bezier(0, 0, .3, 1); }

.featurePanel.is-visible .trackAndManage-routeDrawer {
  -webkit-animation: draw-route 2s .75s forwards linear;
  animation: draw-route 2s .75s forwards linear; }

.featurePanel.is-visible .trackAndManage-transitContainer {
  -webkit-animation: draw-transit 2s .75s forwards linear;
  animation: draw-transit 2s .75s forwards linear; }

.featurePanel.is-visible .trackAndManage-transitInverseContainer {
  -webkit-animation: draw-inverse-transit 2s .75s forwards linear;
  animation: draw-inverse-transit 2s .75s forwards linear; }

.featurePanel.is-visible .trackAndManage-destinationPoint .trackAndManage-pin {
  -webkit-animation: expand .25s 2.75s forwards ease-in;
  animation: expand .25s 2.75s forwards ease-in; }

.featurePanel.is-visible .trackAndManage-destinationPoint .trackAndManage-label {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.payAndReview .featurePanel-illustration {
  background: #0e6159; }

.phoneIllustration {
  height: 240px;
  width: 200px;
  margin: 0 auto;
  padding: 0 21px 25px;
  background: url("../../images/homepage/hiw-pay-phone-small.png") top center no-repeat; }

.phoneIllustration-screenContainer {
  height: 215px;
  width: 158px;
  overflow: hidden;
  font-size: 0.95em;
  text-align: center;
  background: #000000;
  position: relative; }

.phoneIllustration-screenList {
  height: 100%;
  width: 200%;
  position: relative; }

.phoneIllustration-screen {
  height: 100%;
  width: 50%;
  overflow: hidden;
  float: left;
  position: relative;
  background: #FFFFFF; }

.phoneIllustration-header {
  display: none;
  font-size: 0.6em;
  line-height: 2.5em;
  text-align: center;
  position: relative;
  background: #ccc;
  color: #666; }

.phoneIllustration-menuIcon {
  padding: 0.35em;
  font-size: 1.5em;
  position: absolute;
  left: 0; }

.phoneIllustration-delivered {
  padding: 1em;
  color: #0e6159; }

.phoneIllustration-price {
  background: #e5e5e5;
  color: #b35219;
  text-transform: uppercase;
  padding: 1em; }

.phoneIllustration-currency {
  display: block;
  font-size: 2.5em;
  font-weight: bold; }

.phoneIllustration-button {
  font-size: 1.25em;
  padding: 1em;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #fbd800;
  color: #111; }

.phoneIllustration-carrier {
  height: 6.1em;
  padding: 1.8em 1em 1.8em 6.1em;
  font-size: 0.75em;
  font-weight: bold;
  line-height: 1.25em;
  text-align: left;
  text-transform: uppercase;
  background: #f5f5f5 url("../../images/homepage/carrier-profile-pic.jpg") 1em 1em no-repeat;
  color: #111; }

.phoneIllustration-rating {
  height: 3.5em;
  font-size: 1.65em;
  position: relative; }

.phoneIllustration-awardedStar {
  position: absolute;
  top: 1.25em;
  color: #f5f5f5;
  width: 1em;
  -webkit-transform: scale(.85);
      -ms-transform: scale(.85);
          transform: scale(.85); }

.phoneIllustration-awardedStar:nth-child(1) {
  left: 0.67em; }

.phoneIllustration-awardedStar:nth-child(2) {
  left: 1.67em; }

.phoneIllustration-awardedStar:nth-child(3) {
  left: 2.67em; }

.phoneIllustration-awardedStar:nth-child(4) {
  left: 3.67em; }

.phoneIllustration-awardedStar:nth-child(5) {
  left: 4.67em; }

.phoneIllustration-testimonial {
  display: none;
  margin: 0.5em;
  padding: 0.75em;
  font-size: 0.75em;
  line-height: 1.5em;
  text-align: left;
  background: #e5e5e5;
  color: #111;
  position: relative; }
  .phoneIllustration-testimonial:before {
    height: 0;
    width: 0;
    border-bottom: 20px solid #e5e5e5;
    border-left: 20px solid transparent;
    top: -20px;
    left: 15px;
    position: absolute;
    content: ''; }

.phoneIllustration-screenList {
  opacity: 0; }

.featurePanel.is-visible .phoneIllustration-screenList {
  -webkit-animation: fade-in .5s 0s forwards ease, change-phone-screen .5s 1.5s forwards;
  animation: fade-in .5s 0s forwards ease, change-phone-screen .5s 1.5s forwards; }

.featurePanel.is-visible .phoneIllustration-payScreen .phoneIllustration-button {
  -webkit-animation: phone-button .25s 1s 2 alternate cubic-bezier(0, .4, .6, 1);
  animation: phone-button .25s 1s 2 alternate cubic-bezier(0, .4, .6, 1); }

.featurePanel.is-visible .phoneIllustration-awardedStar {
  -webkit-animation: award-star .2s forwards ease-in;
  animation: award-star .2s forwards ease-in; }

.featurePanel.is-visible .phoneIllustration-awardedStar:nth-child(1) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.featurePanel.is-visible .phoneIllustration-awardedStar:nth-child(2) {
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s; }

.featurePanel.is-visible .phoneIllustration-awardedStar:nth-child(3) {
  -webkit-animation-delay: 3.4s;
  animation-delay: 3.4s; }

.featurePanel.is-visible .phoneIllustration-awardedStar:nth-child(4) {
  -webkit-animation-delay: 3.6s;
  animation-delay: 3.6s; }

.featurePanel.is-visible .phoneIllustration-awardedStar:nth-child(5) {
  -webkit-animation-delay: 3.8s;
  animation-delay: 3.8s; }

.featurePanel.is-visible .phoneIllustration-reviewScreen .phoneIllustration-button {
  -webkit-animation: phone-button .25s 4.5s 2 alternate cubic-bezier(0, .4, .6, 1);
  animation: phone-button .25s 4.5s 2 alternate cubic-bezier(0, .4, .6, 1); }

@media only screen and (min-width:768px) {
  .payAndReview {
    background: #0e6159; }
  .payAndReview h2, .payAndReview h5 {
    color: #FFFFFF; }
  .payAndReview .featurePanel-illustration {
    background: none; }
  .phoneIllustration {
    height: 561px;
    width: 316px;
    margin: 0;
    padding: 115px 31px 11px;
    position: absolute;
    right: 0;
    background: url("../../images/homepage/hiw-pay-phone-large.png") right center no-repeat; }
  .phoneIllustration-screenContainer {
    height: 435px;
    width: 254px;
    font-size: 1.5em; }
  .phoneIllustration-header {
    display: block; }
  .phoneIllustration-checkmark {
    display: block;
    font-size: 1.5em;
    margin-bottom: 0.5em; }
  .phoneIllustration-price {
    padding: 1.65em; }
  .phoneIllustration-button {
    padding: 0.6em; }
  .phoneIllustration-carrier {
    background-image: url("../../images/homepage/carrier-profile-pic-large.jpg"); }
  .phoneIllustration-rating {
    height: 2.5em; }
  .phoneIllustration-awardedStar {
    top: .75em; }
  .phoneIllustration-testimonial {
    display: block; }
  .phoneIllustration-testimonialText {
    display: -webkit-box;
    height: 4.5em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; } }

.testimonialGrid {
  display: table;
  border-collapse: collapse;
  width: 100%;
  overflow: hidden; }

.testimonialGrid-row {
  display: table-row; }

.testimonialGrid-testimonial {
  position: relative;
  display: table-cell;
  border-collapse: collapse;
  width: 50%;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0; }

.testimonialGrid-testimonial-shipperName, .testimonialGrid-testimonial-item {
  display: block;
  line-height: 16px; }

.and-no-name {
  margin-top: 15px; }

.testimonialGrid-testimonial-shipperName {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1em;
  letter-spacing: 1px;
  margin-bottom: 5px; }

.testimonialGrid-testimonial-item {
  font-family: "SourceSans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1em;
  text-transform: none; }

.testimonialGrid-testimonial.and-last, .testimonialGrid-testimonial.and-secondToLast {
  display: none; }

.testimonialGrid-testimonial-image {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .7;
  transition: opacity 0.5s ease;
  background-size: 101%;
  -webkit-backface-visibility: hidden; }

.testimonialGrid-testimonial-image:hover {
  opacity: 1; }

.u-ratio-fill {
  display: block;
  padding-bottom: 100%; }

.testimonialGrid-testimonial-copy {
  font-family: "AlternateGothic", "SourceSans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 23px;
  line-height: 1.2em;
  font-weight: bold;
  text-transform: uppercase; }

.testimonialGrid-testimonial-copy {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 201%;
  height: 101%;
  color: #FFFFFF;
  padding: 15px;
  background-color: #0e6159;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  transition-duration: .75s, 1.2s;
  transition-timing-function: cubic-bezier(0, 0.025, 0, 1), ease; }

@media only screen and (min-width:768px) {
  .featurePanel.testimonials {
    min-height: 0;
    background-color: white; }
  .testimonialGrid {
    margin-top: 100px; }
  .testimonialGrid-testimonial {
    overflow: hidden; }
  .testimonialGrid-testimonial.and-secondToLast {
    display: table-cell; }
  .testimonialGrid-testimonial-copy {
    top: 0;
    width: 100%;
    display: block;
    font-size: 27px; }
  .testimonials .featurePanel-copy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1em;
    height: 100px;
    min-height: initial;
    min-height: auto; }
  .testimonials header.hgroup {
    max-width: 100%;
    text-align: center; } }

@media only screen and (min-width:768px) and (max-width:1024px) {
  .testimonialGrid-testimonial {
    width: 33%; }
  .testimonialGrid-testimonial.and-last {
    display: none; } }

@media only screen and (min-width:1025px) {
  .testimonialGrid-testimonial {
    width: 25%; }
  .testimonialGrid-testimonial.and-last {
    display: table-cell; } }

@media only screen and (max-width: 767px) {
  .testimonialGrid-testimonial-copy:before {
    font-family: "uship-icons";
    content: "\78";
    float: right;
    color: white;
    font-weight: normal;
    font-size: 12px;
    text-transform: none;
    opacity: .5;
    line-height: 12px;
    margin: 0 0 10px 10px;
    transition: opacity .5s ease; }
  .testimonialGrid-testimonial-copy:hover::before {
    opacity: 1; }
  .testimonialGrid-testimonial .testimonialGrid-testimonial-copy:after {
    content: '';
    display: block;
    position: absolute; }
  .testimonialGrid-testimonial.and-first .testimonialGrid-testimonial-copy {
    top: 100%; }
    .testimonialGrid-testimonial.and-first .testimonialGrid-testimonial-copy:after {
      height: 0;
      width: 0;
      border-bottom: 20px solid #0e6159;
      border-left: 20px solid transparent;
      top: -20px;
      left: 20px; }
  .testimonialGrid-testimonial.and-second .testimonialGrid-testimonial-copy {
    top: 100%;
    left: -100%; }
    .testimonialGrid-testimonial.and-second .testimonialGrid-testimonial-copy:after {
      height: 0;
      width: 0;
      border-bottom: 20px solid #0e6159;
      border-right: 20px solid transparent;
      top: -20px;
      right: 20px; }
  .testimonialGrid-testimonial.and-fifth .testimonialGrid-testimonial-copy {
    top: -100%;
    -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
            transform: translateY(-50px); }
    .testimonialGrid-testimonial.and-fifth .testimonialGrid-testimonial-copy:after {
      height: 0;
      width: 0;
      border-top: 20px solid #0e6159;
      border-left: 20px solid transparent;
      bottom: -20px;
      left: 20px; }
  .testimonialGrid-testimonial.and-sixth .testimonialGrid-testimonial-copy {
    top: -100%;
    left: -100%;
    -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
            transform: translateY(-50px); }
    .testimonialGrid-testimonial.and-sixth .testimonialGrid-testimonial-copy:after {
      height: 0;
      width: 0;
      border-top: 20px solid #0e6159;
      border-right: 20px solid transparent;
      bottom: -20px;
      right: 20px; } }

.testimonialGrid-testimonial-button {
  position: absolute;
  visibility: hidden; }

.testimonialGrid-testimonial-copy.is-transitioning {
  visibility: visible; }

.testimonialGrid-testimonial-button:checked ~ .testimonialGrid-testimonial-copy {
  visibility: visible;
  opacity: .85;
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px); }

.testimonialGrid-testimonial-button:checked ~ .testimonialGrid-testimonial-image {
  opacity: 1; }

.interactive-map {
  position: relative;
  top: 0;
  width: 100%;
  min-height: 35em;
  z-index: 0; }

.carrierMap .featurePanel-titleBar {
  position: relative;
  z-index: 1;
  background-color: white; }

@media only screen and (min-width:768px) {
  .carrierMap .featurePanel-titleBar {
    position: absolute;
    top: 0;
    width: 100%;
    min-height: initial;
    min-height: auto;
    padding: 1em;
    background-color: #FFFFFF;
    opacity: .85;
    z-index: 1;
    background-color: white; }
  .carrierMap header.hgroup {
    max-width: 40em;
    margin: 0 auto;
    text-align: center; }
  .interactive-map {
    min-height: 560px; } }

.shipperCta.featurePanel {
  min-height: auto;
  min-height: initial; }

.shipperCta .featurePanel-copy {
  text-align: center;
  float: none;
  padding: 2em 0;
  min-height: auto;
  min-height: initial;
  width: auto; }

.shipperCta .hero-button {
  margin: 0 0 1rem 0; }

.learnMore {
  text-align: center;
  background: #ECECEC;
  padding: 40px 0; }

.learnMore-feature {
  padding: 0 10px; }

.learnMore.featurePanel, .ie8 .learnMore.featurePanel {
  min-height: 0; }

.learnMore-feature-logo {
  display: block;
  height: 100px;
  margin: 0 auto;
  font-size: 90px;
  color: #0E6159; }

.learnMore-action {
  color: #0E6159;
  font-weight: 600;
  line-height: 1.8em; }

.learnMore-action .actionArrow {
  font-size: .6em;
  font-weight: 600; }

.learnMore-feature-logo.icon-shippingwars {
  background: url("../../images/homepage//learnmore/shippingwars.png") no-repeat center center; }

.learnMore-feature-logo.icon-shippingwars.pt-br {
  background: url("../../images/homepage//learnmore/shippingwars_br.png") no-repeat center center; }

.learnMore-feature-logo.icon-shippingwars.es-mx, .learnMore-feature-logo.icon-shippingwars.es-co {
  background: url("../../images/homepage//learnmore/shippingwars_mx.png") no-repeat center center; }

.learnMore-feature-logo.icon-shippingwars.es-es {
  background: url("../../images/homepage//learnmore/shippingwars_es.png") no-repeat center center; }

.learnMore-feature-logo.icon-partner.de-de {
  background: url("../../images/homepage//learnmore/partner_de.png") no-repeat center 0; }

.learnMore-feature-logo.icon-partner.fr-fr {
  background: url("../../images/homepage//learnmore/partner_fr.png") no-repeat center center; }

.learnMore-feature-logo.icon-partner.nl-nl {
  background: url("../../images/homepage//learnmore/partner_nl.png") no-repeat center center; }

.learnMore-feature-logo.icon-partner.es-es {
  background: url("../../images/homepage//learnmore/partner_es.png") no-repeat center center; }

.learnMore-feature-logo.icon-partner.en-gb {
  background: url("../../images/homepage//learnmore/partner_uk.png") no-repeat center center; }

@media only screen and (min-width:1025px) {
  .learnMore-description {
    min-height: 95px; } }

@media only screen and (min-width:768px) and (max-width:1024px) {
  .learnMore-feature {
    padding: 0 50px 50px 50px; }
  .learnMore {
    padding-bottom: 0; } }

@media only screen and (max-width: 767px) {
  .learnMore-feature-content {
    padding-bottom: 20px; }
  .learnMore-description {
    margin-bottom: 0;
    padding: 0 30px; } }
