@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@keyframes popout {
  0% {
    transform: scale(0);
  }
  20% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes shake-intense {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes turn-toRight {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes turn-toLeft {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes animate-extra {
  0% {
    -webkit-transform: perspective(160px);
  }
  50% {
    -webkit-transform: perspective(160px) rotateY(-180deg);
  }
  100% {
    -webkit-transform: perspective(160px) rotateY(-180deg) rotateX(-180deg);
  }
}
@keyframes glowinglight {
  0% {
    background-color: #FFF;
    box-shadow: 0 0 10px #dfdfce;
  }
  50% {
    background-color: #FFF;
    box-shadow: 0 0 50px #dfdfce;
  }
  100% {
    background-color: #FFF;
    box-shadow: 0 0 10px #dfdfce;
  }
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Bold.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Bold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Black.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Black.woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Heavy.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Heavy.woff) format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Medium.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Light.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Regular.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Semibold.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Semibold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Thin.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Thin.woff) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Ultralight.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Ultralight.woff) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "San Francisco Display", sans-serif;
}
body .wrapper.gap {
  padding-top: 4rem;
}
body .wrapper.noscroll {
  overflow: hidden;
  height: 100vh;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.u-dn {
  display: none;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-underline {
  text-decoration: underline;
}

input,
button,
select {
  font-family: inherit;
}

[role=button],
button {
  cursor: pointer;
}

input {
  word-break: normal;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

b,
strong {
  font-weight: bold;
}

#story-root {
  margin: 10px;
}

.webkitBox {
  display: inline-block !important;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}

.opacity0 {
  opacity: 0;
}

.modal-open .main-wrapper.noscroll {
  overflow: hidden;
  height: 100vh;
}

::-webkit-scrollbar {
  position: absolute;
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar:vertical {
  width: 7px;
  -webkit-overflow-scrolling: auto;
}

.mw43 {
  max-width: 43%;
  text-align: center;
}
@media (max-width: 575px) {
  .mw43 {
    max-width: 100%;
  }
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@keyframes popout {
  0% {
    transform: scale(0);
  }
  20% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes shake-intense {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes turn-toRight {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes turn-toLeft {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes animate-extra {
  0% {
    -webkit-transform: perspective(160px);
  }
  50% {
    -webkit-transform: perspective(160px) rotateY(-180deg);
  }
  100% {
    -webkit-transform: perspective(160px) rotateY(-180deg) rotateX(-180deg);
  }
}
@keyframes glowinglight {
  0% {
    background-color: #FFF;
    box-shadow: 0 0 10px #dfdfce;
  }
  50% {
    background-color: #FFF;
    box-shadow: 0 0 50px #dfdfce;
  }
  100% {
    background-color: #FFF;
    box-shadow: 0 0 10px #dfdfce;
  }
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Bold.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Bold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Black.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Black.woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Heavy.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Heavy.woff) format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Medium.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Light.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Regular.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Semibold.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Semibold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Thin.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Thin.woff) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Display";
  src: url(../assets/src/assets/fonts/SanFranciscoDisplay-Ultralight.woff2) format("woff2"), url(../assets/src/assets/fonts/SanFranciscoDisplay-Ultralight.woff) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "San Francisco Display", sans-serif;
}
body .wrapper.gap {
  padding-top: 4rem;
}
body .wrapper.noscroll {
  overflow: hidden;
  height: 100vh;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.u-dn {
  display: none;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-underline {
  text-decoration: underline;
}

input,
button,
select {
  font-family: inherit;
}

[role=button],
button {
  cursor: pointer;
}

input {
  word-break: normal;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

b,
strong {
  font-weight: bold;
}

#story-root {
  margin: 10px;
}

.webkitBox {
  display: inline-block !important;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}

.opacity0 {
  opacity: 0;
}

.modal-open .main-wrapper.noscroll {
  overflow: hidden;
  height: 100vh;
}

::-webkit-scrollbar {
  position: absolute;
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar:vertical {
  width: 7px;
  -webkit-overflow-scrolling: auto;
}

.mw43 {
  max-width: 43%;
  text-align: center;
}
@media (max-width: 575px) {
  .mw43 {
    max-width: 100%;
  }
}

.a-heading {
  margin: 0;
}
.a-heading--white {
  color: #ffffff;
}
.a-heading--black {
  color: #000000;
}
.a-heading--mediumSeaGreen {
  color: #3ABF57;
}
.a-heading--mikadoYellow {
  color: #FFC107;
}
.a-heading--redPigment {
  color: #ED1E1E;
}
.a-heading--smokyBlack {
  color: #0E0E0E;
}
.a-heading--antiFlashWhite {
  color: #F2F2F2;
}
.a-heading--taupeGray {
  color: #878787;
}
.a-heading--darkLiver {
  color: #4F4F4F;
}
.a-heading--jet {
  color: #333333;
}
.a-heading--gray {
  color: #808080;
}
.a-heading--spanishGray {
  color: #999;
}
.a-heading--sonicSilver {
  color: #7a7a7a;
}
.a-heading--eericBlack {
  color: #1f1f1f;
}
.a-heading--gunmetal {
  color: #273044;
}
.a-heading--dimGray {
  color: #666666;
}
.a-heading--raisinBlack {
  color: #232323;
}
.a-heading--yankeesBlue {
  color: #202C45;
}
.a-heading--100 {
  font-weight: 100;
}
.a-heading--200 {
  font-weight: 200;
}
.a-heading--300 {
  font-weight: 300;
}
.a-heading--400 {
  font-weight: normal;
}
.a-heading--500 {
  font-weight: 500;
}
.a-heading--600 {
  font-weight: 600;
}
.a-heading--700 {
  font-weight: bold;
}
.a-heading--800 {
  font-weight: 800;
}
.a-heading--900 {
  font-weight: 900;
}
.a-heading--uppercase {
  text-transform: uppercase;
}
.a-heading--capitalize {
  text-transform: capitalize;
}
.a-heading--underline {
  text-decoration: underline;
}
.a-heading--italic {
  font-style: italic;
}
.a-heading--center {
  text-align: center;
}
.a-heading--justify {
  text-align: justify;
}
.a-heading--9x12 {
  font-size: 0.5625rem;
  line-height: 0.75rem;
}
.a-heading--12x18 {
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.a-heading--14x20 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.a-heading--16x22 {
  font-size: 1rem;
  line-height: 1.375rem;
}
@media (max-width: 767px) {
  .a-heading--16x22 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.a-heading--18x24 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (max-width: 991px) {
  .a-heading--18x24 {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.a-heading--20x27 {
  font-size: 1.25rem;
  line-height: 1.5625rem;
}
@media (max-width: 991px) {
  .a-heading--20x27 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.a-heading--24x34 {
  font-size: 1.5rem;
  line-height: 2.125rem;
}
@media (max-width: 991px) {
  .a-heading--24x34 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.a-heading--30x38 {
  font-size: 1.875rem;
  line-height: 2.375rem;
}
@media (max-width: 991px) {
  .a-heading--30x38 {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}
.a-heading--32x40 {
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .a-heading--32x40 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.a-heading--48x58 {
  font-size: 3rem;
  line-height: 3.625rem;
}
@media (max-width: 991px) {
  .a-heading--48x58 {
    font-size: 2.3125rem;
    line-height: 3rem;
  }
}
@media (max-width: 767px) {
  .a-heading--48x58 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}

.a-text {
  margin: 0;
  color: #1f1f1f;
  text-decoration: none;
}
.a-text--white {
  color: #ffffff;
}
.a-text--black {
  color: #000000;
}
.a-text--mediumSeaGreen {
  color: #3ABF57;
}
.a-text--mikadoYellow {
  color: #FFC107;
}
.a-text--redPigment {
  color: #ED1E1E;
}
.a-text--smokyBlack {
  color: #0E0E0E;
}
.a-text--antiFlashWhite {
  color: #F2F2F2;
}
.a-text--taupeGray {
  color: #878787;
}
.a-text--darkLiver {
  color: #4F4F4F;
}
.a-text--jet {
  color: #333333;
}
.a-text--gray {
  color: #808080;
}
.a-text--spanishGray {
  color: #999;
}
.a-text--sonicSilver {
  color: #7a7a7a;
}
.a-text--eericBlack {
  color: #1f1f1f;
}
.a-text--gunmetal {
  color: #273044;
}
.a-text--dimGray {
  color: #666666;
}
.a-text--raisinBlack {
  color: #232323;
}
.a-text--yankeesBlue {
  color: #202C45;
}
.a-text--100 {
  font-weight: 100;
}
.a-text--200 {
  font-weight: 200;
}
.a-text--300 {
  font-weight: 300;
}
.a-text--400 {
  font-weight: normal;
}
.a-text--500 {
  font-weight: 500;
}
.a-text--600 {
  font-weight: 600;
}
.a-text--700 {
  font-weight: bold;
}
.a-text--800 {
  font-weight: 800;
}
.a-text--900 {
  font-weight: 900;
}
.a-text--uppercase {
  text-transform: uppercase;
}
.a-text--capitalize {
  text-transform: capitalize;
}
.a-text--underline {
  text-decoration: underline;
}
.a-text--italic {
  font-style: italic;
}
.a-text--center {
  text-align: center;
}
.a-text--justify {
  text-align: justify;
}
.a-text--9x12 {
  font-size: 0.5625rem;
  line-height: 0.75rem;
}
.a-text--12x18 {
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.a-text--14x20 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.a-text--16x22 {
  font-size: 1rem;
  line-height: 1.375rem;
}
@media (max-width: 767px) {
  .a-text--16x22 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.a-text--18x24 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (max-width: 991px) {
  .a-text--18x24 {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.a-text--20x27 {
  font-size: 1.25rem;
  line-height: 1.5625rem;
}
@media (max-width: 991px) {
  .a-text--20x27 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.a-text--24x34 {
  font-size: 1.5rem;
  line-height: 2.125rem;
}
@media (max-width: 991px) {
  .a-text--24x34 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.a-text--30x38 {
  font-size: 1.875rem;
  line-height: 2.375rem;
}
@media (max-width: 991px) {
  .a-text--30x38 {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}
.a-text--32x40 {
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .a-text--32x40 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.a-text--48x58 {
  font-size: 3rem;
  line-height: 3.625rem;
}
@media (max-width: 991px) {
  .a-text--48x58 {
    font-size: 2.3125rem;
    line-height: 3rem;
  }
}
@media (max-width: 767px) {
  .a-text--48x58 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}

.a-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.a-icon--12x12 {
  height: 12px;
  width: 12px;
}
.a-icon--16x16 {
  height: 16px;
  width: 16px;
}
.a-icon--18x18 {
  height: 18px;
  width: 18px;
}
.a-icon--20x20 {
  height: 20px;
  width: 20px;
}
.a-icon--24x24 {
  height: 24px;
  width: 24px;
}
.a-icon--26x26 {
  height: 26px;
  width: 26px;
}
.a-icon--26x15 {
  height: 15px;
  width: 26px;
}
.a-icon--28x28 {
  height: 28px;
  width: 28px;
}
.a-icon--32x32 {
  height: 32px;
  width: 32px;
}
.a-icon--36x36 {
  height: 36px;
  width: 36px;
}
.a-icon--40x40 {
  height: 40px;
  width: 40px;
}
.a-icon--48x48 {
  height: 48px;
  width: 48px;
}
.a-icon--60x60 {
  height: 60px;
  width: 60px;
}
.a-icon--facebook {
  background-image: url(../icons/ic_facebook.svg);
}
.a-icon--gmail {
  background-image: url(../icons/ic_gmail.png);
}
.a-icon--phone {
  background-image: url(../icons/ic_phone.png);
}
.a-icon--zalo {
  background-image: url(../icons/zalo.png);
}
.a-icon--hexagon {
  background-image: url(../icons/ic_hexagon.png);
}
.a-icon--checklist {
  background-image: url(../icons/ic_checklist.png);
}
.a-icon--banned {
  background-image: url(../icons/ic_banned.png);
}
.a-icon--plus {
  background-image: url(../icons/ic_plus.png);
}
.a-icon--closeBlack {
  background-image: url(../icons/ic_close_black.svg);
}
.a-icon--closeWhite {
  background-image: url(../icons/ic_close_white.svg);
}

.a-image {
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  transition: 0.4s ease;
  width: 100%;
}
.a-image img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.a-image--logo {
  padding-bottom: 19.1570881226%;
}
.a-image--1x1 {
  padding-bottom: 100%;
}
.a-image--2x1 {
  padding-bottom: 50%;
}
.a-image--3x2 {
  padding-bottom: 66.6666666667%;
}
.a-image--4x3 {
  padding-bottom: 75%;
}
.a-image--3x4 {
  padding-bottom: 133.3333333333%;
}
.a-image--16x9 {
  padding-bottom: 56.25%;
}
.a-image--36x24 {
  padding-bottom: 66.6666666667%;
}
.a-image--240x91 {
  padding-bottom: 37.9166666667%;
}
.a-image--190x178 {
  padding-bottom: 93.6842105263%;
}
.a-image--137x40 {
  padding-bottom: 29.197080292%;
}
.a-image--812x308 {
  padding-bottom: 37.9310344828%;
}
.a-image--404x150 {
  padding-bottom: 37.1287128713%;
}
.a-image--170x127 {
  padding-bottom: 74.7058823529%;
}
.a-image--1030x422 {
  padding-bottom: 40.9708737864%;
}
.a-image--138x127 {
  padding-bottom: 92.0289855072%;
}
.a-image--324x210 {
  padding-bottom: 64.8148148148%;
}
.a-image--375x249 {
  padding-bottom: 66.4%;
}
.a-image--1920x600 {
  padding-bottom: 31.25%;
}
.a-image--324x190 {
  padding-bottom: 58.6419753086%;
}
.a-image--360x257 {
  padding-bottom: 71.3888888889%;
}
.a-image--190x74 {
  padding-bottom: 38.9473684211%;
}
.a-image--1214x98 {
  padding-bottom: 8.0724876442%;
}

.a-input {
  position: relative;
}
.a-input--search .a-input_ele {
  border-radius: 0;
  padding: 0.5625rem 2.1875rem 0.5625rem 1rem;
}
@media (max-width: 767px) {
  .a-input--search .a-input_ele {
    border-radius: 0.375rem;
  }
}
.a-input--search .a-input__label {
  margin-bottom: 0.5rem;
}
.a-input--search .a-input__search {
  width: 1.875rem;
  height: 1.875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  cursor: pointer;
  z-index: 2;
  align-items: center;
  display: flex;
  justify-content: center;
}
.a-input_ele {
  appearance: none;
  margin: 0;
  outline: none;
  font-family: inherit;
  padding: 0.8125rem 1.25rem;
  transition: all 0.2s linear;
  width: 100%;
  background: #ffffff;
  color: #0E0E0E;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.a-input_ele::placeholder {
  color: #878787;
}
.a-input_searchIcon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 2.1875rem;
  height: 2.1875rem;
  align-items: center;
  display: flex;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .a-input_searchIcon {
    display: none;
  }
}
.a-input_error {
  margin-top: 0.5rem;
}

.a-button {
  font-family: inherit;
  border: 0;
  outline: 0 !important;
  height: 3rem;
  box-shadow: none;
  background-image: linear-gradient(25deg, #d64c7f, #ee4758 50%);
  width: 100%;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
  align-items: center;
  display: flex;
  justify-content: center;
}
.a-button:hover .a-button_wrapper::before {
  left: 120%;
}
.a-button:active {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
.a-button_loadingIcon {
  width: 1.875rem;
}
.a-button_wrapper {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.a-button_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 2.5rem;
  transition: 0.4s ease;
  transform: skew(-45deg);
  background-color: rgba(255, 255, 255, 0.4);
}
.a-button--radius {
  border-radius: 0.3125rem;
}
.a-button--sm {
  height: 2.5rem;
}
.a-button--hasIcon .a-button_text {
  margin-left: 0.5rem;
}
.a-button--loading {
  pointer-events: none;
  cursor: no-drop;
}
.a-button--loading .a-button_wrapper {
  opacity: 0.7;
}
.a-button--mikadoYellow {
  background-color: #FFC107;
}

.a-textArea_label {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.a-textArea_label-required {
  color: #ffffff;
  margin-left: 0.25rem;
}
.a-textArea_label-error {
  color: #ED1E1E;
}
.a-textArea_label label {
  margin-bottom: 0;
}
.a-textArea_errorMessage {
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #ED1E1E;
  margin-top: 0.25rem;
}
.a-textArea_inputele {
  border: 1px solid #e0e0e0;
  color: #0E0E0E;
  font-family: inherit;
  font-weight: 400;
  margin: 0;
  outline: none;
  padding: 0.8125rem 1.25rem;
  transition: all 0.2s linear;
  resize: none;
  width: 100%;
  border-radius: 6px;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.a-textArea_inputele::placeholder {
  color: #878787;
}
.a-textArea_inputele-error {
  border-color: #ED1E1E;
  color: #ED1E1E;
}
.a-textArea-bgtransparent .a-textArea_inputele {
  background: transparent;
}
.a-textArea_inputele--9x12 {
  font-size: 0.5625rem;
  line-height: 0.75rem;
}
.a-textArea_inputele--12x18 {
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.a-textArea_inputele--14x20 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.a-textArea_inputele--16x22 {
  font-size: 1rem;
  line-height: 1.375rem;
}
@media (max-width: 767px) {
  .a-textArea_inputele--16x22 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.a-textArea_inputele--18x24 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (max-width: 991px) {
  .a-textArea_inputele--18x24 {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.a-textArea_inputele--20x27 {
  font-size: 1.25rem;
  line-height: 1.5625rem;
}
@media (max-width: 991px) {
  .a-textArea_inputele--20x27 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.a-textArea_inputele--24x34 {
  font-size: 1.5rem;
  line-height: 2.125rem;
}
@media (max-width: 991px) {
  .a-textArea_inputele--24x34 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.a-textArea_inputele--30x38 {
  font-size: 1.875rem;
  line-height: 2.375rem;
}
@media (max-width: 991px) {
  .a-textArea_inputele--30x38 {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}
.a-textArea_inputele--32x40 {
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .a-textArea_inputele--32x40 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.a-textArea_inputele--48x58 {
  font-size: 3rem;
  line-height: 3.625rem;
}
@media (max-width: 991px) {
  .a-textArea_inputele--48x58 {
    font-size: 2.3125rem;
    line-height: 3rem;
  }
}
@media (max-width: 767px) {
  .a-textArea_inputele--48x58 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
.a-textArea_inputele--100 {
  font-weight: 100;
}
.a-textArea_inputele--200 {
  font-weight: 200;
}
.a-textArea_inputele--300 {
  font-weight: 300;
}
.a-textArea_inputele--400 {
  font-weight: normal;
}
.a-textArea_inputele--500 {
  font-weight: 500;
}
.a-textArea_inputele--600 {
  font-weight: 600;
}
.a-textArea_inputele--700 {
  font-weight: bold;
}
.a-textArea_inputele--800 {
  font-weight: 800;
}
.a-textArea_inputele--900 {
  font-weight: 900;
}
.a-textArea_inputele--white {
  color: #ffffff;
}
.a-textArea_inputele--black {
  color: #000000;
}
.a-textArea_inputele--mediumSeaGreen {
  color: #3ABF57;
}
.a-textArea_inputele--mikadoYellow {
  color: #FFC107;
}
.a-textArea_inputele--redPigment {
  color: #ED1E1E;
}
.a-textArea_inputele--smokyBlack {
  color: #0E0E0E;
}
.a-textArea_inputele--antiFlashWhite {
  color: #F2F2F2;
}
.a-textArea_inputele--taupeGray {
  color: #878787;
}
.a-textArea_inputele--darkLiver {
  color: #4F4F4F;
}
.a-textArea_inputele--jet {
  color: #333333;
}
.a-textArea_inputele--gray {
  color: #808080;
}
.a-textArea_inputele--spanishGray {
  color: #999;
}
.a-textArea_inputele--sonicSilver {
  color: #7a7a7a;
}
.a-textArea_inputele--eericBlack {
  color: #1f1f1f;
}
.a-textArea_inputele--gunmetal {
  color: #273044;
}
.a-textArea_inputele--dimGray {
  color: #666666;
}
.a-textArea_inputele--raisinBlack {
  color: #232323;
}
.a-textArea_inputele--yankeesBlue {
  color: #202C45;
}

.a-radio_main {
  position: relative;
  cursor: pointer;
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.a-radio_main input {
  position: absolute;
  visibility: hidden;
  width: 0;
}
.a-radio_main input:checked ~ .a-radio_square {
  background-color: #d33;
  border-color: #d33;
}
.a-radio_main input:checked ~ .a-radio_square::before {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  height: 11px;
  left: 4px;
  position: absolute;
  top: 0px;
  transform: rotate(45deg);
  width: 6px;
}
@media (max-width: 767px) {
  .a-radio_main input:checked ~ .a-radio_square::before {
    width: 0.375rem;
    height: 0.625rem;
    border-width: 2px;
    left: 5px;
  }
}
.a-radio_main_label {
  flex-grow: 1;
  padding: 0.375rem 1.5rem 0.375rem 1.875rem;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}
.a-radio_square {
  cursor: pointer;
  border: 2px solid #4F4F4F;
  box-sizing: border-box;
  height: 1.125rem;
  left: 0;
  position: absolute;
  width: 1.125rem;
  top: 0.5625rem;
  border-radius: 50%;
}
.a-radio_square_label {
  box-sizing: border-box;
  height: 1.125rem;
  left: 0;
  position: absolute;
  width: 1.125rem;
  top: 0.5625rem;
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
}
.a-radio_error {
  color: #ED1E1E;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.a-checkbox_main {
  position: relative;
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.a-checkbox_main input {
  position: absolute;
  visibility: hidden;
  width: 0;
}
.a-checkbox_main input:checked ~ .a-checkbox_square {
  background-color: #d33;
  border-color: #d33;
}
.a-checkbox_main input:checked ~ .a-checkbox_square::before {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  height: 11px;
  left: 4px;
  position: absolute;
  top: 0px;
  transform: rotate(45deg);
  width: 6px;
}
@media (max-width: 767px) {
  .a-checkbox_main input:checked ~ .a-checkbox_square::before {
    width: 0.375rem;
    height: 0.625rem;
    border-width: 2px;
    left: 5px;
  }
}
.a-checkbox_main_label {
  flex-grow: 1;
  padding: 0.375rem 1.5rem 0.375rem 1.875rem;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}
.a-checkbox_square {
  cursor: pointer;
  border: 2px solid #4F4F4F;
  box-sizing: border-box;
  height: 1.125rem;
  left: 0;
  position: absolute;
  width: 1.125rem;
  top: 0.5625rem;
}
.a-checkbox_square_label {
  box-sizing: border-box;
  height: 1.125rem;
  left: 0;
  position: absolute;
  width: 1.125rem;
  top: 0.5625rem;
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
}
.a-checkbox_error {
  color: #ED1E1E;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.m-iconLabelInfo {
  color: #ffffff;
}
.m-iconLabelInfo--center {
  text-align: center;
}
.m-iconLabelInfo--flex {
  display: flex;
  align-items: center;
}
.m-iconLabelInfo--flex .m-iconLabelInfo__content {
  margin-left: 0.5625rem;
  margin-top: 0;
}
.m-iconLabelInfo--sm {
  font-size: 0.75rem;
}
.m-iconLabelInfo--md {
  font-size: 1.375rem;
}
.m-iconLabelInfo__content {
  margin-top: 0.5rem;
}
.m-iconLabelInfo__content a {
  color: #ffffff;
}

.m-fileUpload {
  width: 100%;
  border: 2px dashed #e0e0e0;
  border-radius: 0.625rem;
  padding: 2.8125rem 1.875rem;
  cursor: pointer;
}
.m-fileUpload__label {
  flex-direction: column;
  color: #666666;
  font-size: 0.9375rem;
  line-height: 1.1875rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
.m-fileUpload__label p {
  margin-top: 0.375rem;
}
.m-fileUpload__fileName {
  color: #555;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
}
.m-fileUpload__fileName p {
  margin-left: 0.5rem;
  -webkit-box-orient: vertical;
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-fileUpload input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.m-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  display: flex;
  justify-content: center;
}
.m-loading .lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.m-loading .lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.m-loading .lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.m-lectureCard {
  position: relative;
}
.m-lectureCard__avatar {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.4s ease;
  max-width: 12.5rem;
  margin: auto;
}
.m-lectureCard__avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(58, 191, 87, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.m-lectureCard__avatar:hover::before {
  opacity: 1;
  visibility: visible;
}
.m-lectureCard__info {
  margin-top: 0.875rem;
}

.m-newsCard {
  box-shadow: 0 1px 2px #7c7c7c;
}
@media (max-width: 767px) {
  .m-newsCard {
    display: flex;
  }
}
.m-newsCard__thumbnail {
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .m-newsCard__thumbnail {
    flex: 0 0 35%;
    max-width: 35%;
  }
}
.m-newsCard__thumbnail:hover::before {
  opacity: 1;
}
.m-newsCard__thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.8s ease;
  opacity: 0;
  pointer-events: none;
}
.m-newsCard__content {
  padding: 0.9375rem;
}
@media (max-width: 767px) {
  .m-newsCard__content {
    flex: 0 0 65%;
    max-width: 65%;
    padding: 0.5625rem 0.75rem;
  }
}
.m-newsCard__title {
  display: block;
  margin-top: 0.3125rem;
  text-decoration: none !important;
}
.m-newsCard__title:hover .a-heading {
  color: #ec5252;
}
.m-newsCard__title .a-heading {
  transition: 0.4s ease;
  -webkit-box-orient: vertical;
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-newsCard__description {
  margin-top: 0.4375rem;
}
@media (max-width: 767px) {
  .m-newsCard__description {
    display: none;
  }
}
.m-newsCard__description .a-text {
  -webkit-box-orient: vertical;
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-newsCard__tag {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .m-newsCard__tag {
    display: block;
  }
}
@media (max-width: 767px) {
  .m-newsCard__tag {
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .m-newsCard__tag .a-text {
    margin-right: 0.5rem;
  }
}
.m-newsCard--small {
  display: flex;
}
.m-newsCard--small .m-newsCard__thumbnail {
  flex: 0 0 35%;
  max-width: 35%;
}
@media (max-width: 767px) {
  .m-newsCard--small .m-newsCard__thumbnail {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
.m-newsCard--small .m-newsCard__tag .a-text {
  font-size: 0.6875rem;
  line-height: 0.9375rem;
}
.m-newsCard--small .m-newsCard__tag .a-text:last-child {
  display: none;
}
.m-newsCard--small .m-newsCard__title {
  margin-top: 0;
}
.m-newsCard--small .m-newsCard__title .a-heading {
  font-size: 0.8125rem;
  line-height: 1.125rem;
}
.m-newsCard--small .m-newsCard__content {
  flex: 0 0 65%;
  max-width: 65%;
  padding: 0.4375rem;
}
@media (max-width: 767px) {
  .m-newsCard--small .m-newsCard__content {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
.m-newsCard--small .m-newsCard__description {
  display: none;
}

.m-pulldown {
  display: flex;
  align-items: center;
  width: 100%;
}
.m-pulldown--vertical {
  display: block;
}
.m-pulldown_label {
  margin-right: 1rem;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
.m-pulldown_selectMain {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #0E0E0E;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: inherit;
}
.m-pulldown .select2-container {
  width: 100% !important;
}
.m-pulldown .select2-container .select2-selection--single {
  height: 2.5rem;
}
.m-pulldown .select2-selection__rendered {
  height: 100%;
  display: flex !important;
  align-items: center;
  padding-right: 1.875rem !important;
  padding-left: 1.25rem !important;
}
.m-pulldown .select2-container--default .select2-selection--single {
  color: #0E0E0E;
  border: 1px solid #e0e0e0;
  border-radius: 0;
}
.m-pulldown .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #202C45;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] .m-pulldown_selectMain {
  color: #ffffff;
}

.m-headingTexture {
  position: relative;
  padding-left: 1.125rem;
}
.m-headingTexture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #d33;
}

.m-changeView {
  padding: 0.5rem 0.75rem;
  background: #f5f5f5;
  border-radius: 0.25rem;
}
@media (min-width: 1200px) {
  .m-changeView {
    display: flex;
    align-items: center;
  }
}
.m-changeView__wrap {
  width: 100%;
  display: flex;
  align-items: center;
}
.m-changeView__item {
  margin-right: 0.75rem;
  cursor: pointer;
  padding: 0.1875rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}
.m-changeView__item.active {
  color: #d33;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .m-changeView__item:hover {
    color: #d33;
    background-color: #ffffff;
  }
}
.m-changeView__search {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .m-changeView__search {
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .m-changeView__search {
    justify-content: space-between;
  }
}
.m-changeView__search > div {
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .m-changeView__search > div {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .m-changeView__search {
    margin-top: 0.75rem;
  }
}
.m-changeView__search .a-input {
  width: 14.375rem;
}
@media (max-width: 767px) {
  .m-changeView__search .a-input {
    margin-left: 0.375rem;
  }
}
.m-changeView__search .a-input_ele {
  border-radius: 0;
}
.m-changeView__search .m-pulldown {
  width: 11.25rem;
}

.m-socialsSharing {
  display: flex;
  align-items: center;
}
.m-socialsSharing__item {
  display: inline-block;
  margin-right: 0.5625rem;
}
.m-socialsSharing__item a {
  display: block;
  border: 1px solid #666666;
  width: 1.875rem;
  height: 1.875rem;
  transition: 0.4s ease;
  border-radius: 0.375rem;
  font-size: 1.25rem;
  color: #666666;
  text-decoration: none !important;
  align-items: center;
  display: flex;
  justify-content: center;
}
.m-socialsSharing__item a:hover {
  border-color: #d33;
  color: #d33;
}

@media (min-width: 1200px) {
  .o-container {
    max-width: 1230px;
  }
}
.o-container-noPaddingRight {
  padding-right: 0;
}
.o-container-noPaddingLeft {
  padding-left: 0;
}
.o-container-fullScreen {
  padding-left: 0;
  padding-right: 0;
}

.o-header {
  position: relative;
}
.o-header__toolbar {
  background-image: linear-gradient(to right, #0f0c29e3, #302b63d1, #24243eed);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.75rem 0;
}
.o-header__toolbar__contact {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .o-header__toolbar__contact {
    display: none;
  }
}
.o-header__toolbar__contact__item:not(:first-child) {
  margin-left: 0.75rem;
}
.o-header__menu {
  display: flex;
}
@media (min-width: 768px) {
  .o-header__menu {
    justify-content: center;
  }
}
.o-header__main {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1199px) {
  .o-header__main {
    justify-content: space-between;
  }
}
.o-header__main__wrap {
  width: 100%;
}
@media (min-width: 1200px) {
  .o-header__main__wrap {
    display: flex;
    align-items: center;
    margin-left: 1.25rem;
  }
}
@media (max-width: 1199px) {
  .o-header__main__wrap {
    position: fixed;
    padding: 3.125rem 1.25rem 1.875rem;
    top: 0;
    height: 100%;
    right: 0;
    background-color: #232323;
    transform: translateX(100%);
    transition: 0.4s ease;
    width: 75vw;
    z-index: 99;
    overflow: auto;
  }
  .o-header__main__wrap.open {
    transform: translateX(0);
  }
}
.o-header__main__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .o-header__main__close {
    display: none;
  }
}
.o-header__main__close .fas {
  font-size: 1.375rem;
}
.o-header__burger {
  width: 1.875rem;
  height: 1.875rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  .o-header__burger {
    display: none;
  }
}
.o-header__burger .fas {
  font-size: 1.25rem;
}
.o-header__bottom {
  padding: 0.625rem 0;
  background-color: #f7f7f7;
  transition: 0.2s ease;
}
.o-header__bottom.fixed {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 99;
  top: 0;
}
.o-header__bottom.fixed .o-header__logo {
  width: 8.125rem;
}
@media (max-width: 991px) {
  .o-header__bottom.fixed .o-header__logo {
    width: 7.1875rem;
  }
}
.o-header__logo {
  width: 7.1875rem;
  transition: 0.4s ease;
}
@media (max-width: 991px) {
  .o-header__logo {
    width: 5.625rem;
  }
}
.o-header__nav {
  display: flex;
  align-items: center;
  list-style: none;
  color: #ffffff;
}
@media (max-width: 1199px) {
  .o-header__nav {
    display: none;
  }
}
.o-header__nav__item {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
@media (max-width: 575px) {
  .o-header__nav__item {
    font-size: 0.625rem;
    line-height: 0.9375rem;
  }
}
.o-header__nav__item a,
.o-header__nav__item p {
  color: #ffffff;
  text-decoration: none;
  transition: 0.4s ease;
  font-weight: 500;
}
.o-header__nav__item a:hover,
.o-header__nav__item p:hover {
  color: #FFC107;
}
.o-header__nav__item:hover .o-header__child {
  opacity: 1;
  visibility: visible;
}
.o-header__nav__item:not(:first-child) {
  margin-left: 1.0625rem;
}
.o-header__courses {
  position: relative;
  min-width: 5.625rem;
}
@media (max-width: 767px) {
  .o-header__courses {
    margin-top: 1.125rem;
  }
}
.o-header__courses:hover .o-header__courses__list {
  opacity: 1;
  visibility: visible;
}
.o-header__courses__label {
  color: #555;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.125rem;
}
@media (max-width: 1199px) {
  .o-header__courses__label {
    color: #ffffff;
  }
}
.o-header__courses__label p {
  margin-left: 0.5625rem;
  font-weight: 500;
}
.o-header__courses__list {
  margin-top: 1.25rem;
  padding-left: 1.125rem;
  list-style: none;
}
@media (min-width: 1200px) {
  .o-header__courses__list {
    margin-top: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 42rem;
    background-color: #ffffff;
    padding: 0.625rem 0.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    z-index: 80;
    transition: 0.4s ease;
  }
}
.o-header__courses__list__child {
  margin-left: 10px;
}
.o-header__courses__item {
  padding: 8px 0;
  display: block;
  font-size: 0.9375rem;
  transition: 0.3s ease;
  text-decoration: none !important;
}
.o-header__courses__item a,
.o-header__courses__item p {
  color: #555;
}
@media (max-width: 1199px) {
  .o-header__courses__item a,
.o-header__courses__item p {
    color: rgba(255, 255, 255, 0.7);
  }
}
.o-header__courses__item a:hover,
.o-header__courses__item p:hover {
  color: #d33;
}
.o-header__sideMenu {
  position: relative;
  min-width: 5.625rem;
}
@media (min-width: 1200px) {
  .o-header__sideMenu {
    display: none;
  }
}
.o-header__sideMenu:hover .o-header__courses__list {
  opacity: 1;
  visibility: visible;
}
.o-header__sideMenu__label {
  color: #555;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.125rem;
}
@media (max-width: 1199px) {
  .o-header__sideMenu__label {
    color: #ffffff;
  }
}
.o-header__sideMenu__label p {
  margin-left: 0.5625rem;
  font-weight: 500;
}
.o-header__sideMenu__list {
  margin-top: 1.25rem;
  padding-left: 1.125rem;
  list-style: none;
}
@media (min-width: 1200px) {
  .o-header__sideMenu__list {
    margin-top: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 18.75rem;
    background-color: #ffffff;
    padding: 0.625rem 0.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    z-index: 80;
    transition: 0.4s ease;
  }
}
.o-header__sideMenu__list__child {
  margin-left: 10px;
}
.o-header__sideMenu__item {
  padding: 8px 0;
  display: block;
  font-size: 0.9375rem;
  transition: 0.3s ease;
  text-decoration: none !important;
}
.o-header__sideMenu__item a,
.o-header__sideMenu__item p {
  color: #555;
}
@media (max-width: 1199px) {
  .o-header__sideMenu__item a,
.o-header__sideMenu__item p {
    color: rgba(255, 255, 255, 0.7);
  }
}
.o-header__sideMenu__item a:hover,
.o-header__sideMenu__item p:hover {
  color: #d33;
}
.o-header__searchBar {
  flex: 1 0 0;
}
@media (max-width: 1199px) {
  .o-header__searchBar {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .o-header__searchBar {
    margin-left: 1.25rem;
  }
}
.o-header__searchBar__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  z-index: 1;
  cursor: pointer;
  -webkit-appearance: none;
  box-shadow: none;
  outline: 0 !important;
  border: none;
}
.o-header__searchBar__icon .fas {
  color: #d33;
}
.o-header__searchBar__input {
  position: relative;
}
.o-header__searchBar__input input {
  width: 100%;
  background: #ebebeb;
  height: 41px;
  line-height: 41px;
  padding: 0.625rem 2.8125rem 0.625rem 1rem;
  font-size: 15px;
  font-weight: 300;
  color: #9d9d9d;
  border-radius: 20px;
  -webkit-appearance: none;
  box-shadow: none;
  outline: 0;
  font-family: inherit;
  border: 1px solid transparent;
  transition: 0.4s ease;
}
.o-header__searchBar__input input:focus {
  border-color: #ED1E1E;
}
@media (max-width: 1199px) {
  .o-header__lectures {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .o-header__lectures {
    margin-left: 1.25rem;
  }
}
.o-header__lectures a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1199px) {
  .o-header__lectures a {
    color: #ffffff;
  }
}
.o-header__lectures a:hover {
  color: #d33;
}
.o-header__child {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  min-width: 200px;
  z-index: 3;
  transition: 0.2s ease-in;
  visibility: hidden;
  opacity: 0;
}
.o-header__child__item a {
  padding: 7px 14px;
  color: #273044;
  display: block;
}
@media (max-width: 767px) {
  .o-header__child__item a {
    padding: 4px 9px;
  }
}

.o-footer {
  background-color: #273044;
  margin-top: 5.625rem;
}
@media (max-width: 767px) {
  .o-footer {
    margin-top: 5.625rem;
  }
}
.o-footer__board {
  background-image: linear-gradient(25deg, #d64c7f, #ee4758 50%);
  margin-bottom: 0px;
  padding: 18px 0px 30px 0px;
  position: relative;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  transform: translateY(-70px);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .o-footer__board {
    transform: translateY(-36px);
    border-radius: 9.375rem;
  }
}
.o-footer__board__item {
  width: 100%;
}
@media (min-width: 768px) {
  .o-footer__board__item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 767px) {
  .o-footer__board__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}
.o-footer__logo {
  max-width: 8.75rem;
  margin-bottom: 0.875rem;
}
.o-footer__logo + .a-heading--h3 {
  font-size: 0.9375rem;
}
.o-footer__body {
  padding: 1.625rem 0 2.5rem;
}
.o-footer__socials {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
.o-footer__socials__item {
  color: #ffffff;
  width: 2.3125rem;
  height: 2.3125rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  transition: 0.4s ease;
  align-items: center;
  display: flex;
  justify-content: center;
}
.o-footer__socials__item:hover {
  background-color: #ffffff;
  color: #d33;
}
.o-footer__socials__item:not(:first-child) {
  margin-left: 0.625rem;
}
@media (max-width: 767px) {
  .o-footer__menu {
    margin-top: 1.25rem;
  }
}
.o-footer__menu h4 {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6875rem;
}
.o-footer__menu ul {
  list-style: none;
}
.o-footer__menu ul li:not(:first-child) {
  margin-top: 0.5rem;
}
.o-footer__menu ul li a {
  color: #999;
  transition: 0.4s ease;
  text-decoration: none !important;
  font-size: 1rem;
  line-height: 1.375rem;
}
.o-footer__menu ul li a:hover {
  color: #ffffff;
}
.o-footer__copyright {
  text-align: center;
  padding: 1.875rem 0;
  border-top: 1px solid rgba(149, 149, 149, 0.2);
}
.o-footer__copyright p {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.o-footer__floating {
  position: fixed;
  bottom: 2%;
  right: 10px;
  z-index: 10;
}
@media (max-width: 767px) {
  .o-footer__floating {
    bottom: 2%;
  }
}
.o-footer__floating__item {
  width: 3.125rem;
  height: 3.125rem;
  background-color: #ffffff;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  align-items: center;
  display: flex;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.o-footer__floating__item i {
  font-size: 1.875rem;
}

.o-banner__sliders {
  margin-bottom: -0.4375rem !important;
  min-height: 25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .o-banner__sliders {
    min-height: 12.5rem;
  }
}
@media (max-width: 767px) {
  .o-banner__sliders {
    min-height: auto;
  }
}
.o-banner__sliders:hover .slick-arrow,
.o-banner__sliders:hover .slick-dots {
  opacity: 1;
  visibility: visible;
}
.o-banner__sliders__item .a-image {
  padding-bottom: 29.970874%;
}
.o-banner__sliders .slick-arrow {
  z-index: 2;
  transition: 0.4s ease;
}
@media (min-width: 1200px) {
  .o-banner__sliders .slick-arrow {
    opacity: 0;
    visibility: hidden;
  }
}
.o-banner__sliders .slick-next {
  right: 1.5625rem;
}
@media (max-width: 767px) {
  .o-banner__sliders .slick-next {
    right: 1.125rem;
  }
}
.o-banner__sliders .slick-prev {
  left: 1.5625rem;
}
@media (max-width: 767px) {
  .o-banner__sliders .slick-prev {
    left: 1.125rem;
  }
}
.o-banner__sliders .slick-prev,
.o-banner__sliders .slick-next {
  width: 1.875rem;
  height: 1.875rem;
}
@media (min-width: 768px) {
  .o-banner__sliders .slick-prev::before,
.o-banner__sliders .slick-next::before {
    font-size: 1.875rem;
  }
}
.o-banner__sliders .slick-dots {
  bottom: 2.5rem;
  transition: 0.4s ease;
}
@media (min-width: 1200px) {
  .o-banner__sliders .slick-dots {
    opacity: 0;
    visibility: hidden;
  }
}
.o-banner__sliders .slick-dots li button {
  padding: 0;
}
.o-banner__sliders .slick-dots li button::before {
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 1.0625rem;
  color: #045584;
}
@media (max-width: 767px) {
  .o-banner__sliders .a-image--1920x600 {
    padding-bottom: 45.25%;
  }
}
.o-banner__info {
  background-image: linear-gradient(25deg, #d64c7f, #ee4758 50%);
  padding: 1.875rem 0;
}
@media (max-width: 767px) {
  .o-banner__info {
    padding: 1.375rem 0;
  }
}
.o-banner__info__wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.o-banner__info__icon {
  max-width: 2.25rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .o-banner__info__icon {
    max-width: 1.625rem;
  }
}
.o-banner__info__icon img {
  width: 100%;
}
.o-banner__info__item {
  width: 100%;
  display: flex;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  align-items: center;
}
@media (max-width: 767px) {
  .o-banner__info__item {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 768px) {
  .o-banner__info__item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
.o-banner__info__item .a-text {
  margin-left: 0.5rem;
}
@media (max-width: 1199px) {
  .o-banner__info__item .a-text {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.o-pageBanner {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
  background-image: linear-gradient(to right, #0f0c29, #302b63, #24243e);
}
@media (max-width: 991px) {
  .o-pageBanner {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.o-pageBanner__heading {
  position: relative;
  padding-left: 2.1875rem;
}
@media (max-width: 767px) {
  .o-pageBanner__heading {
    padding-left: 1.5rem;
  }
}
.o-pageBanner__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.1875rem;
  background-color: #d33;
}

.o-courseCard {
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  transition: 0.2s ease;
}
@media (max-width: 1199px) {
  .o-courseCard {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
}
.o-courseCard:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1200px) {
  .o-courseCard:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
}
.o-courseCard:hover .a-text--eericBlack {
  color: #d33;
}
.o-courseCard--border {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.o-courseCard--flex {
  display: flex;
  align-items: center;
}
.o-courseCard--flex .o-courseCard__thumbnail {
  flex: 0 0 35%;
  max-width: 35%;
}
.o-courseCard--flex .o-courseCard__thumbnail .a-image--324x190 {
  padding-bottom: 75%;
}
.o-courseCard--flex .o-courseCard__content {
  padding: 0.3125rem 0.5rem;
  flex: 1 0 0;
}
.o-courseCard--flex .o-courseCard__content hr {
  margin-bottom: 0.1875rem;
  margin-top: 0.1875rem;
}
.o-courseCard--flex .o-courseCard__info {
  margin-top: 0.25rem;
}
.o-courseCard--flex .o-courseCard__amount {
  font-size: 0.625rem;
}
.o-courseCard--flex .o-courseCard__fee {
  font-size: 0.75rem;
}
.o-courseCard--flex .o-courseCard__title .a-text {
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.o-courseCard__title .a-text--18x24 {
  font-size: 0.9375rem;
}
@media (max-width: 767px) {
  .o-courseCard__title .a-text--18x24 {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.o-courseCard__description .a-text {
  -webkit-box-orient: vertical;
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .o-courseCard__description .a-text {
    -webkit-box-orient: vertical;
    display: box;
    /* stylelint-disable-next-line value-no-vendor-prefix */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.o-courseCard__thumbnail {
  position: relative;
}
.o-courseCard__content {
  background-color: #ffffff;
  padding: 1.25rem;
}
@media (max-width: 767px) {
  .o-courseCard__content {
    padding: 0.875rem 0.75rem;
  }
}
.o-courseCard__content hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.o-courseCard__info {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .o-courseCard__info {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.o-courseCard__amount {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #9d9d9d;
}
.o-courseCard__amount p {
  margin-left: 0.5rem;
}
.o-courseCard__fee {
  font-size: 13px;
  font-weight: 700;
  color: #f24c0a;
}
@media (max-width: 767px) {
  .o-courseCard__fee {
    margin-top: 0.375rem;
    text-align: right;
    font-size: 0.9375rem;
  }
}
.o-courseCard__hot {
  position: absolute;
  top: 0.5625rem;
  right: 0.5625rem;
  background-color: #d33;
  padding: 0.25rem 0.5rem;
  border-radius: 0.3125rem;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.0625rem;
}

.o-breadcrumbs {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.o-breadcrumbs_item {
  position: relative;
}
.o-breadcrumbs_item:not(:first-child) {
  margin-left: 1.5rem;
}
.o-breadcrumbs_item:not(:first-child)::before {
  content: "";
  position: absolute;
  background-color: #878787;
  width: 1px;
  height: 1rem;
  top: 50%;
  transform: translateY(-50%);
  left: -0.75rem;
}
.o-breadcrumbs_item.active a,
.o-breadcrumbs_item.active p {
  color: #202C45;
  font-weight: 700;
}
.o-breadcrumbs_item a,
.o-breadcrumbs_item p {
  display: inline-block;
  text-decoration: none;
  color: #878787;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (max-width: 767px) {
  .o-breadcrumbs_item a,
.o-breadcrumbs_item p {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}

.o-videoThumbnail__video {
  position: relative;
}
.o-videoThumbnail__video video,
.o-videoThumbnail__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.o-videoThumbnail__thumbnail {
  position: relative;
}
.o-videoThumbnail__thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(20, 48, 86, 0.85);
}
.o-videoThumbnail__play {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
  align-items: center;
  display: flex;
  justify-content: center;
}
.o-videoThumbnail__play:hover {
  font-size: 2.1875rem;
}
.o-videoThumbnail__play:hover::before {
  transform: scale(1.12);
}
.o-videoThumbnail__play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #ffffff;
  transition: 0.2s ease;
}
.o-videoThumbnail__content {
  margin-top: 1.0625rem;
}
@media (max-width: 767px) {
  .o-videoThumbnail__content {
    margin-top: 0.875rem;
  }
}
.o-videoThumbnail__content .a-heading {
  -webkit-box-orient: vertical;
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.o-videoThumbnail__content .a-text {
  margin-top: 0.5rem;
  -webkit-box-orient: vertical;
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .o-videoThumbnail__content .a-text {
    margin-top: 0.25rem;
  }
}

.o-pagination {
  position: relative;
  display: flex;
  justify-content: center;
}
.o-pagination .pagination {
  display: flex;
  align-items: center;
  list-style: none;
}
.o-pagination .page-item {
  padding-left: 0.4375rem;
  padding-right: 0.4375rem;
}
.o-pagination .page-item.active .page-link {
  background-color: #045584;
  color: #ffffff;
  border-color: #045584;
}
.o-pagination .page-item.active .page-link::before {
  border-color: #ffffff !important;
}
.o-pagination .page-item.disabled .page-link::before {
  border-color: #dee2e6 !important;
}
.o-pagination .page-item.prev .page-link::before {
  content: "";
  position: absolute;
  width: 0.5625rem;
  height: 0.5625rem;
  border-bottom: 3px solid #555;
  border-left: 3px solid #555;
  transform: rotate(45deg);
}
.o-pagination .page-item.next .page-link::before {
  content: "";
  position: absolute;
  width: 0.5625rem;
  height: 0.5625rem;
  border-bottom: 3px solid #555;
  border-right: 3px solid #555;
  transform: rotate(315deg);
}
.o-pagination .page-link {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  border: 2px solid #555;
  color: #555;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: center;
}

.o-newsSidebar {
  padding-left: 0.875rem;
  border-left: 1px solid #e0e0e0;
}
@media (max-width: 991px) {
  .o-newsSidebar {
    margin-top: 1.5rem;
  }
}
.o-newsSidebar__item:not(:first-child) {
  margin-top: 1.125rem;
}
.o-newsSidebar__post {
  margin-top: 0.875rem;
}
@media (max-width: 767px) {
  .o-newsSidebar__post {
    margin-top: 0.5rem;
  }
}
.o-newsSidebar__post__item:not(:first-child) {
  margin-top: 0.75rem;
}
.o-newsSidebar__title {
  position: relative;
}
.o-newsSidebar__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.0625rem;
  width: 5px;
  height: 100%;
  background-color: #d33;
}
.o-newsSidebar ul {
  list-style: none;
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .o-newsSidebar ul {
    margin-top: 0.5rem;
  }
}
.o-newsSidebar ul li:not(:first-child) {
  margin-top: 0.375rem;
}
.o-newsSidebar ul li a {
  color: #333333;
  text-decoration: none !important;
  font-weight: 500;
  transition: 0.4s ease;
  font-size: 1rem;
  line-height: 1.375rem;
}
.o-newsSidebar ul li a:hover {
  color: #d33;
}

.o-coursesSidebar {
  padding-left: 0.875rem;
  border-left: 1px solid #e0e0e0;
}
@media (max-width: 991px) {
  .o-coursesSidebar {
    margin-top: 1.5rem;
  }
}
.o-coursesSidebar__item:not(:first-child) {
  margin-top: 1.125rem;
}
.o-coursesSidebar__post {
  margin-top: 0.875rem;
}
@media (max-width: 767px) {
  .o-coursesSidebar__post {
    margin-top: 0.5rem;
  }
}
.o-coursesSidebar__post__item:not(:first-child) {
  margin-top: 0.75rem;
}
.o-coursesSidebar__title {
  position: relative;
}
.o-coursesSidebar__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.0625rem;
  width: 5px;
  height: 100%;
  background-color: #d33;
}
.o-coursesSidebar__filter {
  margin-top: 1.25rem;
}
.o-coursesSidebar__filter__search {
  margin-bottom: 1.5rem;
}
.o-coursesSidebar__enroll {
  background-color: #F2F2F2;
  padding: 1.25rem 0.875rem;
}
.o-coursesSidebar__enroll__submit {
  margin-top: 1.25rem;
}
.o-coursesSidebar__enroll ul {
  margin-top: 0.9375rem;
}
.o-coursesSidebar__enroll ul li {
  display: flex;
  align-items: center;
}
.o-coursesSidebar__enroll ul li:not(:first-child) {
  margin-top: 1.0625rem !important;
}
.o-coursesSidebar__enroll ul li p {
  color: #045584;
}
.o-coursesSidebar__enroll ul li p .fas {
  width: 1.25rem;
}
.o-coursesSidebar__enroll ul li p strong {
  margin-left: 0.25rem;
}
.o-coursesSidebar__enroll ul li span {
  display: block;
  color: #ec5252;
  margin-left: 0.3125rem;
}
.o-coursesSidebar ul {
  list-style: none;
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .o-coursesSidebar ul {
    margin-top: 0.5rem;
  }
}
.o-coursesSidebar ul li:not(:first-child) {
  margin-top: 0.375rem;
}
.o-coursesSidebar ul li a {
  color: #333333;
  text-decoration: none !important;
  font-weight: 500;
  transition: 0.4s ease;
  font-size: 1rem;
  line-height: 1.375rem;
}
.o-coursesSidebar ul li a:hover {
  color: #d33;
}
@media (min-width: 1200px) {
  .o-coursesSidebar .isMobile {
    display: none;
  }
}
@media (max-width: 1199px) {
  .o-coursesSidebar .isDesktop {
    display: none;
  }
}

.o-lectureInfo__detail {
  margin-top: 0.875rem;
}
@media (min-width: 768px) {
  .o-lectureInfo__detail__info ul {
    padding-left: 1.5rem;
  }
}
.o-lectureInfo__detail__info ul li:not(:first-child) {
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .o-lectureInfo__detail__info ul li:not(:first-child) {
    margin-top: 4px;
  }
}
.o-lectureInfo__avatar {
  border-radius: 50%;
  overflow: hidden;
  max-width: 7.9375rem;
  margin: 0 auto 0.625rem;
}

.o-contestCard {
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  transition: 0.2s ease;
  background-color: whitesmoke;
}
.o-contestCard__info {
  padding: 0.75rem;
}
.o-contestCard__time {
  margin-top: 0.3125rem;
  color: #4F4F4F;
  font-size: 0.75rem;
  font-weight: 600;
}
.o-contestCard__time p {
  color: #d33;
  font-weight: 700;
  font-size: 0.875rem;
}

.t-generalIntroduction {
  padding-top: 3.4375rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  background: transparent url(../assets/src/assets/images/bg-introduction.png) no-repeat center/100% auto;
}
@media (max-width: 991px) {
  .t-generalIntroduction {
    background-size: 255%;
  }
}
@media (max-width: 767px) {
  .t-generalIntroduction {
    background-size: cover;
    padding: 1.875rem;
    padding-bottom: 2.5rem;
  }
}
.t-generalIntroduction__description {
  margin-top: 1.25rem;
  max-height: 18.75rem;
  overflow-y: auto;
  scrollbar-face-color: #045584;
  scrollbar-track-color: #e0e0e0;
}
.t-generalIntroduction__description::-webkit-scrollbar {
  height: 0.75rem;
  margin-right: 0.625rem;
  width: 0.75rem;
}
.t-generalIntroduction__description::-webkit-scrollbar-thumb {
  background: #045584;
  border: 0.125rem solid #e0e0e0;
  border-radius: 0.3125rem;
}
.t-generalIntroduction__description::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 0rem;
}
@media (max-width: 991px) {
  .t-generalIntroduction__lectures {
    margin-top: 1.875rem;
  }
}
.t-generalIntroduction__lectures__item {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.t-generalIntroduction__lectures .slick-dots {
  bottom: -40px;
  overflow: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.t-generalIntroduction__lectures .slick-dots::-webkit-scrollbar {
  display: none;
}
.t-generalIntroduction__lectures .slick-dots li {
  width: 0.875rem;
  height: 0.875rem;
}
.t-generalIntroduction__lectures .slick-dots li.slick-active .slick-customDot {
  background-color: #d33;
  border-color: #d33;
}
.t-generalIntroduction__lectures .slick-customDot {
  width: 100%;
  height: 100%;
  border: 1px solid #555;
  border-radius: 50%;
}

.t-openingCourse {
  background-color: #f5f7f8;
  padding: 1.875rem 0 2.5rem;
}
.t-openingCourse__heading .a-heading {
  margin-top: 0.375rem;
}
.t-openingCourse__heading .a-heading span {
  color: #d33;
}
.t-openingCourse__list {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.t-openingCourse__list__item {
  padding: 0.75rem;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
}
@media (max-width: 991px) {
  .t-openingCourse__list__item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (max-width: 767px) {
  .t-openingCourse__list__item {
    padding: 0.4375rem;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.t-openingCourse__list .slick-dots li {
  width: 1.25rem;
  height: 0.375rem;
}
.t-openingCourse__list .slick-dots li.slick-active .slick-customDot {
  background-color: #d33;
}
.t-openingCourse__list .slick-customDot {
  width: 100%;
  height: 100%;
  background-color: rgba(153, 153, 153, 0.5);
  border-radius: 0.5rem;
}

.t-coursesList {
  background-image: linear-gradient(25deg, #d64c7f, #ee4758 50%);
  padding: 2.5rem 0;
}
.t-coursesList__heading {
  position: relative;
}
.t-coursesList__heading::before {
  content: "";
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: 10%;
  height: 2px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .t-coursesList__heading::before {
    top: calc(100% + 13px);
  }
}
.t-coursesList__heading .a-text {
  margin-top: 0.5rem;
}
.t-coursesList__list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .t-coursesList__list {
    margin-top: 1.875rem;
  }
}
.t-coursesList__list__item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0.625rem;
}
@media (max-width: 991px) {
  .t-coursesList__list__item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
.t-coursesList__tag {
  padding: 0.5rem 0.75rem;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none !important;
  align-items: center;
  display: flex;
  justify-content: center;
  border: 2.5px solid #ffffff;
  border-radius: 2.5rem;
  transition: 0.4s ease;
  text-align: center;
}
@media (max-width: 991px) {
  .t-coursesList__tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}
.t-coursesList__tag:hover {
  background-color: #ffffff;
  color: #ec5252;
}

.t-activitiesEvents {
  padding: 1.875rem 0 2.5rem;
  background-color: #f5f5f5;
  border-top: 18px solid #045584;
}
@media (min-width: 768px) {
  .t-activitiesEvents__heading .a-heading {
    margin-top: 0.625rem;
  }
}
.t-activitiesEvents__heading .a-heading span {
  color: #d33;
}
@media (max-width: 991px) {
  .t-activitiesEvents__media {
    margin-top: 1.875rem;
  }
}
.t-activitiesEvents__media__content {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .t-activitiesEvents__media__content {
    margin-top: 1rem;
  }
}
.t-activitiesEvents__events {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .t-activitiesEvents__events {
    margin-top: 1rem;
  }
}
.t-activitiesEvents__events__item {
  display: flex;
  text-decoration: none !important;
}
.t-activitiesEvents__events__item:hover .a-heading {
  color: #d33;
}
.t-activitiesEvents__events__item:not(:first-child) {
  margin-top: 0.75rem;
}
.t-activitiesEvents__events__thumbnail {
  flex: 0 0 6.25rem;
  max-width: 6.25rem;
}
.t-activitiesEvents__events__info {
  flex: 1 0 0;
  padding-left: 1rem;
}
.t-activitiesEvents__events__info .a-heading {
  transition: 0.3s ease;
  -webkit-box-orient: vertical;
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-activitiesEvents__more {
  margin-top: 1.625rem;
}
.t-activitiesEvents__more a {
  color: #ec5252;
  text-decoration: underline;
  font-size: 1.125rem;
  font-weight: 600;
}

.t-subcribe {
  padding: 2.5rem 0;
}
.t-subcribe__wrap {
  max-width: 34.375rem;
  margin: auto;
}
.t-subcribe__form {
  margin-top: 1.5625rem;
}
.t-subcribe__form__input {
  display: flex;
  position: relative;
}
.t-subcribe__form__input input {
  width: 100%;
  font-family: inherit;
  outline: 0;
  box-shadow: none;
  border: 1px solid #d7d7d7;
  border-radius: 30px;
  color: #828282;
  padding: 0 10rem 0 2.0625rem;
  height: 47px;
  line-height: 47px;
  font-size: 14px;
}
.t-subcribe__form__submit {
  font-family: inherit;
  outline: 0;
  border: 0;
  font-weight: 500;
  color: #ffffff;
  box-shadow: none;
  background-image: linear-gradient(25deg, #d64c7f, #ee4758 50%);
  border-radius: 30px;
  height: 47px;
  line-height: 45px;
  padding: 0 40px;
  font-size: 14px;
  transition: 0.4s ease;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .t-subcribe__form__submit {
    padding: 0 1.625rem;
  }
}
.t-subcribe__form__submit:hover {
  background-color: #be0b0b;
}

.t-notice {
  padding: 1.875rem 0 2.5rem;
  background-color: #f5f5f5;
  border-top: 18px solid #045584;
}
@media (min-width: 768px) {
  .t-notice__heading .a-heading {
    margin-top: 0.625rem;
  }
}
.t-notice__heading .a-heading span {
  color: #d33;
}
@media (max-width: 991px) {
  .t-notice__media {
    margin-top: 1.875rem;
  }
}
.t-notice__media__content {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .t-notice__media__content {
    margin-top: 1rem;
  }
}
.t-notice__events {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
@media (max-width: 767px) {
  .t-notice__events {
    margin-top: 1rem;
  }
}
.t-notice__events__item {
  display: flex;
  width: 100%;
  text-decoration: none !important;
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
@media (min-width: 768px) {
  .t-notice__events__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.t-notice__events__item:hover .a-heading {
  color: #d33;
}
.t-notice__events__item:not(:first-child) {
  margin-top: 0.75rem;
}
.t-notice__events__thumbnail {
  flex: 0 0 6.25rem;
  max-width: 6.25rem;
}
.t-notice__events__info {
  flex: 1 0 0;
  padding-left: 1rem;
}
.t-notice__events__info .a-heading {
  transition: 0.3s ease;
  -webkit-box-orient: vertical;
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-introduction {
  margin-bottom: 8.125rem;
}
.p-introduction__main {
  margin-top: 2.5rem;
}
.p-introduction__heading {
  padding-bottom: 2.5rem;
  position: relative;
}
.p-introduction__heading::before {
  content: "";
  position: absolute;
  top: calc(100% - 24px);
  left: 50%;
  transform: translateX(-50%);
  width: 4.6875rem;
  height: 1px;
  background-color: #d33;
}
.p-introduction__heading .a-text {
  margin-top: 0.5rem;
}
.p-introduction__content img {
  width: 80%;
  height: auto;
}
@media (max-width: 767px) {
  .p-introduction__content img {
    width: 100%;
  }
}
.p-introduction__content p,
.p-introduction__content ul {
  color: #7a7a7a;
  font-size: 1rem;
  line-height: 1.5rem;
}
.p-introduction__content ul {
  padding-left: 1.0625rem;
}
.p-introduction__manager {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-introduction__manager {
    margin-top: 1.75rem;
  }
}
.p-introduction__manager__image img {
  width: 100%;
}
.p-introduction__vision {
  margin-top: 1.6875rem;
}
.p-introduction__vision p,
.p-introduction__vision ul {
  color: #7a7a7a;
  font-size: 1rem;
  line-height: 1.5rem;
}
.p-introduction__vision ul {
  padding-left: 1.0625rem;
}
@media (max-width: 991px) {
  .p-introduction__vision .col-lg-6:nth-child(2) {
    margin-top: 1.25rem;
  }
}
.p-introduction__title {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.875rem;
}
.p-introduction__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #d33;
}

.p-registerLecture {
  margin-top: 2.5rem;
}
.p-registerLecture__form__input:not(:first-child) {
  margin-top: 1rem;
}
.p-registerLecture__form__submit {
  margin-top: 1.875rem;
}
@media (max-width: 767px) {
  .p-registerLecture__form__submit {
    margin-top: 1.25rem;
  }
}
@media (max-width: 991px) {
  .p-registerLecture__tab {
    margin-top: 1.875rem;
  }
}
.p-registerLecture__tab .nav-tabs .nav-item:not(:first-child) {
  margin-left: 0.25rem;
}
.p-registerLecture__tab .nav-tabs .nav-link {
  border: 1px solid #e0e0e0;
  outline: 0;
  box-shadow: none;
  font-size: 0.9375rem;
  color: #333333;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p-registerLecture__tab .nav-tabs .nav-link {
    font-size: 0.75rem;
  }
}
.p-registerLecture__tab .nav-tabs .nav-link span {
  display: inline-block;
  margin-left: 0.375rem;
}
.p-registerLecture__tab .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  opacity: 0;
  transition: 0.2s ease;
  background-color: #ec5252;
  z-index: 1;
}
.p-registerLecture__tab .nav-tabs .nav-link.active {
  color: #ec5252;
  border-bottom: 0;
  border-top: 1px solid transparent;
}
.p-registerLecture__tab .nav-tabs .nav-link.active::before {
  opacity: 1;
}
.p-registerLecture__tab .tab-content {
  padding: 1.25rem 0.9375rem;
  border: 1px solid #e0e0e0;
  border-top: 0;
}

.p-news {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-news {
    padding-top: 1.75rem;
  }
}
.p-news__pagination {
  margin-top: 1.5rem;
}
.p-news__list {
  margin-top: 0.875rem;
}
.p-news__list.grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.p-news__list.grid .p-news__list__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0.9375rem;
}
@media (min-width: 992px) {
  .p-news__list.grid .p-news__list__item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (max-width: 767px) {
  .p-news__list.grid .p-news__list__item {
    padding: 0.75rem 0.9375rem;
  }
}
.p-news__list.grid .m-newsCard {
  display: block;
}
.p-news__list.grid .m-newsCard__title .a-heading {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.p-news__list.grid .m-newsCard__thumbnail, .p-news__list.grid .m-newsCard__content {
  flex: 0 0 100%;
  max-width: 100%;
}
.p-news__list__item {
  width: 100%;
}
.p-news__list.list .p-news__list__item:not(:first-child) {
  margin-top: 0.9375rem;
}
@media (max-width: 767px) {
  .p-news__list.list .p-news__list__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}
.p-news__list.list .m-newsCard {
  display: flex;
}
.p-news__list.list .m-newsCard__thumbnail {
  flex: 0 0 30%;
  max-width: 30%;
}
.p-news__list.list .m-newsCard__content {
  flex: 1 0 0;
}
.p-news .col-md-4 {
  padding: 0.9375rem;
}
@media (max-width: 767px) {
  .p-news .col-md-4 {
    padding: 0.75rem 0.9375rem;
  }
}

.p-newsDetail {
  padding-top: 3.75rem;
}
@media (max-width: 767px) {
  .p-newsDetail {
    padding-top: 1.875rem;
  }
}
.p-newsDetail__content {
  margin-top: 1.25rem;
  color: #444444;
  font-size: 0.9375rem;
  line-height: 1.1875rem;
}
.p-newsDetail__content img {
  width: 100%;
  height: auto;
}
.p-newsDetail__tag {
  margin-top: 0.375rem;
}
.p-newsDetail__author {
  margin-top: 1.125rem;
  color: #0E0E0E;
  text-align: right;
  font-style: italic;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.5625rem;
}
.p-newsDetail__sharing {
  margin-top: 1.5rem;
}
.p-newsDetail__related {
  margin-top: 2.5rem;
}
.p-newsDetail__related__list {
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .p-newsDetail__related__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}
.p-newsDetail__sharing {
  display: flex;
  align-items: center;
}
.p-newsDetail__sharing p {
  margin-right: 0.5rem;
}

.p-category {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-category {
    padding-top: 1.75rem;
  }
}

.p-searchResult {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-searchResult {
    padding-top: 1.75rem;
  }
}

.p-contact {
  padding-top: 2.5rem;
}
.p-contact__title {
  position: relative;
  padding-bottom: 1.25rem;
}
.p-contact__title::before {
  content: "";
  position: absolute;
  top: calc(100%);
  left: 0;
  width: 4.6875rem;
  height: 2px;
  background-color: #d33;
}
.p-contact__content {
  margin-top: 1.625rem;
  color: #7a7a7a;
  font-size: 1rem;
  line-height: 1.375rem;
}
@media (max-width: 767px) {
  .p-contact__content {
    margin-top: 1.125rem;
  }
}
.p-contact__content a {
  color: inherit;
}
.p-contact__form {
  margin-top: 1.625rem;
}
@media (max-width: 767px) {
  .p-contact__form {
    margin-top: 1.125rem;
  }
}
.p-contact__form__input:not(:first-child) {
  margin-top: 1.5rem;
}
.p-contact__form__submit {
  max-width: 14.375rem;
  margin-top: 1.875rem;
}
@media (max-width: 991px) {
  .p-contact .col-lg-6:not(:first-child) {
    margin-top: 1.625rem;
  }
}
.p-contact__sharing {
  margin-top: 1.875rem;
}

.p-lectures {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-lectures {
    padding-top: 1.75rem;
  }
}
.p-lectures__quote {
  position: relative;
  text-align: center;
  max-width: 53.75rem;
  margin-left: auto;
  margin-right: auto;
}
.p-lectures__quote .fas {
  font-size: 1.875rem;
  color: #666666;
}
.p-lectures__quote .a-text {
  margin-top: 0.875rem;
}
.p-lectures__list__item {
  margin-bottom: 1.25rem;
}

.p-lectureDetail {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-lectureDetail {
    padding-top: 1.75rem;
  }
}

.p-coursesDetail {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-coursesDetail {
    padding-top: 1.75rem;
  }
}
.p-coursesDetail__pagination {
  margin-top: 1.5rem;
}
.p-coursesDetail__list {
  margin-top: 0.875rem;
}
.p-coursesDetail__list.grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.p-coursesDetail__list.grid .p-coursesDetail__list__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0.9375rem;
}
@media (min-width: 992px) {
  .p-coursesDetail__list.grid .p-coursesDetail__list__item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (max-width: 767px) {
  .p-coursesDetail__list.grid .p-coursesDetail__list__item {
    padding: 0.75rem 0.9375rem;
  }
}
.p-coursesDetail__list.grid .m-newsCard {
  display: block;
}
.p-coursesDetail__list.grid .m-newsCard__title .a-heading {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.p-coursesDetail__list.grid .m-newsCard__thumbnail, .p-coursesDetail__list.grid .m-newsCard__content {
  flex: 0 0 100%;
  max-width: 100%;
}
.p-coursesDetail__list__item {
  width: 100%;
}
.p-coursesDetail__list.list .p-coursesDetail__list__item:not(:first-child) {
  margin-top: 0.9375rem;
}
@media (max-width: 767px) {
  .p-coursesDetail__list.list .p-coursesDetail__list__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}
.p-coursesDetail__title {
  position: relative;
}
.p-coursesDetail__title p {
  display: inline-block;
  height: 24px;
  line-height: 26px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  background: #30a820;
  border-radius: 4px;
  padding: 0 7px;
  margin-bottom: 12px;
}
.p-coursesDetail__lectures {
  margin-top: 1.25rem;
  display: flex;
}
.p-coursesDetail__lectures__item {
  flex: 0 0 50%;
  max-width: 50%;
}
.p-coursesDetail__lectures__item p:first-child {
  font-size: 14px;
  color: #4F4F4F;
  font-weight: 600;
  margin-bottom: 0;
}
.p-coursesDetail__lectures__item p:first-child i {
  margin-right: 0.25rem;
  color: #d33;
}
.p-coursesDetail__lectures__item p:nth-child(2) {
  color: #1f1f1f;
  font-weight: 700;
  margin-top: 5px;
}
.p-coursesDetail__man {
  margin-top: 1.75rem;
}
.p-coursesDetail__content {
  margin-top: 1.875rem;
}
.p-coursesDetail__content__editor {
  margin-top: 1rem;
}
.p-coursesDetail__sharing {
  margin-top: 2.5rem;
}
.p-coursesDetail__agenda {
  margin-top: 1.875rem;
}
.p-coursesDetail__agenda__panel {
  margin-top: 1.125rem;
}
.p-coursesDetail__agenda__panel .btn-link {
  text-align: left;
  width: 100%;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #045584;
  outline: 0;
  box-shadow: none;
  text-decoration: none !important;
}
.p-coursesDetail__lesson {
  margin-top: 1rem;
}
.p-coursesDetail__lesson__title {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.p-coursesDetail__lesson__title strong {
  display: flex;
}
.p-coursesDetail__lesson__title strong .fas {
  margin-right: 5px;
  margin-top: 6px;
}
.p-coursesDetail__lesson__title p {
  text-align: right;
  flex: 0 0 6.25rem;
  max-width: 6.25rem;
}
.p-coursesDetail__lesson__description {
  margin-top: 0.25rem;
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}
.p-coursesDetail__form {
  margin-top: 2.5rem;
  max-width: 48.4375rem;
}
.p-coursesDetail__form__input {
  margin-top: 1.5rem;
}
.p-coursesDetail__form__submit {
  max-width: 15.625rem;
  margin-top: 1.5rem;
}
.p-coursesDetail__form__group {
  margin-top: 1.25rem;
}
.p-coursesDetail__form__wrap:first-child .p-coursesDetail__form__delete .icon-button {
  display: none;
}
.p-coursesDetail__form__wrap:not(.isMultiple) .p-coursesDetail__form__delete {
  display: none;
}
.p-coursesDetail__form__wrap.isMultiple {
  border: 1px solid #d33;
  padding: 10px;
}
.p-coursesDetail__form__wrap.isMultiple:first-child .p-coursesDetail__form__delete {
  height: 50px;
}
.p-coursesDetail__form__wrap.isMultiple .p-coursesDetail__form__delete {
  background: linear-gradient(to right, red, white);
}
.p-coursesDetail__form__wrap.isMultiple:not(:first-child) {
  margin-top: 1.25rem;
}
.p-coursesDetail__form__delete {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-coursesDetail__form__delete .count {
  color: white;
  font-size: 22px;
  font-weight: 600;
  padding: 3px 20px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-coursesDetail__form__delete .icon-button {
  background-color: #d33;
}
.p-coursesDetail__plus {
  display: flex;
  justify-content: center;
}

.icon-button {
  -webkit-appearance: none;
  font-family: inherit;
  border: 0;
  outline: 0 !important;
  height: 3.125rem;
  box-shadow: none;
  background-color: transparent;
  width: 3.125rem;
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
  align-items: center;
  display: flex;
  justify-content: center;
}

.p-coursesCategory {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-coursesCategory {
    padding-top: 1.75rem;
  }
}
.p-coursesCategory__pagination {
  margin-top: 1.5rem;
}
.p-coursesCategory__list {
  margin-top: 0.875rem;
}
.p-coursesCategory__list.grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.p-coursesCategory__list.grid .p-coursesCategory__list__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0.625rem;
}
@media (min-width: 992px) {
  .p-coursesCategory__list.grid .p-coursesCategory__list__item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (min-width: 1200px) {
  .p-coursesCategory__list.grid .p-coursesCategory__list__item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.p-coursesCategory__list__item {
  width: 100%;
}
.p-coursesCategory__list.list .p-coursesCategory__list__item:not(:first-child) {
  margin-top: 0.9375rem;
}
@media (max-width: 767px) {
  .p-coursesCategory__list.list .p-coursesCategory__list__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}
.p-coursesCategory__list.list .o-courseCard {
  display: flex;
}
@media (max-width: 767px) {
  .p-coursesCategory__list.list .o-courseCard {
    align-items: center;
  }
}
.p-coursesCategory__list.list .o-courseCard__thumbnail {
  flex: 0 0 32%;
  max-width: 32%;
}
@media (max-width: 767px) {
  .p-coursesCategory__list.list .o-courseCard__thumbnail {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
.p-coursesCategory__list.list .o-courseCard__info {
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .p-coursesCategory__list.list .o-courseCard__info {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.p-coursesCategory__list.list .o-courseCard__content {
  flex: 1 0 0;
  padding: 0.75rem 1.0625rem;
}

.p-courses {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-courses {
    padding-top: 1.75rem;
  }
}
.p-courses__pagination {
  margin-top: 1.5rem;
}
.p-courses__list {
  margin-top: 0.875rem;
}
.p-courses__list.grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.p-courses__list.grid .p-courses__list__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0.625rem;
}
@media (min-width: 992px) {
  .p-courses__list.grid .p-courses__list__item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (min-width: 1200px) {
  .p-courses__list.grid .p-courses__list__item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.p-courses__list__item {
  width: 100%;
}
.p-courses__list.list .p-courses__list__item:not(:first-child) {
  margin-top: 0.9375rem;
}
@media (max-width: 767px) {
  .p-courses__list.list .p-courses__list__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}
.p-courses__list.list .o-courseCard {
  display: flex;
}
@media (max-width: 767px) {
  .p-courses__list.list .o-courseCard {
    align-items: center;
  }
}
.p-courses__list.list .o-courseCard__thumbnail {
  flex: 0 0 32%;
  max-width: 32%;
}
@media (max-width: 767px) {
  .p-courses__list.list .o-courseCard__thumbnail {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
.p-courses__list.list .o-courseCard__info {
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .p-courses__list.list .o-courseCard__info {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.p-courses__list.list .o-courseCard__content {
  flex: 1 0 0;
  padding: 0.75rem 1.0625rem;
}

.p-payment {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-payment {
    padding-top: 1.75rem;
  }
}
.p-payment__panel {
  padding: 1.25rem;
  background-color: rgba(102, 102, 102, 0.15);
  border-radius: 0.25rem;
}
@media (max-width: 991px) {
  .p-payment__panel .col-lg-7 {
    margin-top: 1.25rem;
  }
}
.p-payment__fee {
  margin-top: 0.75rem;
}
.p-payment__account {
  margin-top: 0.75rem;
}
.p-payment__account__item:not(:first-child) {
  margin-top: 0.5rem;
}
.p-payment__account ul {
  padding-left: 1.25rem;
  list-style: none;
}
.p-payment__account ul li:not(:first-child) {
  margin-top: 0.3125rem;
}
.p-payment__note {
  max-width: 50rem;
  margin: 1.875rem auto 0;
}
@media (max-width: 767px) {
  .p-payment__note {
    margin-top: 1.875rem;
  }
}
.p-payment__note ul li:not(:first-child) {
  margin-top: 0.3125rem;
}
.p-payment__form {
  max-width: 28.125rem;
  margin: 1.6875rem auto 0;
}
.p-payment__form__input:not(:first-child) {
  margin-top: 1.25rem;
}
.p-payment__method {
  margin-top: 1.875rem;
}
.p-payment__method ul {
  margin-top: 1.25rem;
  list-style: none;
  padding-left: 0;
}

.p-error_wrap {
  max-width: 31.25rem;
  margin: 1.875rem auto 2.5rem;
  text-align: center;
}
.p-error_wrap img {
  max-width: 18.75rem;
}
.p-error_wrap .a-button {
  margin: 0 auto;
  max-width: 15.625rem;
}

.p-contest__list {
  margin-top: 2.5rem;
}
.p-contest__list .o-contestCard {
  margin-bottom: 1.5rem;
}
.p-contest__pagination {
  margin-top: 1.875rem;
}

.p-certificate {
  padding: 3.125rem 0;
}
@media (min-width: 768px) {
  .p-certificate__search {
    display: flex;
  }
}
.p-certificate__search__select {
  width: 100%;
}
@media (min-width: 768px) {
  .p-certificate__search__select {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.p-certificate__search__input {
  width: 100%;
}
@media (min-width: 768px) {
  .p-certificate__search__input {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.p-certificate__search__submit {
  width: 100%;
}
@media (min-width: 768px) {
  .p-certificate__search__submit {
    margin-top: 1.875rem;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.p-certificate__result {
  margin-top: 3.125rem;
}
.p-certificate__empty {
  margin-top: 0.9375rem;
}
.p-certificate__info {
  margin-top: 1.5625rem;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid #666666;
}
.p-certificate__info__detail {
  margin-top: 1.5rem;
}
.p-certificate__info__detail ul {
  display: flex;
  flex-wrap: wrap;
}
.p-certificate__info__detail ul li {
  margin-bottom: 0.875rem;
  font-size: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-certificate__info__detail ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.p-certificate__info__detail ul li .value {
  font-weight: 700;
  margin-left: 0.375rem;
  color: #045584;
}

.p-attendance__form {
  max-width: 550px;
  margin: 1.625rem auto 0;
  padding: 1.25rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
@media (max-width: 767px) {
  .p-attendance__form {
    margin-top: 1.125rem;
  }
}
.p-attendance__form__input:not(:first-child) {
  margin-top: 1.5rem;
}
.p-attendance__form__submit {
  max-width: 14.375rem;
  margin: 1.875rem auto 0;
}

.p-attendanceDetail__list {
  max-width: 750px;
  margin: 2.5rem auto 0;
}
.p-attendanceDetail__item {
  display: flex;
  border: 1px solid rgba(210, 210, 210, 0.8);
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 4px;
  border-left: 4px solid #d64c7f;
  transition: 0.4s ease;
}
.p-attendanceDetail__item:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.p-attendanceDetail__item:hover .a-heading {
  color: #d64c7f;
}
.p-attendanceDetail__item:not(:first-child) {
  margin-top: 1rem;
}
.p-attendanceDetail__icon {
  flex: 0 0 4.6875rem;
  max-width: 4.6875rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-attendanceDetail__icon {
    flex: 0 0 3.75rem;
    max-width: 3.75rem;
  }
}
.p-attendanceDetail__status {
  flex: 0 0 3.75rem;
  max-width: 3.75rem;
  font-size: 10px;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-attendanceDetail__status {
    flex: 0 0 2.8125rem;
    max-width: 2.8125rem;
  }
  .p-attendanceDetail__status .a-icon {
    width: 22px;
    height: 22px;
  }
}
.p-attendanceDetail__content {
  padding: 1rem;
  flex: 1 0 0;
}
@media (max-width: 767px) {
  .p-attendanceDetail__content {
    padding: 1rem 0.75rem;
  }
}
/*Thanh Tran chi dien*/
.o-pageBanner{
  padding-top: 30px;
  padding-bottom: 30px;
}
.a-heading--48x58{
  font-size: 1rem;
  line-height: 1.625rem;
}
.p-introduction__content img {
  width: 100%;
  height: auto;
}
.o-header__courses__list{
  height: 60vh;
  overflow-y: auto;
}
/*sticky*/
.o-footer__floating__item {
  position: relative; /* Để .name position:absolute hoạt động đúng */
}

.o-footer__floating__item span.name {
  position: absolute;
  right: 56px;
  background: #ee4758;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;

  white-space: nowrap; /* Ngăn xuống dòng */

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.o-footer__floating__item:hover span.name {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.method-st ul > li {
  list-style: none;
}
.nav-item {
  color: #000000;
}
.o-header__menu li {
  list-style: none;
}

/*Label*/
.home_label span img{
  width: 20px;
}
.p-confirm-paper-success .request-success {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
}
.p-confirm-paper-success .request-success__card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border-top: 4px solid #e83953;
  /* màu đỏ chủ đạo */
}
.p-confirm-paper-success .request-success__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.p-confirm-paper-success .request-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdf2f4;
  border: 2px solid #e83953;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-confirm-paper-success .request-success__icon span {
  font-size: 28px;
  color: #e83953;
}
.p-confirm-paper-success .request-success__subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin: 0 0 4px;
}
.p-confirm-paper-success .request-success__title {
  font-size: 22px;
  margin: 0;
  color: #111827;
}
.p-confirm-paper-success .request-success__body {
  font-size: 14px;
  line-height: 1.6;
}
.p-confirm-paper-success .request-success__message {
  margin-bottom: 16px;
  color: #4b5563;
}
.p-confirm-paper-success .request-success__message strong {
  font-weight: 600;
}
.p-confirm-paper-success .request-success__meta {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f4ff;
  color: #1f2937;
  font-size: 13px;
  margin-bottom: 16px;
}
.p-confirm-paper-success .request-success__meta-label {
  font-weight: 500;
  color: #4b5563;
}
.p-confirm-paper-success .request-success__meta-value {
  font-weight: 600;
  color: #111827;
}
.p-confirm-paper-success .request-success__note-list {
  margin: 0 0 20px 18px;
  padding: 0;
  color: #4b5563;
}
.p-confirm-paper-success .request-success__note-list li {
  margin-bottom: 6px;
}
.p-confirm-paper-success .request-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.p-confirm-paper-success .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease-out;
}
.p-confirm-paper-success .btn-primary {
  background: #e83953;
  color: #ffffff;
  border: 1px solid #e83953;
}
.p-confirm-paper-success .btn-primary:hover {
  background: #cf273f;
  border-color: #cf273f;
}
.p-confirm-paper-success {
  /* Outline */
}
.p-confirm-paper-success .btn-outline {
  background: #ffffff;
  color: #e83953;
  border: 1px solid #e5e7eb;
}
.p-confirm-paper-success .btn-outline:hover {
  background: #f9fafb;
}
@media (max-width: 768px) {
  .p-confirm-paper-success .request-success__card {
    padding: 20px 18px;
  }
  .p-confirm-paper-success .request-success__title {
    font-size: 20px;
  }
  .p-confirm-paper-success .request-success__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (min-width: 1441px) {
  .o-container--extend {
    max-width: 1547px;
  }
}
/*new*/
.o-footer {
  background-color: #273044;
  margin-top: 5.625rem;
}
@media (max-width: 767px) {
  .o-footer {
    margin-top: 5.625rem;
  }
}
.o-footer__board {
  background-image: linear-gradient(25deg, #d64c7f, #ee4758 50%);
  margin-bottom: 0px;
  padding: 18px 0px 30px 0px;
  position: relative;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  transform: translateY(-70px);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .o-footer__board {
    transform: translateY(-36px);
    border-radius: 9.375rem;
  }
}
.o-footer__board__item {
  width: 100%;
}
@media (min-width: 768px) {
  .o-footer__board__item:nth-child(3), .o-footer__board__item:nth-child(4) {
    flex: 0 0 35%;
    max-width: 35%;
  }
}
@media (min-width: 768px) {
  .o-footer__board__item:nth-child(1) {
    flex: 0 0 15%;
    max-width: 15%;
  }
}
@media (min-width: 768px) {
  .o-footer__board__item:nth-child(2) {
    flex: 0 0 15%;
    max-width: 15%;
  }
}
@media (max-width: 767px) {
  .o-footer__board__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}
.o-footer__logo {
  max-width: 8.75rem;
  margin-bottom: 0.875rem;
}
.o-footer__logo + .a-heading--h3 {
  font-size: 0.9375rem;
}
.o-footer__body {
  padding: 1.625rem 0 2.5rem;
}
.o-footer__socials {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
.o-footer__socials__item {
  color: #ffffff;
  width: 2.3125rem;
  height: 2.3125rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  transition: 0.4s ease;
  align-items: center;
  display: flex;
  justify-content: center;
}
.o-footer__socials__item:hover {
  background-color: #ffffff;
  color: #d33;
}
.o-footer__socials__item:not(:first-child) {
  margin-left: 0.625rem;
}
@media (max-width: 767px) {
  .o-footer__menu {
    margin-top: 1.25rem;
  }
}
.o-footer__menu h4 {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6875rem;
}
.o-footer__menu ul {
  list-style: none;
}
.o-footer__menu ul li:not(:first-child) {
  margin-top: 0.5rem;
}
.o-footer__menu ul li a {
  color: #999;
  transition: 0.4s ease;
  text-decoration: none !important;
  font-size: 1rem;
  line-height: 1.375rem;
}
.o-footer__menu ul li a:hover {
  color: #ffffff;
}
.o-footer__copyright {
  text-align: center;
  padding: 1.875rem 0;
  border-top: 1px solid rgba(149, 149, 149, 0.2);
}
.o-footer__copyright p {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.o-footer__floating {
  position: fixed;
  bottom: 2%;
  right: 10px;
  z-index: 10;
}
@media (max-width: 767px) {
  .o-footer__floating {
    bottom: 2%;
  }
}
.o-footer__floating__item {
  width: 3.125rem;
  height: 3.125rem;
  background-color: #ffffff;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  align-items: center;
  display: flex;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.o-footer__floating__item i {
  font-size: 1.875rem;
}

@media (min-width: 1200px) {
  .o-container {
    max-width: 1230px;
  }
}
@media (min-width: 1441px) {
  .o-container--extend {
    max-width: 1368px;
  }
}
.o-container--noPaddingRight {
  padding-right: 0;
}
.o-container--noPaddingLeft {
  padding-left: 0;
}
.o-container--fullScreen {
  padding-left: 0;
  padding-right: 0;
}
/*custom erros*/
.error-message-num {
    color: red;
    display: none;
}
iframe#chat_biz_manage_box{
    inset: unset !important;
    right: -5px !important;
    bottom: 213px !important;
    width: 80px !important;
    height: 80px !important;
}

.o-header__nav__item a, .o-header__nav__item p {

    font-size: 0.86rem;
}