/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animated.repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animated.repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animated.faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animated.fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animated[class*="Out"] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  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: translateZ(0);
    transform: translateZ(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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  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: translateZ(0);
    transform: translateZ(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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 shakeX {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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);
  }
}
.shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-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: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
@-webkit-keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%,
  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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%,
  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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%,
  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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,
  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    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 fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0)
      rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0)
      rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(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 {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-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 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-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 {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -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-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    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 {
  0% {
    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 {
  0% {
    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-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-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-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-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);
  }
}
@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);
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-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);
  }
}
@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);
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-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-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-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-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
} /*! * * * * * * * * * * * * * * * * * * * *\
  CSShake :: Package
  v1.5.0
  CSS classes to move your DOM
  (c) 2015 @elrumordelaluz
  http://elrumordelaluz.github.io/csshake/
  Licensed under MIT
\* * * * * * * * * * * * * * * * * * * * */
.shake,
.shake-chunk,
.shake-crazy,
.shake-hard,
.shake-horizontal,
.shake-little,
.shake-opacity,
.shake-rotate,
.shake-slow,
.shake-vertical {
  display: inherit;
  transform-origin: center center;
}
@-webkit-keyframes shake {
  2% {
    transform: translate(1.5px, 0.5px) rotate(1.5deg);
  }
  4% {
    transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
  }
  6% {
    transform: translate(0.5px, 2.5px) rotate(0.5deg);
  }
  8% {
    transform: translate(1.5px, -0.5px) rotate(1.5deg);
  }
  10% {
    transform: translate(-1.5px, -1.5px) rotate(0.5deg);
  }
  12% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg);
  }
  14% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg);
  }
  16% {
    transform: translate(-0.5px, 1.5px) rotate(-0.5deg);
  }
  18% {
    transform: translate(0.5px, -1.5px) rotate(1.5deg);
  }
  20% {
    transform: translate(-1.5px, 2.5px) rotate(0.5deg);
  }
  22% {
    transform: translate(1.5px, 0.5px) rotate(0.5deg);
  }
  24% {
    transform: translate(-0.5px, 0.5px) rotate(1.5deg);
  }
  26% {
    transform: translate(-1.5px, -0.5px) rotate(1.5deg);
  }
  28% {
    transform: translate(-1.5px, 2.5px) rotate(-0.5deg);
  }
  30% {
    transform: translate(2.5px, -0.5px) rotate(0.5deg);
  }
  32% {
    transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  }
  34% {
    transform: translate(1.5px, 0.5px) rotate(-0.5deg);
  }
  36% {
    transform: translate(-1.5px, -1.5px) rotate(-0.5deg);
  }
  38% {
    transform: translate(0.5px, 2.5px) rotate(-0.5deg);
  }
  40% {
    transform: translate(1.5px, 2.5px) rotate(1.5deg);
  }
  42% {
    transform: translate(-1.5px, -0.5px) rotate(1.5deg);
  }
  44% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg);
  }
  46% {
    transform: translate(1.5px, 0.5px) rotate(-0.5deg);
  }
  48% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg);
  }
  50% {
    transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
  }
  52% {
    transform: translate(2.5px, 1.5px) rotate(1.5deg);
  }
  54% {
    transform: translate(0.5px, -1.5px) rotate(-0.5deg);
  }
  56% {
    transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
  }
  58% {
    transform: translate(2.5px, -0.5px) rotate(0.5deg);
  }
  60% {
    transform: translate(-1.5px, -1.5px) rotate(0.5deg);
  }
  62% {
    transform: translate(1.5px, 1.5px) rotate(1.5deg);
  }
  64% {
    transform: translate(0.5px, 0.5px) rotate(0.5deg);
  }
  66% {
    transform: translate(0.5px, 2.5px) rotate(1.5deg);
  }
  68% {
    transform: translate(2.5px, -0.5px) rotate(1.5deg);
  }
  70% {
    transform: translate(0.5px, -1.5px) rotate(0.5deg);
  }
  72% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg);
  }
  74% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg);
  }
  76% {
    transform: translate(1.5px, 0.5px) rotate(-0.5deg);
  }
  78% {
    transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
  }
  80% {
    transform: translate(-0.5px, 1.5px) rotate(0.5deg);
  }
  82% {
    transform: translate(-1.5px, 0.5px) rotate(0.5deg);
  }
  84% {
    transform: translate(-0.5px, 2.5px) rotate(1.5deg);
  }
  86% {
    transform: translate(-1.5px, 2.5px) rotate(-0.5deg);
  }
  88% {
    transform: translate(2.5px, -0.5px) rotate(0.5deg);
  }
  90% {
    transform: translate(1.5px, 2.5px) rotate(1.5deg);
  }
  92% {
    transform: translate(1.5px, -0.5px) rotate(-0.5deg);
  }
  94% {
    transform: translate(1.5px, -0.5px) rotate(1.5deg);
  }
  96% {
    transform: translate(0.5px, -1.5px) rotate(0.5deg);
  }
  98% {
    transform: translate(2.5px, 1.5px) rotate(-0.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake {
  2% {
    transform: translate(1.5px, 0.5px) rotate(1.5deg);
  }
  4% {
    transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
  }
  6% {
    transform: translate(0.5px, 2.5px) rotate(0.5deg);
  }
  8% {
    transform: translate(1.5px, -0.5px) rotate(1.5deg);
  }
  10% {
    transform: translate(-1.5px, -1.5px) rotate(0.5deg);
  }
  12% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg);
  }
  14% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg);
  }
  16% {
    transform: translate(-0.5px, 1.5px) rotate(-0.5deg);
  }
  18% {
    transform: translate(0.5px, -1.5px) rotate(1.5deg);
  }
  20% {
    transform: translate(-1.5px, 2.5px) rotate(0.5deg);
  }
  22% {
    transform: translate(1.5px, 0.5px) rotate(0.5deg);
  }
  24% {
    transform: translate(-0.5px, 0.5px) rotate(1.5deg);
  }
  26% {
    transform: translate(-1.5px, -0.5px) rotate(1.5deg);
  }
  28% {
    transform: translate(-1.5px, 2.5px) rotate(-0.5deg);
  }
  30% {
    transform: translate(2.5px, -0.5px) rotate(0.5deg);
  }
  32% {
    transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  }
  34% {
    transform: translate(1.5px, 0.5px) rotate(-0.5deg);
  }
  36% {
    transform: translate(-1.5px, -1.5px) rotate(-0.5deg);
  }
  38% {
    transform: translate(0.5px, 2.5px) rotate(-0.5deg);
  }
  40% {
    transform: translate(1.5px, 2.5px) rotate(1.5deg);
  }
  42% {
    transform: translate(-1.5px, -0.5px) rotate(1.5deg);
  }
  44% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg);
  }
  46% {
    transform: translate(1.5px, 0.5px) rotate(-0.5deg);
  }
  48% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg);
  }
  50% {
    transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
  }
  52% {
    transform: translate(2.5px, 1.5px) rotate(1.5deg);
  }
  54% {
    transform: translate(0.5px, -1.5px) rotate(-0.5deg);
  }
  56% {
    transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
  }
  58% {
    transform: translate(2.5px, -0.5px) rotate(0.5deg);
  }
  60% {
    transform: translate(-1.5px, -1.5px) rotate(0.5deg);
  }
  62% {
    transform: translate(1.5px, 1.5px) rotate(1.5deg);
  }
  64% {
    transform: translate(0.5px, 0.5px) rotate(0.5deg);
  }
  66% {
    transform: translate(0.5px, 2.5px) rotate(1.5deg);
  }
  68% {
    transform: translate(2.5px, -0.5px) rotate(1.5deg);
  }
  70% {
    transform: translate(0.5px, -1.5px) rotate(0.5deg);
  }
  72% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg);
  }
  74% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg);
  }
  76% {
    transform: translate(1.5px, 0.5px) rotate(-0.5deg);
  }
  78% {
    transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
  }
  80% {
    transform: translate(-0.5px, 1.5px) rotate(0.5deg);
  }
  82% {
    transform: translate(-1.5px, 0.5px) rotate(0.5deg);
  }
  84% {
    transform: translate(-0.5px, 2.5px) rotate(1.5deg);
  }
  86% {
    transform: translate(-1.5px, 2.5px) rotate(-0.5deg);
  }
  88% {
    transform: translate(2.5px, -0.5px) rotate(0.5deg);
  }
  90% {
    transform: translate(1.5px, 2.5px) rotate(1.5deg);
  }
  92% {
    transform: translate(1.5px, -0.5px) rotate(-0.5deg);
  }
  94% {
    transform: translate(1.5px, -0.5px) rotate(1.5deg);
  }
  96% {
    transform: translate(0.5px, -1.5px) rotate(0.5deg);
  }
  98% {
    transform: translate(2.5px, 1.5px) rotate(-0.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-little {
  2% {
    transform: translateY(1px) rotate(0.5deg);
  }
  4% {
    transform: translate(1px) rotate(0.5deg);
  }
  6% {
    transform: translateY(1px) rotate(0.5deg);
  }
  8% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  10% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  12% {
    transform: translate(0) rotate(0.5deg);
  }
  14% {
    transform: translate(0) rotate(0.5deg);
  }
  16% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  18% {
    transform: translateY(1px) rotate(0.5deg);
  }
  20% {
    transform: translate(0) rotate(0.5deg);
  }
  22% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  24% {
    transform: translate(0) rotate(0.5deg);
  }
  26% {
    transform: translate(0) rotate(0.5deg);
  }
  28% {
    transform: translateY(1px) rotate(0.5deg);
  }
  30% {
    transform: translate(1px) rotate(0.5deg);
  }
  32% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  34% {
    transform: translateY(1px) rotate(0.5deg);
  }
  36% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  38% {
    transform: translate(1px) rotate(0.5deg);
  }
  40% {
    transform: translate(0) rotate(0.5deg);
  }
  42% {
    transform: translate(1px) rotate(0.5deg);
  }
  44% {
    transform: translate(1px) rotate(0.5deg);
  }
  46% {
    transform: translateY(1px) rotate(0.5deg);
  }
  48% {
    transform: translate(1px) rotate(0.5deg);
  }
  50% {
    transform: translate(0) rotate(0.5deg);
  }
  52% {
    transform: translate(0) rotate(0.5deg);
  }
  54% {
    transform: translate(0) rotate(0.5deg);
  }
  56% {
    transform: translate(1px) rotate(0.5deg);
  }
  58% {
    transform: translate(0) rotate(0.5deg);
  }
  60% {
    transform: translate(1px) rotate(0.5deg);
  }
  62% {
    transform: translate(0) rotate(0.5deg);
  }
  64% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  66% {
    transform: translateY(1px) rotate(0.5deg);
  }
  68% {
    transform: translate(1px) rotate(0.5deg);
  }
  70% {
    transform: translate(1px) rotate(0.5deg);
  }
  72% {
    transform: translateY(1px) rotate(0.5deg);
  }
  74% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  76% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  78% {
    transform: translateY(1px) rotate(0.5deg);
  }
  80% {
    transform: translate(1px) rotate(0.5deg);
  }
  82% {
    transform: translate(1px) rotate(0.5deg);
  }
  84% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  86% {
    transform: translateY(1px) rotate(0.5deg);
  }
  88% {
    transform: translate(0) rotate(0.5deg);
  }
  90% {
    transform: translate(1px) rotate(0.5deg);
  }
  92% {
    transform: translateY(1px) rotate(0.5deg);
  }
  94% {
    transform: translate(1px) rotate(0.5deg);
  }
  96% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  98% {
    transform: translate(1px) rotate(0.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-little {
  2% {
    transform: translateY(1px) rotate(0.5deg);
  }
  4% {
    transform: translate(1px) rotate(0.5deg);
  }
  6% {
    transform: translateY(1px) rotate(0.5deg);
  }
  8% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  10% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  12% {
    transform: translate(0) rotate(0.5deg);
  }
  14% {
    transform: translate(0) rotate(0.5deg);
  }
  16% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  18% {
    transform: translateY(1px) rotate(0.5deg);
  }
  20% {
    transform: translate(0) rotate(0.5deg);
  }
  22% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  24% {
    transform: translate(0) rotate(0.5deg);
  }
  26% {
    transform: translate(0) rotate(0.5deg);
  }
  28% {
    transform: translateY(1px) rotate(0.5deg);
  }
  30% {
    transform: translate(1px) rotate(0.5deg);
  }
  32% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  34% {
    transform: translateY(1px) rotate(0.5deg);
  }
  36% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  38% {
    transform: translate(1px) rotate(0.5deg);
  }
  40% {
    transform: translate(0) rotate(0.5deg);
  }
  42% {
    transform: translate(1px) rotate(0.5deg);
  }
  44% {
    transform: translate(1px) rotate(0.5deg);
  }
  46% {
    transform: translateY(1px) rotate(0.5deg);
  }
  48% {
    transform: translate(1px) rotate(0.5deg);
  }
  50% {
    transform: translate(0) rotate(0.5deg);
  }
  52% {
    transform: translate(0) rotate(0.5deg);
  }
  54% {
    transform: translate(0) rotate(0.5deg);
  }
  56% {
    transform: translate(1px) rotate(0.5deg);
  }
  58% {
    transform: translate(0) rotate(0.5deg);
  }
  60% {
    transform: translate(1px) rotate(0.5deg);
  }
  62% {
    transform: translate(0) rotate(0.5deg);
  }
  64% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  66% {
    transform: translateY(1px) rotate(0.5deg);
  }
  68% {
    transform: translate(1px) rotate(0.5deg);
  }
  70% {
    transform: translate(1px) rotate(0.5deg);
  }
  72% {
    transform: translateY(1px) rotate(0.5deg);
  }
  74% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  76% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  78% {
    transform: translateY(1px) rotate(0.5deg);
  }
  80% {
    transform: translate(1px) rotate(0.5deg);
  }
  82% {
    transform: translate(1px) rotate(0.5deg);
  }
  84% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  86% {
    transform: translateY(1px) rotate(0.5deg);
  }
  88% {
    transform: translate(0) rotate(0.5deg);
  }
  90% {
    transform: translate(1px) rotate(0.5deg);
  }
  92% {
    transform: translateY(1px) rotate(0.5deg);
  }
  94% {
    transform: translate(1px) rotate(0.5deg);
  }
  96% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  98% {
    transform: translate(1px) rotate(0.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-little {
  -webkit-animation-name: shake-little;
  animation-name: shake-little;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-little.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-slow {
  2% {
    transform: translate(-8px, -4px) rotate(-0.5deg);
  }
  4% {
    transform: translate(1px, -9px) rotate(-2.5deg);
  }
  6% {
    transform: translate(-5px, 1px) rotate(-0.5deg);
  }
  8% {
    transform: translate(-7px, 3px) rotate(0.5deg);
  }
  10% {
    transform: translate(10px, 5px) rotate(-2.5deg);
  }
  12% {
    transform: translate(5px, 1px) rotate(-1.5deg);
  }
  14% {
    transform: translate(-4px, 8px) rotate(-1.5deg);
  }
  16% {
    transform: translate(-7px, 9px) rotate(-2.5deg);
  }
  18% {
    transform: translate(-3px, 1px) rotate(-1.5deg);
  }
  20% {
    transform: translate(-1px, -1px) rotate(-1.5deg);
  }
  22% {
    transform: translate(-9px, 4px) rotate(0.5deg);
  }
  24% {
    transform: translateY(-5px) rotate(2.5deg);
  }
  26% {
    transform: translate(-1px, -7px) rotate(1.5deg);
  }
  28% {
    transform: translate(0) rotate(-0.5deg);
  }
  30% {
    transform: translate(1px, 10px) rotate(2.5deg);
  }
  32% {
    transform: translate(8px, 3px) rotate(2.5deg);
  }
  34% {
    transform: translate(-5px, 7px) rotate(3.5deg);
  }
  36% {
    transform: translate(-3px, 6px) rotate(2.5deg);
  }
  38% {
    transform: translate(-5px, -5px) rotate(1.5deg);
  }
  40% {
    transform: translate(-1px, 8px) rotate(-1.5deg);
  }
  42% {
    transform: translate(-8px, -3px) rotate(2.5deg);
  }
  44% {
    transform: translateY(3px) rotate(2.5deg);
  }
  46% {
    transform: translate(2px, 9px) rotate(-2.5deg);
  }
  48% {
    transform: translate(-8px, -3px) rotate(0.5deg);
  }
  50% {
    transform: translate(10px, 7px) rotate(2.5deg);
  }
  52% {
    transform: translate(-5px, 6px) rotate(-2.5deg);
  }
  54% {
    transform: translate(-4px) rotate(-0.5deg);
  }
  56% {
    transform: translateY(-9px) rotate(-0.5deg);
  }
  58% {
    transform: translate(2px, 1px) rotate(-2.5deg);
  }
  60% {
    transform: translate(4px, -8px) rotate(1.5deg);
  }
  62% {
    transform: translate(10px, -9px) rotate(0.5deg);
  }
  64% {
    transform: translate(-3px, 6px) rotate(0.5deg);
  }
  66% {
    transform: translate(-3px, -5px) rotate(-1.5deg);
  }
  68% {
    transform: translate(-7px, 9px) rotate(-1.5deg);
  }
  70% {
    transform: translate(-1px, 7px) rotate(3.5deg);
  }
  72% {
    transform: translate(2px, 8px) rotate(-1.5deg);
  }
  74% {
    transform: translate(-6px, 6px) rotate(1.5deg);
  }
  76% {
    transform: translate(-5px, 10px) rotate(-2.5deg);
  }
  78% {
    transform: translate(-6px, -1px) rotate(3.5deg);
  }
  80% {
    transform: translate(5px, 6px) rotate(1.5deg);
  }
  82% {
    transform: translate(9px, -9px) rotate(-0.5deg);
  }
  84% {
    transform: translate(-6px, 4px) rotate(-2.5deg);
  }
  86% {
    transform: translate(10px, -6px) rotate(-1.5deg);
  }
  88% {
    transform: translate(1px, -2px) rotate(-2.5deg);
  }
  90% {
    transform: translate(-4px, 8px) rotate(-2.5deg);
  }
  92% {
    transform: translate(3px, -2px) rotate(-0.5deg);
  }
  94% {
    transform: translate(4px, 2px) rotate(-1.5deg);
  }
  96% {
    transform: translate(5px, -8px) rotate(0.5deg);
  }
  98% {
    transform: translate(8px, 7px) rotate(-2.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-slow {
  2% {
    transform: translate(-8px, -4px) rotate(-0.5deg);
  }
  4% {
    transform: translate(1px, -9px) rotate(-2.5deg);
  }
  6% {
    transform: translate(-5px, 1px) rotate(-0.5deg);
  }
  8% {
    transform: translate(-7px, 3px) rotate(0.5deg);
  }
  10% {
    transform: translate(10px, 5px) rotate(-2.5deg);
  }
  12% {
    transform: translate(5px, 1px) rotate(-1.5deg);
  }
  14% {
    transform: translate(-4px, 8px) rotate(-1.5deg);
  }
  16% {
    transform: translate(-7px, 9px) rotate(-2.5deg);
  }
  18% {
    transform: translate(-3px, 1px) rotate(-1.5deg);
  }
  20% {
    transform: translate(-1px, -1px) rotate(-1.5deg);
  }
  22% {
    transform: translate(-9px, 4px) rotate(0.5deg);
  }
  24% {
    transform: translateY(-5px) rotate(2.5deg);
  }
  26% {
    transform: translate(-1px, -7px) rotate(1.5deg);
  }
  28% {
    transform: translate(0) rotate(-0.5deg);
  }
  30% {
    transform: translate(1px, 10px) rotate(2.5deg);
  }
  32% {
    transform: translate(8px, 3px) rotate(2.5deg);
  }
  34% {
    transform: translate(-5px, 7px) rotate(3.5deg);
  }
  36% {
    transform: translate(-3px, 6px) rotate(2.5deg);
  }
  38% {
    transform: translate(-5px, -5px) rotate(1.5deg);
  }
  40% {
    transform: translate(-1px, 8px) rotate(-1.5deg);
  }
  42% {
    transform: translate(-8px, -3px) rotate(2.5deg);
  }
  44% {
    transform: translateY(3px) rotate(2.5deg);
  }
  46% {
    transform: translate(2px, 9px) rotate(-2.5deg);
  }
  48% {
    transform: translate(-8px, -3px) rotate(0.5deg);
  }
  50% {
    transform: translate(10px, 7px) rotate(2.5deg);
  }
  52% {
    transform: translate(-5px, 6px) rotate(-2.5deg);
  }
  54% {
    transform: translate(-4px) rotate(-0.5deg);
  }
  56% {
    transform: translateY(-9px) rotate(-0.5deg);
  }
  58% {
    transform: translate(2px, 1px) rotate(-2.5deg);
  }
  60% {
    transform: translate(4px, -8px) rotate(1.5deg);
  }
  62% {
    transform: translate(10px, -9px) rotate(0.5deg);
  }
  64% {
    transform: translate(-3px, 6px) rotate(0.5deg);
  }
  66% {
    transform: translate(-3px, -5px) rotate(-1.5deg);
  }
  68% {
    transform: translate(-7px, 9px) rotate(-1.5deg);
  }
  70% {
    transform: translate(-1px, 7px) rotate(3.5deg);
  }
  72% {
    transform: translate(2px, 8px) rotate(-1.5deg);
  }
  74% {
    transform: translate(-6px, 6px) rotate(1.5deg);
  }
  76% {
    transform: translate(-5px, 10px) rotate(-2.5deg);
  }
  78% {
    transform: translate(-6px, -1px) rotate(3.5deg);
  }
  80% {
    transform: translate(5px, 6px) rotate(1.5deg);
  }
  82% {
    transform: translate(9px, -9px) rotate(-0.5deg);
  }
  84% {
    transform: translate(-6px, 4px) rotate(-2.5deg);
  }
  86% {
    transform: translate(10px, -6px) rotate(-1.5deg);
  }
  88% {
    transform: translate(1px, -2px) rotate(-2.5deg);
  }
  90% {
    transform: translate(-4px, 8px) rotate(-2.5deg);
  }
  92% {
    transform: translate(3px, -2px) rotate(-0.5deg);
  }
  94% {
    transform: translate(4px, 2px) rotate(-1.5deg);
  }
  96% {
    transform: translate(5px, -8px) rotate(0.5deg);
  }
  98% {
    transform: translate(8px, 7px) rotate(-2.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-slow {
  -webkit-animation-name: shake-slow;
  animation-name: shake-slow;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-slow.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-hard {
  2% {
    transform: translate(4px, -5px) rotate(1.5deg);
  }
  4% {
    transform: translate(-5px, -8px) rotate(1.5deg);
  }
  6% {
    transform: translate(-8px, -3px) rotate(-0.5deg);
  }
  8% {
    transform: translate(-7px, -7px) rotate(-1.5deg);
  }
  10% {
    transform: translate(-6px, 4px) rotate(3.5deg);
  }
  12% {
    transform: translate(6px, 3px) rotate(3.5deg);
  }
  14% {
    transform: translate(-1px, -1px) rotate(2.5deg);
  }
  16% {
    transform: translate(7px) rotate(2.5deg);
  }
  18% {
    transform: translate(2px, 5px) rotate(-2.5deg);
  }
  20% {
    transform: translate(5px, -8px) rotate(2.5deg);
  }
  22% {
    transform: translate(-2px, 8px) rotate(3.5deg);
  }
  24% {
    transform: translate(10px, -6px) rotate(3.5deg);
  }
  26% {
    transform: translate(7px, 4px) rotate(1.5deg);
  }
  28% {
    transform: translate(1px, -4px) rotate(0.5deg);
  }
  30% {
    transform: translate(7px, -4px) rotate(0.5deg);
  }
  32% {
    transform: translate(2px, 2px) rotate(2.5deg);
  }
  34% {
    transform: translate(-8px, 8px) rotate(-2.5deg);
  }
  36% {
    transform: translate(2px, -3px) rotate(1.5deg);
  }
  38% {
    transform: translate(3px, 8px) rotate(1.5deg);
  }
  40% {
    transform: translate(6px, 10px) rotate(0.5deg);
  }
  42% {
    transform: translate(4px, -4px) rotate(1.5deg);
  }
  44% {
    transform: translate(-1px, 9px) rotate(0.5deg);
  }
  46% {
    transform: translate(3px, -7px) rotate(-1.5deg);
  }
  48% {
    transform: translate(5px, -7px) rotate(1.5deg);
  }
  50% {
    transform: translate(6px, 6px) rotate(1.5deg);
  }
  52% {
    transform: translate(-5px, -8px) rotate(-2.5deg);
  }
  54% {
    transform: translate(3px, 2px) rotate(1.5deg);
  }
  56% {
    transform: translate(-9px, 9px) rotate(-2.5deg);
  }
  58% {
    transform: translate(-5px, 10px) rotate(-1.5deg);
  }
  60% {
    transform: translate(-9px, -3px) rotate(-2.5deg);
  }
  62% {
    transform: translate(4px, 3px) rotate(-2.5deg);
  }
  64% {
    transform: translateY(-2px) rotate(3.5deg);
  }
  66% {
    transform: translate(1px, 7px) rotate(2.5deg);
  }
  68% {
    transform: translate(-7px, -1px) rotate(2.5deg);
  }
  70% {
    transform: translate(1px, 4px) rotate(2.5deg);
  }
  72% {
    transform: translate(-5px, -8px) rotate(-2.5deg);
  }
  74% {
    transform: translate(-8px, 6px) rotate(3.5deg);
  }
  76% {
    transform: translate(-7px, 6px) rotate(2.5deg);
  }
  78% {
    transform: translateY(1px) rotate(3.5deg);
  }
  80% {
    transform: translate(-6px, 9px) rotate(3.5deg);
  }
  82% {
    transform: translate(-9px, 9px) rotate(-2.5deg);
  }
  84% {
    transform: translate(-6px, 1px) rotate(-2.5deg);
  }
  86% {
    transform: translate(-2px, 1px) rotate(1.5deg);
  }
  88% {
    transform: translate(-2px, 4px) rotate(3.5deg);
  }
  90% {
    transform: translate(2px, -3px) rotate(-0.5deg);
  }
  92% {
    transform: translate(5px, 2px) rotate(-0.5deg);
  }
  94% {
    transform: translate(-6px, -7px) rotate(2.5deg);
  }
  96% {
    transform: translate(-4px) rotate(2.5deg);
  }
  98% {
    transform: translate(9px, -4px) rotate(1.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-hard {
  2% {
    transform: translate(4px, -5px) rotate(1.5deg);
  }
  4% {
    transform: translate(-5px, -8px) rotate(1.5deg);
  }
  6% {
    transform: translate(-8px, -3px) rotate(-0.5deg);
  }
  8% {
    transform: translate(-7px, -7px) rotate(-1.5deg);
  }
  10% {
    transform: translate(-6px, 4px) rotate(3.5deg);
  }
  12% {
    transform: translate(6px, 3px) rotate(3.5deg);
  }
  14% {
    transform: translate(-1px, -1px) rotate(2.5deg);
  }
  16% {
    transform: translate(7px) rotate(2.5deg);
  }
  18% {
    transform: translate(2px, 5px) rotate(-2.5deg);
  }
  20% {
    transform: translate(5px, -8px) rotate(2.5deg);
  }
  22% {
    transform: translate(-2px, 8px) rotate(3.5deg);
  }
  24% {
    transform: translate(10px, -6px) rotate(3.5deg);
  }
  26% {
    transform: translate(7px, 4px) rotate(1.5deg);
  }
  28% {
    transform: translate(1px, -4px) rotate(0.5deg);
  }
  30% {
    transform: translate(7px, -4px) rotate(0.5deg);
  }
  32% {
    transform: translate(2px, 2px) rotate(2.5deg);
  }
  34% {
    transform: translate(-8px, 8px) rotate(-2.5deg);
  }
  36% {
    transform: translate(2px, -3px) rotate(1.5deg);
  }
  38% {
    transform: translate(3px, 8px) rotate(1.5deg);
  }
  40% {
    transform: translate(6px, 10px) rotate(0.5deg);
  }
  42% {
    transform: translate(4px, -4px) rotate(1.5deg);
  }
  44% {
    transform: translate(-1px, 9px) rotate(0.5deg);
  }
  46% {
    transform: translate(3px, -7px) rotate(-1.5deg);
  }
  48% {
    transform: translate(5px, -7px) rotate(1.5deg);
  }
  50% {
    transform: translate(6px, 6px) rotate(1.5deg);
  }
  52% {
    transform: translate(-5px, -8px) rotate(-2.5deg);
  }
  54% {
    transform: translate(3px, 2px) rotate(1.5deg);
  }
  56% {
    transform: translate(-9px, 9px) rotate(-2.5deg);
  }
  58% {
    transform: translate(-5px, 10px) rotate(-1.5deg);
  }
  60% {
    transform: translate(-9px, -3px) rotate(-2.5deg);
  }
  62% {
    transform: translate(4px, 3px) rotate(-2.5deg);
  }
  64% {
    transform: translateY(-2px) rotate(3.5deg);
  }
  66% {
    transform: translate(1px, 7px) rotate(2.5deg);
  }
  68% {
    transform: translate(-7px, -1px) rotate(2.5deg);
  }
  70% {
    transform: translate(1px, 4px) rotate(2.5deg);
  }
  72% {
    transform: translate(-5px, -8px) rotate(-2.5deg);
  }
  74% {
    transform: translate(-8px, 6px) rotate(3.5deg);
  }
  76% {
    transform: translate(-7px, 6px) rotate(2.5deg);
  }
  78% {
    transform: translateY(1px) rotate(3.5deg);
  }
  80% {
    transform: translate(-6px, 9px) rotate(3.5deg);
  }
  82% {
    transform: translate(-9px, 9px) rotate(-2.5deg);
  }
  84% {
    transform: translate(-6px, 1px) rotate(-2.5deg);
  }
  86% {
    transform: translate(-2px, 1px) rotate(1.5deg);
  }
  88% {
    transform: translate(-2px, 4px) rotate(3.5deg);
  }
  90% {
    transform: translate(2px, -3px) rotate(-0.5deg);
  }
  92% {
    transform: translate(5px, 2px) rotate(-0.5deg);
  }
  94% {
    transform: translate(-6px, -7px) rotate(2.5deg);
  }
  96% {
    transform: translate(-4px) rotate(2.5deg);
  }
  98% {
    transform: translate(9px, -4px) rotate(1.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-hard {
  -webkit-animation-name: shake-hard;
  animation-name: shake-hard;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-hard.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-horizontal {
  2% {
    transform: translate(4px) rotate(0);
  }
  4% {
    transform: translate(7px) rotate(0);
  }
  6% {
    transform: translate(5px) rotate(0);
  }
  8% {
    transform: translate(3px) rotate(0);
  }
  10% {
    transform: translate(5px) rotate(0);
  }
  12% {
    transform: translate(4px) rotate(0);
  }
  14% {
    transform: translate(-9px) rotate(0);
  }
  16% {
    transform: translate(-8px) rotate(0);
  }
  18% {
    transform: translate(2px) rotate(0);
  }
  20% {
    transform: translate(-3px) rotate(0);
  }
  22% {
    transform: translate(6px) rotate(0);
  }
  24% {
    transform: translate(-6px) rotate(0);
  }
  26% {
    transform: translate(9px) rotate(0);
  }
  28% {
    transform: translate(3px) rotate(0);
  }
  30% {
    transform: translate(-6px) rotate(0);
  }
  32% {
    transform: translate(4px) rotate(0);
  }
  34% {
    transform: translate(4px) rotate(0);
  }
  36% {
    transform: translate(6px) rotate(0);
  }
  38% {
    transform: translate(8px) rotate(0);
  }
  40% {
    transform: translate(8px) rotate(0);
  }
  42% {
    transform: translate(10px) rotate(0);
  }
  44% {
    transform: translate(10px) rotate(0);
  }
  46% {
    transform: translate(9px) rotate(0);
  }
  48% {
    transform: translate(7px) rotate(0);
  }
  50% {
    transform: translate(-4px) rotate(0);
  }
  52% {
    transform: translate(4px) rotate(0);
  }
  54% {
    transform: translate(2px) rotate(0);
  }
  56% {
    transform: translate(-5px) rotate(0);
  }
  58% {
    transform: translate(7px) rotate(0);
  }
  60% {
    transform: translate(-6px) rotate(0);
  }
  62% {
    transform: translate(1px) rotate(0);
  }
  64% {
    transform: translate(5px) rotate(0);
  }
  66% {
    transform: translate(4px) rotate(0);
  }
  68% {
    transform: translate(-9px) rotate(0);
  }
  70% {
    transform: translate(1px) rotate(0);
  }
  72% {
    transform: translate(5px) rotate(0);
  }
  74% {
    transform: translate(7px) rotate(0);
  }
  76% {
    transform: translate(4px) rotate(0);
  }
  78% {
    transform: translate(-1px) rotate(0);
  }
  80% {
    transform: translate(9px) rotate(0);
  }
  82% {
    transform: translate(9px) rotate(0);
  }
  84% {
    transform: translate(-4px) rotate(0);
  }
  86% {
    transform: translate(-5px) rotate(0);
  }
  88% {
    transform: translate(-8px) rotate(0);
  }
  90% {
    transform: translate(6px) rotate(0);
  }
  92% {
    transform: translate(-8px) rotate(0);
  }
  94% {
    transform: translate(-9px) rotate(0);
  }
  96% {
    transform: translate(8px) rotate(0);
  }
  98% {
    transform: translate(-8px) rotate(0);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-horizontal {
  2% {
    transform: translate(4px) rotate(0);
  }
  4% {
    transform: translate(7px) rotate(0);
  }
  6% {
    transform: translate(5px) rotate(0);
  }
  8% {
    transform: translate(3px) rotate(0);
  }
  10% {
    transform: translate(5px) rotate(0);
  }
  12% {
    transform: translate(4px) rotate(0);
  }
  14% {
    transform: translate(-9px) rotate(0);
  }
  16% {
    transform: translate(-8px) rotate(0);
  }
  18% {
    transform: translate(2px) rotate(0);
  }
  20% {
    transform: translate(-3px) rotate(0);
  }
  22% {
    transform: translate(6px) rotate(0);
  }
  24% {
    transform: translate(-6px) rotate(0);
  }
  26% {
    transform: translate(9px) rotate(0);
  }
  28% {
    transform: translate(3px) rotate(0);
  }
  30% {
    transform: translate(-6px) rotate(0);
  }
  32% {
    transform: translate(4px) rotate(0);
  }
  34% {
    transform: translate(4px) rotate(0);
  }
  36% {
    transform: translate(6px) rotate(0);
  }
  38% {
    transform: translate(8px) rotate(0);
  }
  40% {
    transform: translate(8px) rotate(0);
  }
  42% {
    transform: translate(10px) rotate(0);
  }
  44% {
    transform: translate(10px) rotate(0);
  }
  46% {
    transform: translate(9px) rotate(0);
  }
  48% {
    transform: translate(7px) rotate(0);
  }
  50% {
    transform: translate(-4px) rotate(0);
  }
  52% {
    transform: translate(4px) rotate(0);
  }
  54% {
    transform: translate(2px) rotate(0);
  }
  56% {
    transform: translate(-5px) rotate(0);
  }
  58% {
    transform: translate(7px) rotate(0);
  }
  60% {
    transform: translate(-6px) rotate(0);
  }
  62% {
    transform: translate(1px) rotate(0);
  }
  64% {
    transform: translate(5px) rotate(0);
  }
  66% {
    transform: translate(4px) rotate(0);
  }
  68% {
    transform: translate(-9px) rotate(0);
  }
  70% {
    transform: translate(1px) rotate(0);
  }
  72% {
    transform: translate(5px) rotate(0);
  }
  74% {
    transform: translate(7px) rotate(0);
  }
  76% {
    transform: translate(4px) rotate(0);
  }
  78% {
    transform: translate(-1px) rotate(0);
  }
  80% {
    transform: translate(9px) rotate(0);
  }
  82% {
    transform: translate(9px) rotate(0);
  }
  84% {
    transform: translate(-4px) rotate(0);
  }
  86% {
    transform: translate(-5px) rotate(0);
  }
  88% {
    transform: translate(-8px) rotate(0);
  }
  90% {
    transform: translate(6px) rotate(0);
  }
  92% {
    transform: translate(-8px) rotate(0);
  }
  94% {
    transform: translate(-9px) rotate(0);
  }
  96% {
    transform: translate(8px) rotate(0);
  }
  98% {
    transform: translate(-8px) rotate(0);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-horizontal {
  -webkit-animation-name: shake-horizontal;
  animation-name: shake-horizontal;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-horizontal.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-vertical {
  2% {
    transform: translateY(1px) rotate(0);
  }
  4% {
    transform: translateY(-1px) rotate(0);
  }
  6% {
    transform: translateY(-5px) rotate(0);
  }
  8% {
    transform: translateY(-9px) rotate(0);
  }
  10% {
    transform: translateY(-4px) rotate(0);
  }
  12% {
    transform: translateY(7px) rotate(0);
  }
  14% {
    transform: translateY(3px) rotate(0);
  }
  16% {
    transform: translateY(6px) rotate(0);
  }
  18% {
    transform: translateY(-2px) rotate(0);
  }
  20% {
    transform: translateY(7px) rotate(0);
  }
  22% {
    transform: translate(0) rotate(0);
  }
  24% {
    transform: translateY(1px) rotate(0);
  }
  26% {
    transform: translateY(10px) rotate(0);
  }
  28% {
    transform: translateY(-1px) rotate(0);
  }
  30% {
    transform: translateY(-1px) rotate(0);
  }
  32% {
    transform: translateY(-2px) rotate(0);
  }
  34% {
    transform: translateY(10px) rotate(0);
  }
  36% {
    transform: translateY(10px) rotate(0);
  }
  38% {
    transform: translateY(5px) rotate(0);
  }
  40% {
    transform: translateY(8px) rotate(0);
  }
  42% {
    transform: translateY(-6px) rotate(0);
  }
  44% {
    transform: translateY(-9px) rotate(0);
  }
  46% {
    transform: translateY(2px) rotate(0);
  }
  48% {
    transform: translateY(-4px) rotate(0);
  }
  50% {
    transform: translateY(-4px) rotate(0);
  }
  52% {
    transform: translateY(10px) rotate(0);
  }
  54% {
    transform: translateY(10px) rotate(0);
  }
  56% {
    transform: translateY(-3px) rotate(0);
  }
  58% {
    transform: translateY(-1px) rotate(0);
  }
  60% {
    transform: translateY(-1px) rotate(0);
  }
  62% {
    transform: translateY(-1px) rotate(0);
  }
  64% {
    transform: translateY(-8px) rotate(0);
  }
  66% {
    transform: translateY(6px) rotate(0);
  }
  68% {
    transform: translateY(5px) rotate(0);
  }
  70% {
    transform: translate(0) rotate(0);
  }
  72% {
    transform: translateY(-6px) rotate(0);
  }
  74% {
    transform: translate(0) rotate(0);
  }
  76% {
    transform: translateY(6px) rotate(0);
  }
  78% {
    transform: translateY(2px) rotate(0);
  }
  80% {
    transform: translateY(-2px) rotate(0);
  }
  82% {
    transform: translateY(6px) rotate(0);
  }
  84% {
    transform: translateY(2px) rotate(0);
  }
  86% {
    transform: translateY(10px) rotate(0);
  }
  88% {
    transform: translateY(4px) rotate(0);
  }
  90% {
    transform: translateY(-9px) rotate(0);
  }
  92% {
    transform: translateY(8px) rotate(0);
  }
  94% {
    transform: translateY(2px) rotate(0);
  }
  96% {
    transform: translateY(7px) rotate(0);
  }
  98% {
    transform: translateY(3px) rotate(0);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-vertical {
  2% {
    transform: translateY(1px) rotate(0);
  }
  4% {
    transform: translateY(-1px) rotate(0);
  }
  6% {
    transform: translateY(-5px) rotate(0);
  }
  8% {
    transform: translateY(-9px) rotate(0);
  }
  10% {
    transform: translateY(-4px) rotate(0);
  }
  12% {
    transform: translateY(7px) rotate(0);
  }
  14% {
    transform: translateY(3px) rotate(0);
  }
  16% {
    transform: translateY(6px) rotate(0);
  }
  18% {
    transform: translateY(-2px) rotate(0);
  }
  20% {
    transform: translateY(7px) rotate(0);
  }
  22% {
    transform: translate(0) rotate(0);
  }
  24% {
    transform: translateY(1px) rotate(0);
  }
  26% {
    transform: translateY(10px) rotate(0);
  }
  28% {
    transform: translateY(-1px) rotate(0);
  }
  30% {
    transform: translateY(-1px) rotate(0);
  }
  32% {
    transform: translateY(-2px) rotate(0);
  }
  34% {
    transform: translateY(10px) rotate(0);
  }
  36% {
    transform: translateY(10px) rotate(0);
  }
  38% {
    transform: translateY(5px) rotate(0);
  }
  40% {
    transform: translateY(8px) rotate(0);
  }
  42% {
    transform: translateY(-6px) rotate(0);
  }
  44% {
    transform: translateY(-9px) rotate(0);
  }
  46% {
    transform: translateY(2px) rotate(0);
  }
  48% {
    transform: translateY(-4px) rotate(0);
  }
  50% {
    transform: translateY(-4px) rotate(0);
  }
  52% {
    transform: translateY(10px) rotate(0);
  }
  54% {
    transform: translateY(10px) rotate(0);
  }
  56% {
    transform: translateY(-3px) rotate(0);
  }
  58% {
    transform: translateY(-1px) rotate(0);
  }
  60% {
    transform: translateY(-1px) rotate(0);
  }
  62% {
    transform: translateY(-1px) rotate(0);
  }
  64% {
    transform: translateY(-8px) rotate(0);
  }
  66% {
    transform: translateY(6px) rotate(0);
  }
  68% {
    transform: translateY(5px) rotate(0);
  }
  70% {
    transform: translate(0) rotate(0);
  }
  72% {
    transform: translateY(-6px) rotate(0);
  }
  74% {
    transform: translate(0) rotate(0);
  }
  76% {
    transform: translateY(6px) rotate(0);
  }
  78% {
    transform: translateY(2px) rotate(0);
  }
  80% {
    transform: translateY(-2px) rotate(0);
  }
  82% {
    transform: translateY(6px) rotate(0);
  }
  84% {
    transform: translateY(2px) rotate(0);
  }
  86% {
    transform: translateY(10px) rotate(0);
  }
  88% {
    transform: translateY(4px) rotate(0);
  }
  90% {
    transform: translateY(-9px) rotate(0);
  }
  92% {
    transform: translateY(8px) rotate(0);
  }
  94% {
    transform: translateY(2px) rotate(0);
  }
  96% {
    transform: translateY(7px) rotate(0);
  }
  98% {
    transform: translateY(3px) rotate(0);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-vertical {
  -webkit-animation-name: shake-vertical;
  animation-name: shake-vertical;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-vertical.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-rotate {
  2% {
    transform: translate(0) rotate(-3.5deg);
  }
  4% {
    transform: translate(0) rotate(2.5deg);
  }
  6% {
    transform: translate(0) rotate(0.5deg);
  }
  8% {
    transform: translate(0) rotate(2.5deg);
  }
  10% {
    transform: translate(0) rotate(-2.5deg);
  }
  12% {
    transform: translate(0) rotate(4.5deg);
  }
  14% {
    transform: translate(0) rotate(-5.5deg);
  }
  16% {
    transform: translate(0) rotate(-0.5deg);
  }
  18% {
    transform: translate(0) rotate(-5.5deg);
  }
  20% {
    transform: translate(0) rotate(-1.5deg);
  }
  22% {
    transform: translate(0) rotate(-6.5deg);
  }
  24% {
    transform: translate(0) rotate(-1.5deg);
  }
  26% {
    transform: translate(0) rotate(6.5deg);
  }
  28% {
    transform: translate(0) rotate(4.5deg);
  }
  30% {
    transform: translate(0) rotate(-5.5deg);
  }
  32% {
    transform: translate(0) rotate(6.5deg);
  }
  34% {
    transform: translate(0) rotate(5.5deg);
  }
  36% {
    transform: translate(0) rotate(-4.5deg);
  }
  38% {
    transform: translate(0) rotate(-1.5deg);
  }
  40% {
    transform: translate(0) rotate(-0.5deg);
  }
  42% {
    transform: translate(0) rotate(-2.5deg);
  }
  44% {
    transform: translate(0) rotate(-0.5deg);
  }
  46% {
    transform: translate(0) rotate(7.5deg);
  }
  48% {
    transform: translate(0) rotate(7.5deg);
  }
  50% {
    transform: translate(0) rotate(2.5deg);
  }
  52% {
    transform: translate(0) rotate(-0.5deg);
  }
  54% {
    transform: translate(0) rotate(-6.5deg);
  }
  56% {
    transform: translate(0) rotate(0.5deg);
  }
  58% {
    transform: translate(0) rotate(-0.5deg);
  }
  60% {
    transform: translate(0) rotate(0.5deg);
  }
  62% {
    transform: translate(0) rotate(4.5deg);
  }
  64% {
    transform: translate(0) rotate(2.5deg);
  }
  66% {
    transform: translate(0) rotate(-0.5deg);
  }
  68% {
    transform: translate(0) rotate(7.5deg);
  }
  70% {
    transform: translate(0) rotate(0.5deg);
  }
  72% {
    transform: translate(0) rotate(2.5deg);
  }
  74% {
    transform: translate(0) rotate(-6.5deg);
  }
  76% {
    transform: translate(0) rotate(6.5deg);
  }
  78% {
    transform: translate(0) rotate(4.5deg);
  }
  80% {
    transform: translate(0) rotate(-2.5deg);
  }
  82% {
    transform: translate(0) rotate(7.5deg);
  }
  84% {
    transform: translate(0) rotate(6.5deg);
  }
  86% {
    transform: translate(0) rotate(7.5deg);
  }
  88% {
    transform: translate(0) rotate(4.5deg);
  }
  90% {
    transform: translate(0) rotate(2.5deg);
  }
  92% {
    transform: translate(0) rotate(4.5deg);
  }
  94% {
    transform: translate(0) rotate(-1.5deg);
  }
  96% {
    transform: translate(0) rotate(-6.5deg);
  }
  98% {
    transform: translate(0) rotate(-1.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-rotate {
  2% {
    transform: translate(0) rotate(-3.5deg);
  }
  4% {
    transform: translate(0) rotate(2.5deg);
  }
  6% {
    transform: translate(0) rotate(0.5deg);
  }
  8% {
    transform: translate(0) rotate(2.5deg);
  }
  10% {
    transform: translate(0) rotate(-2.5deg);
  }
  12% {
    transform: translate(0) rotate(4.5deg);
  }
  14% {
    transform: translate(0) rotate(-5.5deg);
  }
  16% {
    transform: translate(0) rotate(-0.5deg);
  }
  18% {
    transform: translate(0) rotate(-5.5deg);
  }
  20% {
    transform: translate(0) rotate(-1.5deg);
  }
  22% {
    transform: translate(0) rotate(-6.5deg);
  }
  24% {
    transform: translate(0) rotate(-1.5deg);
  }
  26% {
    transform: translate(0) rotate(6.5deg);
  }
  28% {
    transform: translate(0) rotate(4.5deg);
  }
  30% {
    transform: translate(0) rotate(-5.5deg);
  }
  32% {
    transform: translate(0) rotate(6.5deg);
  }
  34% {
    transform: translate(0) rotate(5.5deg);
  }
  36% {
    transform: translate(0) rotate(-4.5deg);
  }
  38% {
    transform: translate(0) rotate(-1.5deg);
  }
  40% {
    transform: translate(0) rotate(-0.5deg);
  }
  42% {
    transform: translate(0) rotate(-2.5deg);
  }
  44% {
    transform: translate(0) rotate(-0.5deg);
  }
  46% {
    transform: translate(0) rotate(7.5deg);
  }
  48% {
    transform: translate(0) rotate(7.5deg);
  }
  50% {
    transform: translate(0) rotate(2.5deg);
  }
  52% {
    transform: translate(0) rotate(-0.5deg);
  }
  54% {
    transform: translate(0) rotate(-6.5deg);
  }
  56% {
    transform: translate(0) rotate(0.5deg);
  }
  58% {
    transform: translate(0) rotate(-0.5deg);
  }
  60% {
    transform: translate(0) rotate(0.5deg);
  }
  62% {
    transform: translate(0) rotate(4.5deg);
  }
  64% {
    transform: translate(0) rotate(2.5deg);
  }
  66% {
    transform: translate(0) rotate(-0.5deg);
  }
  68% {
    transform: translate(0) rotate(7.5deg);
  }
  70% {
    transform: translate(0) rotate(0.5deg);
  }
  72% {
    transform: translate(0) rotate(2.5deg);
  }
  74% {
    transform: translate(0) rotate(-6.5deg);
  }
  76% {
    transform: translate(0) rotate(6.5deg);
  }
  78% {
    transform: translate(0) rotate(4.5deg);
  }
  80% {
    transform: translate(0) rotate(-2.5deg);
  }
  82% {
    transform: translate(0) rotate(7.5deg);
  }
  84% {
    transform: translate(0) rotate(6.5deg);
  }
  86% {
    transform: translate(0) rotate(7.5deg);
  }
  88% {
    transform: translate(0) rotate(4.5deg);
  }
  90% {
    transform: translate(0) rotate(2.5deg);
  }
  92% {
    transform: translate(0) rotate(4.5deg);
  }
  94% {
    transform: translate(0) rotate(-1.5deg);
  }
  96% {
    transform: translate(0) rotate(-6.5deg);
  }
  98% {
    transform: translate(0) rotate(-1.5deg);
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-rotate {
  -webkit-animation-name: shake-rotate;
  animation-name: shake-rotate;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-rotate.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-opacity {
  10% {
    transform: translate(0) rotate(2.5deg);
    opacity: 0.82;
  }
  20% {
    transform: translate(3px, 2px) rotate(1.5deg);
    opacity: 0.39;
  }
  30% {
    transform: translateY(-3px) rotate(2.5deg);
    opacity: 0.91;
  }
  40% {
    transform: translateY(1px) rotate(0.5deg);
    opacity: 0.63;
  }
  50% {
    transform: translate(-3px, 2px) rotate(1.5deg);
    opacity: 0.27;
  }
  60% {
    transform: translate(-1px, -2px) rotate(1.5deg);
    opacity: 0.84;
  }
  70% {
    transform: translate(5px) rotate(2.5deg);
    opacity: 0.89;
  }
  80% {
    transform: translateY(-4px) rotate(-0.5deg);
    opacity: 1;
  }
  90% {
    transform: translate(-3px, 2px) rotate(1.5deg);
    opacity: 0.57;
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-opacity {
  10% {
    transform: translate(0) rotate(2.5deg);
    opacity: 0.82;
  }
  20% {
    transform: translate(3px, 2px) rotate(1.5deg);
    opacity: 0.39;
  }
  30% {
    transform: translateY(-3px) rotate(2.5deg);
    opacity: 0.91;
  }
  40% {
    transform: translateY(1px) rotate(0.5deg);
    opacity: 0.63;
  }
  50% {
    transform: translate(-3px, 2px) rotate(1.5deg);
    opacity: 0.27;
  }
  60% {
    transform: translate(-1px, -2px) rotate(1.5deg);
    opacity: 0.84;
  }
  70% {
    transform: translate(5px) rotate(2.5deg);
    opacity: 0.89;
  }
  80% {
    transform: translateY(-4px) rotate(-0.5deg);
    opacity: 1;
  }
  90% {
    transform: translate(-3px, 2px) rotate(1.5deg);
    opacity: 0.57;
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-opacity {
  -webkit-animation-name: shake-opacity;
  animation-name: shake-opacity;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-opacity.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-crazy {
  10% {
    transform: translate(5px, -13px) rotate(2deg);
    opacity: 0.18;
  }
  20% {
    transform: translate(17px) rotate(-9deg);
    opacity: 0.5;
  }
  30% {
    transform: translate(-16px, -5px) rotate(4deg);
    opacity: 0.93;
  }
  40% {
    transform: translate(17px, -7px) rotate(-8deg);
    opacity: 0.74;
  }
  50% {
    transform: translate(-16px, 19px) rotate(0deg);
    opacity: 0.73;
  }
  60% {
    transform: translate(5px, -18px) rotate(9deg);
    opacity: 0.42;
  }
  70% {
    transform: translate(-2px, 10px) rotate(-5deg);
    opacity: 0.63;
  }
  80% {
    transform: translate(-7px, 2px) rotate(9deg);
    opacity: 0.84;
  }
  90% {
    transform: translateY(-16px) rotate(-1deg);
    opacity: 0.73;
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-crazy {
  10% {
    transform: translate(5px, -13px) rotate(2deg);
    opacity: 0.18;
  }
  20% {
    transform: translate(17px) rotate(-9deg);
    opacity: 0.5;
  }
  30% {
    transform: translate(-16px, -5px) rotate(4deg);
    opacity: 0.93;
  }
  40% {
    transform: translate(17px, -7px) rotate(-8deg);
    opacity: 0.74;
  }
  50% {
    transform: translate(-16px, 19px) rotate(0deg);
    opacity: 0.73;
  }
  60% {
    transform: translate(5px, -18px) rotate(9deg);
    opacity: 0.42;
  }
  70% {
    transform: translate(-2px, 10px) rotate(-5deg);
    opacity: 0.63;
  }
  80% {
    transform: translate(-7px, 2px) rotate(9deg);
    opacity: 0.84;
  }
  90% {
    transform: translateY(-16px) rotate(-1deg);
    opacity: 0.73;
  }
  0%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-crazy {
  -webkit-animation-name: shake-crazy;
  animation-name: shake-crazy;
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-crazy.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shake-chunk {
  2% {
    transform: translate(1px, 2px) rotate(-13deg);
  }
  4% {
    transform: translate(-1px, 8px) rotate(7deg);
  }
  6% {
    transform: translate(8px, 13px) rotate(-7deg);
  }
  8% {
    transform: translate(-11px, 13px) rotate(2deg);
  }
  10% {
    transform: translate(9px, 13px) rotate(-12deg);
  }
  12% {
    transform: translate(-13px, -14px) rotate(-10deg);
  }
  14% {
    transform: translate(2px, -2px) rotate(-7deg);
  }
  16% {
    transform: translate(4px, -5px) rotate(2deg);
  }
  18% {
    transform: translate(-14px) rotate(-4deg);
  }
  20% {
    transform: translate(1px) rotate(-7deg);
  }
  22% {
    transform: translate(7px, -9px) rotate(-3deg);
  }
  24% {
    transform: translate(-6px, -13px) rotate(4deg);
  }
  26% {
    transform: translate(10px, 6px) rotate(-14deg);
  }
  28% {
    transform: translate(11px, 11px) rotate(-7deg);
  }
  30% {
    transform: translate(2px, -3px) rotate(-12deg);
  }
  32% {
    transform: translate(15px, 11px) rotate(13deg);
  }
  34% {
    transform: translate(-5px, -13px) rotate(-2deg);
  }
  36% {
    transform: translate(-3px, 9px) rotate(15deg);
  }
  38% {
    transform: translate(-6px, -11px) rotate(0deg);
  }
  0%,
  40%,
  to {
    transform: translate(0) rotate(0);
  }
}
@keyframes shake-chunk {
  2% {
    transform: translate(1px, 2px) rotate(-13deg);
  }
  4% {
    transform: translate(-1px, 8px) rotate(7deg);
  }
  6% {
    transform: translate(8px, 13px) rotate(-7deg);
  }
  8% {
    transform: translate(-11px, 13px) rotate(2deg);
  }
  10% {
    transform: translate(9px, 13px) rotate(-12deg);
  }
  12% {
    transform: translate(-13px, -14px) rotate(-10deg);
  }
  14% {
    transform: translate(2px, -2px) rotate(-7deg);
  }
  16% {
    transform: translate(4px, -5px) rotate(2deg);
  }
  18% {
    transform: translate(-14px) rotate(-4deg);
  }
  20% {
    transform: translate(1px) rotate(-7deg);
  }
  22% {
    transform: translate(7px, -9px) rotate(-3deg);
  }
  24% {
    transform: translate(-6px, -13px) rotate(4deg);
  }
  26% {
    transform: translate(10px, 6px) rotate(-14deg);
  }
  28% {
    transform: translate(11px, 11px) rotate(-7deg);
  }
  30% {
    transform: translate(2px, -3px) rotate(-12deg);
  }
  32% {
    transform: translate(15px, 11px) rotate(13deg);
  }
  34% {
    transform: translate(-5px, -13px) rotate(-2deg);
  }
  36% {
    transform: translate(-3px, 9px) rotate(15deg);
  }
  38% {
    transform: translate(-6px, -11px) rotate(0deg);
  }
  0%,
  40%,
  to {
    transform: translate(0) rotate(0);
  }
}
.shake-chunk {
  -webkit-animation-name: shake-chunk;
  animation-name: shake-chunk;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.shake-chunk.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
} /*!
 * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.svg-inline--fa,
svg:not(:root).svg-inline--fa {
  overflow: visible;
}
.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  vertical-align: -0.125em;
}
.svg-inline--fa.fa-lg {
  vertical-align: -0.225em;
}
.svg-inline--fa.fa-w-1 {
  width: 0.0625em;
}
.svg-inline--fa.fa-w-2 {
  width: 0.125em;
}
.svg-inline--fa.fa-w-3 {
  width: 0.1875em;
}
.svg-inline--fa.fa-w-4 {
  width: 0.25em;
}
.svg-inline--fa.fa-w-5 {
  width: 0.3125em;
}
.svg-inline--fa.fa-w-6 {
  width: 0.375em;
}
.svg-inline--fa.fa-w-7 {
  width: 0.4375em;
}
.svg-inline--fa.fa-w-8 {
  width: 0.5em;
}
.svg-inline--fa.fa-w-9 {
  width: 0.5625em;
}
.svg-inline--fa.fa-w-10 {
  width: 0.625em;
}
.svg-inline--fa.fa-w-11 {
  width: 0.6875em;
}
.svg-inline--fa.fa-w-12 {
  width: 0.75em;
}
.svg-inline--fa.fa-w-13 {
  width: 0.8125em;
}
.svg-inline--fa.fa-w-14 {
  width: 0.875em;
}
.svg-inline--fa.fa-w-15 {
  width: 0.9375em;
}
.svg-inline--fa.fa-w-16 {
  width: 1em;
}
.svg-inline--fa.fa-w-17 {
  width: 1.0625em;
}
.svg-inline--fa.fa-w-18 {
  width: 1.125em;
}
.svg-inline--fa.fa-w-19 {
  width: 1.1875em;
}
.svg-inline--fa.fa-w-20 {
  width: 1.25em;
}
.svg-inline--fa.fa-pull-left {
  margin-right: 0.3em;
  width: auto;
}
.svg-inline--fa.fa-pull-right {
  margin-left: 0.3em;
  width: auto;
}
.svg-inline--fa.fa-border {
  height: 1.5em;
}
.svg-inline--fa.fa-li {
  width: 2em;
}
.svg-inline--fa.fa-fw {
  width: 1.25em;
}
.fa-layers svg.svg-inline--fa {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: 1em;
}
.fa-layers svg.svg-inline--fa {
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.fa-layers-counter,
.fa-layers-text {
  display: inline-block;
  position: absolute;
  text-align: center;
}
.fa-layers-text {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.fa-layers-counter {
  background-color: #ff253a;
  border-radius: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  height: 1.5em;
  line-height: 1;
  max-width: 5em;
  min-width: 1.5em;
  overflow: hidden;
  padding: 0.25em;
  right: 0;
  text-overflow: ellipsis;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}
.fa-layers-bottom-right {
  bottom: 0;
  right: 0;
  top: auto;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}
.fa-layers-bottom-left {
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.fa-layers-top-right {
  right: 0;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}
.fa-layers-top-left {
  left: 0;
  right: auto;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}
.fa-xs {
  font-size: 0.75em;
}
.fa-sm {
  font-size: 0.875em;
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}
.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s steps(8) infinite;
  animation: fa-spin 1s steps(8) infinite;
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}
:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  -webkit-filter: none;
  filter: none;
}
.fa-stack {
  display: inline-block;
  height: 2em;
  position: relative;
  width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.svg-inline--fa.fa-stack-1x {
  height: 1em;
  width: 1.25em;
}
.svg-inline--fa.fa-stack-2x {
  height: 2em;
  width: 2.5em;
}
.fa-inverse {
  color: #fff;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}
.svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
}
.svg-inline--fa .fa-secondary,
.svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}
.svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}
.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
  fill: #000;
}
.fad.fa-inverse {
  color: #fff;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body,
html {
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}
body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  color: #424242;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: normal;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}
summary {
  display: list-item;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
progress {
  vertical-align: baseline;
}
[hidden],
template {
  display: none;
}
a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a,
a * {
  cursor: pointer;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
  line-height: 1.25em;
}
h2 {
  font-size: 1.8em;
}
h3 {
  font-size: 1.6em;
}
h4 {
  font-size: 1.4em;
}
h5 {
  font-size: 1.2em;
}
h6 {
  font-size: 1em;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border: 0;
  max-width: 100%;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  border: 1px solid #424242;
  padding: 0.5em;
}
.unselectable,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -o-user-select: none;
  -webkit-user-drag: none;
  user-select: none;
}
*,
:after,
:before {
  box-sizing: border-box;
}
::-webkit-scrollbar {
  background: transparent;
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.clearfix:after,
.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
::-moz-selection {
  background: rgba(0, 188, 212, 0.2);
}
::selection {
  background: rgba(0, 188, 212, 0.2);
}
.row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  align-content: stretch;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.row--spaced > .row__column {
  margin: 0.75rem;
}
.row--stretch {
  align-content: stretch;
}
.row--around {
  align-content: space-around;
}
.row--align-left {
  justify-content: flex-start;
}
.row--align-right {
  justify-content: flex-end;
}
.row--align-center-between {
  justify-content: space-between;
}
.row--align-center-around {
  justify-content: space-around;
}
.row__column {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
}
.row__column--auto {
  flex: 1 1 0 !important;
}
.row--spaced > .row__column--1 {
  margin: 0.75rem;
}
.row__column--1 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 8.33333%;
}
.row__column--offset--1 {
  width: 91.66667%;
  margin-left: 8.33333%;
}
.row--spaced > .row__column--1 {
  width: calc(8.33333% - 1.5rem);
}
.row--spaced > .row__column--offset--1 {
  width: 8.33333%;
  margin-left: calc(8.33333% - 1.5rem);
}
.row--spaced > .row__column--2 {
  margin: 0.75rem;
}
.row__column--2 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 16.66667%;
}
.row__column--offset--2 {
  width: 83.33333%;
  margin-left: 16.66667%;
}
.row--spaced > .row__column--2 {
  width: calc(16.66667% - 1.5rem);
}
.row--spaced > .row__column--offset--2 {
  width: 16.66667%;
  margin-left: calc(16.66667% - 1.5rem);
}
.row--spaced > .row__column--3 {
  margin: 0.75rem;
}
.row__column--3 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 25%;
}
.row__column--offset--3 {
  width: 75%;
  margin-left: 25%;
}
.row--spaced > .row__column--3 {
  width: calc(25% - 1.5rem);
}
.row--spaced > .row__column--offset--3 {
  width: 25%;
  margin-left: calc(25% - 1.5rem);
}
.row--spaced > .row__column--4 {
  margin: 0.75rem;
}
.row__column--4 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 33.33333%;
}
.row__column--offset--4 {
  width: 66.66667%;
  margin-left: 33.33333%;
}
.row--spaced > .row__column--4 {
  width: calc(33.33333% - 1.5rem);
}
.row--spaced > .row__column--offset--4 {
  width: 33.33333%;
  margin-left: calc(33.33333% - 1.5rem);
}
.row--spaced > .row__column--5 {
  margin: 0.75rem;
}
.row__column--5 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 41.66667%;
}
.row__column--offset--5 {
  width: 58.33333%;
  margin-left: 41.66667%;
}
.row--spaced > .row__column--5 {
  width: calc(41.66667% - 1.5rem);
}
.row--spaced > .row__column--offset--5 {
  width: 41.66667%;
  margin-left: calc(41.66667% - 1.5rem);
}
.row--spaced > .row__column--6 {
  margin: 0.75rem;
}
.row__column--6 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 50%;
}
.row__column--offset--6 {
  width: 50%;
  margin-left: 50%;
}
.row--spaced > .row__column--6 {
  width: calc(50% - 1.5rem);
}
.row--spaced > .row__column--offset--6 {
  width: 50%;
  margin-left: calc(50% - 1.5rem);
}
.row--spaced > .row__column--7 {
  margin: 0.75rem;
}
.row__column--7 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 58.33333%;
}
.row__column--offset--7 {
  width: 41.66667%;
  margin-left: 58.33333%;
}
.row--spaced > .row__column--7 {
  width: calc(58.33333% - 1.5rem);
}
.row--spaced > .row__column--offset--7 {
  width: 58.33333%;
  margin-left: calc(58.33333% - 1.5rem);
}
.row--spaced > .row__column--8 {
  margin: 0.75rem;
}
.row__column--8 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 66.66667%;
}
.row__column--offset--8 {
  width: 33.33333%;
  margin-left: 66.66667%;
}
.row--spaced > .row__column--8 {
  width: calc(66.66667% - 1.5rem);
}
.row--spaced > .row__column--offset--8 {
  width: 66.66667%;
  margin-left: calc(66.66667% - 1.5rem);
}
.row--spaced > .row__column--9 {
  margin: 0.75rem;
}
.row__column--9 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 75%;
}
.row__column--offset--9 {
  width: 25%;
  margin-left: 75%;
}
.row--spaced > .row__column--9 {
  width: calc(75% - 1.5rem);
}
.row--spaced > .row__column--offset--9 {
  width: 75%;
  margin-left: calc(75% - 1.5rem);
}
.row--spaced > .row__column--10 {
  margin: 0.75rem;
}
.row__column--10 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 83.33333%;
}
.row__column--offset--10 {
  width: 16.66667%;
  margin-left: 83.33333%;
}
.row--spaced > .row__column--10 {
  width: calc(83.33333% - 1.5rem);
}
.row--spaced > .row__column--offset--10 {
  width: 83.33333%;
  margin-left: calc(83.33333% - 1.5rem);
}
.row--spaced > .row__column--11 {
  margin: 0.75rem;
}
.row__column--11 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 91.66667%;
}
.row__column--offset--11 {
  width: 8.33333%;
  margin-left: 91.66667%;
}
.row--spaced > .row__column--11 {
  width: calc(91.66667% - 1.5rem);
}
.row--spaced > .row__column--offset--11 {
  width: 91.66667%;
  margin-left: calc(91.66667% - 1.5rem);
}
.row--spaced > .row__column--12 {
  margin: 0.75rem;
}
.row__column--12 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  max-width: 100%;
  -ms-grid-row-align: center;
  align-self: center;
  width: 100%;
}
.row__column--offset--12 {
  width: 0;
  margin-left: 100%;
}
.row--spaced > .row__column--12 {
  width: calc(100% - 1.5rem);
}
.row--spaced > .row__column--offset--12 {
  width: 100%;
  margin-left: calc(100% - 1.5rem);
}
@media (min-width: 480px) {
  .row--spaced > .row__column--phone--1 {
    margin: 0.75rem;
  }
  .row__column--phone--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--phone--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--phone--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--phone--2 {
    margin: 0.75rem;
  }
  .row__column--phone--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--phone--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--phone--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--phone--3 {
    margin: 0.75rem;
  }
  .row__column--phone--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--phone--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--phone--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--phone--4 {
    margin: 0.75rem;
  }
  .row__column--phone--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--phone--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--phone--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--phone--5 {
    margin: 0.75rem;
  }
  .row__column--phone--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--phone--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--phone--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--phone--6 {
    margin: 0.75rem;
  }
  .row__column--phone--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--phone--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--phone--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--phone--7 {
    margin: 0.75rem;
  }
  .row__column--phone--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--phone--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--phone--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--phone--8 {
    margin: 0.75rem;
  }
  .row__column--phone--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--phone--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--phone--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--phone--9 {
    margin: 0.75rem;
  }
  .row__column--phone--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--phone--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--phone--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--phone--10 {
    margin: 0.75rem;
  }
  .row__column--phone--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--phone--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--phone--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--phone--11 {
    margin: 0.75rem;
  }
  .row__column--phone--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--phone--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--phone--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--phone--12 {
    margin: 0.75rem;
  }
  .row__column--phone--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--phone--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--phone--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phone--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
@media (min-width: 601px) {
  .row--spaced > .row__column--phablet--1 {
    margin: 0.75rem;
  }
  .row__column--phablet--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--phablet--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--phablet--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--2 {
    margin: 0.75rem;
  }
  .row__column--phablet--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--phablet--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--phablet--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--3 {
    margin: 0.75rem;
  }
  .row__column--phablet--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--phablet--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--phablet--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--4 {
    margin: 0.75rem;
  }
  .row__column--phablet--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--phablet--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--phablet--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--5 {
    margin: 0.75rem;
  }
  .row__column--phablet--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--phablet--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--phablet--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--6 {
    margin: 0.75rem;
  }
  .row__column--phablet--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--phablet--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--phablet--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--7 {
    margin: 0.75rem;
  }
  .row__column--phablet--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--phablet--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--phablet--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--8 {
    margin: 0.75rem;
  }
  .row__column--phablet--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--phablet--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--phablet--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--9 {
    margin: 0.75rem;
  }
  .row__column--phablet--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--phablet--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--phablet--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--10 {
    margin: 0.75rem;
  }
  .row__column--phablet--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--phablet--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--phablet--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--11 {
    margin: 0.75rem;
  }
  .row__column--phablet--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--phablet--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--phablet--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--phablet--12 {
    margin: 0.75rem;
  }
  .row__column--phablet--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--phablet--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--phablet--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--phablet--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
@media (min-width: 992px) {
  .row--spaced > .row__column--tablet--1 {
    margin: 0.75rem;
  }
  .row__column--tablet--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--tablet--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--tablet--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--2 {
    margin: 0.75rem;
  }
  .row__column--tablet--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--tablet--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--tablet--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--3 {
    margin: 0.75rem;
  }
  .row__column--tablet--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--tablet--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--tablet--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--4 {
    margin: 0.75rem;
  }
  .row__column--tablet--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--tablet--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--tablet--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--5 {
    margin: 0.75rem;
  }
  .row__column--tablet--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--tablet--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--tablet--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--6 {
    margin: 0.75rem;
  }
  .row__column--tablet--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--tablet--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--tablet--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--7 {
    margin: 0.75rem;
  }
  .row__column--tablet--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--tablet--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--tablet--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--8 {
    margin: 0.75rem;
  }
  .row__column--tablet--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--tablet--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--tablet--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--9 {
    margin: 0.75rem;
  }
  .row__column--tablet--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--tablet--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--tablet--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--10 {
    margin: 0.75rem;
  }
  .row__column--tablet--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--tablet--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--tablet--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--11 {
    margin: 0.75rem;
  }
  .row__column--tablet--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--tablet--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--tablet--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--tablet--12 {
    margin: 0.75rem;
  }
  .row__column--tablet--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--tablet--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--tablet--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--tablet--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
@media (min-width: 1200px) {
  .row--spaced > .row__column--desktop--1 {
    margin: 0.75rem;
  }
  .row__column--desktop--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--desktop--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--desktop--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--2 {
    margin: 0.75rem;
  }
  .row__column--desktop--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--desktop--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--desktop--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--3 {
    margin: 0.75rem;
  }
  .row__column--desktop--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--desktop--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--desktop--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--4 {
    margin: 0.75rem;
  }
  .row__column--desktop--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--desktop--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--desktop--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--5 {
    margin: 0.75rem;
  }
  .row__column--desktop--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--desktop--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--desktop--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--6 {
    margin: 0.75rem;
  }
  .row__column--desktop--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--desktop--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--desktop--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--7 {
    margin: 0.75rem;
  }
  .row__column--desktop--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--desktop--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--desktop--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--8 {
    margin: 0.75rem;
  }
  .row__column--desktop--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--desktop--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--desktop--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--9 {
    margin: 0.75rem;
  }
  .row__column--desktop--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--desktop--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--desktop--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--10 {
    margin: 0.75rem;
  }
  .row__column--desktop--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--desktop--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--desktop--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--11 {
    margin: 0.75rem;
  }
  .row__column--desktop--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--desktop--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--desktop--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--desktop--12 {
    margin: 0.75rem;
  }
  .row__column--desktop--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--desktop--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--desktop--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
@media (min-width: 1900px) {
  .row--spaced > .row__column--desktop-large--1 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--desktop-large--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--desktop-large--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--2 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--desktop-large--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--desktop-large--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--3 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--desktop-large--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--desktop-large--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--4 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--desktop-large--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--desktop-large--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--5 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--desktop-large--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--desktop-large--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--6 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--desktop-large--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--desktop-large--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--7 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--desktop-large--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--desktop-large--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--8 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--desktop-large--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--desktop-large--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--9 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--desktop-large--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--desktop-large--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--10 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--desktop-large--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--desktop-large--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--11 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--desktop-large--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--desktop-large--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--desktop-large--12 {
    margin: 0.75rem;
  }
  .row__column--desktop-large--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--desktop-large--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--desktop-large--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--desktop-large--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
@media (min-width: 2500px) {
  .row--spaced > .row__column--retina--1 {
    margin: 0.75rem;
  }
  .row__column--retina--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--retina--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--retina--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--retina--2 {
    margin: 0.75rem;
  }
  .row__column--retina--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--retina--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--retina--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--retina--3 {
    margin: 0.75rem;
  }
  .row__column--retina--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--retina--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--retina--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--retina--4 {
    margin: 0.75rem;
  }
  .row__column--retina--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--retina--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--retina--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--retina--5 {
    margin: 0.75rem;
  }
  .row__column--retina--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--retina--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--retina--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--retina--6 {
    margin: 0.75rem;
  }
  .row__column--retina--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--retina--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--retina--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--retina--7 {
    margin: 0.75rem;
  }
  .row__column--retina--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--retina--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--retina--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--retina--8 {
    margin: 0.75rem;
  }
  .row__column--retina--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--retina--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--retina--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--retina--9 {
    margin: 0.75rem;
  }
  .row__column--retina--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--retina--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--retina--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--retina--10 {
    margin: 0.75rem;
  }
  .row__column--retina--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--retina--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--retina--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--retina--11 {
    margin: 0.75rem;
  }
  .row__column--retina--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--retina--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--retina--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--retina--12 {
    margin: 0.75rem;
  }
  .row__column--retina--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--retina--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--retina--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--retina--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
@media (min-width: 3840px) {
  .row--spaced > .row__column--4k--1 {
    margin: 0.75rem;
  }
  .row__column--4k--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--4k--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--4k--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--4k--2 {
    margin: 0.75rem;
  }
  .row__column--4k--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--4k--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--4k--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--4k--3 {
    margin: 0.75rem;
  }
  .row__column--4k--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--4k--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--4k--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--4k--4 {
    margin: 0.75rem;
  }
  .row__column--4k--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--4k--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--4k--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--4k--5 {
    margin: 0.75rem;
  }
  .row__column--4k--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--4k--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--4k--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--4k--6 {
    margin: 0.75rem;
  }
  .row__column--4k--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--4k--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--4k--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--4k--7 {
    margin: 0.75rem;
  }
  .row__column--4k--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--4k--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--4k--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--4k--8 {
    margin: 0.75rem;
  }
  .row__column--4k--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--4k--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--4k--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--4k--9 {
    margin: 0.75rem;
  }
  .row__column--4k--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--4k--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--4k--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--4k--10 {
    margin: 0.75rem;
  }
  .row__column--4k--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--4k--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--4k--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--4k--11 {
    margin: 0.75rem;
  }
  .row__column--4k--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--4k--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--4k--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--4k--12 {
    margin: 0.75rem;
  }
  .row__column--4k--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--4k--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--4k--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--4k--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
@media (min-width: 5000px) {
  .row--spaced > .row__column--5k--1 {
    margin: 0.75rem;
  }
  .row__column--5k--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--5k--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--5k--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--5k--2 {
    margin: 0.75rem;
  }
  .row__column--5k--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--5k--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--5k--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--5k--3 {
    margin: 0.75rem;
  }
  .row__column--5k--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--5k--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--5k--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--5k--4 {
    margin: 0.75rem;
  }
  .row__column--5k--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--5k--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--5k--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--5k--5 {
    margin: 0.75rem;
  }
  .row__column--5k--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--5k--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--5k--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--5k--6 {
    margin: 0.75rem;
  }
  .row__column--5k--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--5k--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--5k--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--5k--7 {
    margin: 0.75rem;
  }
  .row__column--5k--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--5k--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--5k--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--5k--8 {
    margin: 0.75rem;
  }
  .row__column--5k--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--5k--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--5k--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--5k--9 {
    margin: 0.75rem;
  }
  .row__column--5k--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--5k--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--5k--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--5k--10 {
    margin: 0.75rem;
  }
  .row__column--5k--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--5k--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--5k--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--5k--11 {
    margin: 0.75rem;
  }
  .row__column--5k--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--5k--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--5k--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--5k--12 {
    margin: 0.75rem;
  }
  .row__column--5k--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--5k--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--5k--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--5k--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
@media (min-width: 8000px) {
  .row--spaced > .row__column--8k--1 {
    margin: 0.75rem;
  }
  .row__column--8k--1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 8.33333%;
  }
  .row__column--offset--8k--1 {
    width: 91.66667%;
    margin-left: 8.33333%;
  }
  .row--spaced > .row__column--8k--1 {
    width: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--1 {
    width: 8.33333%;
    margin-left: calc(8.33333% - 1.5rem);
  }
  .row--spaced > .row__column--8k--2 {
    margin: 0.75rem;
  }
  .row__column--8k--2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 16.66667%;
  }
  .row__column--offset--8k--2 {
    width: 83.33333%;
    margin-left: 16.66667%;
  }
  .row--spaced > .row__column--8k--2 {
    width: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--2 {
    width: 16.66667%;
    margin-left: calc(16.66667% - 1.5rem);
  }
  .row--spaced > .row__column--8k--3 {
    margin: 0.75rem;
  }
  .row__column--8k--3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 25%;
  }
  .row__column--offset--8k--3 {
    width: 75%;
    margin-left: 25%;
  }
  .row--spaced > .row__column--8k--3 {
    width: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--3 {
    width: 25%;
    margin-left: calc(25% - 1.5rem);
  }
  .row--spaced > .row__column--8k--4 {
    margin: 0.75rem;
  }
  .row__column--8k--4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 33.33333%;
  }
  .row__column--offset--8k--4 {
    width: 66.66667%;
    margin-left: 33.33333%;
  }
  .row--spaced > .row__column--8k--4 {
    width: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--4 {
    width: 33.33333%;
    margin-left: calc(33.33333% - 1.5rem);
  }
  .row--spaced > .row__column--8k--5 {
    margin: 0.75rem;
  }
  .row__column--8k--5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 41.66667%;
  }
  .row__column--offset--8k--5 {
    width: 58.33333%;
    margin-left: 41.66667%;
  }
  .row--spaced > .row__column--8k--5 {
    width: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--5 {
    width: 41.66667%;
    margin-left: calc(41.66667% - 1.5rem);
  }
  .row--spaced > .row__column--8k--6 {
    margin: 0.75rem;
  }
  .row__column--8k--6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 50%;
  }
  .row__column--offset--8k--6 {
    width: 50%;
    margin-left: 50%;
  }
  .row--spaced > .row__column--8k--6 {
    width: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--6 {
    width: 50%;
    margin-left: calc(50% - 1.5rem);
  }
  .row--spaced > .row__column--8k--7 {
    margin: 0.75rem;
  }
  .row__column--8k--7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 58.33333%;
  }
  .row__column--offset--8k--7 {
    width: 41.66667%;
    margin-left: 58.33333%;
  }
  .row--spaced > .row__column--8k--7 {
    width: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--7 {
    width: 58.33333%;
    margin-left: calc(58.33333% - 1.5rem);
  }
  .row--spaced > .row__column--8k--8 {
    margin: 0.75rem;
  }
  .row__column--8k--8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 66.66667%;
  }
  .row__column--offset--8k--8 {
    width: 33.33333%;
    margin-left: 66.66667%;
  }
  .row--spaced > .row__column--8k--8 {
    width: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--8 {
    width: 66.66667%;
    margin-left: calc(66.66667% - 1.5rem);
  }
  .row--spaced > .row__column--8k--9 {
    margin: 0.75rem;
  }
  .row__column--8k--9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 75%;
  }
  .row__column--offset--8k--9 {
    width: 25%;
    margin-left: 75%;
  }
  .row--spaced > .row__column--8k--9 {
    width: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--9 {
    width: 75%;
    margin-left: calc(75% - 1.5rem);
  }
  .row--spaced > .row__column--8k--10 {
    margin: 0.75rem;
  }
  .row__column--8k--10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 83.33333%;
  }
  .row__column--offset--8k--10 {
    width: 16.66667%;
    margin-left: 83.33333%;
  }
  .row--spaced > .row__column--8k--10 {
    width: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--10 {
    width: 83.33333%;
    margin-left: calc(83.33333% - 1.5rem);
  }
  .row--spaced > .row__column--8k--11 {
    margin: 0.75rem;
  }
  .row__column--8k--11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 91.66667%;
  }
  .row__column--offset--8k--11 {
    width: 8.33333%;
    margin-left: 91.66667%;
  }
  .row--spaced > .row__column--8k--11 {
    width: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--11 {
    width: 91.66667%;
    margin-left: calc(91.66667% - 1.5rem);
  }
  .row--spaced > .row__column--8k--12 {
    margin: 0.75rem;
  }
  .row__column--8k--12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    max-width: 100%;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
  }
  .row__column--offset--8k--12 {
    width: 0;
    margin-left: 100%;
  }
  .row--spaced > .row__column--8k--12 {
    width: calc(100% - 1.5rem);
  }
  .row--spaced > .row__column--offset--8k--12 {
    width: 100%;
    margin-left: calc(100% - 1.5rem);
  }
}
.hero {
  display: flex;
  flex-direction: row;
  align-content: stretch;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  text-align: center;
  overflow: hidden;
  position: relative;
  justify-content: center;
  align-items: center;
}
.hero:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero--full {
  min-height: 100%;
}
.hero--light,
.hero--transparent {
  color: #424242;
}
.hero--transparent:before {
  background: transparent;
}
.hero--light:before {
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.5),
    hsla(0, 0%, 100%, 0.8)
  );
  color: #424242;
}
.hero__content {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  width: 90%;
  z-index: 2;
}
@media screen and (min-width: 37.56255em) {
  .hero {
    min-height: 80%;
    height: auto;
  }
  .hero--full {
    min-height: 100%;
  }
}
@media screen and (min-width: 62em) {
  .hero {
    min-height: 50%;
  }
  .hero--full {
    min-height: 100%;
  }
}
.modal {
  display: none;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.5s;
}
.modal--active {
  display: block;
}
.modal--transparent {
  background-color: transparent;
}
.modal__content {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  padding: 1rem;
  background-color: #fff;
  max-height: 100%;
  text-align: center;
  width: 90%;
  overflow: auto;
}
@media (min-width: 601px) {
  .modal__content {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .modal__content {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .modal__content {
    width: auto;
  }
}
.vertical {
  flex-direction: column;
}
.horizontal,
.vertical {
  display: flex;
}
.horizontal--left {
  justify-content: flex-start;
}
.horizontal--center {
  justify-content: center;
  align-items: center;
}
.horizontal--right {
  justify-content: flex-end;
}
.vertical--left {
  align-items: flex-start;
}
.vertical--center {
  align-items: center;
}
.vertical--right {
  align-items: flex-end;
}
.bottom {
  bottom: 0;
  margin: 0;
}
.bottom,
.middle {
  position: absolute;
}
.middle {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.center {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.left {
  left: 0;
}
.right {
  right: 0;
}
.text--center {
  text-align: center;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}
.text--justify {
  text-align: justify;
}
.padded {
  padding: 1rem;
}
.margin {
  margin: 1;
}
.padded-2 {
  padding: 2rem;
}
.margin-2 {
  margin: 2rem;
}
.padded-3 {
  padding: 3rem;
}
.margin-3 {
  margin: 3rem;
}
.padded-4 {
  padding: 4rem;
}
.margin-4 {
  margin: 4rem;
}
.padded-5 {
  padding: 5rem;
}
.margin-5 {
  margin: 5rem;
}
.nav {
  display: flex;
  width: 100%;
  background-color: #fff;
  text-align: right;
  min-height: 3rem;
  align-items: stretch;
  z-index: 90;
  flex-wrap: wrap;
  max-width: 100%;
}
.nav--fixed {
  position: fixed;
  max-height: 100%;
  overflow: auto;
}
.nav--rl {
  text-align: left;
}
.nav__content-list__item {
  display: flex;
  list-style: none;
  cursor: pointer;
  text-align: center;
  overflow: visible;
  background: inherit;
  width: 100%;
}
.nav__content-list__item > * {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
  width: 100%;
}
.nav__content-list__item:hover {
  background-color: #eee;
}
.nav__content-list__item:empty {
  padding: 1rem;
}
.nav__content-list__item__icon {
  -ms-grid-row-align: center;
  align-self: center;
  max-height: 100%;
  max-width: 100%;
  margin: 0 0.3rem;
  height: 60%;
  width: 1.5rem;
  min-width: 1.5rem;
}
.nav--side__content-list {
  display: none;
}
.nav__menu-icon {
  cursor: pointer;
  -ms-grid-row-align: center;
  align-self: center;
  max-width: 5%;
}
.nav__header {
  display: flex;
  max-width: 95%;
  max-height: 3.5rem;
  text-align: left;
  font-size: inherit;
  height: 100%;
  min-height: 100%;
  width: 100%;
  height: 3.5rem;
}
.nav__header__logo {
  max-width: 80%;
  max-height: 80%;
  padding: 0 0.5rem;
  height: 100%;
}
.nav__header__logo,
.nav__header__title {
  -ms-grid-row-align: center;
  align-self: center;
}
.nav__header__title {
  margin: 0 0 0 0.1rem;
  font-size: 1.5rem;
}
.nav__content-list {
  margin: 0;
  padding: 0;
  width: auto;
  max-height: 100%;
  display: none;
  align-items: center;
}
.nav__content-list--active {
  display: flex;
  width: 100%;
  flex-flow: column;
  background: inherit;
  overflow: auto;
}
.wrapper--top-navigation {
  margin-top: 3.5rem;
}
@media (min-width: 601px) {
  .nav--top--phablet {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
  }
  .nav--top--phablet .nav__menu-icon {
    display: none;
  }
  .nav--top--phablet .nav__content-list {
    display: flex;
    max-height: 3.5rem;
  }
  .nav--top--phablet .nav__content-list .nav__content-list__item {
    height: 100%;
  }
  .nav--top--phablet .nav__content-list .nav__content-list__item > * {
    justify-content: center;
  }
  .nav--top--phablet .nav__content-list--full {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 3.5rem;
  }
  .nav--top--phablet .nav__content-list--full .nav__content-list__item {
    height: 100%;
  }
  .nav--top--phablet .nav__content-list--full .nav__content-list__item > * {
    justify-content: center;
  }
  .nav--side--phablet {
    width: 30%;
    height: 100%;
    float: left;
    max-height: 100%;
    flex-flow: column;
    overflow: hidden;
  }
  .nav--side--phablet .nav__header {
    height: auto;
    min-height: 0;
    flex-flow: column;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    max-height: none;
    max-width: 100%;
    flex-shrink: 0;
  }
  .nav--side--phablet .nav__header__logo {
    max-height: 10rem;
    margin: 0.5rem 0;
  }
  .nav--side--phablet .nav__header__title {
    text-align: center;
  }
  .nav--side--phablet .nav__menu-icon {
    display: none;
  }
  .nav--side--phablet .nav__content-list {
    display: flex;
    flex-flow: column;
    overflow: auto;
  }
  .nav--side--phablet .nav__content-list .nav__content-list__item {
    height: auto;
    width: 100%;
    min-height: 2rem;
  }
  .nav--side--phablet .nav__content-list .nav__content-list__item > * {
    width: 100%;
    justify-content: flex-start;
  }
  .nav--side--phablet
    .nav__content-list
    .nav__content-list__item
    .nav__content-list__item__icon {
    max-height: 100%;
    height: 2rem;
    min-height: 1.5rem;
    line-height: 1.4rem;
  }
  .wrapper--side-navigation--phablet {
    width: 70%;
    float: right;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .nav--top--tablet {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
  }
  .nav--top--tablet .nav__menu-icon {
    display: none;
  }
  .nav--top--tablet .nav__content-list {
    display: flex;
    max-height: 3.5rem;
  }
  .nav--top--tablet .nav__content-list .nav__content-list__item {
    height: 100%;
  }
  .nav--top--tablet .nav__content-list .nav__content-list__item > * {
    justify-content: center;
  }
  .nav--top--tablet .nav__content-list--full {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 3.5rem;
  }
  .nav--top--tablet .nav__content-list--full .nav__content-list__item {
    height: 100%;
  }
  .nav--top--tablet .nav__content-list--full .nav__content-list__item > * {
    justify-content: center;
  }
  .nav--side--tablet {
    width: 20%;
    height: 100%;
    float: left;
    max-height: 100%;
    flex-flow: column;
    overflow: hidden;
  }
  .nav--side--tablet .nav__header {
    height: auto;
    min-height: 0;
    flex-flow: column;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    max-height: none;
    max-width: 100%;
    flex-shrink: 0;
  }
  .nav--side--tablet .nav__header__logo {
    max-height: 10rem;
    margin: 0.5rem 0;
  }
  .nav--side--tablet .nav__header__title {
    text-align: center;
  }
  .nav--side--tablet .nav__menu-icon {
    display: none;
  }
  .nav--side--tablet .nav__content-list {
    display: flex;
    flex-flow: column;
    overflow: auto;
  }
  .nav--side--tablet .nav__content-list .nav__content-list__item {
    height: auto;
    width: 100%;
    min-height: 2rem;
  }
  .nav--side--tablet .nav__content-list .nav__content-list__item > * {
    width: 100%;
    justify-content: flex-start;
  }
  .nav--side--tablet
    .nav__content-list
    .nav__content-list__item
    .nav__content-list__item__icon {
    max-height: 100%;
    height: 2rem;
    min-height: 1.5rem;
    line-height: 1.4rem;
  }
  .wrapper--side-navigation--tablet {
    width: 80%;
    float: right;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .nav--top--desktop {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
  }
  .nav--top--desktop .nav__menu-icon {
    display: none;
  }
  .nav--top--desktop .nav__content-list {
    display: flex;
    max-height: 3.5rem;
  }
  .nav--top--desktop .nav__content-list .nav__content-list__item {
    height: 100%;
  }
  .nav--top--desktop .nav__content-list .nav__content-list__item > * {
    justify-content: center;
  }
  .nav--top--desktop .nav__content-list--full {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 3.5rem;
  }
  .nav--top--desktop .nav__content-list--full .nav__content-list__item {
    height: 100%;
  }
  .nav--top--desktop .nav__content-list--full .nav__content-list__item > * {
    justify-content: center;
  }
  .nav--side--desktop {
    width: 20%;
    height: 100%;
    float: left;
    max-height: 100%;
    flex-flow: column;
    overflow: hidden;
  }
  .nav--side--desktop .nav__header {
    height: auto;
    min-height: 0;
    flex-flow: column;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    max-height: none;
    max-width: 100%;
    flex-shrink: 0;
  }
  .nav--side--desktop .nav__header__logo {
    max-height: 10rem;
    margin: 0.5rem 0;
  }
  .nav--side--desktop .nav__header__title {
    text-align: center;
  }
  .nav--side--desktop .nav__menu-icon {
    display: none;
  }
  .nav--side--desktop .nav__content-list {
    display: flex;
    flex-flow: column;
    overflow: auto;
  }
  .nav--side--desktop .nav__content-list .nav__content-list__item {
    height: auto;
    width: 100%;
    min-height: 2rem;
  }
  .nav--side--desktop .nav__content-list .nav__content-list__item > * {
    width: 100%;
    justify-content: flex-start;
  }
  .nav--side--desktop
    .nav__content-list
    .nav__content-list__item
    .nav__content-list__item__icon {
    max-height: 100%;
    height: 2rem;
    min-height: 1.5rem;
    line-height: 1.4rem;
  }
  .wrapper--side-navigation--desktop {
    width: 80%;
    float: right;
    margin-top: 0;
  }
}
@media (min-width: 1900px) {
  .nav--top--desktop-large {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
  }
  .nav--top--desktop-large .nav__menu-icon {
    display: none;
  }
  .nav--top--desktop-large .nav__content-list {
    display: flex;
    max-height: 3.5rem;
  }
  .nav--top--desktop-large .nav__content-list .nav__content-list__item {
    height: 100%;
  }
  .nav--top--desktop-large .nav__content-list .nav__content-list__item > * {
    justify-content: center;
  }
  .nav--top--desktop-large .nav__content-list--full {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 3.5rem;
  }
  .nav--top--desktop-large .nav__content-list--full .nav__content-list__item {
    height: 100%;
  }
  .nav--top--desktop-large
    .nav__content-list--full
    .nav__content-list__item
    > * {
    justify-content: center;
  }
  .nav--side--desktop-large {
    width: 15%;
    height: 100%;
    float: left;
    max-height: 100%;
    flex-flow: column;
    overflow: hidden;
  }
  .nav--side--desktop-large .nav__header {
    height: auto;
    min-height: 0;
    flex-flow: column;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    max-height: none;
    max-width: 100%;
    flex-shrink: 0;
  }
  .nav--side--desktop-large .nav__header__logo {
    max-height: 10rem;
    margin: 0.5rem 0;
  }
  .nav--side--desktop-large .nav__header__title {
    text-align: center;
  }
  .nav--side--desktop-large .nav__menu-icon {
    display: none;
  }
  .nav--side--desktop-large .nav__content-list {
    display: flex;
    flex-flow: column;
    overflow: auto;
  }
  .nav--side--desktop-large .nav__content-list .nav__content-list__item {
    height: auto;
    width: 100%;
    min-height: 2rem;
  }
  .nav--side--desktop-large .nav__content-list .nav__content-list__item > * {
    width: 100%;
    justify-content: flex-start;
  }
  .nav--side--desktop-large
    .nav__content-list
    .nav__content-list__item
    .nav__content-list__item__icon {
    max-height: 100%;
    height: 2rem;
    min-height: 1.5rem;
    line-height: 1.4rem;
  }
  .wrapper--side-navigation--desktop-large {
    width: 85%;
    float: right;
    margin-top: 0;
  }
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  font-family: inherit;
  margin: 0;
  outline: none;
  border: none;
  font-size: inherit;
}
optgroup {
  font-weight: 700;
}
button,
input,
select,
textarea {
  overflow: visible;
  border-radius: 3px;
  background: #f5f5f5;
  color: #424242;
  padding: 1rem;
}
form button,
input,
select,
textarea {
  padding: 0.5rem 1rem;
}
label {
  margin: 0.5rem;
}
button,
select {
  margin: 0.5rem;
  text-transform: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
button:hover {
  background-color: #e8e8e8;
}
.link--button {
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  font-family: inherit;
  margin: 0;
  outline: none;
  border: none;
  font-size: inherit;
  overflow: visible;
  padding: 1rem;
}
.link--button,
form .link--button {
  padding: 0.5rem 1rem;
}
.link--button {
  margin: 0.5rem;
  text-transform: none;
  cursor: pointer;
  border-radius: 3px;
}
.link--button:hover {
  background-color: #e8e8e8;
}
.link--button,
[type=".link--button"] {
  -webkit-appearance: button;
}
.link--button::-moz-focus-inner,
[type=".link--button"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.link--button[disabled] {
  cursor: default;
}
.link--button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.link--button {
  display: inline-block;
  color: #424242;
  background: #f5f5f5;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35rem 0.625rem 0.75rem;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  resize: none;
  overflow: auto;
}
[type="color"] {
  padding: 0;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
input[type="range"]::-webkit-slider-runnable-track {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}
input[type="range"]::-moz-range-track {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}
input[type="range"]::-ms-fill-lower,
input[type="range"]::-ms-fill-upper,
input[type="range"]:focus::-ms-fill-lower,
input[type="range"]:focus::-ms-fill-upper {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}
input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
  outline: none;
}
.circle {
  background: #ddd;
  border-radius: 50%;
  height: 0;
  padding-bottom: 100%;
  width: 100%;
}
.circle__content {
  color: #fff;
  float: left;
  line-height: 1;
  margin-top: -0.5rem;
  padding-top: 50%;
  text-align: center;
  width: 100%;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
}
pre {
  background: #f5f5f5;
  padding: 1rem;
  overflow: auto;
}
pre code {
  display: block;
  overflow: hidden;
}
code[class*="language-"],
pre[class*="language-"] {
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.5;
  font-size: 0.85em;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*="language-"] {
  position: relative;
  margin: 0.5em 0;
  background: transparent;
  border: 1px solid rgba(66, 66, 66, 0.11);
  background-size: 3em 3em;
  background-origin: content-box;
  overflow: visible;
  overflow-x: auto;
}
code[class*="language"] {
  max-height: inherit;
  height: 100%;
  padding: 0 1em;
  display: block;
  overflow: visible;
}
:not(pre) > code[class*="language-"] {
  position: relative;
  padding: 0.2em;
  border-radius: 0.3em;
  color: #c92c2c;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
:not(pre) > code[class*="language-"]:after,
pre[class*="language-"]:after {
  right: 0.75em;
  left: auto;
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}
.token.block-comment,
.token.comment,
.token.doctype,
.token.prolog {
  color: #878787;
  font-style: italic;
}
.token.cdata {
  color: #bb2500;
}
.token.punctuation {
  color: #5f6364;
}
.token.boolean {
  color: #007ab7;
}
.token.string {
  color: #dd2400;
}
.token.function {
  color: #5c99ad;
}
.token.property,
.token.tag {
  color: #0045aa;
}
.token.number {
  color: #007ab7;
}
.token.constant,
.token.deleted,
.token.function-name,
.token.symbol {
  color: #c92c2c;
}
.token.attr-name {
  color: #007ab7;
}
.token.builtin,
.token.char,
.token.inserted,
.token.selector {
  color: #2f9c0a;
}
.token.operator {
  color: #006ff8;
}
.token.url {
  color: #004ccb;
  text-decoration: none;
}
.token.entity {
  color: #007ab7;
  cursor: help;
}
.token.variable {
  color: #8735a5;
}
.token.keyword {
  color: #0045aa;
  font-weight: 400;
}
.token.atrule {
  color: #de7a31;
  font-style: normal;
  font-weight: 700;
}
.token.attr-value {
  color: #5d8f00;
  font-weight: 400;
}
.token.class-name {
  color: #1990b8;
}
.token.important,
.token.regex {
  color: #e90;
}
.language-css .token.string,
.style .token.string {
  color: #f4378f;
}
.language-css .token.property,
.style .token.property {
  color: #0045aa;
}
.language-css .token.number,
.style .token.number {
  color: #dd2400;
}
.language-css .token.hexcode,
.style .token.hexcode {
  color: #d72d65;
}
.token.important {
  font-weight: 400;
}
.token.bold {
  font-weight: 700;
}
.token.italic {
  font-style: italic;
}
.namespace {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  pre[class*="language-"]:after,
  pre[class*="language-"]:before {
    bottom: 14px;
    box-shadow: none;
  }
}
.token.cr:before,
.token.lf:before,
.token.tab:not(:empty):before {
  color: #e0d7d1;
}
pre[class*="language-"][data-line] {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
pre[data-line] code {
  position: relative;
  padding-left: 4em;
}
pre .line-highlight {
  margin-top: 0;
}
.token a {
  color: inherit;
}
code[class*="language-"] a[href],
pre[class*="language-"] a[href] {
  cursor: help;
  text-decoration: none;
}
code[class*="language-"] a[href]:hover,
pre[class*="language-"] a[href]:hover {
  cursor: help;
  text-decoration: underline;
}
.card {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.card--depth--2 {
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
}
.card--depth--3 {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.23), 0 3px 12px rgba(0, 0, 0, 0.16);
}
.card--depth--4 {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
}
.card--depth--5 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), 0 14px 56px rgba(0, 0, 0, 0.25);
}
.card--depth--6 {
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22), 0 19px 76px rgba(0, 0, 0, 0.3);
}
.separator--material {
  margin: 0 0 0.5rem;
  border: 1px solid #ddd;
  border-bottom: 0;
}
.button--floating {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 1.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  z-index: 9;
}
:root {
  --main-color: rgba(0, 0, 0, 0.5);
  --text-color: rgba(66, 66, 66, 0.9);
  --screen-background-color: #f7f7f7;
  --character-name-color: #fff;
  --quick-menu-text-color: hsla(0, 0%, 49%, 0.5);
}
html {
  width: auto;
  width: 100vw;
}
body,
html {
  height: 100vh;
  max-height: 100vh;
  max-width: 100vw;
}
body {
  font-size: 1rem;
  text-align: center;
  color: var(--text-color);
  background-color: var(--screen-background-color);
  font-family: Open Sans, sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100vw;
}
h1,
h2 {
  font-size: 3rem;
}
h1,
h2,
h3 {
  padding: 0.03em;
}
h3 {
  font-size: 2rem;
}
li {
  list-style-type: none;
  display: inline-block;
}
button {
  width: 8rem;
  height: 2.5rem;
  color: #f7f7f7;
  padding: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
button,
button:focus,
button:hover {
  background-color: var(--main-color);
}
button:focus {
  border: 4px solid #222;
}
input,
select {
  color: inherit;
}
input[type="range"] {
  width: 60%;
}
textarea {
  background-color: #eee;
  min-width: 50%;
}
audio,
canvas,
video {
  display: block;
}
.fancy-error li {
  display: list-item;
  list-style-type: disc;
}
.fancy-error summary {
  cursor: pointer;
}
#monogatari {
  width: 100%;
  height: 100%;
  position: relative;
}
.background-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}
.wait,
.wait * {
  cursor: wait;
}
.block {
  display: block;
}
.modal {
  top: 0;
}
.modal .modal__content {
  border-radius: 4px;
}
.modal[data-component]:not(.modal--active) {
  display: none;
}
.horizontal {
  align-items: center;
}
[data-component] {
  display: flex;
}
[data-component],
[data-component]:before {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
[data-content="wrapper"] {
  display: flex;
}
[data-screen] {
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  align-items: stretch;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}
[data-screen].active {
  display: flex;
}
[data-error] .modal__content {
  height: auto;
  width: 90%;
}
[data-error] h2 {
  text-align: center;
  font-size: 2rem;
}
[data-error] h3 {
  font-size: 1.5rem;
}
[data-error] button {
  margin: 0.5rem auto;
  display: block;
}
[data-error] a {
  color: #00bcd4;
}
[data-error] .separator--material {
  margin: 1rem 0;
}
[data-error] .error-section {
  padding-left: 1rem;
}
[data-content="visuals"] {
  width: 100%;
  height: 100%;
  position: relative;
}
.forceAspectRatio {
  margin-left: auto;
  margin-right: auto;
  background-size: contain;
  position: relative;
}
.forceAspectRatio [data-character],
.forceAspectRatio [data-image],
.forceAspectRatio [data-ui="background"] {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
}
[data-action] {
  cursor: pointer;
}
[data-ui="broadcast"] {
  display: flex;
  justify-content: center;
  background: #fff;
  color: #424242;
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
  font-size: 1rem;
  position: absolute;
  width: 100%;
  cursor: pointer;
  z-index: 21;
}
[data-video] {
  max-width: 100%;
  max-height: 100%;
}
[data-video][data-mode="background"] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
[data-video].immersive,
[data-video][data-mode="immersive"] {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  z-index: 20;
  background: #000;
}
[data-video][data-mode="displayable"],
[data-video][data-mode="modal"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
[data-ui="particles"] {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
[data-ui="background"] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
}
[data-screen]:not([data-screen="game"]) [data-action="back"] {
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 100%;
  width: 3rem;
  height: 3rem;
  margin: 1rem;
  z-index: 2;
  background-color: var(--main-color);
  color: #f7f7f7;
}
[data-screen="load"] h3,
[data-screen="save"] h3 {
  margin: 2rem auto;
}
@media screen and (min-width: 37.56255em) {
  .modal > * {
    width: 70%;
  }
}
@media screen and (min-width: 48em) {
  .modal > * {
    width: 60%;
  }
}
@media screen and (min-width: 48em) and (min-height: 27em) {
  body {
    font-size: 1.2rem;
  }
  button {
    width: 10rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 62em) {
  .modal > * {
    width: 50%;
  }
}
@media screen and (min-width: 62em) and (min-height: 34.875em) {
  body {
    font-size: 1.35rem;
  }
  h1,
  h2 {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 75em) {
  .modal > * {
    width: 40%;
  }
}
@media screen and (min-width: 75em) and (min-height: 42.187em) {
  body {
    font-size: 1.5rem;
  }
  .modal > * {
    width: 40%;
  }
}
@media screen and (min-width: 120em) {
  .modal > * {
    width: 30%;
  }
}
alert-modal [data-content="wrapper"] {
  overflow: auto;
  overflow-x: hidden;
  flex-direction: column;
}
alert-modal p {
  font-size: 1.5rem;
}
alert-modal input[type="text"] {
  margin-bottom: 2rem;
  text-align: center;
}
canvas-container {
  width: 100%;
  height: 100%;
}
canvas-container [data-content="wrapper"] {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
canvas-container.immersive,
canvas-container[mode="immersive"] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  z-index: 20;
}
canvas-container canvas {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
}
canvas-container[mode="character"] {
  bottom: 0;
  position: absolute;
  max-width: 100%;
  max-height: 80vh;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  margin: 0 auto;
  left: 0;
  right: 0;
}
canvas-container[mode="character"].right {
  left: auto;
  right: 0;
}
canvas-container[mode="character"].left {
  left: 0;
  right: auto;
}
canvas-container[mode="displayable"],
canvas-container[mode="modal"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
choice-container {
  z-index: 11;
  max-height: 90%;
  overflow-y: auto;
  height: auto;
  width: 90%;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
[mode="nvl"] choice-container {
  position: static;
  transform: none;
  width: 100%;
  justify-content: flex-start;
}
[mode="nvl"] choice-container [data-content="wrapper"] {
  flex-direction: row;
}
choice-container [data-content="wrapper"] {
  display: flex;
  flex-direction: column;
}
choice-container button {
  margin: 1em;
  padding: 0.5em;
  border-radius: 0.5em;
  width: auto;
  height: auto;
  color: #fff;
}
@media screen and (min-width: 48em) {
  choice-container {
    width: 70%;
  }
}
@media screen and (min-width: 62em) {
  choice-container {
    width: 50%;
  }
}
@media screen and (min-width: 75em) {
  choice-container {
    width: 40%;
  }
}
@media screen and (min-width: 120em) {
  choice-container {
    width: 30%;
  }
}
centered-dialog {
  margin: 0;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
centered-dialog [data-content="wrapper"] {
  display: block;
  text-align: center;
}
dialog-log .modal__content {
  width: 95%;
  height: 95%;
  max-height: 95%;
  max-width: 1000px;
  overflow: hidden;
  padding: 0;
  color: var(--text-color);
}
dialog-log .modal__content [data-content="log"] {
  text-align: left;
  padding: 1rem;
  height: 93%;
  max-height: 93%;
  overflow: auto;
}
dialog-log .modal__content [data-content="log"] [data-spoke] {
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
dialog-log .modal__content [data-content="log"] [data-spoke] span {
  font-size: 0.9rem;
}
dialog-log .modal__content [data-content="log"] [data-spoke] > p {
  font-size: 1rem;
  margin: 0.5rem 0;
}
dialog-log
  .modal__content
  [data-content="log"]
  [data-spoke][data-spoke="narrator"]
  > p {
  color: var(--main-color);
}
dialog-log
  .modal__content
  [data-content="log"]
  [data-spoke][data-spoke="centered"]
  > p {
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  dialog-log button {
    width: 8rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}
game-screen {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-y: hidden;
  position: relative;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
game-screen img {
  position: absolute;
  max-height: 90%;
}
game-screen [data-image] {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
game-screen [data-image].bottom {
  top: auto;
}
game-screen [data-image].left {
  right: auto;
}
game-screen [data-image].right {
  left: auto;
}
game-screen [data-image].top {
  bottom: auto;
}
game-screen [data-character] {
  bottom: 0;
  position: absolute;
  max-width: 100%;
  max-height: 80vh;
}
game-screen [data-sprite] {
  margin: 0 auto;
  left: 0;
  right: 0;
}
game-screen [data-sprite].right {
  left: auto;
  right: 0;
}
game-screen [data-sprite].left {
  left: 0;
  right: auto;
}
help-screen [data-content="help"] {
  max-width: 1000px;
  margin: 0 auto;
}
help-screen [data-content="help"] > .row {
  align-self: flex-start;
}
help-screen [data-content="help"] h3 {
  margin-bottom: 1rem;
}
help-screen [data-content="symbols"] {
  align-items: center;
  justify-content: flex-start;
}
help-screen [data-content="symbols"] [data-content="shortcut"] {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  display: block;
  background-color: var(--text-color);
  text-align: center;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 48em) {
  help-screen [data-content="symbols"] [data-content="shortcut"] {
    width: 2rem;
    height: 2rem;
  }
}
gallery-screen figure {
  min-height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background-size: cover;
  cursor: pointer;
}
gallery-screen .modal figure,
gallery-screen figure {
  background-repeat: no-repeat;
  background-position: 50%;
}
gallery-screen .modal figure {
  background-color: transparent;
  background-size: contain;
  height: 80%;
  width: 80%;
  margin: 0;
  overflow: hidden;
}
@media screen and (min-width: 37.56255em) {
  gallery-screen figure {
    min-height: 15rem;
  }
}
language-selection-screen [data-content="wrapper"] {
  flex-direction: column;
  padding: 2rem;
  height: 100%;
  justify-content: center;
}
language-selection-screen [data-content="buttons"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
language-selection-screen button {
  background: transparent;
  border: 4px solid var(--main-color);
  border-radius: 10px;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  width: auto;
  padding: 1rem;
}
language-selection-screen button [data-content="icon"] {
  font-size: 3rem;
  line-height: 1;
  margin: 1rem 0;
}
language-selection-screen button [data-content="language"] {
  font-weight: 700;
}
language-selection-screen button:focus,
language-selection-screen button:hover {
  background: transparent;
}
language-selection-screen button:focus [data-content="language"],
language-selection-screen button:hover [data-content="language"] {
  text-decoration: underline;
}
@media screen and (min-height: 21.87em) {
  language-selection-screen button [data-content="icon"] {
    font-size: 6rem;
  }
}
loading-screen {
  align-items: center;
  justify-content: center;
}
loading-screen [data-content="wrapper"] {
  display: flex;
  flex-direction: column;
}
loading-screen [data-content="progress"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  margin: 1em auto;
  display: block;
  border-radius: 3px;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
  background: transparent;
  width: 50%;
}
loading-screen [data-content="progress"]::-webkit-progress-bar {
  background: transparent;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
loading-screen [data-content="progress"]::-webkit-progress-value {
  background-color: #f16272;
  border-radius: 3px;
}
loading-screen [data-content="progress"]::-moz-progress-bar {
  background-color: #f16272;
  border-radius: 3px;
}
loading-screen div {
  width: 90%;
}
@media screen and (min-width: 37.56255em) {
  loading-screen [data-content="progress"] {
    width: 80%;
  }
}
main-menu {
  align-self: flex-end;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
}
message-modal div {
  width: auto;
  padding: 1rem;
}
message-modal a {
  color: #00bcd4;
}
message-modal [data-ui="message-content"] {
  text-align: left;
  max-width: 100%;
}
message-modal [data-ui="message-content"] * {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
quick-menu {
  top: 0;
  background-color: transparent;
  width: 100%;
  z-index: 11;
  position: absolute;
  height: 2.5rem;
  max-height: 2.5rem;
  justify-content: flex-end;
}
quick-menu.splash-screen {
  display: none;
}
quick-menu.transparent {
  background-color: transparent;
}
quick-menu.transparent button:focus,
quick-menu.transparent button:hover {
  color: var(--main-color);
  cursor: pointer;
}
quick-menu button {
  display: inline-block;
  width: auto;
  font-size: 1rem;
  margin: 0 0.5rem;
  background: transparent;
  color: var(--quick-menu-text-color);
}
quick-menu button:focus,
quick-menu button:hover {
  color: var(--quick-menu-text-color);
  background: transparent;
  cursor: pointer;
  border: none;
  border-bottom: 4px solid var(--quick-menu-text-color);
}
quick-menu button > [data-string] {
  display: none;
}
quick-menu button > .fas {
  display: inline-block;
  font-size: 1.5rem;
}
@media screen and (min-width: 37.56255em) {
  quick-menu {
    bottom: 0;
    top: auto;
    background-color: var(--main-color);
  }
  quick-menu.transparent {
    color: var(--main-color);
  }
  quick-menu button {
    color: #f7f7f7;
    margin: 0 0.25rem;
  }
  quick-menu button,
  quick-menu button:focus,
  quick-menu button:hover {
    color: hsla(0, 0%, 100%, 0.8);
    background: transparent;
  }
  quick-menu > button > [data-string] {
    display: inline-block;
  }
}
@media screen and (min-width: 48em) {
  quick-menu > button {
    width: auto;
    height: auto;
  }
}
save-screen input {
  background-color: #fff;
  border: 1px solid #666;
}
save-slot {
  width: 20rem;
  height: auto;
  background-color: var(--main-color);
  border-radius: 3px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  min-height: 10rem;
  font-size: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #fff;
}
save-slot .badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem;
  font-size: 0.7rem;
  background: inherit;
  color: inherit;
  font-style: italic;
  font-weight: 700;
}
save-slot [data-delete] {
  display: flex;
  justify-content: center;
  align-items: center;
  top: -1rem;
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: -1rem;
  margin: 0;
  font-size: 1rem;
  background-color: var(--main-color);
  color: #f7f7f7;
}
save-slot img {
  width: 100%;
}
save-slot [data-content="background"] {
  width: 100%;
  height: 10rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}
save-slot figcaption {
  padding: 1rem;
  color: #fff;
}
save-slot figcaption small {
  display: block;
}
settings-screen input,
settings-screen select {
  margin: 2rem;
  background-color: transparent;
}
settings-screen .horizontal {
  justify-content: center;
}
settings-screen [data-content="audio-settings"] > h3 {
  margin-bottom: 1rem;
}
slot-container {
  width: 100%;
  justify-content: center;
}
[data-spoke="narrator"] p {
  padding-left: 0;
}
[data-ui="who"] {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5rem 1rem;
}
[data-content="dialog"],
[data-ui="say"] {
  padding: 0 1rem;
}
[data-ui="say"] span {
  padding: 0;
  margin: 0;
}
text-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto minmax(70%, 1fr);
  grid-template-columns: auto minmax(70%, 1fr);
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "header header" "side-image text";
  background-color: var(--main-color);
  min-height: 25%;
  max-height: 25%;
  overflow: hidden;
  width: 100%;
  z-index: 10;
  text-align: left;
  position: absolute;
  bottom: 0;
  color: #fff;
}
text-box:after {
  content: " ";
  width: 100%;
  height: 0;
  display: block;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22) 85%);
  position: fixed;
  bottom: 0;
  transition: all 0.5s ease;
}
text-box.rtl {
  grid-template-areas: "header header" "text side-image";
  text-align: right;
  -ms-grid-columns: minmax(70%, 1fr) auto;
  grid-template-columns: minmax(70%, 1fr) auto;
}
text-box[mode="nvl"] {
  max-height: 100%;
  height: 100%;
}
text-box[mode="nvl"].unread:after {
  height: 2rem;
}
text-box p {
  display: block;
  width: 100%;
  padding: 1rem;
  margin: 0;
}
text-box .fa {
  width: auto;
  display: inline-block;
}
text-box [data-content="character-expression"] {
  position: unset;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
text-box [data-content="name"] {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: header;
  -ms-grid-column: text-start;
  grid-column-start: text-start;
  display: flex;
  color: var(--character-name-color);
}
text-box.rtl > [data-content="name"] {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}
text-box [data-content="text"] {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: text;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 100%;
}
text-box.rtl > [data-content="text"] {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
text-box [data-content="dialog"] {
  padding: 0 1rem;
}
text-box [data-content="side-image"] {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: side-image;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-align: center;
  -ms-grid-column-align: center;
  align-self: center;
  justify-self: center;
  place-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100%;
  height: 100%;
  overflow-y: hidden;
  z-index: 2;
}
text-box.rtl > [data-content="side-image"] {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
text-box.side-image--non-independent [data-content="side-image"] {
  -ms-grid-row: 1;
  grid-row-start: 1;
}
text-box.side-image--non-independent [data-content="name"] {
  -ms-grid-column: text-start;
  grid-column-start: text-start;
}
text-box.side-image--unconstrained [data-content="side-image"] {
  max-width: none;
}
@media screen and (min-width: 37.56255em) {
  text-box,
  text-box:after {
    bottom: 2.5rem;
  }
}
@media screen and (min-width: 48em) {
  text-box {
    -ms-grid-columns: auto minmax(80%, 1fr);
    grid-template-columns: auto minmax(80%, 1fr);
  }
  text-box.rtl {
    -ms-grid-columns: minmax(80%, 1fr) auto;
    grid-template-columns: minmax(80%, 1fr) auto;
  }
}
text-input div {
  width: auto;
  padding: 1rem;
}
text-input small {
  margin: 0.5rem auto;
}
text-input [data-content="message"] {
  font-size: 1rem;
}
text-input button {
  width: 3.5rem;
  height: 2rem;
  font-size: 1rem;
  padding: 0;
}
text-input input {
  background-color: #eee;
  min-width: 50%;
}
text-input textarea {
  resize: both;
  width: 100%;
}
text-input .input-pair {
  display: flex;
  justify-content: center;
  align-items: center;
}
text-input .input-pair [type="checkbox"] {
  display: block;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  min-width: auto;
}
text-input .input-pair [type="radio"] {
  display: block;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  min-width: auto;
}
@media screen and (min-width: 37.56255em) {
  text-input button {
    width: 5rem;
    height: 3rem;
  }
  text-input [data-content="message"] {
    font-size: 1.5rem;
  }
}
timer-display {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0.5rem;
  z-index: 100;
}
timer-display div {
  background: hsla(0, 0%, 100%, 0.2);
}
visual-novel {
  width: 100%;
  height: 100%;
}
