@charset "UTF-8";

/*****************************************************************
	Developed by Ponticlaro
	www.ponticlaro.com
*****************************************************************/

/*****************************************************************
	Imports
*****************************************************************/

/*****************************************************************
	Variables
*****************************************************************/

/*****************************************************************
	Colors
*****************************************************************/

/*****************************************************************
    Mixins
*****************************************************************/

.hide-text {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: normal;
}

/**** Animation Mixin ****/

/*****************************************************************
	CSS3 Transitions: Custom
*****************************************************************/

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes terminal-blink {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes terminal-blink {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-72px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-72px);
    opacity: 0;
  }
}

@-webkit-keyframes opacity-pulse {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes opacity-pulse {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes opacity-pulse-down {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

/*!
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.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

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

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-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);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-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(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

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

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

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-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);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-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);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

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

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

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

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-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);
    -ms-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);
    -ms-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;
    -ms-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    -ms-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.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  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.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  100% {
    -webkit-transform: none;
    -ms-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.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  100% {
    -webkit-transform: none;
    -ms-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.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  100% {
    -webkit-transform: none;
    -ms-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.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -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.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-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);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-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);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-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);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-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);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  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);
    -ms-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);
    -ms-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);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

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

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

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

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

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

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

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-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);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-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);
    -ms-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: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  -ms-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);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

  100% {
    -webkit-transform: none;
    -ms-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);
    -ms-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;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-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: rotate(0, 0, 1, 45deg);
    transform: rotate(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0, 0, 1, 45deg);
    -ms-transform: rotate(0, 0, 1, 45deg);
    transform: rotate(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;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-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;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-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;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-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;
    -ms-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);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-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);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-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);
    -ms-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);
    -ms-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;
    -ms-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);
    -ms-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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

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

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

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

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

/*
 * Corrects `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */

[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Removes default margin.
 */

body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */

h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */

dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/*
 * Removes border when inside `a` element in IE 8/9.
 */

img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */

svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */

figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/*
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */

button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
  line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */

button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */

textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Avenir */

.os,
body,
.h3,
.h4,
.h6,
.nav-main,
h3,
h4,
h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.os-l,
.h2,
h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.os-sb,
.h5,
h5,
dt {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

/*****************************************************************
	 Typography
*****************************************************************/

.h2-font-size,
.h2,
h2 {
  font-size: 40px;
}

.h3-font-size,
.h3,
h3 {
  font-size: 30px;
}

.h4-font-size,
.h4,
h4 {
  font-size: 24px;
}

.h5-font-size,
.h5,
h5,
dt {
  font-size: 15px;
}

.h6-font-size,
.h6,
.tooltip,
h6 {
  font-size: 13px;
}

.p-font-size,
body,
.p,
td,
th,
.table-title .table-title-inner,
.button-base,
p,
dd,
.main-inner li,
label,
input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
textarea,
.button,
.button-white,
.button-blue,
.gform_button,
.button-hero,
.footer-button,
.platform-grid li,
.button-employment-pdf,
.programs-grid li {
  font-size: 15px;
}

body {
  color: #6E6E6E;
}

.h2,
h2 {
  line-height: 136%;
  letter-spacing: 0px;
  color: #FFF;
  margin: 0 0 29px 0;
  padding: 0;
}

.h3,
h3 {
  line-height: 136%;
  letter-spacing: 0px;
  color: #2F2F2F;
  margin: 0 0 36px 0;
  padding: 0;
}

.h4,
h4 {
  line-height: 136%;
  letter-spacing: 0px;
  color: #2F2F2F;
  margin: 0 0 20px 0;
  padding: 0;
}

h4 {
  line-height: 160%;
}

.h5,
h5,
dt {
  line-height: 136%;
  color: #6E6E6E;
  margin: 0 0 5px 0;
  padding: 0;
}

.h6,
h6 {
  line-height: 136%;
  letter-spacing: 0px;
  color: #6E6E6E;
  margin: 0 0 8px 0;
  padding: 0;
}

.p,
p,
dd,
.main-inner li,
label,
input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
textarea,
.platform-grid li,
.programs-grid li {
  color: #6E6E6E;
  line-height: 210%;
  letter-spacing: 0px;
  margin: 0;
  padding-bottom: 30px;
}

ul,
ol {
  padding-bottom: 1.25em;
  list-style-position: inside;
  line-height: 100%;
}

ul li ul,
ul li ol {
  margin-left: 1.25em;
}

ol li ul,
ol li ol {
  margin-left: 1.25em;
  padding-bottom: 0;
}

ul {
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
  padding-bottom: 30px;
  line-height: 100%;
}

dt {
  padding-bottom: 5px;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
  padding-bottom: 0;
}

dd a {
  color: #6E6E6E;
}

dd a:hover {
  color: #37aaec;
}

.main-inner ul,
.platform-grid ul,
.programs-grid ul {
  padding-bottom: 30px;
}

.main-inner li,
.platform-grid li,
.programs-grid li {
  padding-bottom: 0;
  padding-left: 20px;
  list-style-type: none;
  position: relative;
}

.main-inner li:before,
.platform-grid li:before,
.programs-grid li:before {
  content: "\B7";
  color: #6E6E6E;
  position: absolute;
  display: block;
  top: -2px;
  left: 0;
  font-size: 2em;
}

/*****************************************************************
	Style Tags / Links
*****************************************************************/

a {
  color: #37aaec;
  text-decoration: none;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  cursor: pointer;
}

a:hover {
  color: #A5A5A5;
  text-decoration: none;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

u {
  text-decoration: none;
  border-bottom: 1px solid #2F2F2F;
}

cite {
  font-weight: inherit;
  font-family: inherit;
  font-style: normal;
}

blockquote {
  box-sizing: border-box;
  height: auto;
  position: relative;
  margin: 0;
  margin-bottom: 60px;
}

blockquote cite {
  display: block;
  color: #2F2F2F;
  margin-top: 30px;
  font-size: 80%;
  color: #6E6E6E;
}

code {
  font-family: Monaco;
  font-size: 0.7em;
  color: #6E6E6E;
  box-sizing: border-box;
  border: 1px solid #6E6E6E;
}

pre {
  background: #2F2F2F;
  color: white;
  padding: 20px;
  margin: 0 0 20px 0;
}

mark {
  background-color: #6E6E6E;
  /* The Fallback */
  background-color: rgba(110, 110, 110, 0.8);
  color: white;
  display: inline-block;
  line-height: 105%;
}

.caps {
  text-transform: uppercase;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  .h2-font-size,
  .h2,
  h2 {
    font-size: 34px;
    line-height: 127%;
  }

  .h3-font-size,
  .h3,
  h3 {
    font-size: 23px;
  }

  .h4-font-size,
  .h4,
  h4 {
    font-size: 23px;
    margin-bottom: 15px;
  }

  .h5-font-size,
  .h5,
  h5,
  dt {
    font-size: 19px;
    line-height: 155%;
  }

  .h6-font-size,
  .h6,
  .tooltip,
  h6 {
    font-size: 16px;
    line-height: 127%;
  }

  .p-font-size,
  body,
  .p,
  td,
  th,
  .table-title .table-title-inner,
  .button-base,
  p,
  dd,
  .main-inner li,
  label,
  input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
  textarea,
  .button,
  .button-white,
  .button-blue,
  .gform_button,
  .button-hero,
  .footer-button,
  .platform-grid li,
  .button-employment-pdf,
  .programs-grid li {
    font-size: 19px;
    line-height: 155%;
  }

  .h5,
  h5,
  dt {
    padding-bottom: 0;
  }
}

/*
  Icon Font: font_icons_fontcustom
*/

@font-face {
  font-family: "font_icons_fontcustom";
  src: url(/wp-content/themes/pt6awp/public/type/font_icons_fontcustom.eot);
  src: url(/wp-content/themes/pt6awp/public/type/font_icons_fontcustom.eot) format("embedded-opentype"), url(/wp-content/themes/pt6awp/public/type/font_icons_fontcustom.woff) format("woff"), url(/wp-content/themes/pt6awp/public/type/font_icons_fontcustom.ttf) format("truetype"), url(/wp-content/themes/pt6awp/public/type/font_icons_fontcustom.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
@font-face {
    font-family: "font_icons_fontcustom";
    src: url(/wp-content/themes/pt6awp/public/type/font_icons_fontcustom.svg) format("svg");
}
}

[data-icon]:before {
  content: attr(data-icon);
}

[data-icon]:before,
.icon-a-break:before,
.icon-a-checklist:before,
.icon-a-cogs:before,
.icon-a-courthouse:before,
.icon-a-engine:before,
.icon-a-financing:before,
.icon-a-handshake:before,
.icon-a-headset:before,
.icon-a-link:before,
.icon-a-loan:before,
.icon-a-lock:before,
.icon-a-network:before,
.icon-a-pdf:before,
.icon-a-pin:before,
.icon-a-plane:before,
.icon-a-pliers:before,
.icon-a-shake:before,
.icon-a-shipping:before,
.icon-a-tags:before,
.icon-a-target:before,
.icon-a-texas:before,
.icon-a-vert-wrench:before,
.icon-a-wrench:before,
.icon-a-wrench2:before,
.icon-a-wrench3:before,
.icon-arrow-down:before,
.icon-arrow-up:before,
.icon-close:before,
.icon-fb:before,
.icon-git:before,
.icon-ln:before,
.icon-play-button:before,
.icon-plus:before,
.icon-thin-alert:before,
.icon-thin-arrow-down:before,
.icon-thin-arrow-left:before,
.icon-thin-arrow-right:before,
.icon-thin-arrow-up:before,
.icon-thin-cal:before,
.icon-thin-close:before,
.icon-thin-mail:before,
.icon-thin-menu:before,
.icon-thin-play:before,
.icon-thin-search:before,
.icon-thin-thumb-down:before,
.icon-thin-thumb-up:before,
.icon-twitter:before,
.mobile-back:before,
.select2-container .select2-choice .select2-arrow:before,
.select2-dropdown-open.select2-container .select2-choice .select2-arrow:before,
.r-tabs .r-tabs-accordion-title .r-tabs-anchor:after,
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor:after,
.notifications-close:before,
.program-off:before {
  display: inline-block;
  font-family: "font_icons_fontcustom";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.icon-a-break:before {
  content: "\F100";
}

.icon-a-checklist:before {
  content: "\F101";
}

.icon-a-cogs:before {
  content: "\F102";
}

.icon-a-courthouse:before {
  content: "\F12E";
}

.icon-a-engine:before {
  content: "\F103";
}

.icon-a-financing:before {
  content: "\F104";
}

.icon-a-handshake:before {
  content: "\F105";
}

.icon-a-headset:before {
  content: "\F106";
}

.icon-a-link:before {
  content: "\F107";
}

.icon-a-loan:before {
  content: "\F108";
}

.icon-a-lock:before {
  content: "\F109";
}

.icon-a-network:before {
  content: "\F10A";
}

.icon-a-pdf:before {
  content: "\F10B";
}

.icon-a-pin:before {
  content: "\F10C";
}

.icon-a-plane:before {
  content: "\F10D";
}

.icon-a-pliers:before {
  content: "\F10E";
}

.icon-a-shake:before {
  content: "\F10F";
}

.icon-a-shipping:before {
  content: "\F110";
}

.icon-a-tags:before {
  content: "\F111";
}

.icon-a-target:before {
  content: "\F112";
}

.icon-a-texas:before {
  content: "\F113";
}

.icon-a-vert-wrench:before {
  content: "\F114";
}

.icon-a-wrench:before {
  content: "\F115";
}

.icon-a-wrench2:before {
  content: "\F116";
}

.icon-a-wrench3:before {
  content: "\F12D";
}

.icon-arrow-down:before,
.select2-container .select2-choice .select2-arrow:before {
  content: "\F117";
}

.icon-arrow-up:before,
.select2-dropdown-open.select2-container .select2-choice .select2-arrow:before {
  content: "\F118";
}

.icon-close:before,
.notifications-close:before {
  content: "\F119";
}

.icon-fb:before {
  content: "\F11A";
}

.icon-git:before {
  content: "\F11B";
}

.icon-ln:before {
  content: "\F11C";
}

.icon-play-button:before {
  content: "\F11D";
}

.icon-plus:before {
  content: "\F11E";
}

.icon-thin-alert:before {
  content: "\F11F";
}

.icon-thin-arrow-down:before,
.r-tabs .r-tabs-accordion-title .r-tabs-anchor:after,
.program-off:before {
  content: "\F120";
}

.icon-thin-arrow-left:before,
.mobile-back:before {
  content: "\F121";
}

.icon-thin-arrow-right:before {
  content: "\F122";
}

.icon-thin-arrow-up:before,
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor:after {
  content: "\F123";
}

.icon-thin-cal:before {
  content: "\F124";
}

.icon-thin-close:before {
  content: "\F125";
}

.icon-thin-mail:before {
  content: "\F126";
}

.icon-thin-menu:before {
  content: "\F127";
}

.icon-thin-play:before {
  content: "\F128";
}

.icon-thin-search:before {
  content: "\F129";
}

.icon-thin-thumb-down:before {
  content: "\F12A";
}

.icon-thin-thumb-up:before {
  content: "\F12B";
}

.icon-twitter:before {
  content: "\F12C";
}

/*
  jQuery.mmenu CSS
*/

/*
  jQuery.mmenu panels CSS
*/

.mm-menu.mm-horizontal > .mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

.mm-menu .mm-hidden {
  display: none;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu,
.mm-menu > .mm-panel {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}

.mm-menu > .mm-panel {
  background: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 20px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.mm-menu > .mm-panel.mm-opened {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.mm-menu > .mm-panel.mm-subopened {
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
}

.mm-menu > .mm-panel.mm-highest {
  z-index: 1;
}

.mm-menu .mm-list {
  padding: 20px 0;
}

.mm-menu > .mm-list {
  padding-bottom: 0;
}

.mm-menu > .mm-list:after {
  content: '';
  display: block;
  height: 40px;
}

.mm-panel > .mm-list {
  margin-left: -20px;
  margin-right: -20px;
}

.mm-panel > .mm-list:first-child {
  padding-top: 0;
}

.mm-list,
.mm-list > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-list {
  font: inherit;
  font-size: 14px;
}

.mm-list a,
.mm-list a:hover {
  text-decoration: none;
}

.mm-list > li {
  position: relative;
}

.mm-list > li > a,
.mm-list > li > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  line-height: 20px;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
  width: auto;
  margin-left: 20px;
  position: relative;
  left: auto;
}

.mm-list a.mm-subopen {
  background: rgba(3, 2, 1, 0);
  width: 40px;
  height: 100%;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.mm-list a.mm-subopen:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.mm-list a.mm-subopen.mm-fullsubopen {
  width: 100%;
}

.mm-list a.mm-subopen.mm-fullsubopen:before {
  border-left: none;
}

.mm-list a.mm-subopen + a,
.mm-list a.mm-subopen + span {
  padding-right: 5px;
  margin-right: 40px;
}

.mm-list > li.mm-selected > a.mm-subopen {
  background: transparent;
}

.mm-list > li.mm-selected > a.mm-fullsubopen + a,
.mm-list > li.mm-selected > a.mm-fullsubopen + span {
  padding-right: 45px;
  margin-right: 0;
}

.mm-list a.mm-subclose {
  text-indent: 20px;
  padding-top: 30px;
  margin-top: -20px;
}

.mm-list > li.mm-label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
  padding-right: 5px;
}

.mm-list > li.mm-spacer {
  padding-top: 40px;
}

.mm-list > li.mm-spacer.mm-label {
  padding-top: 25px;
}

.mm-list a.mm-subopen:after,
.mm-list a.mm-subclose:before {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-bottom: -5px;
  position: absolute;
  bottom: 50%;
}

.mm-list a.mm-subopen:after {
  border-top: none;
  border-left: none;
  right: 18px;
}

.mm-list a.mm-subclose:before {
  border-right: none;
  border-bottom: none;
  margin-bottom: -15px;
  left: 22px;
}

.mm-menu.mm-vertical .mm-list .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}

.mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
  border-color: transparent;
}

.mm-menu.mm-vertical .mm-list li.mm-opened > .mm-panel {
  display: block;
}

.mm-menu.mm-vertical .mm-list > li > a.mm-subopen {
  height: 40px;
}

.mm-menu.mm-vertical .mm-list > li > a.mm-subopen:after {
  top: 16px;
  right: 16px;
  bottom: auto;
}

.mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-menu.mm-vertical .mm-list > li.mm-label > a.mm-subopen {
  height: 25px;
}

html.mm-opened .mm-page {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mm-menu {
  background: #333333;
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu .mm-list > li:after {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu .mm-list > li > a.mm-subclose {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu .mm-list > li > a.mm-subopen:after,
.mm-menu .mm-list > li > a.mm-subclose:before {
  border-color: rgba(255, 255, 255, 0.3);
}

.mm-menu .mm-list > li > a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu .mm-list > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-list > li.mm-label {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-vertical .mm-list li.mm-opened > ul {
  background: rgba(255, 255, 255, 0.05);
}

/*
  jQuery.mmenu offcanvas addon CSS
*/

.mm-page {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-opened {
  overflow: hidden;
  position: relative;
}

html.mm-opened body {
  overflow: hidden;
}

html.mm-opened .mm-page {
  box-sizing: border-box;
  position: relative;
}

html.mm-background .mm-page {
  background: inherit;
}

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}

.mm-menu.mm-current {
  display: block;
}

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
}

html.mm-opening .mm-page,
html.mm-opening #mm-blocker {
  -webkit-transform: translate(80%, 0);
  transform: translate(80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-opening .mm-page,
  html.mm-opening #mm-blocker {
    -webkit-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 550px) {
  html.mm-opening .mm-page,
  html.mm-opening #mm-blocker {
    -webkit-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}

/*
  jQuery.mmenu buttonbars addon CSS
*/

.mm-buttonbar {
  border: 1px solid transparent;
  border-radius: 5px;
  text-align: center;
  line-height: 20px;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
}

.mm-buttonbar:after {
  content: '';
  display: block;
  clear: both;
}

.mm-buttonbar > * {
  border-left: 1px solid transparent;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  float: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-buttonbar > a {
  text-decoration: none;
}

.mm-buttonbar > input {
  position: absolute;
  left: -1000px;
  top: -1000px;
}

.mm-buttonbar > input:checked + label {
  border-color: transparent  !important;
}

.mm-buttonbar > *:first-child,
.mm-buttonbar > input:first-child + * {
  border-left: none;
}

.mm-buttonbar.mm-buttonbar-2 > * {
  width: 50%;
}

.mm-buttonbar.mm-buttonbar-3 > * {
  width: 33.33%;
}

.mm-buttonbar.mm-buttonbar-4 > * {
  width: 25%;
}

.mm-buttonbar.mm-buttonbar-5 > * {
  width: 20%;
}

.mm-header .mm-buttonbar {
  margin-top: 20px;
  margin-left: -30px;
  margin-right: -30px;
}

.mm-footer .mm-buttonbar {
  border: none;
  border-radius: none;
  line-height: 40px;
  margin: -10px -10px 0 -20px;
}

.mm-footer .mm-buttonbar > * {
  border-left: none;
}

.mm-list > li > .mm-buttonbar {
  margin: 10px 20px;
}

.mm-menu .mm-buttonbar {
  border-color: rgba(255, 255, 255, 0.6);
  background: #333333;
}

.mm-menu .mm-buttonbar > * {
  border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu .mm-buttonbar > input:checked + label {
  background: rgba(255, 255, 255, 0.6);
  color: #333333;
}

/*
  jQuery.mmenu counters addon CSS
*/

em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 40px;
  top: 50%;
}

em.mm-counter + a.mm-subopen {
  padding-left: 40px;
}

em.mm-counter + a.mm-subopen + a,
em.mm-counter + a.mm-subopen + span {
  margin-right: 80px;
}

em.mm-counter + a.mm-fullsubopen {
  padding-left: 0;
}

.mm-vertical em.mm-counter {
  top: 12px;
  margin-top: 0;
}

.mm-nosubresults > em.mm-counter {
  display: none;
}

.mm-menu em.mm-counter {
  color: rgba(255, 255, 255, 0.3);
}

/*
  jQuery.mmenu dragOpen addon CSS
*/

html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

/*
  jQuery.mmenu footer addon CSS
*/

.mm-footer {
  background: inherit;
  border-top: 1px solid transparent;
  text-align: center;
  line-height: 20px;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 10px 10px 0 20px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}

.mm-menu.mm-hasfooter > .mm-panel:after {
  height: 80px;
}

.mm-menu .mm-footer {
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.3);
}

/*
  jQuery.mmenu header addon CSS
*/

.mm-header {
  background: inherit;
  border-bottom: 1px solid transparent;
  text-align: center;
  line-height: 20px;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  padding: 0 50px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

.mm-header .mm-title,
.mm-header .mm-prev,
.mm-header .mm-next {
  padding-top: 30px;
}

.mm-header .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  position: relative;
}

.mm-header .mm-prev,
.mm-header .mm-next {
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  min-width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.mm-header .mm-prev {
  padding-left: 20px;
  padding-right: 10px;
  left: 0;
}

.mm-header .mm-next {
  padding-left: 10px;
  padding-right: 20px;
  right: 0;
}

.mm-header [href].mm-prev:before,
.mm-header [href].mm-next:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-header [href].mm-prev:before {
  border-right: none;
  border-bottom: none;
  margin-left: 2px;
  margin-right: 5px;
}

.mm-header [href].mm-next:after {
  border-top: none;
  border-left: none;
  margin-left: 5px;
  margin-right: -2px;
}

.mm-menu.mm-hassearch .mm-header {
  height: 50px;
  top: 50px;
}

.mm-menu.mm-hassearch .mm-header .mm-title,
.mm-menu.mm-hassearch .mm-header .mm-prev,
.mm-menu.mm-hassearch .mm-header .mm-next {
  padding-top: 20px;
}

.mm-menu.mm-hasheader li.mm-subtitle {
  display: none;
}

.mm-menu.mm-hasheader > .mm-panel {
  padding-top: 80px;
}

.mm-menu.mm-hasheader > .mm-panel.mm-list {
  padding-top: 60px;
}

.mm-menu.mm-hasheader > .mm-panel > .mm-list:first-child {
  margin-top: -20px;
}

.mm-menu.mm-hasheader.mm-hassearch > .mm-panel {
  padding-top: 120px;
}

.mm-menu.mm-hasheader.mm-hassearch > .mm-panel.mm-list {
  padding-top: 100px;
}

.mm-menu .mm-header {
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu .mm-header .mm-prev:before,
.mm-menu .mm-header .mm-next:after {
  border-color: rgba(255, 255, 255, 0.3);
}

/*
  jQuery.mmenu labels addon CSS
*/

.mm-list > li.mm-label > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}

.mm-list > li.mm-label.mm-opened a.mm-subopen:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 17px;
}

.mm-list > li.mm-collapsed {
  display: none;
}

.mm-menu .mm-list li.mm-label > div > div {
  background: rgba(255, 255, 255, 0.05);
}

/*
  jQuery.mmenu searchfield addon CSS
*/

.mm-search,
.mm-search input {
  box-sizing: border-box;
}

.mm-list > li.mm-search {
  padding: 10px;
  margin-top: -20px;
}

.mm-list > li.mm-subtitle + li.mm-search {
  margin-top: 0;
}

div.mm-panel > div.mm-search {
  padding: 0 0 10px 0;
}

.mm-menu.mm-hasheader .mm-list > li.mm-search {
  margin-top: 0;
}

.mm-menu > .mm-search {
  background: inherit;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.mm-search {
  padding: 10px;
}

.mm-search input {
  border: none;
  border-radius: 30px;
  font: inherit;
  font-size: 14px;
  line-height: 30px;
  outline: none;
  display: block;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0 10px;
}

.mm-search input::-ms-clear {
  display: none;
}

.mm-menu .mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 60px 0;
}

.mm-menu .mm-noresultsmsg:after {
  border: none !important;
}

.mm-noresults .mm-noresultsmsg {
  display: block;
}

.mm-menu li.mm-nosubresults > a.mm-subopen {
  display: none;
}

.mm-menu li.mm-nosubresults > a.mm-subopen + a,
.mm-menu li.mm-nosubresults > a.mm-subopen + span {
  padding-right: 10px;
}

.mm-menu.mm-hassearch > .mm-panel {
  padding-top: 70px;
}

.mm-menu.mm-hassearch > .mm-panel > .mm-list:first-child {
  margin-top: -20px;
}

.mm-menu.mm-hasheader > .mm-panel > div.mm-search:first-child {
  margin-top: -10px;
}

.mm-menu.mm-hasheader > .mm-panel > div.mm-search:first-child + .mm-list {
  padding-top: 0;
}

.mm-menu .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.3);
}

/*
  jQuery.mmenu toggles addon CSS
*/

input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}

label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  bottom: 50%;
  z-index: 2;
}

label.mm-toggle:before,
label.mm-check:before {
  content: '';
  display: block;
}

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-bottom: -15px;
}

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right;
}

label.mm-check {
  width: 30px;
  height: 30px;
  margin-bottom: -15px;
}

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1;
}

.mm-menu.mm-vertical .mm-list > li label.mm-toggle,
.mm-menu.mm-vertical .mm-list > li label.mm-check {
  bottom: auto;
  margin-bottom: 0;
}

.mm-menu.mm-vertical .mm-list > li label.mm-toggle {
  top: 5px;
}

.mm-menu.mm-vertical .mm-list > li label.mm-check {
  top: 5px;
}

label.mm-toggle,
label.mm-check {
  right: 20px;
}

label.mm-toggle + a,
label.mm-toggle + span {
  margin-right: 70px;
}

label.mm-check + a,
label.mm-check + span {
  margin-right: 50px;
}

a.mm-subopen + label.mm-toggle,
a.mm-subopen + label.mm-check {
  right: 50px;
}

a.mm-subopen + label.mm-toggle + a,
a.mm-subopen + label.mm-toggle + span {
  margin-right: 100px;
}

a.mm-subopen + label.mm-check + a,
a.mm-subopen + label.mm-check + span {
  margin-right: 80px;
}

em.mm-counter + a.mm-subopen + label.mm-toggle,
em.mm-counter + a.mm-subopen + label.mm-check {
  right: 90px;
}

em.mm-counter + a.mm-subopen + label.mm-toggle + a,
em.mm-counter + a.mm-subopen + label.mm-toggle + span {
  margin-right: 140px;
}

em.mm-counter + a.mm-subopen + label.mm-check + a,
em.mm-counter + a.mm-subopen + label.mm-check + span {
  margin-right: 120px;
}

.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}

.mm-menu label.mm-toggle:before {
  background: #333333;
}

.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

.mm-menu label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}

/*
  jQuery.mmenu effects extension CSS
*/

html.mm-slide .mm-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-slide.mm-opened .mm-menu {
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
}

html.mm-slide.mm-opening .mm-menu {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

html.mm-slide.mm-right.mm-opened .mm-menu {
  -webkit-transform: translateX(30%);
  transform: translateX(30%);
}

html.mm-slide.mm-right.mm-opening .mm-menu {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

html.mm-slide.mm-top.mm-opened .mm-menu {
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}

html.mm-slide.mm-top.mm-opening .mm-menu {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

html.mm-slide.mm-bottom.mm-opened .mm-menu {
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
}

html.mm-slide.mm-bottom.mm-opening .mm-menu {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

html.mm-zoom-menu .mm-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-zoom-menu.mm-opened .mm-menu {
  -webkit-transform: scale(0.7, 0.7) translateX(-30%);
  transform: scale(0.7, 0.7) translateX(-30%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

html.mm-zoom-menu.mm-opening .mm-menu {
  -webkit-transform: scale(1, 1) translateX(0%);
  transform: scale(1, 1) translateX(0%);
}

html.mm-zoom-menu.mm-right.mm-opened .mm-menu {
  -webkit-transform: scale(0.7, 0.7) translateX(30%);
  transform: scale(0.7, 0.7) translateX(30%);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

html.mm-zoom-menu.mm-right.mm-opening .mm-menu {
  -webkit-transform: scale(1, 1) translateX(0%);
  transform: scale(1, 1) translateX(0%);
}

html.mm-zoom-menu.mm-top.mm-opened .mm-menu {
  -webkit-transform: scale(0.7, 0.7) translateY(-30%);
  transform: scale(0.7, 0.7) translateY(-30%);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

html.mm-zoom-menu.mm-top.mm-opening .mm-menu {
  -webkit-transform: scale(1, 1) translateY(0%);
  transform: scale(1, 1) translateY(0%);
}

html.mm-zoom-menu.mm-bottom.mm-opened .mm-menu {
  -webkit-transform: scale(0.7, 0.7) translateY(30%);
  transform: scale(0.7, 0.7) translateY(30%);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

html.mm-zoom-menu.mm-bottom.mm-opening .mm-menu {
  -webkit-transform: scale(1, 1) translateY(0%);
  transform: scale(1, 1) translateY(0%);
}

html.mm-zoom-panels .mm-menu.mm-horizontal > .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translateX(100%);
  transform: scale(1.5, 1.5) translateX(100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-property: -webkit-transform, left;
  transition-property: transform, left;
}

html.mm-zoom-panels .mm-menu.mm-horizontal > .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translateX(0%);
  transform: scale(1, 1) translateX(0%);
}

html.mm-zoom-panels .mm-menu.mm-horizontal > .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translateX(-30%);
  transform: scale(0.7, 0.7) translateX(-30%);
}

/*
  jQuery.mmenu fullscreen extension CSS
*/

.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}

html.mm-opening.mm-fullscreen .mm-page,
html.mm-opening.mm-fullscreen #mm-blocker {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-page,
  html.mm-opening.mm-fullscreen #mm-blocker {
    -webkit-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-page,
  html.mm-opening.mm-fullscreen #mm-blocker {
    -webkit-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}

html.mm-right.mm-opening.mm-fullscreen .mm-page,
html.mm-right.mm-opening.mm-fullscreen #mm-blocker {
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-page,
  html.mm-right.mm-opening.mm-fullscreen #mm-blocker {
    -webkit-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-page,
  html.mm-right.mm-opening.mm-fullscreen #mm-blocker {
    -webkit-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}

.mm-menu.mm-front.mm-fullscreen.mm-top,
.mm-menu.mm-front.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}

/*
  jQuery.mmenu position extension CSS
*/

.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.mm-menu.mm-right {
  left: auto;
  right: 0;
}

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}

html.mm-right.mm-opening .mm-page,
html.mm-right.mm-opening #mm-blocker {
  -webkit-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-page,
  html.mm-right.mm-opening #mm-blocker {
    -webkit-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-page,
  html.mm-right.mm-opening #mm-blocker {
    -webkit-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}

/*
  jQuery.mmenu z-position extension CSS
*/

html.mm-front .mm-page,
html.mm-front #mm-blocker {
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  z-index: 0;
}

.mm-menu.mm-front {
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

html.mm-opened.mm-next .mm-page {
  box-shadow: none;
}

.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.mm-menu.mm-front.mm-top {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.mm-menu.mm-front.mm-bottom {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mm-menu.mm-front.mm-top,
.mm-menu.mm-front.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}

/*
  jQuery.mmenu themes extension CSS
*/

html.mm-opened.mm-light .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light {
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-light .mm-list > li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-light .mm-list > li > a.mm-subclose {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-list > li > a.mm-subopen:after,
.mm-menu.mm-light .mm-list > li > a.mm-subclose:before {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-list > li > a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-light .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu.mm-light .mm-list > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-light .mm-list > li.mm-label {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-light.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-light.mm-vertical .mm-list li.mm-opened > ul {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-light .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: #f3f3f3;
}

.mm-menu.mm-light .mm-buttonbar > * {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-light .mm-buttonbar > input:checked + label {
  background: rgba(0, 0, 0, 0.6);
  color: #f3f3f3;
}

.mm-menu.mm-light label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-light em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-header .mm-prev:before,
.mm-menu.mm-light .mm-header .mm-next:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-list li.mm-label > div > div {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-light .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-light .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-light label.mm-toggle:before {
  background: #f3f3f3;
}

.mm-menu.mm-light input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

html.mm-opened.mm-white .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white {
  background: white;
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-white .mm-list > li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-white .mm-list > li > a.mm-subclose {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-list > li > a.mm-subopen:after,
.mm-menu.mm-white .mm-list > li > a.mm-subclose:before {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-list > li > a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-white .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu.mm-white .mm-list > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.06);
}

.mm-menu.mm-white .mm-list > li.mm-label {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-white.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-white.mm-vertical .mm-list li.mm-opened > ul {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-white .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: white;
}

.mm-menu.mm-white .mm-buttonbar > * {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-white .mm-buttonbar > input:checked + label {
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

.mm-menu.mm-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-header .mm-prev:before,
.mm-menu.mm-white .mm-header .mm-next:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-list li.mm-label > div > div {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-white .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-white label.mm-toggle:before {
  background: white;
}

.mm-menu.mm-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

html.mm-opened.mm-black .mm-page {
  box-shadow: none;
}

.mm-menu.mm-black {
  background: black;
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-black .mm-list > li:after {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-black .mm-list > li > a.mm-subclose {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-list > li > a.mm-subopen:after,
.mm-menu.mm-black .mm-list > li > a.mm-subclose:before {
  border-color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-list > li > a.mm-subopen:before {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-black .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu.mm-black .mm-list > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.25);
}

.mm-menu.mm-black .mm-list > li.mm-label {
  background: rgba(255, 255, 255, 0.15);
}

.mm-menu.mm-black.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-black.mm-vertical .mm-list li.mm-opened > ul {
  background: rgba(255, 255, 255, 0.15);
}

.mm-menu.mm-black .mm-buttonbar {
  border-color: rgba(255, 255, 255, 0.6);
  background: black;
}

.mm-menu.mm-black .mm-buttonbar > * {
  border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-black .mm-buttonbar > input:checked + label {
  background: rgba(255, 255, 255, 0.6);
  color: black;
}

.mm-menu.mm-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-black em.mm-counter {
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-footer {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-header {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-header .mm-prev:before,
.mm-menu.mm-black .mm-header .mm-next:after {
  border-color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-list li.mm-label > div > div {
  background: rgba(255, 255, 255, 0.15);
}

.mm-menu.mm-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-black label.mm-toggle:before {
  background: black;
}

.mm-menu.mm-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

body .mm-page {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0);
  width: 100%;
}

html.mm-opening .mm-page {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.mm-menu {
  -webkit-backface-visibility: hidden;
  background-color: #FFF;
  display: none;
}

.mm-menu :before {
  position: absolute;
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
  content: "";
  background-color: #E1E1E1;
  z-index: 1;
}

.mm-menu > .mm-panel.mm-list {
  padding-bottom: 48px;
}

.mm-menu > .mm-panel {
  padding-top: 0;
}

.mm-menu .mm-search {
  position: relative;
}

#mobile-menu a {
  font-style: normal;
}

.mm-menu.mm-vertical .mm-list > li > a.mm-subopen {
  height: 100%;
}

.mm-menu.mm-vertical .section-title {
  background-color: #FFF;
  text-transform: uppercase;
  font-size: 19px;
  white-space: normal;
  line-height: 136%;
  padding: 15px 15px 15px 20px;
  box-sizing: border-box;
  display: table;
  width: 100%;
}

ul ul.mm-panel {
  z-index: 10;
  position: relative;
  padding: 7px 0 ! important;
}

ul ul.mm-panel .mm-list a.mm-subopen {
  position: relative;
}

ul ul.mm-panel,
.mm-list a.mm-subopen + a,
.mm-list a.mm-subopen + span {
  font-size: 19px;
  line-height: 130%;
  padding: 15px 10px 15px 20px;
  line-height: 100%;
}

.mm-list a.mm-subopen + span {
  padding: 5px 10px 5px 20px;
}

.mm-list > li {
  height: 48px;
  display: table;
  width: 100%;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  border-bottom: 1px solid #E1E1E1;
  box-sizing: border-box;
}

.mm-list > li > a {
  line-height: 120%;
  font-size: 17px;
  font-weight: 500;
  display: table-cell;
  vertical-align: middle;
  color: #A5A5A5;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.mm-list > li > a:after {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.mm-list > li:hover,
.mm-list > li.active {
  background-color: #37aaec;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.mm-list > li:hover a,
.mm-list > li.active a {
  color: #FFF;
}

.mm-list > li:hover .mm-subopen,
.mm-list > li.active .mm-subopen {
  color: #FFF;
}

.mm-list > li:hover .mm-subopen:after,
.mm-list > li.active .mm-subopen:after {
  border-color: #FFF !important;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.mm-menu.mm-vertical .mm-list .mm-panel {
  padding: 0;
}

.mm-menu .mm-list > li > a.mm-subopen:before {
  display: none;
}

.mm-menu.mm-vertical .mm-list > li > a.mm-subopen:after {
  right: 24px;
  top: 18px;
  border-color: #A5A5A5;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.mm-menu.mm-vertical ul ul a.mm-subopen:after {
  top: 11px ! important;
}

.mm-list a.mm-subclose {
  padding-top: 10px;
  text-indent: 0;
}

.mm-list a.mm-subclose:before {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.mm-menu .mm-list > li > a.mm-subclose {
  background: none;
  color: #A5A5A5;
}

.mm-list a.mm-subopen:after,
.mm-list a.mm-subclose:before {
  width: 13px;
  height: 13px;
  border-width: 1px;
}

.mm-subtitle:hover a {
  color: #FFF ! important;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.mm-subtitle:hover a:before {
  border-color: #FFF ! important;
}

.mm-list a.mm-subopen {
  width: 50px;
}

.mm-list a.mm-subopen:after {
  right: 21px;
}

.mm-list a.mm-subclose:before {
  left: 14px;
  top: 15px;
  background-color: transparent;
}

.mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu .mm-list > li.mm-selected > span {
  background: none;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
  display: none;
}

.mm-menu .mm-list > li > a.mm-subopen:after,
.mm-menu .mm-list > li > a.mm-subclose:before {
  border-color: #A5A5A5;
}

.mm-list > li > a,
.mm-list > li > span,
ul ul.mm-panel,
.mm-list a.mm-subopen + a {
  padding-left: 30px;
}

.nav-lang a.mm-subopen,
.nav-stage a.mm-subopen {
  width: 100%;
}

.mm-list > .nav-info {
  border-bottom: 0;
}

.mm-list > .nav-info * {
  color: #A5A5A5;
}

.mm-list > .nav-info:hover {
  background: none;
}

.mm-list > .nav-info dt {
  display: none;
}

/* @media (min-height: 500px) {

	#mobile-menu .nav-lang {
		position: absolute;
		bottom: 0;
		border-top: @border-s solid @color-border;
		border-bottom: 0;
	}
} */

/*
Version: @@ver@@ Timestamp: @@timestamp@@
*/

.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */
}

.select2-container .select2-choice {
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
  padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: none;
  width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
  margin-left: 26px;
  margin-right: 0;
}

.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) right top no-repeat;
  cursor: pointer;
  outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}

.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}

.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

.select2-drop-active {
  border: 1px solid #5897fb;
  border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto;
}

.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #aaa;
  border-radius: 0 4px 4px 0;
  background-clip: padding-box;
  background: #ccc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
  background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid #aaa;
  border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
  background-position: 2px 1px;
}

.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding: 4px 4px 0 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}

.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat 100% -22px;
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
  padding: 4px 5px 4px 20px;
  background: #fff url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat -37px -22px;
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-search input.select2-active {
  background: #fff url(/wp-content/themes/pt6awp/public/i/select2-spinner.gif) no-repeat 100%;
  background: url(/wp-content/themes/pt6awp/public/i/select2-spinner.gif) no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url(/wp-content/themes/pt6awp/public/i/select2-spinner.gif) no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url(/wp-content/themes/pt6awp/public/i/select2-spinner.gif) no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url(/wp-content/themes/pt6awp/public/i/select2-spinner.gif) no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #5897fb;
  border-top-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
  border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -16px 1px;
}

.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* results */

.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
  padding: 0 4px 0 0;
  margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0;
}

.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}

.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select2-results-dept-1 .select2-result-label {
  padding-left: 20px;
}

.select2-results-dept-2 .select2-result-label {
  padding-left: 40px;
}

.select2-results-dept-3 .select2-result-label {
  padding-left: 60px;
}

.select2-results-dept-4 .select2-result-label {
  padding-left: 80px;
}

.select2-results-dept-5 .select2-result-label {
  padding-left: 100px;
}

.select2-results-dept-6 .select2-result-label {
  padding-left: 110px;
}

.select2-results-dept-7 .select2-result-label {
  padding-left: 120px;
}

.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}

.select2-results li em {
  background: #feffde;
  font-style: normal;
}

.select2-results .select2-highlighted em {
  background: transparent;
}

.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/

.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
  display: none;
}

.select2-more-results.select2-active {
  background: #f4f4f4 url(/wp-content/themes/pt6awp/public/i/select2-spinner.gif) no-repeat 100%;
}

.select2-results .select2-ajax-error {
  background: rgba(255, 50, 50, 0.2);
}

.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
  display: none;
}

/* multiselect */

.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
  padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
  min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}

html[dir="rtl"] .select2-container-multi .select2-choices li {
  float: right;
}

.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url(/wp-content/themes/pt6awp/public/i/select2-spinner.gif) no-repeat 100% !important;
}

.select2-default {
  color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}

html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 18px 3px 5px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default;
}

.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4;
}

.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url(/wp-content/themes/pt6awp/public/i/select2.png) right top no-repeat;
}

html[dir="rtl"] .select2-search-choice-close {
  right: auto;
  left: 3px;
}

.select2-container-multi .select2-search-choice-close {
  left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}

/* disabled styles */

.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none;
}

/* end multiselect */

.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}

.select2-offscreen,
.select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}

.select2-display-none {
  display: none;
}

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url(/wp-content/themes/pt6awp/public/i/select2x2.png) !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }

  .select2-search input {
    background-position: 100% -21px !important;
  }
}

.r-tabs .r-tabs-nav {
  margin: 0;
  padding: 0;
}

.r-tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  list-style: none;
}

.r-tabs .r-tabs-panel {
  display: none;
}

.r-tabs .r-tabs-accordion-title {
  display: none;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block;
}

/* v1.0.5 */

/* Core RS CSS file. 95% of time you shouldn't change anything here. */

.royalSlider {
  width: 600px;
  height: 400px;
  position: relative;
  direction: ltr;
}

.royalSlider > * {
  float: left;
}

.rsWebkit3d .rsSlide {
  -webkit-transform: translateZ(0);
}

.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
  -webkit-backface-visibility: hidden;
}

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none;
}

.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsVisibleNearbyWrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsVisibleNearbyWrap .rsOverflow {
  position: absolute;
  left: 0;
  top: 0;
}

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsArrow,
.rsThumbsArrow {
  cursor: pointer;
}

.rsThumb {
  float: left;
  position: relative;
}

.rsArrow,
.rsNav,
.rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  -moz-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  -o-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  transition: visibility 0s linear 0.3s, opacity 0.3s linear;
}

.rsGCaption {
  width: 100%;
  float: left;
  text-align: center;
}

/* Fullscreen options, very important ^^ */

.royalSlider.rsFullscreen {
  position: fixed !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
}

.royalSlider .rsSlide.rsFakePreloader {
  opacity: 1 !important;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  display: none;
}

.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
  height: auto;
}

.rsContent {
  width: 100%;
  height: 100%;
  position: relative;
}

.rsPreloader {
  position: absolute;
  z-index: 0;
}

.rsNav {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
}

.rsNavItem {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
}

.rsThumbs {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  z-index: 22;
}

.rsTabs {
  float: left;
  background: none !important;
}

.rsTabs,
.rsThumbs {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsVideoContainer {
  /*left: 0;
	top: 0;
	position: absolute;*/
  /*width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	float: left;*/
  width: auto;
  height: auto;
  line-height: 0;
  position: relative;
}

.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: 0.3s;
}

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1;
}

.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* ios controls over video bug, shifting video */

.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 44px;
}

.rsABlock {
  z-index: 15;
}

img.rsImg {
  max-width: none;
}

.rsNoDrag {
  cursor: auto;
}

.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
}

/******************************
*
*  RoyalSlider Default Skin 
*
*    1. Arrows 
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*    
*  Sprite: 'rs-default.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
* 
******************************/

/* Background */

.rsDefault,
.rsDefault .rsOverflow,
.rsDefault .rsSlide,
.rsDefault .rsVideoFrameHolder,
.rsDefault .rsThumbs {
  background: white;
  color: black;
}

/***************
*
*  1. Arrows
*
****************/

/* .rsDefault .rsArrow {
	height: 100%;
	width: 44px;
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 21;
}
.rsDefault.rsVer .rsArrow {
	width: 100%;
	height: 44px;
	
}
.rsDefault.rsVer .rsArrowLeft { top: 0; left: 0; }
.rsDefault.rsVer .rsArrowRight { bottom: 0;  left: 0; }

.rsDefault.rsHor .rsArrowLeft { left: 0; top: 0; }
.rsDefault.rsHor .rsArrowRight { right: 0; top:0; }

.rsDefault .rsArrowIcn {		
	width: 32px;
	height: 32px;
	top: 50%;
	left: 50%;
	margin-top:-16px;	
	margin-left: -16px;

	position: absolute;	
	cursor: pointer;	
	background: url('rs-default.png');

	background-color: #000;
	background-color: rgba(0,0,0,0.75);
	*background-color: #000;
	
	border-radius: 2px;
}
.rsDefault .rsArrowIcn:hover {
	background-color: rgba(0,0,0,0.9);
}

.rsDefault.rsHor .rsArrowLeft .rsArrowIcn { background-position: -64px -32px; }
.rsDefault.rsHor .rsArrowRight .rsArrowIcn { background-position: -64px -64px; }

.rsDefault.rsVer .rsArrowLeft .rsArrowIcn { background-position: -96px -32px; }
.rsDefault.rsVer .rsArrowRight .rsArrowIcn { background-position: -96px -64px; }

.rsDefault .rsArrowDisabled .rsArrowIcn { opacity: .2; filter: alpha(opacity=20);  *display: none; } */

/***************
*
*  2. Bullets
*
****************/

.rsBullets {
  position: absolute;
  z-index: 35;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  line-height: 8px;
  overflow: hidden;
}

.rsBullet {
  width: 20px;
  height: 20px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 6px 5px 6px;
}

.rsBullet span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #777;
  background: rgba(255, 255, 255, 0.5);
}

.rsBullet.rsNavSelected span {
  background-color: #FFF;
}

/***************
*
*  3. Thumbnails
*
****************/

.rsDefault .rsThumbsHor {
  width: 100%;
  height: 72px;
}

.rsDefault .rsThumbsVer {
  width: 96px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  position: relative;
  height: 100%;
}

.rsDefault.rsWithThumbsVer .rsThumbsContainer {
  position: relative;
  width: 100%;
}

.rsDefault .rsThumb {
  float: left;
  overflow: hidden;
  width: 96px;
  height: 72px;
}

.rsDefault .rsThumb img {
  width: 100%;
  height: 100%;
}

.rsDefault .rsThumb.rsNavSelected {
  background: #02874a;
}

.rsDefault .rsThumb.rsNavSelected img {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.rsDefault .rsTmb {
  display: block;
}

/* Thumbnails with text */

.rsDefault .rsTmb h5 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 20px;
  color: #FFF;
}

.rsDefault .rsTmb span {
  color: #DDD;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 18px;
}

/* Thumbnails arrow icons */

.rsDefault .rsThumbsArrow {
  height: 100%;
  width: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
}

.rsDefault .rsThumbsArrow:hover {
  background: rgba(0, 0, 0, 0.9);
}

.rsDefault.rsWithThumbsVer .rsThumbsArrow {
  width: 100%;
  height: 20px;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft {
  top: 0;
  left: 0;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight {
  bottom: 0;
  left: 0;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
  left: 0;
  top: 0;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
  right: 0;
  top: 0;
}

.rsDefault .rsThumbsArrowIcn {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  position: absolute;
  cursor: pointer;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -128px -32px;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -128px -48px;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -144px -32px;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -144px -48px;
}

.rsDefault .rsThumbsArrowDisabled {
  display: none !important;
}

/* Thumbnails resizing on smaller screens */

@media screen and (min-width: 0px) and (max-width: 800px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px;
  }

  .rsDefault .rsThumbsHor {
    height: 44px;
  }

  .rsDefault .rsThumbsVer {
    width: 59px;
  }
}

/***************
*
*  4. Tabs
*
****************/

.rsDefault .rsTabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-top: 12px;
  position: relative;
}

.rsDefault .rsTab {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: auto;
  width: auto;
  color: #333;
  padding: 5px 13px 6px;
  min-width: 72px;
  border: 1px solid #D9D9DD;
  border-right: 1px solid #f5f5f5;
  text-decoration: none;
  background-color: #FFF;
  background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
  -webkit-box-shadow: inset 1px 0 0 #fff;
  box-shadow: inset 1px 0 0 #fff;
  *display: inline;
  *zoom: 1;
}

.rsDefault .rsTab:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.rsDefault .rsTab:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #cfcfcf;
}

.rsDefault .rsTab:active {
  border: 1px solid #D9D9DD;
  background-color: #f4f4f4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
}

.rsDefault .rsTab.rsNavSelected {
  color: #FFF;
  border: 1px solid #999;
  text-shadow: 1px 1px #838383;
  box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
  background: #ACACAC;
  background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
  background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
  background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}

/***************
*
*  5. Fullscreen button
*
****************/

.rsDefault .rsFullscreenBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 22;
  display: block;
  position: absolute;
  cursor: pointer;
}

.rsDefault .rsFullscreenIcn {
  display: block;
  margin: 6px;
  width: 32px;
  height: 32px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
  border-radius: 2px;
}

.rsDefault .rsFullscreenIcn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.rsDefault.rsFullscreen .rsFullscreenIcn {
  background-position: -32px 0;
}

/***************
*
*  6. Play/close video button
*
****************/

.rsDefault .rsPlayBtn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  cursor: pointer;
}

.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
}

.rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
  background-color: rgba(0, 0, 0, 0.9);
}

.rsDefault .rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%;
}

.rsDefault .rsCloseVideoBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 500;
  position: absolute;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.rsDefault .rsCloseVideoBtn.rsiOSBtn {
  top: -38px;
  right: -6px;
}

.rsDefault .rsCloseVideoIcn {
  margin: 6px;
  width: 32px;
  height: 32px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
}

.rsDefault .rsCloseVideoIcn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/***************
*
*  7. Preloader
*
****************/

.rsDefault .rsPreloader {
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}

/***************
*
*  8. Global caption
*
****************/

.rsDefault .rsGCaption {
  position: absolute;
  float: none;
  bottom: 6px;
  left: 6px;
  text-align: left;
  background: #000000;
  background: rgba(0, 0, 0, 0.75);
  color: #FFF;
  padding: 2px 8px;
  width: auto;
  font-size: 12px;
  border-radius: 2px;
}

/*****************************************************************
   Global Page
*****************************************************************/

body,
html {
  width: auto;
  margin: 0;
}

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FFF;
  text-rendering: optimizeLegibility;
  min-height: 100%;
  position: relative;
  overflow-y: scroll;
  -ms-touch-action: none;
}

body {
  margin-bottom: 335px;
  display: block;
}

body.no-js {
  display: block;
}

body.animate .main,
body.animate .mobile-menu {
  visibility: visible;
  opacity: 1;
}

.main,
.mobile-menu {
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.5s linear 0.2s;
  transition: all 0.5s linear 0.2s;
}

.main {
  width: 100%;
}

::-moz-selection {
  color: #FFF;
  background: #37aaec;
}

::selection {
  color: #FFF;
  background: #37aaec;
}

img {
  max-width: 100%;
}

.main {
  background-color: #FFF;
}

.container-base,
.container-main,
.container-secondary {
  clear: both;
  width: 100%;
  padding-top: 129px;
  position: relative;
  z-index: 1;
  background-color: #FFF;
}

.inner-base,
.main-inner,
.inner-small,
.header-inner,
.footer-inner,
.hero-inner,
.home .main-inner,
.main .engine-table-wrap,
.main .certification-list-row,
.prefooter-cta-slider .slide-inner,
.hero-slider .slide-inner,
.platform-grid,
.home .platform-grid,
.programs-grid,
.home .programs-grid {
  position: relative;
  max-width: 1050px;
  margin: auto auto;
  padding: 0 25px;
  box-sizing: border-box;
  width: 100%;
  display: table;
}

.container-secondary {
  border-top: 1px solid #E1E1E1;
  padding-top: 0;
}

.main-inner,
.platform-grid,
.programs-grid {
  padding-top: 45px;
  padding-bottom: 45px;
}

.main-inner > .inner-base,
.main-inner > .main-inner,
.main-inner > .inner-small,
.main-inner > .header-inner,
.main-inner > .footer-inner,
.main-inner > .hero-inner,
.main-inner > .home .main-inner,
.main-inner > .main .engine-table-wrap,
.platform-grid > .inner-base,
.main-inner > .main .certification-list-row,
.programs-grid > .inner-base,
.main-inner > .prefooter-cta-slider .slide-inner,
.main-inner > .hero-slider .slide-inner,
.main-inner > .platform-grid,
.main-inner > .home .platform-grid,
.main-inner > .programs-grid,
.main-inner > .home .programs-grid {
  padding: 0;
}

.inner-small {
  padding-top: 45px;
  padding-bottom: 45px;
  max-width: 670px;
}

.page-title,
.content-title {
  display: block;
  text-align: center;
  line-height: 160%;
  letter-spacing: 0px;
  color: #2f2f2f;
  margin: 0 0 20px 0;
  padding: 0;
}

.content-title {
  margin-bottom: 40px;
}

.content-group,
.content-block {
  padding-bottom: 55px;
  display: block;
  clear: both;
  width: 100%;
  box-sizing: border-box;
}

.content-block {
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #F7F7F9;
}

.content-block h3 {
  text-align: center;
}

.content-block .button,
.content-block .footer-button {
  margin: auto auto;
}

.content-block.constrained > * {
  position: relative;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.break-base,
.break,
.break-s,
.employment-group:before {
  margin: auto auto;
  display: block;
  width: 100%;
  float: left;
  clear: both;
  margin: 60px 0 80px;
  border: 0;
  height: 1px;
  background-color: #E1E1E1;
}

.break-s:before {
  width: 360px;
}

.content-split {
  display: inline-block;
  width: 100%;
}

.content-split .col {
  width: 46%;
  float: left;
}

.content-split .col-left {
  margin-right: 8%;
}

.center {
  text-align: center;
}

.text-es,
.es-only {
  display: none;
}

[lang="es"] .text-en,
[lang="es"] .en-only {
  display: none;
}

[lang="es"] .text-es,
[lang="es"] .es-only {
  display: block;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  body {
    margin-bottom: 0;
  }

  .container-base,
  .container-main,
  .container-secondary {
    padding-top: 48px;
  }

  .container-secondary {
    padding-top: 0;
  }

  .inner-base,
  .main-inner,
  .inner-small,
  .header-inner,
  .footer-inner,
  .hero-inner,
  .home .main-inner,
  .main .engine-table-wrap,
  .main .certification-list-row,
  .prefooter-cta-slider .slide-inner,
  .hero-slider .slide-inner,
  .platform-grid,
  .home .platform-grid,
  .programs-grid,
  .home .programs-grid {
    padding-left: 25px;
    padding-right: 25px;
  }

  .main .inner-base,
  .main .main-inner,
  .main .inner-small,
  .main .header-inner,
  .main .footer-inner,
  .main .hero-inner,
  .main .home .main-inner,
  .main .main .engine-table-wrap,
  .main .main .certification-list-row,
  .main .prefooter-cta-slider .slide-inner,
  .main .hero-slider .slide-inner,
  .main .platform-grid,
  .main .home .platform-grid,
  .main .programs-grid,
  .main .home .programs-grid {
    padding: 25px;
  }

  .no-mobile,
  .desktop {
    display: none;
  }

  .content-group {
    margin-top: 0;
  }

  .content-block {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .break-base,
  .break,
  .break-s,
  .employment-group:before {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: -25px;
    margin-right: -25px;
  }

  .content-title {
    text-align: left;
    margin-bottom: 25px;
  }

  .media-wrap {
    margin-left: -25px;
    margin-right: -25px;
  }

  .col {
    width: 100% ! important;
    padding: 0;
  }

  .center {
    text-align: left;
  }

  p br {
    display: none;
  }
}

/*****************************************************************
   Header
*****************************************************************/

.header-main {
  height: 129px;
  width: 100%;
  display: block;
  z-index: 500;
  background: none;
  top: 0;
  left: 0;
  box-sizing: border-box;
  position: absolute;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  background-color: #FFF;
}

.header-inner {
  height: 100%;
  font-family: "Arial";
}

.header-top {
  background-color: #F7F7F9;
  width: 100%;
  height: 46px;
}

.header-bottom {
  height: 83px;
}

.header-tabs {
  display: table;
  height: 100%;
  float: left;
}

.header-tab {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  display: table;
  padding: 0  10px;
  margin-right: 30px;
  float: left;
  height: 100%;
  cursor: pointer;
}

.header-tab > * {
  display: table-cell;
  vertical-align: middle;
  font-size: 13px;
  color: #6E6E6E;
}

.header-tab:hover,
.header-tab.active {
  background-color: #EEEEEE;
}

.lang-toggles {
  float: right;
  height: 100%;
}

.lang-toggles > * {
  display: table;
  height: 100%;
  float: left;
  color: #6E6E6E;
  font-size: 13px;
}

.lang-toggles > * span {
  display: table-cell;
  vertical-align: middle;
}

.lang-toggle {
  cursor: pointer;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.lang-toggle:hover,
.lang-toggle.active {
  color: #000;
}

.lang-toggle-divider {
  padding: 0 10px;
}

.logo-base,
.logo-main,
.logo-mobile {
  display: block;
  z-index: 100;
  position: absolute;
  overflow: hidden;
  cursor: pointer;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
}

.logo-base:hover,
.logo-main:hover,
.logo-mobile:hover {
  opacity: 0.7;
}

.header-phone {
  float: right;
  display: table;
  height: 100%;
  margin-right: 30px;
}

.header-phone .phonenumber {
  display: table-cell;
  vertical-align: middle;
}

.header-phone .icon-a-headset:before {
  color: #37aaec;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 5px;
  position: relative;
  top: 4px;
}

.logo-main {
  width: 248px;
  height: 48px;
  background-image: url(/wp-content/themes/pt6awp/public/i/logo.png);
  margin-top: -26px;
}

.logo-mobile {
  width: 203px;
  height: 16px;
  background-image: url(/wp-content/themes/pt6awp/public/i/logo-mobile.png);
  margin-top: -8px;
  left: 50%;
  margin-left: -101.5px;
}

.alt-header-base,
.contact .header-main {
  border-bottom: 1px solid #EEEEEE;
}

.mobile-back {
  position: absolute;
  left: 10px;
  top: 8px;
  font-size: 22px;
  color: #838282;
  visibility: hidden;
  opacity: 0;
}

.mobile-inner-state .mobile-back {
  visibility: visible;
  opacity: 1;
}

.mobile-inner-state .mobile-menu-toggle {
  visibility: hidden;
  opacity: 0;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 1100px) {
  body .nav-main li {
    margin-left: 0;
    margin-right: 18px;
  }
}

@media (max-width: 900px) {
  body .nav-main li {
    margin-right: 12px;
  }
}

@media (max-width: 767px) {
  body {
    min-width: 0;
    height: auto;
    overflow: hidden;
  }

  .header-main {
    height: 48px;
    border-bottom: 1px solid #E1E1E1;
    background-color: #FFF;
    position: fixed;
  }

  .main .header-inner {
    padding: 0;
  }

  .logo-main {
    display: none;
  }

  .alt-header-base,
  .contact .header-main {
    box-shadow: 0 0 0 #ccc;
  }

  .header-top {
    display: none;
  }

  .header-bottom {
    height: 100%;
  }
}

/*****************************************************************
   Nav
*****************************************************************/

/**** Nav Header ****/

.nav-main {
  height: 100%;
  position: absolute;
  right: 25px;
  top: 0;
  display: block;
}

.nav-main ul {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  display: block;
}

.nav-main li {
  display: table;
  font-size: 15px;
  line-height: 100%;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  box-sizing: border-box;
  cursor: pointer;
  height: 100%;
  float: left;
  margin-left: 43px;
}

.nav-main li a {
  color: #6E6E6E;
  line-height: 100%;
  padding: 0;
  vertical-align: middle;
  display: table-cell;
  width: 100%;
  font-style: normal;
}

.nav-main li a:hover,
.nav-main li.active a,
.nav-main li.current-menu-item a {
  color: #37aaec;
}

/**** Hidden Mobile Nav Elements ****/

.mobile-menu-toggle {
  left: 13px;
  position: absolute;
  top: 15px;
  height: 30px;
  width: 30px;
  z-index: 100;
  display: none;
  z-index: 500;
  outline: 0;
}

.mobile-menu-toggle:hover .line {
  background-color: #37aaec;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.mobile-menu-toggle .line {
  width: 100%;
  height: 2px;
  display: block;
  background-color: #A5A5A5;
  top: 0;
  position: absolute;
  right: 0;
  border-radius: 5px;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.mobile-menu-toggle .line-1,
.mobile-menu-toggle .line-2,
.mobile-menu-toggle .line-3 {
  -webkit-transition: top 0.1s 0.1s ease-in-out, -webkit-transform 0.1s 0.2s ease-in-out;
  -moz-transition: top 0.1s 0.1s ease-in-out, -moz-transform 0.1s 0.2s ease-in-out;
  -ms-transition: top 0.1s 0.1s ease-in-out, -ms-transform 0.1s 0.2s ease-in-out;
  -o-transition: top 0.1s 0.1s ease-in-out, -o-transform 0.1s 0.2s ease-in-out;
  transition: top 0.1s 0.1s ease-in-out, transform 0.1s 0.2s ease-in-out;
}

.mobile-menu-toggle .line-1 {
  top: 0;
}

.mobile-menu-toggle .line-2 {
  -webkit-transition: opacity 0s 0.15s linear;
  -moz-transition: opacity 0s 0.15s linear;
  -ms-transition: opacity 0s 0.15s linear;
  -o-transition: opacity 0s 0.15s linear;
  transition: opacity 0s 0.15s linear;
  top: 7px;
}

.mobile-menu-toggle .line-3 {
  top: 14px;
}

.mm-opened .mobile-menu-toggle .line-2 {
  opacity: 0;
}

.mm-opened .mobile-menu-toggle .line-1,
.mm-opened .mobile-menu-toggle .line-3 {
  -webkit-transition: top 0.1s 0.1s ease-in-out, -webkit-transform 0.1s 0.2s ease-in-out;
  -moz-transition: top 0.1s 0.1s ease-in-out, -moz-transform 0.1s 0.2s ease-in-out;
  transition: top 0.1s 0.1s ease-in-out, transform 0.1s 0.2s ease-in-out;
}

.mm-opened .mobile-menu-toggle .line-1 {
  top: 7px;
  -webkit-transform: rotate(45deg);
  -mox-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-opened .mobile-menu-toggle .line-3 {
  top: 7px;
  -webkit-transform: rotate(-45deg);
  -mox-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#mobile-menu .tabbed {
  background-color: #FFF !important;
}

#mobile-menu .tabbed:before {
  display: none;
}

#mobile-menu .tabbed > * {
  width: 50%;
  padding: 10px 20px;
  text-align: center;
  box-sizing: border-box;
  color: #A5A5A5 !important;
}

#mobile-menu .tabbed > *:first-child {
  border-right: 1px solid #e1e1e1;
}

#mobile-menu .tabbed > .active {
  background-color: #37aaec !important;
  color: #FFF !important;
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-main {
    display: none;
  }
}

/*****************************************************************
	Tables
*****************************************************************/

table {
  border: 1px solid #E1E1E1;
  width: 100%;
  margin-bottom: 34px;
}

tr:nth-child(odd) {
  background: #ebf2f8;
}

td,
th,
.table-title .table-title-inner {
  text-align: center;
  padding: 14px 7px;
  vertical-align: top;
  color: #6E6E6E;
  font-size: 13px;
  line-height: 125%;
  position: relative;
  vertical-align: middle;
}

thead tr,
thead tr:nth-child(odd) {
  background: #37aaec;
}

th {
  height: 55px;
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
  color: #FFF;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
}

.reveal-table {
  border: 0;
  margin-bottom: 10px ! important;
}

.reveal-table th,
.reveal-table td {
  text-align: left;
  height: auto;
}

.reveal-table th {
  padding: 14px 28px;
  line-height: 120%;
}

.reveal-table td {
  padding: 13px 28px 20px 28px;
  color: #818181;
  white-space: normal !important;
}

.reveal-table thead tr {
  background-color: #ebf2f8;
}

.reveal-table thead th {
  color: #636363;
  font-size: 15px;
  font-weight: 700;
}

.reveal-table:before {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid #37aaec;
  position: absolute;
  right: 52px;
  bottom: 100%;
  content: "";
  display: block;
}

table .reveal-table-inner {
  background-color: #FFF;
  width: 475px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 2000;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border: 0;
  opacity: 0;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  visibility: hidden;
  -ms-transform: translate(0, 10px);
  -webkit-transform: translate3d(0, 10px, 0);
  -moz-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

table .reveal-table-inner tbody tr:nth-child(even),
table .reveal-table-inner tbody tr:nth-child(odd) {
  background-color: #FFF;
}

.table-title {
  background: #37aaec;
}

.table-title .table-title-inner {
  color: #FFF;
  font-size: 16px;
}

.tab-vertical .table-wrapper {
  border: 0;
}

.table-vertical table td,
.table-vertical table th {
  vertical-align: middle;
  height: auto;
  border: 1px solid #E1E1E1;
  box-sizing: border-box;
  text-align: left;
}

.table-vertical table th,
.table-vertical table td {
  padding: 14px 28px;
}

.table-vertical table th.col-key,
.table-vertical table td.col-key {
  padding-left: 24px;
  padding-right: 24px;
}

.table-vertical table td.col-compare {
  text-align: center;
}

.table-vertical thead tr {
  background: #FFF;
}

.table-vertical thead tr th {
  font-weight: 300;
  color: #000;
}

.table-vertical .col-key {
  background: #37aaec ! important;
  color: #FFF ! important;
  font-size: 16px;
  font-weight: normal ! important;
  text-align: left;
  border: 0;
  width: 200px;
}

.table-vertical th.col-key {
  text-transform: uppercase;
}

td.highlight {
  color: #37aaec;
  font-weight: 500;
}

.tooltip {
  background: #353535;
  padding: 5px 15px;
  position: absolute;
  bottom: 100%;
  text-transform: none;
  display: block;
  margin-bottom: 3px;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  opacity: 0;
  -ms-transform: translate(0, 10px);
  -webkit-transform: translate3d(0, 10px, 0);
  -moz-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  text-align: center;
}

.tooltip:after {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #353535;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
}

.no-touch .engine-table:hover th:hover .tooltip {
  opacity: 1;
  -ms-transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (min-width: 911px) {
  .no-touch .reveal-table-container:hover .reveal-table-inner {
    opacity: 1;
    -ms-transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

@media (max-width: 910px) {
  th {
    font-size: 14px;
  }

  .table-wrapper {
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .table-wrapper table {
    margin-bottom: 0;
    border: 0;
  }

  .pinned {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 28%;
    overflow: hidden;
    overflow-x: scroll;
    border-right: 1px solid #D0D0D0;
    box-sizing: border-box;
  }

  .pinned table {
    border-right: none;
    border-left: none;
    width: 100%;
  }

  .pinned table th,
  .pinned table td {
    white-space: nowrap;
  }

  .pinned td:last-child {
    border-bottom: 0;
  }

  div.table-wrapper div.scrollable {
    margin-left: 28%;
  }

  div.table-wrapper div.scrollable {
    overflow: scroll;
    overflow-y: hidden;
  }

  table.responsive td,
  table.responsive th {
    position: relative;
    white-space: nowrap;
  }

  table.responsive th:first-child,
  table.responsive td:first-child,
  table.responsive td:first-child,
  table.responsive.pinned td {
    display: none;
  }

  table .reveal-table-inner {
    position: fixed;
    top: 48px;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 1;
  }

  table.responsive table th,
  table.responsive table td {
    width: 33.3%;
  }

  table.responsive table th:first-child,
  table.responsive table td:first-child {
    display: table-cell;
  }

  table.responsive table:before {
    display: none;
  }

  th .tooltip {
    display: none;
  }

  .table-vertical table {
    max-width: none;
  }

  .table-vertical .col-key {
    width: 120px;
  }
}

/*****************************************************************
	Forms
*****************************************************************/

body {
  -webkit-appearance: none;
  -moz-appearance: none;
}

::-webkit-input-placeholder {
  color: #BCBCBC;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #BCBCBC;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #BCBCBC;
}

:-ms-input-placeholder {
  color: #BCBCBC;
}

*:focus {
  outline: none;
}

form {
  margin: 0;
}

label {
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
}

body input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
select,
textarea {
  margin-bottom: 24px;
  width: 100%;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
textarea {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  height: auto;
  box-sizing: border-box;
  border: 1px solid #E1E1E1;
  background-color: #FFF;
  padding: 13px 20px;
  font-weight: 300;
  line-height: 22px;
  color: #838282;
}

textarea {
  resize: none;
  height: 135px;
}

textarea:focus,
textarea:hover,
input:focus,
input:hover {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  border-color: #838282 ! important;
}

.gfield {
  list-style: none;
}

.gfield.subscribe {
  width: auto !important;
}

.gfield.subscribe label {
  margin-bottom: 0;
  padding-bottom: 0;
}

.gfield_label {
  display: none;
}

.gform_button {
  color: #FFF ! important;
  border: 0 ! important;
  line-height: 210%;
}

.gform_ajax_spinner {
  margin-left: 15px;
}

.validation_error {
  color: #e0252e;
  margin-bottom: 30px;
}

.validation_message {
  position: relative;
  margin-top: -15px;
  margin-bottom: 25px;
}

.gfield_error input {
  border-color: #e0252e;
}

.gfield_error .validation_message {
  color: #e0252e;
}

.gform_body ul,
.gform_body li {
  list-style: none;
  margin-left: 0 ! important;
}

.gfield_radio li,
.gfield_checkbox li {
  float: left;
  margin-right: 15px;
}

.gfield_radio input,
.gfield_checkbox input {
  top: -2px;
  position: relative;
  margin-right: 6px;
}

.gform_footer {
  width: 100%;
  display: inline-block;
}

.select2-container {
  width: 100%;
  margin-bottom: 24px;
}

.select2-container .select2-choice {
  height: auto;
  padding: 13px 20px;
  border-radius: 0;
  background-color: #FFF;
  border-color: #EEEEEE;
  background-image: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.select2-container .select2-choice > .select2-chosen {
  color: #6E6E6E;
}

.select2-container .select2-choice .select2-arrow {
  background: none;
  background-image: none;
  border: 0;
  width: auto;
  background-color: #EEEEEE;
  border-left: 1px solid #E1E1E1;
  display: table;
  border-radius: 0;
}

.select2-container .select2-choice .select2-arrow b {
  background: none;
  display: none;
}

.select2-container .select2-choice .select2-arrow:before {
  font-size: 13px;
  color: #6E6E6E;
  padding: 20px 23px 21px 23px;
  color: #c6c6c6;
  display: table-cell;
  vertical-align: middle;
}

.select2-drop {
  border-radius: 0;
}

.select2-drop-active {
  border-color: #E1E1E1;
}

.select2-results {
  margin: 0;
  padding: 0;
}

.select2-results li {
  padding: 10px 20px;
}

.select2-results .select2-result-label {
  padding: 3px 0;
}

.select2-results .select2-highlighted {
  background-color: #37aaec;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

form.no-title .gform_title {
  display: none;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  form {
    margin-bottom: 0;
  }

  #sign-up-form input {
    margin-bottom: 25px;
  }

  .validation_error,
  .validation_message,
  .gfield_radio label,
  .gfield_checkbox label {
    font-size: 16px;
  }
}

/*****************************************************************
	Buttons
*****************************************************************/

.button-base,
.button,
.button-white,
.button-blue,
.gform_button,
.button-hero,
.footer-button,
.button-employment-pdf {
  border: 1px solid #A5A5A5;
  color: #666666;
  font-weight: 400;
  display: inline-block;
  cursor: pointer;
  position: relative;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  padding: 19px 25px;
  min-width: 171px;
  width: auto;
  box-sizing: border-box;
  text-align: center;
}

.button-base:hover,
.button:hover,
.button-white:hover,
.button-blue:hover,
.gform_button:hover,
.button-hero:hover,
.footer-button:hover,
.button-employment-pdf:hover {
  background-color: #A5A5A5;
  color: #FFF;
}

.button-base.center,
.button.center,
.button-white.center,
.button-blue.center,
.gform_button.center,
.button-hero.center,
.footer-button.center,
.button-employment-pdf.center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

p + .button-base,
p + .button,
p + .button-white,
p + .button-blue,
p + .gform_button,
p + .button-hero,
p + .footer-button,
p + .button-employment-pdf {
  margin-top: 13px;
}

.center-button,
.button-hero {
  width: 171px;
  display: block;
}

.button-white,
.button-hero {
  border-color: #FFF;
  color: #FFF;
}

.button-white:hover,
.button-hero:hover {
  background-color: #FFF;
  color: #000;
}

.button-blue,
.gform_button,
.button-employment-pdf {
  border-color: #37aaec;
  background-color: #37aaec;
  color: #FFF;
  padding: 15px 25px;
  margin-bottom: 70px;
}

.button-blue:hover,
.gform_button:hover,
.button-employment-pdf:hover {
  border-color: #A5A5A5;
  background-color: #A5A5A5;
}

.has-outer-icon {
  position: relative;
  /* .icon-a-pdf:hover {
		color: @site-red;
	} */
}

.has-outer-icon i {
  position: absolute;
  right: -55px;
  top: 1px;
  font-size: 35px;
  color: #6E6E6E;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  .button-base,
  .button,
  .button-white,
  .button-blue,
  .gform_button,
  .button-hero,
  .footer-button,
  .button-employment-pdf {
    font-size: 19px;
    width: 100%;
    display: table;
  }

  .button-hero {
    padding-top: 8px;
    padding-bottom: 8px;
    width: 180px;
  }

  .button-blue,
  .gform_button,
  .button-employment-pdf {
    margin-bottom: 25px;
  }

  .has-outer-icon i {
    display: none;
  }
}

/*****************************************************************
	 Footer
*****************************************************************/

.footer-main {
  width: 100%;
}

.footer-main dl {
  padding-bottom: 0;
}

.footer-top,
.footer-bottom,
.footer-mobile-content {
  border-top: 1px solid #E1E1E1;
  float: left;
  clear: both;
  width: 100%;
}

.footer-top {
  padding-top: 56px;
  padding-bottom: 44px;
}

.footer-bottom {
  padding-top: 35px;
  padding-bottom: 30px;
}

.footer-bottom a {
  color: #6E6E6E;
}

.footer-bottom a:hover {
  color: #37aaec;
}

.footer-col {
  float: left;
  width: 25%;
  text-align: left;
}

.footer-col:last-child {
  text-align: center;
}

.footer-col dt {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.footer-col a:hover dt {
  color: #37aaec;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.footer-logo-group {
  position: absolute;
  right: 25px;
  top: -9px;
  overflow: hidden;
}

.footer-logo-base,
.footer-logo1,
.footer-logo2,
.footer-logo3 {
  background-size: 413px;
  background-repeat: no-repeat;
  float: left;
  margin-left: 15px;
  display: block;
  background-image: url(/wp-content/themes/pt6awp/public/i/sprite.png);
}

.footer-logo1 {
  width: 50px;
  height: 50px;
  background-position: -364px 0;
}

.footer-logo2 {
  width: 29px;
  height: 50px;
  background-position: -333px 0;
}

.footer-logo3 {
  width: 40px;
  height: 50px;
  background-size: auto 50px;
  background-position: -126px 0;
}

.footer-mobile-content {
  text-align: center;
}

.footer-mobile-content .footer-inner {
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo-footer-mobile {
  width: 56px;
  height: 56px;
  display: block;
  margin: auto auto;
  position: relative;
  background-image: url(/wp-content/themes/pt6awp/public/i/logo-symbol.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 17px;
}

#footer-social-icons {
  clear: both;
  text-align: center;
  padding-top: 10px;
}

#footer-social-icons a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/wp-content/themes/pt6awp/public/i/sprite.png) no-repeat;
  background-size: 212px;
  margin: 0 5px;
}

#footer-social-icons a:first-child {
  margin-left: 0;
}

#footer-social-icons a:last-child {
  margin-right: 0;
}

#footer-social-icons a.facebook {
  background-position: -65px 0;
}

#footer-social-icons a.twitter {
  background-position: 0 0;
}

#footer-social-icons a.googleplus {
  background-position: -32px 0;
}

#footer-social-icons a.email {
  background-position: -97px 0;
  width: 33px;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

/* @media (max-width: 900px) {

	.footer-logo-group {
		top: -18px;
		right: 6px;
	}

	.footer-logo-base {
		height: 30px;
		width: 30px;
		margin-left: 2px;
	}

	.footer-logo1 {
		width: 40px;
	}
} */

@media (max-width: 767px) {
  .footer-main {
    position: relative !important;
    height: auto;
    float: left;
    text-align: center;
    width: 100%;
  }

  .footer-col {
    width: 31%;
    margin-bottom: 30px;
    margin-right: 2%;
  }

  .footer-col dd {
    font-size: 12px;
  }

  .footer-col:last-child {
    width: 100%;
  }

  .footer-top {
    display: none;
  }

  .footer-inner .footer-bottom {
    padding: 0;
  }

  .footer-logo-group {
    position: relative;
    display: table;
    margin: auto auto 25px auto;
    top: auto;
    right: auto;
  }

  h6 {
    line-height: 150%;
  }
}

/*****************************************************************
  Hero
*****************************************************************/

.hero-base,
.hero-main,
.prefooter-cta,
.prefooter-cta-slider,
.hero-slider,
.prefooter-cta-slider .slide,
.hero-slider .slide {
  height: 485px;
  width: 100%;
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero-filter,
.prefooter-cta-slider .slide,
.hero-slider .slide {
  position: static;
}

.hero-filter:after,
.prefooter-cta-slider .slide:after,
.hero-slider .slide:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.56;
  z-index: 1;
}

.hero-inner,
.prefooter-cta-slider .slide-inner,
.hero-slider .slide-inner {
  display: table;
  width: 100%;
  z-index: 5;
  height: 100%;
}

.hero-inner h2,
.prefooter-cta-slider .slide-inner h2,
.hero-slider .slide-inner h2 {
  text-align: center;
}

.hero-content {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  z-index: 5;
  padding: 20px 0;
  text-align: center;
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: ease;
  -moz-animation-direction: ease;
  animation-direction: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.hero-content h2 {
  text-align: center;
  margin-bottom: 0;
}

.button-hero {
  margin: 29px 0 0;
  width: 240px;
  display: inline-block;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 1024px) {
  .hero-base,
  .hero-main,
  .prefooter-cta,
  .prefooter-cta-slider,
  .hero-slider,
  .prefooter-cta-slider .slide,
  .hero-slider .slide {
    background-attachment: initial;
  }
}

@media (max-width: 767px) {
  .hero-main .prefooter-cta {
    height: auto;
  }

  .main .container-main .hero-inner,
  .main .container-main .prefooter-cta-slider .slide-inner,
  .main .container-main .hero-slider .slide-inner {
    padding: 0;
  }

  .main .container-main .hero-inner .hero-content,
  .main .container-main .prefooter-cta-slider .slide-inner .hero-content,
  .main .container-main .hero-slider .slide-inner .hero-content {
    padding: 25px;
  }

  .main .container-main .hero-inner .hero-content .content-row,
  .main .container-main .prefooter-cta-slider .slide-inner .hero-content .content-row,
  .main .container-main .hero-slider .slide-inner .hero-content .content-row {
    margin-top: 20px;
  }

  .main .container-main .hero-inner .hero-content .content-row .content-col,
  .main .container-main .prefooter-cta-slider .slide-inner .hero-content .content-row .content-col,
  .main .container-main .hero-slider .slide-inner .hero-content .content-row .content-col {
    border-bottom: none;
    padding: 10px;
  }

  .main .container-main .hero-inner .hero-content .content-row .content-col .button-hero,
  .main .container-main .prefooter-cta-slider .slide-inner .hero-content .content-row .content-col .button-hero,
  .main .container-main .hero-slider .slide-inner .hero-content .content-row .content-col .button-hero {
    margin: 0;
  }
}

/*****************************************************************
  Tiles
*****************************************************************/

.tile-group {
  position: relative;
  max-width: 1200px;
  margin: auto auto;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  display: table;
}

.tile-row {
  width: 100%;
  float: left;
  clear: both;
  display: block;
  height: 0;
  padding-top: 44%;
  overflow: hidden;
  position: relative;
}

.tile-base,
.tile-left,
.tile-right {
  display: block;
  height: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
}

.tile-left {
  left: 0;
}

.tile-right {
  right: 0;
}

.tile-content-group {
  margin: auto;
  width: 338px;
}

.tile-content-group h4 {
  margin-bottom: 46px;
  font-weight: 600;
}

.tile-content-group p {
  padding-bottom: 0;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 1000px) {
  .tile-content-group h4 {
    margin-bottom: 25px;
  }

  .tile-content-group p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .tile-content-group h4 {
    margin-bottom: 25px;
    font-size: 22px;
  }

  .tile-content-group p {
    font-size: 16px;
  }

  .tile-row {
    height: auto;
    padding-top: 0;
  }

  .tile-row:first-child .tile-img {
    display: none;
  }

  .tile-base,
  .tile-left,
  .tile-right {
    position: relative;
    width: 100%;
  }

  .tile-img {
    padding-top: 70%;
  }

  .tile-content-group {
    position: relative ! important;
    top: 0 ! important;
    left: 0 ! important;
    margin-left: 0 ! important;
    margin-top: 0 ! important;
    width: auto;
    padding: 25px;
  }
}

.ps-gallery figure {
  display: none;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

/*****************************************************************
  Tabbed Content
*****************************************************************/

.tabbed-content-container {
  width: 100%;
  margin-top: 37px;
  display: inline-block;
}

/* Tabs container */

.r-tabs {
  position: relative;
}

.r-tabs li {
  padding-left: 0px;
}

.r-tabs li:before {
  display: none;
}

/* Tab element */

.r-tabs .r-tabs-nav {
  float: left;
  clear: both;
  display: block;
  width: 100%;
  margin-bottom: 34px;
  border-bottom: 1px solid #E1E1E1;
}

.r-tabs .r-tabs-nav .r-tabs-tab {
  position: relative;
  background-color: #FFF;
  border: 1px solid #E1E1E1;
  border-left: 0;
  border-bottom: 0;
  float: left;
  white-space: nowrap;
  width: 190px;
  box-sizing: border-box;
  display: block;
}

.r-tabs .r-tabs-nav .r-tabs-tab:after {
  width: 100%;
  height: 1px;
  display: block;
  background: #FFF;
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  z-index: 10;
  opacity: 0;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.r-tabs .r-tabs-nav .r-tabs-tab:first-child {
  border-left: 1px solid #E1E1E1;
}

/* Tab anchor */

.r-tabs .r-tabs-nav .r-tabs-anchor {
  display: inline-block;
  padding: 18px 22px;
  display: block;
  text-align: center;
  cursor: pointer;
}

/* Disabled tab */

.r-tabs .r-tabs-nav .r-tabs-state-disabled {
  opacity: 0.5;
}

.r-tabs .r-tabs-nav .r-tabs-state-active:after {
  opacity: 1;
}

/* Active state tab anchor */

.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  text-shadow: none;
  color: #6E6E6E;
  background-color: white;
}

/* Tab panel */

.r-tabs .r-tabs-panel {
  background-color: white;
  float: left;
  clear: both;
}

/* Accordion anchor */

.r-tabs .r-tabs-accordion-title {
  padding-left: 25px;
  padding-right: 25px;
  border-bottom: 2px solid #E1E1E1;
}

.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  display: inline-block;
  padding: 20px 0;
  text-decoration: none;
  position: relative;
  width: 100%;
  font-size: 16px;
  color: #2F2F2F;
}

.r-tabs .r-tabs-accordion-title .r-tabs-anchor:after {
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -6px;
}

/* Active accordion anchor */

.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  text-shadow: none;
}

.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor:after {
  color: #37aaec;
}

/* Disabled accordion button */

.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
  opacity: 0.5;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  .tabbed-content-container {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: -25px;
    margin-right: -25px;
    display: block;
    width: auto;
    position: relative;
  }

  .r-tabs .r-tabs-nav {
    display: none;
  }

  .r-tabs .r-tabs-accordion-title {
    display: block;
  }

  .r-tabs-panel h5 {
    display: none;
  }

  .r-tabs-panel {
    padding: 25px;
  }
}

/*****************************************************************
  Tri Content Group
*****************************************************************/

.tri-content-base,
.tri-content-group {
  display: inline-block;
  width: 100%;
}

.tri-content-base .content-title,
.tri-content-group .content-title {
  position: relative;
  margin-left: 38%;
  text-align: left;
  width: auto;
  margin-bottom: 80px;
}

.tri-content-base .col,
.tri-content-group .col {
  float: left;
}

.tri-content-base .col-left,
.tri-content-group .col-left {
  width: 38%;
}

.tri-content-base .col-center,
.tri-content-group .col-center {
  width: 35%;
}

.tri-content-base .col-right,
.tri-content-group .col-right {
  width: 27%;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  .team-info .content-title {
    margin-left: 0;
    text-align: center;
    margin-bottom: 25px;
  }

  .tri-content-base dt,
  .tri-content-base dd,
  .tri-content-group dt,
  .tri-content-group dd {
    max-width: 100%;
  }
}

/*****************************************************************
	Sliders
*****************************************************************/

.content-slider {
  min-height: 160px;
}

.rsBullets {
  background: none;
}

.rsNav {
  bottom: 15px;
}

.rsNavItem span {
  background-color: #b1b2b3;
  cursor: pointer;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.rsNavItem.rsNavSelected span {
  background-color: #3c3b3b;
}

.prefooter-cta-slider,
.hero-slider {
  background-attachment: initial;
}

.prefooter-cta-slider .rsOverflow,
.hero-slider .rsOverflow,
.prefooter-cta-slider .rsSlide,
.hero-slider .rsSlide,
.prefooter-cta-slider .slide,
.hero-slider .slide {
  height: 100% !important;
}

.prefooter-cta-slider .slide,
.hero-slider .slide {
  background-attachment: initial;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

/*****************************************************************
	Notifications
*****************************************************************/

.notifications-box {
  position: fixed;
  left: 25px;
  top: 25px;
  background: rgba(55, 170, 236, 0.9);
  padding: 24px 50px 24px 24px;
  z-index: 9000;
  color: #FFF;
  max-width: 300px;
  -webkit-backface-visibility: visible;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  opacity: 0;
  -webkit-transform: translate3d(0, 40px, 0) scale3d(0.1, 0.6, 1);
  transform: translate3d(0, 40px, 0) scale3d(0.1, 0.6, 1);
}

.notifications-box p {
  color: #FFF;
  padding-bottom: 0;
  line-height: 1.4;
}

.notifications-box.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

.notifications-box a {
  color: #FFF;
  position: relative;
}

.notifications-box a:before {
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 100%;
  margin-top: 0;
  content: "";
  background-color: #FFF;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.notifications-box a:hover:before,
.notifications-box a:focus:before {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  opacity: 0;
}

.notifications-box p {
  margin: 0;
}

.notifications-close {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.notifications-close:hover {
  color: #000;
}

.notifications-box.is-error {
  background: rgba(224, 37, 46, 0.9);
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

/*****************************************************************
  Content Triggers
*****************************************************************/

.content-trigger {
  margin-bottom: 40px;
}

.content-source {
  display: none;
  -moz-transition: all 0.25s linear 1.5s;
  transition: all 0.25s linear 1.5s;
  opacity: 0;
  visibility: hidden;
}

.content-source .gform_heading {
  display: none;
}

.content-trigger.is-disabled {
  opacity: 0;
  visibility: hidden;
}

.content-source.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

.home .main-inner,
.home .platform-grid,
.home .programs-grid {
  padding-top: 46px;
  padding-bottom: 45px;
}

.home .main-inner > .inner-base,
.home .main-inner > .main-inner,
.home .main-inner > .inner-small,
.home .main-inner > .header-inner,
.home .main-inner > .footer-inner,
.home .main-inner > .hero-inner,
.home .main-inner > .home .main-inner,
.home .main-inner > .main .engine-table-wrap,
.home .platform-grid > .inner-base,
.home .main-inner > .main .certification-list-row,
.home .programs-grid > .inner-base,
.home .main-inner > .prefooter-cta-slider .slide-inner,
.home .main-inner > .hero-slider .slide-inner,
.home .main-inner > .platform-grid,
.home .main-inner > .home .platform-grid,
.home .main-inner > .programs-grid,
.home .main-inner > .home .programs-grid {
  padding: 0;
}

.content-row {
  display: block;
  width: 100%;
  float: left;
  clear: both;
}

.content-col {
  width: 26%;
  margin-right: 11%;
  float: left;
  text-align: center;
}

.content-col .icon {
  font-size: 76px;
  width: 100%;
  display: table;
  color: #37aaec;
  text-align: center;
  margin-bottom: 30px;
  height: 90px;
}

.content-col .icon:before {
  display: table-cell;
  vertical-align: middle;
}

.content-col .icon-a-engine {
  font-size: 90px;
}

.content-col:last-child {
  margin-right: 0;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  .home .main-inner,
  .home .platform-grid,
  .home .programs-grid {
    padding-top: 0;
    padding-bottom: 0;
  }

  .content-col {
    width: auto;
    margin: auto auto;
    border-bottom: 1px solid #D0D0D0;
    margin-left: -25px;
    margin-right: -25px;
    padding-top: 30px;
    padding-bottom: 46px;
    padding-left: 25px;
    padding-right: 25px;
    float: none;
  }

  .content-col:last-child {
    margin-right: -25px;
    border-bottom: 0;
  }

  .content-col p {
    max-width: 300px;
    margin: auto auto;
    padding-bottom: 0;
  }

  .content-col .icon {
    width: auto;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 25px;
  }

  .home .footer-main .footer-mobile-content {
    border-top: 0;
  }
}

.post-title {
  padding: 40px 40px 0 40px;
  margin-bottom: 0px;
}

.maintenance .button-blue,
.maintenance .gform_button,
.maintenance .button-employment-pdf {
  margin-bottom: 0;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

.page-title-heading {
  display: block !important;
  text-align: center;
  color: #2f2f2f;
  padding-bottom: 20px;
  font-weight: 400;
}

.engine .inner-small {
  padding-bottom: 20px;
}

.engine-table table {
  max-width: 100%;
}

.engine-table table td {
  font-size: 13px;
}

.main .engine-table-wrap {
  padding-bottom: 90px;
  display: block;
}

.main .engine-table-wrap table {
  margin-bottom: 0;
}

.rotor-intro {
  float: left;
  width: 40%;
  box-sizing: border-box;
  padding-right: 15px;
}

.rotor-inquiry-form-wrapper {
  float: left;
  width: 60%;
  padding-bottom: 50px;
}

.main-inner .rotor-inquiry-form,
.platform-grid .rotor-inquiry-form,
.programs-grid .rotor-inquiry-form {
  background: #ebf2f8;
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

.main-inner .rotor-inquiry-form li:before,
.platform-grid .rotor-inquiry-form li:before,
.programs-grid .rotor-inquiry-form li:before {
  content: '';
}

.main-inner .rotor-inquiry-form .gfield_label,
.platform-grid .rotor-inquiry-form .gfield_label,
.programs-grid .rotor-inquiry-form .gfield_label {
  display: block;
  padding-bottom: 0;
}

.main-inner .rotor-inquiry-form h4,
.platform-grid .rotor-inquiry-form h4,
.programs-grid .rotor-inquiry-form h4 {
  margin-bottom: 0;
  font-size: 1.5em;
}

.main-inner .rotor-inquiry-form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
.main-inner .rotor-inquiry-form textarea,
.platform-grid .rotor-inquiry-form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
.platform-grid .rotor-inquiry-form textarea,
.programs-grid .rotor-inquiry-form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
.programs-grid .rotor-inquiry-form textarea {
  padding: 5px;
  margin-bottom: 0;
}

.main-inner .rotor-inquiry-form textarea,
.platform-grid .rotor-inquiry-form textarea,
.programs-grid .rotor-inquiry-form textarea {
  height: 90px;
}

.main-inner .rotor-inquiry-form .gfield,
.platform-grid .rotor-inquiry-form .gfield,
.programs-grid .rotor-inquiry-form .gfield {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding: 0 10px !important;
}

.main-inner .rotor-inquiry-form .gfield.wide,
.platform-grid .rotor-inquiry-form .gfield.wide,
.programs-grid .rotor-inquiry-form .gfield.wide {
  width: 100%;
  float: none;
  clear: both;
}

.main-inner .rotor-inquiry-form .gfield_checkbox li,
.platform-grid .rotor-inquiry-form .gfield_checkbox li,
.programs-grid .rotor-inquiry-form .gfield_checkbox li {
  padding-left: 0;
}

.main-inner .rotor-inquiry-form .gfield_checkbox li label,
.platform-grid .rotor-inquiry-form .gfield_checkbox li label,
.programs-grid .rotor-inquiry-form .gfield_checkbox li label {
  font-size: 11px;
}

.main-inner .rotor-inquiry-form .gform_button,
.platform-grid .rotor-inquiry-form .gform_button,
.programs-grid .rotor-inquiry-form .gform_button {
  margin-bottom: 0;
}

.main-inner .rotor-inquiry-form .gform_footer,
.platform-grid .rotor-inquiry-form .gform_footer,
.programs-grid .rotor-inquiry-form .gform_footer {
  text-align: right;
  margin-top: -20px;
}

#field_9_4 {
  width: 100%;
  padding: 0 15px;
}

.engine-table-info {
  padding: 25px 0;
  color: #A5A5A5;
}

.engine-table-info p {
  padding-bottom: 0;
  font-size: 14px;
}

.engine-row {
  height: auto ! important;
}

.engine-row td {
  white-space: nowrap;
}

.col-status {
  width: 90px;
}

.row-specs a {
  display: block;
  width: auto;
  text-align: center;
}

.compare-checkbox {
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 1px solid #A5A5A5;
  content: "";
  margin-top: -9px;
  left: 10px;
  box-sizing: border-box;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  cursor: pointer;
}

.compare-checkbox:hover {
  border-color: #37aaec;
}

.active .compare-checkbox {
  border-color: #37aaec;
  background-color: #37aaec;
}

.engine-table .col-models {
  cursor: pointer;
  padding-left: 40px;
  text-align: left;
  width: 70px;
}

.engine .table-vertical {
  margin-top: 40px;
}

.compare-table {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  opacity: 0;
  height: 0;
  visibility: hidden;
  -ms-transform: translate(0, 30px);
  -webkit-transform: translate3d(0, 30px, 0);
  -moz-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
  position: absolute;
  width: 100%;
  min-width: 100px;
  display: block;
}

.compare-table h4 {
  text-align: center;
}

.compare-table.active {
  opacity: 1;
  visibility: visible;
  -ms-transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  position: relative;
  height: auto;
}

.table-vertical .compare-table-main th {
  padding-top: 18px;
  padding-bottom: 18px;
}

.table-vertical .table-rotor-header td {
  background-color: #72d0f4 ! important;
  color: #FFF;
  border: 0;
  height: auto;
}

.table-vertical .table-rotor-header td.col-cycles {
  text-transform: none;
  font-size: 17px;
  text-align: center;
}

.table-filter {
  width: 154px;
  position: absolute;
  right: 25px;
  top: -70px;
  background-color: #FFF;
}

.table-filter-button {
  border: 1px solid #A5A5A5;
  width: 100%;
  color: #666666;
  box-sizing: border-box;
  z-index: 2000;
  background: #FFF;
  cursor: pointer;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  display: block;
}

.table-filter-button span {
  padding: 14px 0;
  display: block;
  width: 100%;
  text-align: center;
}

.table-filter-button:hover {
  color: #37aaec;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.table-filter-drop {
  border: 1px solid #A5A5A5;
  box-sizing: border-box;
  border-top: 0;
  left: 0;
  top: 100%;
  position: absolute;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  background-color: #FFF;
}

.table-filter.active {
  z-index: 100;
}

.table-filter.active .table-filter-drop {
  visibility: visible;
  opacity: 1;
}

.table-filter-reset,
.table-filter-item {
  color: #666666;
  font-size: 14px;
  position: relative;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  cursor: pointer;
}

.table-filter-reset span,
.table-filter-item span {
  padding: 12px 25px 12px 44px;
  display: block;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.table-filter-reset:hover,
.table-filter-item:hover {
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.table-filter-reset:hover span,
.table-filter-item:hover span {
  color: #37aaec;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.table-filter-item:before {
  width: 12px;
  height: 12px;
  display: block;
  border: 1px solid #A5A5A5;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 13px;
  box-sizing: border-box;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.table-filter-item:hover:before {
  border-color: #37aaec;
}

.table-filter-item.active:before {
  border-color: #37aaec;
  background-color: #37aaec;
}

.engine-table.filter-on > table > tbody > tr {
  display: none;
  width: 100%;
  opacity: 0;
  background-color: #FFF;
  border-bottom: 1px solid #E1E1E1;
}

.engine-table.filter-on > table > tbody > tr.display {
  height: auto;
  display: table-row;
  opacity: 1;
}

.engine-single span {
  font-weight: 700;
}

.reveal-table-container .col-cycles,
.reveal-table-container .col-pn {
  text-align: center;
}

.specs-more {
  border: 1px solid rgba(46, 169, 239, 0);
  padding: 8px 20px;
  z-index: 5000;
  font-weight: 700;
  text-transform: uppercase;
  color: #37aaec;
}

.specs-more:hover {
  color: #37aaec;
  border-color: #2ea9ef;
}

.reveal-table-container.active > .specs-more,
.reveal-table-container:hover > .specs-more {
  border-color: #2ea9ef;
}

.reveal-table-inner .specs-more {
  right: 41px;
  bottom: 12px;
  display: block;
  float: right;
  position: relative;
}

.reveal-table-link {
  display: block;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 910px) {
  .engine-table-info {
    padding: 25px;
  }

  .main .engine-table-wrap {
    padding-left: 0 ! important;
    padding-right: 0 ! important;
    padding-bottom: 0;
  }

  .engine-table td .engine-table th {
    height: auto;
  }

  .engine-table td .engine-table th br {
    display: none;
  }

  .engine .button,
  .engine .footer-button {
    margin-left: 25px;
    margin-right: 25px;
    display: block;
    width: auto;
  }

  .compare-checkbox {
    left: 13px;
  }

  .col-models {
    padding-right: 12px;
    padding-left: 47px;
    width: auto;
  }

  .col-models br {
    display: none;
  }

  .pinned {
    width: 40%;
  }

  div.table-wrapper div.scrollable {
    margin-left: 40%;
  }

  .table-vertical .table-wrapper {
    border-top: 0;
    border-bottom: 0;
  }

  .table-filter {
    display: none;
  }

  .notifications-box {
    z-index: 99999999;
    top: 48px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    max-width: none;
  }

  .notifications-box p {
    font-size: 14px;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-table h4 {
    text-align: left;
    padding: 10px 25px;
  }

  .specs-more {
    display: inline;
  }
}

@media (max-width: 979px) {
  .rotor-intro,
  .rotor-inquiry-form-wrapper {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .engine .button,
  .engine .footer-button {
    margin-left: 10px;
    width: 97%;
  }

  .main-inner .rotor-inquiry-form .gform_footer,
  .platform-grid .rotor-inquiry-form .gform_footer,
  .programs-grid .rotor-inquiry-form .gform_footer {
    margin-top: 10px;
  }

  .main-inner .rotor-inquiry-form .gfield_label,
  .platform-grid .rotor-inquiry-form .gfield_label,
  .programs-grid .rotor-inquiry-form .gfield_label {
    font-size: 14px;
  }

  .main-inner .rotor-inquiry-form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
  .platform-grid .rotor-inquiry-form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
  .programs-grid .rotor-inquiry-form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]) {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .main-inner .rotor-inquiry-form .gfield,
  .platform-grid .rotor-inquiry-form .gfield,
  .programs-grid .rotor-inquiry-form .gfield {
    width: 100%;
  }

  .engine .button,
  .engine .footer-button {
    width: 95%;
  }
}

.iframe-container {
  background-color: #F7F7F9;
  padding: 25px;
  padding-bottom: 0;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

.parts-iframe {
  max-width: 900px;
  height: 960px;
  width: 100%;
  border: none;
  margin: auto auto;
  display: block;
}

.more-info {
  text-align: center;
}

@media only screen and (max-width: 979px) {
  .more-info {
    text-align: left;
  }

  .more-info ul {
    display: block;
  }
}

.more-info ul {
  text-align: left;
  display: inline-block;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

.container-main .inner-base,
.container-main .main-inner,
.container-main .inner-small,
.container-main .header-inner,
.container-main .footer-inner,
.container-main .hero-inner,
.container-main .home .main-inner,
.container-main .main .engine-table-wrap,
.container-main .main .certification-list-row,
.container-main .prefooter-cta-slider .slide-inner,
.container-main .hero-slider .slide-inner,
.container-main .platform-grid,
.container-main .home .platform-grid,
.container-main .programs-grid,
.container-main .home .programs-grid {
  padding: 25px;
}

.container-main .inner-base .page-title,
.container-main .main-inner .page-title,
.container-main .inner-small .page-title,
.container-main .inner-base .content-title,
.container-main .header-inner .page-title,
.container-main .footer-inner .page-title,
.container-main .hero-inner .page-title,
.container-main .home .main-inner .page-title,
.container-main .main .engine-table-wrap .page-title,
.container-main .main .certification-list-row .page-title,
.container-main .prefooter-cta-slider .slide-inner .page-title,
.container-main .hero-slider .slide-inner .page-title,
.container-main .platform-grid .page-title,
.container-main .home .platform-grid .page-title,
.container-main .programs-grid .page-title,
.container-main .home .programs-grid .page-title {
  display: none;
}

.container-main .inner-base .page-title-inner,
.container-main .main-inner .page-title-inner,
.container-main .inner-small .page-title-inner,
.container-main .header-inner .page-title-inner,
.container-main .footer-inner .page-title-inner,
.container-main .hero-inner .page-title-inner,
.container-main .home .main-inner .page-title-inner,
.container-main .main .engine-table-wrap .page-title-inner,
.container-main .main .certification-list-row .page-title-inner,
.container-main .prefooter-cta-slider .slide-inner .page-title-inner,
.container-main .hero-slider .slide-inner .page-title-inner,
.container-main .platform-grid .page-title-inner,
.container-main .home .platform-grid .page-title-inner,
.container-main .programs-grid .page-title-inner,
.container-main .home .programs-grid .page-title-inner {
  text-align: center;
  line-height: 160%;
  letter-spacing: 0px;
  color: #2f2f2f;
  margin: 0 0 20px 0;
  padding: 0;
}

.platform-grid {
  width: 100%;
}

.platform-grid .platform-col {
  width: 33%;
  float: left;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.platform-grid .platform-col img {
  object-fit: cover;
  height: 200px;
  width: 300px;
  max-width: 100%;
  margin-bottom: 40px;
}

.prefooter-cta .content-col {
  width: 100%;
}

.prefooter-cta.no-background-image,
.prefooter-cta .slide.no-background-image {
  background-color: #F7F7F9;
}

.prefooter-cta.no-background-image:after,
.prefooter-cta .slide.no-background-image:after,
.prefooter-cta.no-background-image .hero-filter,
.prefooter-cta .slide.no-background-image .hero-filter,
.prefooter-cta.no-background-image .prefooter-cta-slider .slide,
.prefooter-cta .slide.no-background-image .prefooter-cta-slider .slide,
.prefooter-cta.no-background-image .hero-slider .slide,
.prefooter-cta .slide.no-background-image .hero-slider .slide {
  display: none;
}

.prefooter-cta.no-background-image h2,
.prefooter-cta .slide.no-background-image h2,
.prefooter-cta.no-background-image .button-hero,
.prefooter-cta .slide.no-background-image .button-hero {
  color: #2F2F2F;
  border-color: #2F2F2F;
}

@media (max-width: 1023px) {
  .platform-grid .platform-col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .platform-grid .platform-col {
    width: 100%;
  }
}

.container-main * {
  box-sizing: border-box;
}

.container-main .inner-base,
.container-main .main-inner,
.container-main .inner-small,
.container-main .header-inner,
.container-main .footer-inner,
.container-main .hero-inner,
.container-main .home .main-inner,
.container-main .main .engine-table-wrap,
.container-main .main .certification-list-row,
.container-main .prefooter-cta-slider .slide-inner,
.container-main .hero-slider .slide-inner,
.container-main .platform-grid,
.container-main .home .platform-grid,
.container-main .programs-grid,
.container-main .home .programs-grid {
  padding: 25px;
}

.container-main .inner-base .row,
.container-main .main-inner .row,
.container-main .inner-small .row,
.container-main .header-inner .row,
.container-main .footer-inner .row,
.container-main .hero-inner .row,
.container-main .home .main-inner .row,
.container-main .main .engine-table-wrap .row,
.container-main .main .certification-list-row .row,
.container-main .prefooter-cta-slider .slide-inner .row,
.container-main .hero-slider .slide-inner .row,
.container-main .platform-grid .row,
.container-main .home .platform-grid .row,
.container-main .programs-grid .row,
.container-main .home .programs-grid .row {
  clear: both;
}

.container-main .inner-base .row .content-column,
.container-main .main-inner .row .content-column,
.container-main .inner-small .row .content-column,
.container-main .header-inner .row .content-column,
.container-main .footer-inner .row .content-column,
.container-main .hero-inner .row .content-column,
.container-main .home .main-inner .row .content-column,
.container-main .main .engine-table-wrap .row .content-column,
.container-main .main .certification-list-row .row .content-column,
.container-main .prefooter-cta-slider .slide-inner .row .content-column,
.container-main .hero-slider .slide-inner .row .content-column,
.container-main .platform-grid .row .content-column,
.container-main .home .platform-grid .row .content-column,
.container-main .programs-grid .row .content-column,
.container-main .home .programs-grid .row .content-column {
  float: left;
  width: 40%;
}

.container-main .inner-base .row .attribute-list-column,
.container-main .main-inner .row .attribute-list-column,
.container-main .inner-small .row .attribute-list-column,
.container-main .header-inner .row .attribute-list-column,
.container-main .footer-inner .row .attribute-list-column,
.container-main .hero-inner .row .attribute-list-column,
.container-main .home .main-inner .row .attribute-list-column,
.container-main .main .engine-table-wrap .row .attribute-list-column,
.container-main .main .certification-list-row .row .attribute-list-column,
.container-main .prefooter-cta-slider .slide-inner .row .attribute-list-column,
.container-main .hero-slider .slide-inner .row .attribute-list-column,
.container-main .platform-grid .row .attribute-list-column,
.container-main .home .platform-grid .row .attribute-list-column,
.container-main .programs-grid .row .attribute-list-column,
.container-main .home .programs-grid .row .attribute-list-column {
  float: left;
  width: 60%;
  padding: 0 40px;
}

.container-main .inner-base .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .inner-base .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .inner-small .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .inner-small .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .header-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .header-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .footer-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .footer-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .hero-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .hero-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .home .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .home .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .main .engine-table-wrap .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .main .engine-table-wrap .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .main .certification-list-row .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .main .certification-list-row .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .prefooter-cta-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .prefooter-cta-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .hero-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .hero-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .home .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .home .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col,
.container-main .home .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .home .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col {
  padding: 10px;
  text-align: left;
}

.container-main .inner-base .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .inner-base .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .inner-small .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .inner-small .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .header-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .header-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .footer-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .footer-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .hero-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .hero-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .home .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .home .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .main .engine-table-wrap .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .main .engine-table-wrap .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .main .certification-list-row .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .main .certification-list-row .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .prefooter-cta-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .prefooter-cta-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .hero-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .hero-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .home .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .home .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p,
.container-main .home .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col p,
.container-main .home .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .detail-col p {
  padding: 0;
}

.container-main .inner-base .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .inner-small .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .header-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .footer-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .hero-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .home .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .main .engine-table-wrap .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .main .certification-list-row .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .prefooter-cta-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .hero-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .home .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col,
.container-main .home .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col {
  background-color: #37aaec;
  text-transform: uppercase;
}

.container-main .inner-base .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .inner-small .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .header-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .footer-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .hero-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .home .main-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .main .engine-table-wrap .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .main .certification-list-row .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .prefooter-cta-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .hero-slider .slide-inner .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .home .platform-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col *,
.container-main .home .programs-grid .row .attribute-list-column .attribute-list-wrapper .attribute-row .title-col * {
  color: #FFF;
}

@media (max-width: 1023px) {
  .container-main .inner-base .row .content-column,
  .container-main .main-inner .row .content-column,
  .container-main .inner-small .row .content-column,
  .container-main .header-inner .row .content-column,
  .container-main .footer-inner .row .content-column,
  .container-main .hero-inner .row .content-column,
  .container-main .home .main-inner .row .content-column,
  .container-main .main .engine-table-wrap .row .content-column,
  .container-main .main .certification-list-row .row .content-column,
  .container-main .prefooter-cta-slider .slide-inner .row .content-column,
  .container-main .hero-slider .slide-inner .row .content-column,
  .container-main .platform-grid .row .content-column,
  .container-main .home .platform-grid .row .content-column,
  .container-main .programs-grid .row .content-column,
  .container-main .home .programs-grid .row .content-column {
    width: 100%;
  }

  .container-main .inner-base .row .attribute-list-column,
  .container-main .main-inner .row .attribute-list-column,
  .container-main .inner-small .row .attribute-list-column,
  .container-main .header-inner .row .attribute-list-column,
  .container-main .footer-inner .row .attribute-list-column,
  .container-main .hero-inner .row .attribute-list-column,
  .container-main .home .main-inner .row .attribute-list-column,
  .container-main .main .engine-table-wrap .row .attribute-list-column,
  .container-main .main .certification-list-row .row .attribute-list-column,
  .container-main .prefooter-cta-slider .slide-inner .row .attribute-list-column,
  .container-main .hero-slider .slide-inner .row .attribute-list-column,
  .container-main .platform-grid .row .attribute-list-column,
  .container-main .home .platform-grid .row .attribute-list-column,
  .container-main .programs-grid .row .attribute-list-column,
  .container-main .home .programs-grid .row .attribute-list-column {
    width: 100%;
    padding: 0;
  }
}

.contact dt,
.contact dd {
  line-height: 138%;
}

.contact dt {
  padding-bottom: 0;
}

.contact dd a {
  color: #37aaec;
}

.map-live {
  margin-bottom: 46px;
}

.map-static {
  margin-bottom: 25px;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  position: absolute;
}

.map-static a {
  display: block;
}

.map-static img {
  width: 100%;
}

.contact-info {
  width: 100%;
  display: inline-block;
}

.contact-info {
  float: left;
  clear: both;
  display: inline-block;
}

.contact-info .col-left,
.contact-info .col-right {
  float: left;
}

.contact-info .col-left {
  width: 66.5%;
}

.contact-info .col-right {
  width: 33.5%;
}

.contact-team-contacts h4 {
  margin-bottom: 40px;
}

.contact-team-contacts dl {
  padding-right: 20px;
}

.contact-team-contacts .contacts {
  -webkit-column-count: 3;
  /* Chrome, Safari, Opera */
  -moz-column-count: 3;
  /* Firefox */
  column-count: 3;
}

.contact-team-contacts dl {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  .map-static {
    visibility: visible;
    height: auto;
    position: relative;
  }

  .overlay-link {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: block;
    background-color: rgba(0, 0, 0, 0);
  }

  .map-live {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
  }

  .contact-title-empty {
    display: none;
  }

  .contact-inquires,
  .contact-team-contacts {
    width: 100%;
  }

  .contact-inquires .col-left,
  .contact-team-contacts .col-left,
  .contact-inquires .col-right,
  .contact-team-contacts .col-right {
    width: 100%;
  }

  .page-title,
  .content-title {
    display: none;
  }

  .contact .container-main > .main-inner,
  .contact .container-main > .platform-grid,
  .contact .container-main > .programs-grid {
    padding-top: 0;
  }
}

.employment .content-group {
  padding-bottom: 30px;
}

.employment-group:before {
  content: "";
}

.content-group:last-child {
  padding-bottom: 0;
}

.button-employment-pdf {
  position: relative;
  margin: 15px auto auto auto;
  display: table;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  .employment .inner-small {
    padding-bottom: 30px;
  }
}

.main .certification-list-row {
  padding-top: 0;
}

.certification-list-col {
  width: 22%;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  margin-right: 4%;
}

.certification-list-col:last-child {
  margin-right: 0;
}

.certification-list-col dl {
  padding-bottom: 57px;
}

.certification-list-col dt {
  padding-bottom: 13px;
}

.certification-list-col dd {
  position: relative;
  margin-bottom: 11px;
}

.certification-list-col dd a {
  display: block;
  position: relative;
}

.certification-list-col dd span {
  white-space: nowrap;
}

.certification-list-col .flag {
  width: 38px;
  height: 25px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
}

.certification-list-col dd span {
  padding-left: 58px;
}

.load-btn button {
  padding: 12px 44px;
  font-size: 16px;
  border: solid 1px #aeaeae;
  color: #434343;
  background: #fff;
  float: right;
  margin-bottom: 30px;
}

.certification-list-col dd a,
.flag {
  height: 32px !important;
}

.certification-list-col dd span {
  position: relative;
  top: 6px;
  left: 15px;
  font-size: 14px;
}

.certs {
  margin-top: 40px;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (max-width: 767px) {
  .certification-list-col {
    width: 100%;
  }

  .certification-list-col dt {
    padding-bottom: 25px;
    text-align: center;
  }

  .certification-list-col dl {
    padding-bottom: 25px;
  }

  .certification-list-col dd {
    font-size: 13px;
    padding-bottom: 21px;
    display: table;
    margin: auto auto;
  }

  .certification-list-col dd span {
    padding-left: 53px;
  }
}

.programs-grid {
  width: 100%;
}

.program-col {
  width: 33%;
  float: left;
  height: 0;
  padding-top: 33%;
  position: relative;
}

.program-col .program-inner {
  position: absolute;
}

.program-col > * {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -moz-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
  box-sizing: border-box;
  display: block;
}

.program-col * {
  text-align: center;
}

.program-col i {
  color: #37aaec;
  font-size: 80px;
}

.program-col .icon-a-link {
  font-size: 70px;
}

.program-col .icon-a-link:before {
  padding: 19px 0;
}

.program-off:before {
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -6px;
  color: #A5A5A5;
  display: none;
  -webkit-backface-visiblity: visible;
}

.program-off h4 {
  margin-bottom: 0;
}

.program-on {
  opacity: 0;
  visibility: hidden;
  background: #37aaec;
  border-bottom: 6px solid #0780a5;
  overflow: auto;
}

.program-on .program-inner {
  padding: 15px 26px 10px 26px;
}

.program-on * {
  color: #FFF;
}

.program-on h4 {
  font-weight: 700;
}

.program-on p {
  text-align: left;
  line-height: 1.4;
  padding-bottom: 0;
}

/*****************************************************************
	Responsive Notches
*****************************************************************/

@media (min-width: 768px) {
  .program-col:nth-child(3n + 1),
  .program-col:nth-child(3n + 2) {
    border-right: 1px solid #E1E1E1;
  }

  .program-col:nth-child(-n + 6) {
    border-bottom: 1px solid #E1E1E1;
  }

  .program-col:hover .program-off {
    opacity: 0;
    visibility: hidden;
  }

  .program-col:hover .program-on {
    opacity: 1;
    visibility: visible;
  }

  .touch .program-col.active .program-off {
    opacity: 0;
    visibility: hidden;
  }

  .touch .program-col.active .program-on {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .main .programs-grid {
    padding: 0;
  }

  .program-col {
    width: 100%;
    padding-top: 0;
    height: auto;
    cursor: pointer;
  }

  .program-col > * {
    position: relative;
  }

  .program-col .icon {
    font-size: 36px;
    position: absolute;
    left: 25px;
    top: -2px;
  }

  .program-col .icon:before {
    padding: 0;
  }

  .program-col .icon-a-link {
    font-size: 28px;
    top: -1px;
  }

  .program-inner {
    width: auto;
    overflow: visible;
    position: relative ! important;
    margin: auto ! important;
    left: 0 ! important;
    top: 0 ! important;
  }

  .program-off {
    padding: 20px 0;
    border-bottom: 2px solid #E1E1E1;
  }

  .program-off:before {
    display: block;
  }

  .program-col.active .program-off:before {
    content: "\F111";
    color: #37aaec;
  }

  .program-off h4 {
    font-size: 16px;
    white-space: nowrap;
    text-align: left;
    padding-left: 85px;
    top: 1px;
    position: relative;
  }

  .program-off h4 br {
    display: none;
  }

  .program-on {
    visibility: visible;
    opacity: 1;
    display: none;
  }

  .program-on h4 {
    display: none;
  }

  .program-on p {
    font-size: 16px;
  }

  .program-col.active .program-on {
    display: block;
  }
}

/*****************************************************************
	Shame - Forced Hacks
	// See http://csswizardry.com/2013/04/shame-css/
*****************************************************************/

.mobile {
  display: none ! important;
}

@media (max-width: 767px) {
  .mobile {
    display: block ! important;
  }

  .logo-mobile {
    display: inline-block ! important;
  }
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.pricing-table thead {
  background: #37aaec;
}

.pricing-table thead tr td {
  text-transform: uppercase;
  color: #fff;
}

.parts-inquiry-form {
  background-color: #ebf2f8;
  border: solid 1px #e3e3e4;
  border-radius: 5px;
  padding: 25px;
}

.parts-inquiry-form input[type=text] {
  font-size: 14px !important;
  padding: 6px !important;
  margin-bottom: 0 !important;
}

.parts-inquiry-form label {
  padding: 0 5px;
}

.parts-inquiry-form .gfield_label {
  display: block;
}

.parts-inquiry-form .half {
  width: 48%;
  float: left;
}

.parts-inquiry-form .half.pad {
  padding-right: 4%;
}

.parts-inquiry-form .gform_button.button,
.parts-inquiry-form .gform_button.footer-button {
  float: right;
  margin-bottom: 0;
}

.parts-inquiry-form .hide-label > label {
  display: none;
}

@media (max-width: 700px) {
  .pricing-table tr td:nth-child(3),
  .pricing-table tr td:nth-child(7) {
    display: none;
  }
}



/*# sourceMappingURL=app.css.map*/