/* Stylesheet map
 * 01–03  Bundled animation, grid, and loading components
 * 04–08  Base styles, content helpers, and image zoom
 * 09–34  Site components, BEM elements, modifiers, and states
 * 35     Responsive component overrides
 * 36     Select2 shared styles and themes
 * 37–39  Reusable layouts, responsive fixes, and accessibility preferences
 *
 * Preserve cascade order when editing: responsive rules and utility combinations
 * can override one another. Vendor fallbacks, license notices, and COLOR markers
 * are intentional. No global pseudo-element box-sizing reset is applied. */

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

/* 01. Animation library — animate.css utilities and keyframes */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

/* 01.1 Attention seekers */

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

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

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

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

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

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

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

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

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

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

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

/* 01.2 Bounce entrances and exits */

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

/* 01.3 Fade entrances and exits */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

/* 01.4 Flips */

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

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

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

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

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

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

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* 01.5 Light-speed entrances and exits */

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* 01.6 Rotations */

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

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

/* 01.7 Hinge and roll effects */

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

/* 01.8 Zoom entrances and exits */

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 01.9 Slide entrances and exits */

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

/* 02. Avalanche grid — layout modifiers and fractional width helpers */

/*!
  Quickstart, kitchen sink CSS file. Includes 12-column grid widths and all layout options.
  --------------------------------------------------------------------------------------------
*/

/*! Avalanche | MIT License | @colourgarden */

.grid {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -20px;
  font-size: 0;
}

.grid__cell {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 0;
  padding-left: 20px;
  margin: 0;
  vertical-align: top;
  font-size: 1rem;
}

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

.grid--center > .grid__cell {
  text-align: left;
}

.grid__cell--center {
  display: block;
  margin: 0 auto;
}

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

.grid--right > .grid__cell {
  text-align: left;
}

.grid--middle > .grid__cell {
  vertical-align: middle;
}

.grid--bottom > .grid__cell {
  vertical-align: bottom;
}

.grid--flush {
  margin-left: 0;
}

.grid--flush > .grid__cell {
  padding-left: 0;
}

.grid--tiny {
  margin-left: -5px;
}

.grid--tiny > .grid__cell {
  padding-left: 5px;
}

.grid--small {
  margin-left: -10px;
}

.grid--small > .grid__cell {
  padding-left: 10px;
}

.grid--large {
  margin-left: -40px;
}

.grid--large > .grid__cell {
  padding-left: 40px;
}

.grid--huge {
  margin-left: -80px;
}

.grid--huge > .grid__cell {
  padding-left: 80px;
}

.grid--auto > .grid__cell {
  width: auto;
}

.grid--rev {
  direction: rtl;
}

.grid--rev > .grid__cell {
  direction: ltr;
}

.\31\/2,
.\32\/4,
.\33\/6,
.\34\/8,
.\35\/10,
.\36\/12 {
  width: 50%;
}

.\31\/3,
.\32\/6,
.\33\/9,
.\34\/12 {
  width: 33.33333%;
}

.\32\/3,
.\34\/6,
.\36\/9,
.\38\/12 {
  width: 66.66667%;
}

.\31\/4,
.\32\/8,
.\33\/12 {
  width: 25%;
}

.\33\/4,
.\36\/8,
.\39\/12 {
  width: 75%;
}

.\31\/5,
.\32\/10 {
  width: 20%;
}

.\32\/5,
.\34\/10 {
  width: 40%;
}

.\33\/5,
.\36\/10 {
  width: 60%;
}

.\34\/5,
.\38\/10 {
  width: 80%;
}

.\31\/6,
.\32\/12 {
  width: 16.66667%;
}

.\35\/6,
.\31\30\/12 {
  width: 83.33333%;
}

.\31\/7 {
  width: 14.28571%;
}

.\32\/7 {
  width: 28.57143%;
}

.\33\/7 {
  width: 42.85714%;
}

.\34\/7 {
  width: 57.14286%;
}

.\35\/7 {
  width: 71.42857%;
}

.\36\/7 {
  width: 85.71429%;
}

.\31\/8 {
  width: 12.5%;
}

.\33\/8 {
  width: 37.5%;
}

.\35\/8 {
  width: 62.5%;
}

.\37\/8 {
  width: 87.5%;
}

.\31\/9 {
  width: 11.11111%;
}

.\32\/9 {
  width: 22.22222%;
}

.\34\/9 {
  width: 44.44444%;
}

.\35\/9 {
  width: 55.55556%;
}

.\37\/9 {
  width: 77.77778%;
}

.\38\/9 {
  width: 88.88889%;
}

.\31\/10 {
  width: 10%;
}

.\33\/10 {
  width: 30%;
}

.\37\/10 {
  width: 70%;
}

.\39\/10 {
  width: 90%;
}

.\31\/11 {
  width: 9.09091%;
}

.\32\/11 {
  width: 18.18182%;
}

.\33\/11 {
  width: 27.27273%;
}

.\34\/11 {
  width: 36.36364%;
}

.\35\/11 {
  width: 45.45455%;
}

.\36\/11 {
  width: 54.54545%;
}

.\37\/11 {
  width: 63.63636%;
}

.\38\/11 {
  width: 72.72727%;
}

.\39\/11 {
  width: 81.81818%;
}

.\31\30\/11 {
  width: 90.90909%;
}

.\31\/12 {
  width: 8.33333%;
}

.\35\/12 {
  width: 41.66667%;
}

.\37\/12 {
  width: 58.33333%;
}

.\31\31\/12 {
  width: 91.66667%;
}

/* 02.1 Responsive grid widths — breakpoint order is significant */

@media screen and (max-width: 499px) {
  .\31\/2--thumb,
  .\32\/4--thumb,
  .\33\/6--thumb,
  .\34\/8--thumb,
  .\35\/10--thumb,
  .\36\/12--thumb {
    width: 50%;
  }

  .\31\/3--thumb,
  .\32\/6--thumb,
  .\33\/9--thumb,
  .\34\/12--thumb {
    width: 33.33333%;
  }

  .\32\/3--thumb,
  .\34\/6--thumb,
  .\36\/9--thumb,
  .\38\/12--thumb {
    width: 66.66667%;
  }

  .\31\/4--thumb,
  .\32\/8--thumb,
  .\33\/12--thumb {
    width: 25%;
  }

  .\33\/4--thumb,
  .\36\/8--thumb,
  .\39\/12--thumb {
    width: 75%;
  }

  .\31\/5--thumb,
  .\32\/10--thumb {
    width: 20%;
  }

  .\32\/5--thumb,
  .\34\/10--thumb {
    width: 40%;
  }

  .\33\/5--thumb,
  .\36\/10--thumb {
    width: 60%;
  }

  .\34\/5--thumb,
  .\38\/10--thumb {
    width: 80%;
  }

  .\31\/6--thumb,
  .\32\/12--thumb {
    width: 16.66667%;
  }

  .\35\/6--thumb,
  .\31\30\/12--thumb {
    width: 83.33333%;
  }

  .\31\/7--thumb {
    width: 14.28571%;
  }

  .\32\/7--thumb {
    width: 28.57143%;
  }

  .\33\/7--thumb {
    width: 42.85714%;
  }

  .\34\/7--thumb {
    width: 57.14286%;
  }

  .\35\/7--thumb {
    width: 71.42857%;
  }

  .\36\/7--thumb {
    width: 85.71429%;
  }

  .\31\/8--thumb {
    width: 12.5%;
  }

  .\33\/8--thumb {
    width: 37.5%;
  }

  .\35\/8--thumb {
    width: 62.5%;
  }

  .\37\/8--thumb {
    width: 87.5%;
  }

  .\31\/9--thumb {
    width: 11.11111%;
  }

  .\32\/9--thumb {
    width: 22.22222%;
  }

  .\34\/9--thumb {
    width: 44.44444%;
  }

  .\35\/9--thumb {
    width: 55.55556%;
  }

  .\37\/9--thumb {
    width: 77.77778%;
  }

  .\38\/9--thumb {
    width: 88.88889%;
  }

  .\31\/10--thumb {
    width: 10%;
  }

  .\33\/10--thumb {
    width: 30%;
  }

  .\37\/10--thumb {
    width: 70%;
  }

  .\39\/10--thumb {
    width: 90%;
  }

  .\31\/11--thumb {
    width: 9.09091%;
  }

  .\32\/11--thumb {
    width: 18.18182%;
  }

  .\33\/11--thumb {
    width: 27.27273%;
  }

  .\34\/11--thumb {
    width: 36.36364%;
  }

  .\35\/11--thumb {
    width: 45.45455%;
  }

  .\36\/11--thumb {
    width: 54.54545%;
  }

  .\37\/11--thumb {
    width: 63.63636%;
  }

  .\38\/11--thumb {
    width: 72.72727%;
  }

  .\39\/11--thumb {
    width: 81.81818%;
  }

  .\31\30\/11--thumb {
    width: 90.90909%;
  }

  .\31\/12--thumb {
    width: 8.33333%;
  }

  .\35\/12--thumb {
    width: 41.66667%;
  }

  .\37\/12--thumb {
    width: 58.33333%;
  }

  .\31\31\/12--thumb {
    width: 91.66667%;
  }
}

@media screen and (min-width: 500px) and (max-width: 800px) {
  .\31\/2--handheld,
  .\32\/4--handheld,
  .\33\/6--handheld,
  .\34\/8--handheld,
  .\35\/10--handheld,
  .\36\/12--handheld {
    width: 50%;
  }

  .\31\/3--handheld,
  .\32\/6--handheld,
  .\33\/9--handheld,
  .\34\/12--handheld {
    width: 33.33333%;
  }

  .\32\/3--handheld,
  .\34\/6--handheld,
  .\36\/9--handheld,
  .\38\/12--handheld {
    width: 66.66667%;
  }

  .\31\/4--handheld,
  .\32\/8--handheld,
  .\33\/12--handheld {
    width: 25%;
  }

  .\33\/4--handheld,
  .\36\/8--handheld,
  .\39\/12--handheld {
    width: 75%;
  }

  .\31\/5--handheld,
  .\32\/10--handheld {
    width: 20%;
  }

  .\32\/5--handheld,
  .\34\/10--handheld {
    width: 40%;
  }

  .\33\/5--handheld,
  .\36\/10--handheld {
    width: 60%;
  }

  .\34\/5--handheld,
  .\38\/10--handheld {
    width: 80%;
  }

  .\31\/6--handheld,
  .\32\/12--handheld {
    width: 16.66667%;
  }

  .\35\/6--handheld,
  .\31\30\/12--handheld {
    width: 83.33333%;
  }

  .\31\/7--handheld {
    width: 14.28571%;
  }

  .\32\/7--handheld {
    width: 28.57143%;
  }

  .\33\/7--handheld {
    width: 42.85714%;
  }

  .\34\/7--handheld {
    width: 57.14286%;
  }

  .\35\/7--handheld {
    width: 71.42857%;
  }

  .\36\/7--handheld {
    width: 85.71429%;
  }

  .\31\/8--handheld {
    width: 12.5%;
  }

  .\33\/8--handheld {
    width: 37.5%;
  }

  .\35\/8--handheld {
    width: 62.5%;
  }

  .\37\/8--handheld {
    width: 87.5%;
  }

  .\31\/9--handheld {
    width: 11.11111%;
  }

  .\32\/9--handheld {
    width: 22.22222%;
  }

  .\34\/9--handheld {
    width: 44.44444%;
  }

  .\35\/9--handheld {
    width: 55.55556%;
  }

  .\37\/9--handheld {
    width: 77.77778%;
  }

  .\38\/9--handheld {
    width: 88.88889%;
  }

  .\31\/10--handheld {
    width: 10%;
  }

  .\33\/10--handheld {
    width: 30%;
  }

  .\37\/10--handheld {
    width: 70%;
  }

  .\39\/10--handheld {
    width: 90%;
  }

  .\31\/11--handheld {
    width: 9.09091%;
  }

  .\32\/11--handheld {
    width: 18.18182%;
  }

  .\33\/11--handheld {
    width: 27.27273%;
  }

  .\34\/11--handheld {
    width: 36.36364%;
  }

  .\35\/11--handheld {
    width: 45.45455%;
  }

  .\36\/11--handheld {
    width: 54.54545%;
  }

  .\37\/11--handheld {
    width: 63.63636%;
  }

  .\38\/11--handheld {
    width: 72.72727%;
  }

  .\39\/11--handheld {
    width: 81.81818%;
  }

  .\31\30\/11--handheld {
    width: 90.90909%;
  }

  .\31\/12--handheld {
    width: 8.33333%;
  }

  .\35\/12--handheld {
    width: 41.66667%;
  }

  .\37\/12--handheld {
    width: 58.33333%;
  }

  .\31\31\/12--handheld {
    width: 91.66667%;
  }
}

@media screen and (min-width: 500px) {
  .\31\/2--handheld-and-up,
  .\32\/4--handheld-and-up,
  .\33\/6--handheld-and-up,
  .\34\/8--handheld-and-up,
  .\35\/10--handheld-and-up,
  .\36\/12--handheld-and-up {
    width: 50%;
  }

  .\31\/3--handheld-and-up,
  .\32\/6--handheld-and-up,
  .\33\/9--handheld-and-up,
  .\34\/12--handheld-and-up {
    width: 33.33333%;
  }

  .\32\/3--handheld-and-up,
  .\34\/6--handheld-and-up,
  .\36\/9--handheld-and-up,
  .\38\/12--handheld-and-up {
    width: 66.66667%;
  }

  .\31\/4--handheld-and-up,
  .\32\/8--handheld-and-up,
  .\33\/12--handheld-and-up {
    width: 25%;
  }

  .\33\/4--handheld-and-up,
  .\36\/8--handheld-and-up,
  .\39\/12--handheld-and-up {
    width: 75%;
  }

  .\31\/5--handheld-and-up,
  .\32\/10--handheld-and-up {
    width: 20%;
  }

  .\32\/5--handheld-and-up,
  .\34\/10--handheld-and-up {
    width: 40%;
  }

  .\33\/5--handheld-and-up,
  .\36\/10--handheld-and-up {
    width: 60%;
  }

  .\34\/5--handheld-and-up,
  .\38\/10--handheld-and-up {
    width: 80%;
  }

  .\31\/6--handheld-and-up,
  .\32\/12--handheld-and-up {
    width: 16.66667%;
  }

  .\35\/6--handheld-and-up,
  .\31\30\/12--handheld-and-up {
    width: 83.33333%;
  }

  .\31\/7--handheld-and-up {
    width: 14.28571%;
  }

  .\32\/7--handheld-and-up {
    width: 28.57143%;
  }

  .\33\/7--handheld-and-up {
    width: 42.85714%;
  }

  .\34\/7--handheld-and-up {
    width: 57.14286%;
  }

  .\35\/7--handheld-and-up {
    width: 71.42857%;
  }

  .\36\/7--handheld-and-up {
    width: 85.71429%;
  }

  .\31\/8--handheld-and-up {
    width: 12.5%;
  }

  .\33\/8--handheld-and-up {
    width: 37.5%;
  }

  .\35\/8--handheld-and-up {
    width: 62.5%;
  }

  .\37\/8--handheld-and-up {
    width: 87.5%;
  }

  .\31\/9--handheld-and-up {
    width: 11.11111%;
  }

  .\32\/9--handheld-and-up {
    width: 22.22222%;
  }

  .\34\/9--handheld-and-up {
    width: 44.44444%;
  }

  .\35\/9--handheld-and-up {
    width: 55.55556%;
  }

  .\37\/9--handheld-and-up {
    width: 77.77778%;
  }

  .\38\/9--handheld-and-up {
    width: 88.88889%;
  }

  .\31\/10--handheld-and-up {
    width: 10%;
  }

  .\33\/10--handheld-and-up {
    width: 30%;
  }

  .\37\/10--handheld-and-up {
    width: 70%;
  }

  .\39\/10--handheld-and-up {
    width: 90%;
  }

  .\31\/11--handheld-and-up {
    width: 9.09091%;
  }

  .\32\/11--handheld-and-up {
    width: 18.18182%;
  }

  .\33\/11--handheld-and-up {
    width: 27.27273%;
  }

  .\34\/11--handheld-and-up {
    width: 36.36364%;
  }

  .\35\/11--handheld-and-up {
    width: 45.45455%;
  }

  .\36\/11--handheld-and-up {
    width: 54.54545%;
  }

  .\37\/11--handheld-and-up {
    width: 63.63636%;
  }

  .\38\/11--handheld-and-up {
    width: 72.72727%;
  }

  .\39\/11--handheld-and-up {
    width: 81.81818%;
  }

  .\31\30\/11--handheld-and-up {
    width: 90.90909%;
  }

  .\31\/12--handheld-and-up {
    width: 8.33333%;
  }

  .\35\/12--handheld-and-up {
    width: 41.66667%;
  }

  .\37\/12--handheld-and-up {
    width: 58.33333%;
  }

  .\31\31\/12--handheld-and-up {
    width: 91.66667%;
  }
}

@media screen and (max-width: 800px) {
  .\31\/2--pocket,
  .\32\/4--pocket,
  .\33\/6--pocket,
  .\34\/8--pocket,
  .\35\/10--pocket,
  .\36\/12--pocket {
    width: 50%;
  }

  .\31\/3--pocket,
  .\32\/6--pocket,
  .\33\/9--pocket,
  .\34\/12--pocket {
    width: 33.33333%;
  }

  .\32\/3--pocket,
  .\34\/6--pocket,
  .\36\/9--pocket,
  .\38\/12--pocket {
    width: 66.66667%;
  }

  .\31\/4--pocket,
  .\32\/8--pocket,
  .\33\/12--pocket {
    width: 25%;
  }

  .\33\/4--pocket,
  .\36\/8--pocket,
  .\39\/12--pocket {
    width: 75%;
  }

  .\31\/5--pocket,
  .\32\/10--pocket {
    width: 20%;
  }

  .\32\/5--pocket,
  .\34\/10--pocket {
    width: 40%;
  }

  .\33\/5--pocket,
  .\36\/10--pocket {
    width: 60%;
  }

  .\34\/5--pocket,
  .\38\/10--pocket {
    width: 80%;
  }

  .\31\/6--pocket,
  .\32\/12--pocket {
    width: 16.66667%;
  }

  .\35\/6--pocket,
  .\31\30\/12--pocket {
    width: 83.33333%;
  }

  .\31\/7--pocket {
    width: 14.28571%;
  }

  .\32\/7--pocket {
    width: 28.57143%;
  }

  .\33\/7--pocket {
    width: 42.85714%;
  }

  .\34\/7--pocket {
    width: 57.14286%;
  }

  .\35\/7--pocket {
    width: 71.42857%;
  }

  .\36\/7--pocket {
    width: 85.71429%;
  }

  .\31\/8--pocket {
    width: 12.5%;
  }

  .\33\/8--pocket {
    width: 37.5%;
  }

  .\35\/8--pocket {
    width: 62.5%;
  }

  .\37\/8--pocket {
    width: 87.5%;
  }

  .\31\/9--pocket {
    width: 11.11111%;
  }

  .\32\/9--pocket {
    width: 22.22222%;
  }

  .\34\/9--pocket {
    width: 44.44444%;
  }

  .\35\/9--pocket {
    width: 55.55556%;
  }

  .\37\/9--pocket {
    width: 77.77778%;
  }

  .\38\/9--pocket {
    width: 88.88889%;
  }

  .\31\/10--pocket {
    width: 10%;
  }

  .\33\/10--pocket {
    width: 30%;
  }

  .\37\/10--pocket {
    width: 70%;
  }

  .\39\/10--pocket {
    width: 90%;
  }

  .\31\/11--pocket {
    width: 9.09091%;
  }

  .\32\/11--pocket {
    width: 18.18182%;
  }

  .\33\/11--pocket {
    width: 27.27273%;
  }

  .\34\/11--pocket {
    width: 36.36364%;
  }

  .\35\/11--pocket {
    width: 45.45455%;
  }

  .\36\/11--pocket {
    width: 54.54545%;
  }

  .\37\/11--pocket {
    width: 63.63636%;
  }

  .\38\/11--pocket {
    width: 72.72727%;
  }

  .\39\/11--pocket {
    width: 81.81818%;
  }

  .\31\30\/11--pocket {
    width: 90.90909%;
  }

  .\31\/12--pocket {
    width: 8.33333%;
  }

  .\35\/12--pocket {
    width: 41.66667%;
  }

  .\37\/12--pocket {
    width: 58.33333%;
  }

  .\31\31\/12--pocket {
    width: 91.66667%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1024px) {
  .\31\/2--lap,
  .\32\/4--lap,
  .\33\/6--lap,
  .\34\/8--lap,
  .\35\/10--lap,
  .\36\/12--lap {
    width: 50%;
  }

  .\31\/3--lap,
  .\32\/6--lap,
  .\33\/9--lap,
  .\34\/12--lap {
    width: 33.33333%;
  }

  .\32\/3--lap,
  .\34\/6--lap,
  .\36\/9--lap,
  .\38\/12--lap {
    width: 66.66667%;
  }

  .\31\/4--lap,
  .\32\/8--lap,
  .\33\/12--lap {
    width: 25%;
  }

  .\33\/4--lap,
  .\36\/8--lap,
  .\39\/12--lap {
    width: 75%;
  }

  .\31\/5--lap,
  .\32\/10--lap {
    width: 20%;
  }

  .\32\/5--lap,
  .\34\/10--lap {
    width: 40%;
  }

  .\33\/5--lap,
  .\36\/10--lap {
    width: 60%;
  }

  .\34\/5--lap,
  .\38\/10--lap {
    width: 80%;
  }

  .\31\/6--lap,
  .\32\/12--lap {
    width: 16.66667%;
  }

  .\35\/6--lap,
  .\31\30\/12--lap {
    width: 83.33333%;
  }

  .\31\/7--lap {
    width: 14.28571%;
  }

  .\32\/7--lap {
    width: 28.57143%;
  }

  .\33\/7--lap {
    width: 42.85714%;
  }

  .\34\/7--lap {
    width: 57.14286%;
  }

  .\35\/7--lap {
    width: 71.42857%;
  }

  .\36\/7--lap {
    width: 85.71429%;
  }

  .\31\/8--lap {
    width: 12.5%;
  }

  .\33\/8--lap {
    width: 37.5%;
  }

  .\35\/8--lap {
    width: 62.5%;
  }

  .\37\/8--lap {
    width: 87.5%;
  }

  .\31\/9--lap {
    width: 11.11111%;
  }

  .\32\/9--lap {
    width: 22.22222%;
  }

  .\34\/9--lap {
    width: 44.44444%;
  }

  .\35\/9--lap {
    width: 55.55556%;
  }

  .\37\/9--lap {
    width: 77.77778%;
  }

  .\38\/9--lap {
    width: 88.88889%;
  }

  .\31\/10--lap {
    width: 10%;
  }

  .\33\/10--lap {
    width: 30%;
  }

  .\37\/10--lap {
    width: 70%;
  }

  .\39\/10--lap {
    width: 90%;
  }

  .\31\/11--lap {
    width: 9.09091%;
  }

  .\32\/11--lap {
    width: 18.18182%;
  }

  .\33\/11--lap {
    width: 27.27273%;
  }

  .\34\/11--lap {
    width: 36.36364%;
  }

  .\35\/11--lap {
    width: 45.45455%;
  }

  .\36\/11--lap {
    width: 54.54545%;
  }

  .\37\/11--lap {
    width: 63.63636%;
  }

  .\38\/11--lap {
    width: 72.72727%;
  }

  .\39\/11--lap {
    width: 81.81818%;
  }

  .\31\30\/11--lap {
    width: 90.90909%;
  }

  .\31\/12--lap {
    width: 8.33333%;
  }

  .\35\/12--lap {
    width: 41.66667%;
  }

  .\37\/12--lap {
    width: 58.33333%;
  }

  .\31\31\/12--lap {
    width: 91.66667%;
  }
}

@media screen and (min-width: 801px) {
  .\31\/2--lap-and-up,
  .\32\/4--lap-and-up,
  .\33\/6--lap-and-up,
  .\34\/8--lap-and-up,
  .\35\/10--lap-and-up,
  .\36\/12--lap-and-up {
    width: 50%;
  }

  .\31\/3--lap-and-up,
  .\32\/6--lap-and-up,
  .\33\/9--lap-and-up,
  .\34\/12--lap-and-up {
    width: 33.33333%;
  }

  .\32\/3--lap-and-up,
  .\34\/6--lap-and-up,
  .\36\/9--lap-and-up,
  .\38\/12--lap-and-up {
    width: 66.66667%;
  }

  .\31\/4--lap-and-up,
  .\32\/8--lap-and-up,
  .\33\/12--lap-and-up {
    width: 25%;
  }

  .\33\/4--lap-and-up,
  .\36\/8--lap-and-up,
  .\39\/12--lap-and-up {
    width: 75%;
  }

  .\31\/5--lap-and-up,
  .\32\/10--lap-and-up {
    width: 20%;
  }

  .\32\/5--lap-and-up,
  .\34\/10--lap-and-up {
    width: 40%;
  }

  .\33\/5--lap-and-up,
  .\36\/10--lap-and-up {
    width: 60%;
  }

  .\34\/5--lap-and-up,
  .\38\/10--lap-and-up {
    width: 80%;
  }

  .\31\/6--lap-and-up,
  .\32\/12--lap-and-up {
    width: 16.66667%;
  }

  .\35\/6--lap-and-up,
  .\31\30\/12--lap-and-up {
    width: 83.33333%;
  }

  .\31\/7--lap-and-up {
    width: 14.28571%;
  }

  .\32\/7--lap-and-up {
    width: 28.57143%;
  }

  .\33\/7--lap-and-up {
    width: 42.85714%;
  }

  .\34\/7--lap-and-up {
    width: 57.14286%;
  }

  .\35\/7--lap-and-up {
    width: 71.42857%;
  }

  .\36\/7--lap-and-up {
    width: 85.71429%;
  }

  .\31\/8--lap-and-up {
    width: 12.5%;
  }

  .\33\/8--lap-and-up {
    width: 37.5%;
  }

  .\35\/8--lap-and-up {
    width: 62.5%;
  }

  .\37\/8--lap-and-up {
    width: 87.5%;
  }

  .\31\/9--lap-and-up {
    width: 11.11111%;
  }

  .\32\/9--lap-and-up {
    width: 22.22222%;
  }

  .\34\/9--lap-and-up {
    width: 44.44444%;
  }

  .\35\/9--lap-and-up {
    width: 55.55556%;
  }

  .\37\/9--lap-and-up {
    width: 77.77778%;
  }

  .\38\/9--lap-and-up {
    width: 88.88889%;
  }

  .\31\/10--lap-and-up {
    width: 10%;
  }

  .\33\/10--lap-and-up {
    width: 30%;
  }

  .\37\/10--lap-and-up {
    width: 70%;
  }

  .\39\/10--lap-and-up {
    width: 90%;
  }

  .\31\/11--lap-and-up {
    width: 9.09091%;
  }

  .\32\/11--lap-and-up {
    width: 18.18182%;
  }

  .\33\/11--lap-and-up {
    width: 27.27273%;
  }

  .\34\/11--lap-and-up {
    width: 36.36364%;
  }

  .\35\/11--lap-and-up {
    width: 45.45455%;
  }

  .\36\/11--lap-and-up {
    width: 54.54545%;
  }

  .\37\/11--lap-and-up {
    width: 63.63636%;
  }

  .\38\/11--lap-and-up {
    width: 72.72727%;
  }

  .\39\/11--lap-and-up {
    width: 81.81818%;
  }

  .\31\30\/11--lap-and-up {
    width: 90.90909%;
  }

  .\31\/12--lap-and-up {
    width: 8.33333%;
  }

  .\35\/12--lap-and-up {
    width: 41.66667%;
  }

  .\37\/12--lap-and-up {
    width: 58.33333%;
  }

  .\31\31\/12--lap-and-up {
    width: 91.66667%;
  }
}

@media screen and (max-width: 1024px) {
  .\31\/2--portable,
  .\32\/4--portable,
  .\33\/6--portable,
  .\34\/8--portable,
  .\35\/10--portable,
  .\36\/12--portable {
    width: 50%;
  }

  .\31\/3--portable,
  .\32\/6--portable,
  .\33\/9--portable,
  .\34\/12--portable {
    width: 33.33333%;
  }

  .\32\/3--portable,
  .\34\/6--portable,
  .\36\/9--portable,
  .\38\/12--portable {
    width: 66.66667%;
  }

  .\31\/4--portable,
  .\32\/8--portable,
  .\33\/12--portable {
    width: 25%;
  }

  .\33\/4--portable,
  .\36\/8--portable,
  .\39\/12--portable {
    width: 75%;
  }

  .\31\/5--portable,
  .\32\/10--portable {
    width: 20%;
  }

  .\32\/5--portable,
  .\34\/10--portable {
    width: 40%;
  }

  .\33\/5--portable,
  .\36\/10--portable {
    width: 60%;
  }

  .\34\/5--portable,
  .\38\/10--portable {
    width: 80%;
  }

  .\31\/6--portable,
  .\32\/12--portable {
    width: 16.66667%;
  }

  .\35\/6--portable,
  .\31\30\/12--portable {
    width: 83.33333%;
  }

  .\31\/7--portable {
    width: 14.28571%;
  }

  .\32\/7--portable {
    width: 28.57143%;
  }

  .\33\/7--portable {
    width: 42.85714%;
  }

  .\34\/7--portable {
    width: 57.14286%;
  }

  .\35\/7--portable {
    width: 71.42857%;
  }

  .\36\/7--portable {
    width: 85.71429%;
  }

  .\31\/8--portable {
    width: 12.5%;
  }

  .\33\/8--portable {
    width: 37.5%;
  }

  .\35\/8--portable {
    width: 62.5%;
  }

  .\37\/8--portable {
    width: 87.5%;
  }

  .\31\/9--portable {
    width: 11.11111%;
  }

  .\32\/9--portable {
    width: 22.22222%;
  }

  .\34\/9--portable {
    width: 44.44444%;
  }

  .\35\/9--portable {
    width: 55.55556%;
  }

  .\37\/9--portable {
    width: 77.77778%;
  }

  .\38\/9--portable {
    width: 88.88889%;
  }

  .\31\/10--portable {
    width: 10%;
  }

  .\33\/10--portable {
    width: 30%;
  }

  .\37\/10--portable {
    width: 70%;
  }

  .\39\/10--portable {
    width: 90%;
  }

  .\31\/11--portable {
    width: 9.09091%;
  }

  .\32\/11--portable {
    width: 18.18182%;
  }

  .\33\/11--portable {
    width: 27.27273%;
  }

  .\34\/11--portable {
    width: 36.36364%;
  }

  .\35\/11--portable {
    width: 45.45455%;
  }

  .\36\/11--portable {
    width: 54.54545%;
  }

  .\37\/11--portable {
    width: 63.63636%;
  }

  .\38\/11--portable {
    width: 72.72727%;
  }

  .\39\/11--portable {
    width: 81.81818%;
  }

  .\31\30\/11--portable {
    width: 90.90909%;
  }

  .\31\/12--portable {
    width: 8.33333%;
  }

  .\35\/12--portable {
    width: 41.66667%;
  }

  .\37\/12--portable {
    width: 58.33333%;
  }

  .\31\31\/12--portable {
    width: 91.66667%;
  }
}

@media screen and (min-width: 1025px) {
  .\31\/2--desk,
  .\32\/4--desk,
  .\33\/6--desk,
  .\34\/8--desk,
  .\35\/10--desk,
  .\36\/12--desk {
    width: 50%;
  }

  .\31\/3--desk,
  .\32\/6--desk,
  .\33\/9--desk,
  .\34\/12--desk {
    width: 33.33333%;
  }

  .\32\/3--desk,
  .\34\/6--desk,
  .\36\/9--desk,
  .\38\/12--desk {
    width: 66.66667%;
  }

  .\31\/4--desk,
  .\32\/8--desk,
  .\33\/12--desk {
    width: 25%;
  }

  .\33\/4--desk,
  .\36\/8--desk,
  .\39\/12--desk {
    width: 75%;
  }

  .\31\/5--desk,
  .\32\/10--desk {
    width: 20%;
  }

  .\32\/5--desk,
  .\34\/10--desk {
    width: 40%;
  }

  .\33\/5--desk,
  .\36\/10--desk {
    width: 60%;
  }

  .\34\/5--desk,
  .\38\/10--desk {
    width: 80%;
  }

  .\31\/6--desk,
  .\32\/12--desk {
    width: 16.66667%;
  }

  .\35\/6--desk,
  .\31\30\/12--desk {
    width: 83.33333%;
  }

  .\31\/7--desk {
    width: 14.28571%;
  }

  .\32\/7--desk {
    width: 28.57143%;
  }

  .\33\/7--desk {
    width: 42.85714%;
  }

  .\34\/7--desk {
    width: 57.14286%;
  }

  .\35\/7--desk {
    width: 71.42857%;
  }

  .\36\/7--desk {
    width: 85.71429%;
  }

  .\31\/8--desk {
    width: 12.5%;
  }

  .\33\/8--desk {
    width: 37.5%;
  }

  .\35\/8--desk {
    width: 62.5%;
  }

  .\37\/8--desk {
    width: 87.5%;
  }

  .\31\/9--desk {
    width: 11.11111%;
  }

  .\32\/9--desk {
    width: 22.22222%;
  }

  .\34\/9--desk {
    width: 44.44444%;
  }

  .\35\/9--desk {
    width: 55.55556%;
  }

  .\37\/9--desk {
    width: 77.77778%;
  }

  .\38\/9--desk {
    width: 88.88889%;
  }

  .\31\/10--desk {
    width: 10%;
  }

  .\33\/10--desk {
    width: 30%;
  }

  .\37\/10--desk {
    width: 70%;
  }

  .\39\/10--desk {
    width: 90%;
  }

  .\31\/11--desk {
    width: 9.09091%;
  }

  .\32\/11--desk {
    width: 18.18182%;
  }

  .\33\/11--desk {
    width: 27.27273%;
  }

  .\34\/11--desk {
    width: 36.36364%;
  }

  .\35\/11--desk {
    width: 45.45455%;
  }

  .\36\/11--desk {
    width: 54.54545%;
  }

  .\37\/11--desk {
    width: 63.63636%;
  }

  .\38\/11--desk {
    width: 72.72727%;
  }

  .\39\/11--desk {
    width: 81.81818%;
  }

  .\31\30\/11--desk {
    width: 90.90909%;
  }

  .\31\/12--desk {
    width: 8.33333%;
  }

  .\35\/12--desk {
    width: 41.66667%;
  }

  .\37\/12--desk {
    width: 58.33333%;
  }

  .\31\31\/12--desk {
    width: 91.66667%;
  }
}

@media screen and (min-width: 1160px) {
  .\31\/2--widescreen,
  .\32\/4--widescreen,
  .\33\/6--widescreen,
  .\34\/8--widescreen,
  .\35\/10--widescreen,
  .\36\/12--widescreen {
    width: 50%;
  }

  .\31\/3--widescreen,
  .\32\/6--widescreen,
  .\33\/9--widescreen,
  .\34\/12--widescreen {
    width: 33.33333%;
  }

  .\32\/3--widescreen,
  .\34\/6--widescreen,
  .\36\/9--widescreen,
  .\38\/12--widescreen {
    width: 66.66667%;
  }

  .\31\/4--widescreen,
  .\32\/8--widescreen,
  .\33\/12--widescreen {
    width: 25%;
  }

  .\33\/4--widescreen,
  .\36\/8--widescreen,
  .\39\/12--widescreen {
    width: 75%;
  }

  .\31\/5--widescreen,
  .\32\/10--widescreen {
    width: 20%;
  }

  .\32\/5--widescreen,
  .\34\/10--widescreen {
    width: 40%;
  }

  .\33\/5--widescreen,
  .\36\/10--widescreen {
    width: 60%;
  }

  .\34\/5--widescreen,
  .\38\/10--widescreen {
    width: 80%;
  }

  .\31\/6--widescreen,
  .\32\/12--widescreen {
    width: 16.66667%;
  }

  .\35\/6--widescreen,
  .\31\30\/12--widescreen {
    width: 83.33333%;
  }

  .\31\/7--widescreen {
    width: 14.28571%;
  }

  .\32\/7--widescreen {
    width: 28.57143%;
  }

  .\33\/7--widescreen {
    width: 42.85714%;
  }

  .\34\/7--widescreen {
    width: 57.14286%;
  }

  .\35\/7--widescreen {
    width: 71.42857%;
  }

  .\36\/7--widescreen {
    width: 85.71429%;
  }

  .\31\/8--widescreen {
    width: 12.5%;
  }

  .\33\/8--widescreen {
    width: 37.5%;
  }

  .\35\/8--widescreen {
    width: 62.5%;
  }

  .\37\/8--widescreen {
    width: 87.5%;
  }

  .\31\/9--widescreen {
    width: 11.11111%;
  }

  .\32\/9--widescreen {
    width: 22.22222%;
  }

  .\34\/9--widescreen {
    width: 44.44444%;
  }

  .\35\/9--widescreen {
    width: 55.55556%;
  }

  .\37\/9--widescreen {
    width: 77.77778%;
  }

  .\38\/9--widescreen {
    width: 88.88889%;
  }

  .\31\/10--widescreen {
    width: 10%;
  }

  .\33\/10--widescreen {
    width: 30%;
  }

  .\37\/10--widescreen {
    width: 70%;
  }

  .\39\/10--widescreen {
    width: 90%;
  }

  .\31\/11--widescreen {
    width: 9.09091%;
  }

  .\32\/11--widescreen {
    width: 18.18182%;
  }

  .\33\/11--widescreen {
    width: 27.27273%;
  }

  .\34\/11--widescreen {
    width: 36.36364%;
  }

  .\35\/11--widescreen {
    width: 45.45455%;
  }

  .\36\/11--widescreen {
    width: 54.54545%;
  }

  .\37\/11--widescreen {
    width: 63.63636%;
  }

  .\38\/11--widescreen {
    width: 72.72727%;
  }

  .\39\/11--widescreen {
    width: 81.81818%;
  }

  .\31\30\/11--widescreen {
    width: 90.90909%;
  }

  .\31\/12--widescreen {
    width: 8.33333%;
  }

  .\35\/12--widescreen {
    width: 41.66667%;
  }

  .\37\/12--widescreen {
    width: 58.33333%;
  }

  .\31\31\/12--widescreen {
    width: 91.66667%;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 2),
screen and (-o-min-device-pixel-ratio: 2/1),
screen and (min-resolution: 192dpi),
screen and (min-resolution: 2dppx) {
  .\31\/2--retina,
  .\32\/4--retina,
  .\33\/6--retina,
  .\34\/8--retina,
  .\35\/10--retina,
  .\36\/12--retina {
    width: 50%;
  }

  .\31\/3--retina,
  .\32\/6--retina,
  .\33\/9--retina,
  .\34\/12--retina {
    width: 33.33333%;
  }

  .\32\/3--retina,
  .\34\/6--retina,
  .\36\/9--retina,
  .\38\/12--retina {
    width: 66.66667%;
  }

  .\31\/4--retina,
  .\32\/8--retina,
  .\33\/12--retina {
    width: 25%;
  }

  .\33\/4--retina,
  .\36\/8--retina,
  .\39\/12--retina {
    width: 75%;
  }

  .\31\/5--retina,
  .\32\/10--retina {
    width: 20%;
  }

  .\32\/5--retina,
  .\34\/10--retina {
    width: 40%;
  }

  .\33\/5--retina,
  .\36\/10--retina {
    width: 60%;
  }

  .\34\/5--retina,
  .\38\/10--retina {
    width: 80%;
  }

  .\31\/6--retina,
  .\32\/12--retina {
    width: 16.66667%;
  }

  .\35\/6--retina,
  .\31\30\/12--retina {
    width: 83.33333%;
  }

  .\31\/7--retina {
    width: 14.28571%;
  }

  .\32\/7--retina {
    width: 28.57143%;
  }

  .\33\/7--retina {
    width: 42.85714%;
  }

  .\34\/7--retina {
    width: 57.14286%;
  }

  .\35\/7--retina {
    width: 71.42857%;
  }

  .\36\/7--retina {
    width: 85.71429%;
  }

  .\31\/8--retina {
    width: 12.5%;
  }

  .\33\/8--retina {
    width: 37.5%;
  }

  .\35\/8--retina {
    width: 62.5%;
  }

  .\37\/8--retina {
    width: 87.5%;
  }

  .\31\/9--retina {
    width: 11.11111%;
  }

  .\32\/9--retina {
    width: 22.22222%;
  }

  .\34\/9--retina {
    width: 44.44444%;
  }

  .\35\/9--retina {
    width: 55.55556%;
  }

  .\37\/9--retina {
    width: 77.77778%;
  }

  .\38\/9--retina {
    width: 88.88889%;
  }

  .\31\/10--retina {
    width: 10%;
  }

  .\33\/10--retina {
    width: 30%;
  }

  .\37\/10--retina {
    width: 70%;
  }

  .\39\/10--retina {
    width: 90%;
  }

  .\31\/11--retina {
    width: 9.09091%;
  }

  .\32\/11--retina {
    width: 18.18182%;
  }

  .\33\/11--retina {
    width: 27.27273%;
  }

  .\34\/11--retina {
    width: 36.36364%;
  }

  .\35\/11--retina {
    width: 45.45455%;
  }

  .\36\/11--retina {
    width: 54.54545%;
  }

  .\37\/11--retina {
    width: 63.63636%;
  }

  .\38\/11--retina {
    width: 72.72727%;
  }

  .\39\/11--retina {
    width: 81.81818%;
  }

  .\31\30\/11--retina {
    width: 90.90909%;
  }

  .\31\/12--retina {
    width: 8.33333%;
  }

  .\35\/12--retina {
    width: 41.66667%;
  }

  .\37\/12--retina {
    width: 58.33333%;
  }

  .\31\31\/12--retina {
    width: 91.66667%;
  }
}

/* 03. NProgress — loading bar and spinner */

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #1bd4d4;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  -webkit-box-shadow: 0 0 10px #1bd4d4, 0 0 5px #1bd4d4;
  box-shadow: 0 0 10px #1bd4d4, 0 0 5px #1bd4d4;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  bottom: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#nprogress .spinner-icon {
  width: 30px;
  height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 4px transparent;
  border-top-color: #1bd4d4;
  border-left-color: #1bd4d4;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner .5s linear infinite;
  animation: nprogress-spinner .5s linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

/* 04. Base reset, selection, typography, and page layout */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}

*::-moz-selection {
  color: #151514;
  background: #42A8EA; /*COLOR1*/
}

*::selection {
  color: #151514;
  background: #42A8EA; /*COLOR1*/
}

*::-moz-selection {
  color: #151514;
  background: #42A8EA; /*COLOR1*/
}

body,
html {
  height: 100%;
}

body {
  color: #333;
  font-family: "Roboto", sans-serif;
  background-color: #1e1e1e;
}

.snow {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

p {
  line-height: 1.5;
}

ol {
  margin-left: 40px;
  list-style: upper-latin;
  line-height: 1.5;
}

h1 {
  color: #fff;
}

.auto-height {
  height: auto;
}

.body {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.body--fullbg {
  width: 100%;
  height: 100%;
}

.body--centered-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.body--auto-height {
  height: auto;
}

.body--scroll-smooth {
  padding-right: 17px;
}

.main-container {
  min-height: calc(100% - 60px);
  padding-top: 100px;
  padding-bottom: 25px;
}

.parallax-window {
  background: transparent;
}

/* 04.1 Native form autofill */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px #151514 inset;
  -webkit-transition: background 9999s ease-out;
}

a {
  color: #42A8EA /*COLOR1*/;
  text-decoration: none;
}

/* 04.2 Visibility, captions, and shared content helpers */

.hidden {
  display: none !important;
}

.g-recaptcha {
  width: 302px;
}

.caption {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 3px;
  text-align: center;
  color: #687d90;
  font-size: 11px;
  text-transform: capitalize;
}

.big-title {
  color: #c3d2e0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 35px;
}

.big-title--buy-cheat {
  margin: 50px 0;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 2px;
}

.step {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.step__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #42A8EA /*COLOR1*/;
  font-weight: 700;
  font-size: 150px;
}

.step span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 30px;
  color: #7f91a2;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  font-size: 18px;
}

.steps-desc {
  padding: 20px;
  color: #7f91a2;
}

.box {
  text-align: center;
}

.dev {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
}

/* 05. Image zoom — plugin states and overlay */

img[data-action="zoom"] {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
}

.zoom-img,
.zoom-img-wrap {
  position: relative;
  z-index: 666;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

img.zoom-img {
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
}

.zoom-overlay {
  z-index: 500;
  background: #151514;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=100)";
  opacity: 1;
}

.zoom-overlay-open,
.zoom-overlay-transitioning {
  cursor: default;
}

/* 06. Spacing helpers and linked content */

.mt-20 {
  margin-top: 20px;
}

.p-0 {
  padding: 0;
}

.game-link {
  padding-left: 10px;
  padding-bottom: 10px;
}

.game-link__content {
  position: relative;
  height: 75px;
  background-size: cover;
  background-position: 25% 25%;
}

.game-link__content:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #32475ab3;
  background-position: 50% 50%;
}

.game-link__content span {
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 2;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.blog-link {
  display: block;
  margin-bottom: 25px;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.blog-link__date {
  display: inline-block;
  padding: 10px 13px;
  background-color: #42A8EA /*COLOR1*/;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.blog-link__title {
  padding: 7px 13px;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  background-color: #36516b;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.blog-link:hover .blog-link__title {
  background-color: #466584;
}

/* 07. Full-screen messages and feature descriptions */

.fs-msg {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fs-msg__title {
  color: #fff;
  text-align: center;
}

.features {
  height: calc(100% - 100px);
  overflow: hidden;
  margin: 50px;
  border-radius: 3px;
  font-family: Verdana;
}

.features__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}

.features__info {
  width: 45%;
  font-size: 13px;
  font-family: Verdana, sans-serif;
  color: #42A8EA /*COLOR1*/;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.features__logo {
  margin-top: 25px;
}

.features__logo img {
  height: 60px;
}

.features__logo span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 13px;
  font-family: Verdana, sans-serif;
  color: #42A8EA /*COLOR1*/;
  -webkit-font-smoothing: none;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* 08. Button grids and active links */

.latos-buttons {
  margin-left: 0;
}

.latos-buttons .grid__cell {
  padding-left: 0;
}

.focus-link {
  display: block;
  outline: 3px solid transparent;
  -webkit-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.focus-link.isActive {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  background-color: #2b3e50;
  outline-color: #259a9a;
}

/* 09. Header and page wrapper */

.header {
  width: 100%;
  padding: 20px;
  position: fixed;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 500;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.header__side-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__side-bar .button {
  margin: 15px;
  color: #222;
}

.header__links {
  width: 100%;
  height: 100%;
  position: fixed;
  top: -100%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.header__links.active {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header--scrolled {
  background-color: #202b35 !important;
}

.header.menu-active {
  height: 100%;
}

.wrapper {
  width: 900px;
  max-width: calc(100% - 40px);
  min-height: 100%;
  margin: 0 auto;
  margin-top: 100px;
  font-family: "Roboto", sans-serif;
}

.wrapper--dlc {
  font-family: gamefont;
}

@media only screen and (min-width: 1400px) {
  .wrapper {
    width: 1000px;
  }
}

/* 10. Dropdown navigation */

.dropmenu {
  position: relative;
  margin: 20px;
}

.dropmenu:hover .dropmenu__list {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.dropmenu:hover .dropmenu__link--header {
  background-color: transparent;
}

.dropmenu:hover .dropmenu__link--header:after {
  bottom: 0;
  visibility: visible;
  opacity: 1;
}

.dropmenu__list {
  position: absolute;
  top: -100%;
  right: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.dropmenu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 13px;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  color: #333;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.dropmenu__link:hover {
  opacity: 0.8;
}

.dropmenu__link--header {
  color: #fff;
  background-color: #42A8EA; /*COLOR1*/
}

.dropmenu__link--header:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: -100%;
  right: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  background-color: #42A8EA /*COLOR1*/;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.dropmenu__link--header:hover {
  opacity: 1;
}

/* 11. Buttons — base, variants, and interaction states */

.button {
  position: relative;
  padding: 7px 15px;
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  background-color: #42A8EA /*COLOR1*/;
  border: 2px solid;
  border-color: #42A8EA; /*COLOR1*/
}

.button:hover {
  border-color: #18bbbb;
  background-color: #18bbbb;
}

.button--wide {
  width: 100%;
  display: block;
}

.button--indent-top {
  margin-top: 10px;
}

.button--pos-slide {
  margin-top: 20px;
}

.button--only-text {
  background-color: transparent;
  border-color: transparent;
  color: #586e82;
}

.button--success {
  border-color: #21c55e;
  background-color: #21c55e;
}

.button--success:hover {
  background-color: #21c55e;
  border-color: #21c55e;
}

.button--deny {
  display: block;
  border-color: #ea4b4b;
  background-color: #ea4b4b;
}

.button--deny:hover {
  border-color: #ea4b4b;
  background-color: #ea4b4b;
  opacity: 0.8;
}

.button--large-s {
  font-size: 14px;
}

.button--large-xxl {
  padding: 20px 30px;
  margin: 7% 0;
  font-size: 35px;
}

.button--bordered {
  border-color: #42A8EA /*COLOR1*/;
  background-color: transparent;
}

.button--footer {
  border: 2px solid #42A8EA; /*COLOR1*/
}

.button--footer:hover {
  background-color: #42A8EA; /*COLOR1*/
}

.button--full-width {
  width: 100%;
}

.button--clear {
  background-color: transparent;
  border-color: transparent;
}

.button--clear:hover {
  opacity: 0.9;
  background-color: transparent;
  border-color: transparent;
}

.button--profile-with-icon {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 7% auto;
  background-color: #3e566b;
  border: 0;
}

.button--profile-with-icon:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.button--profile-with-icon img {
  width: 80px;
  height: 80px;
}

.button--profile-with-icon div {
  width: 77%;
  padding: 0 10px;
}

.button--menu {
  position: relative;
  display: inline-block;
  padding: 0;
}

.button--menu:before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  background-color: #18bbbb;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.button--menu:hover:before {
  width: 100%;
}

.button--menu-active:before {
  width: 100%;
}

.button--menu-active:hover:before {
  opacity: 0.7;
}

.button--disabled {
  background-color: #5d5d5d;
  border-color: #5d5d5d;
  color: #a5a5a5;
}

.button--disabled:hover {
  border-color: #5d5d5d;
  background-color: #5d5d5d;
}

/* 12. Logo variants */

.logo {
  height: 35px;
  display: block;
}

.logo__img {
  height: 50px;
  width: 70px;
  /* -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-pixelated;
  image-rendering: pixelated */
}

.logo--sign-up {
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3%;
  margin-bottom: calc(3% - 20px);
}

.logo--pay-card {
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px 0;
}

.logo--sign-up > .logo__img {
  height: 45px;
  width: 90px;
}

/* 13. Home page and game cards */

.home-page {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
}

.home-page__centered-title {
  height: 350px;
  margin: auto;
  z-index: 100;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.home-page__title {
  color: #fff;
  padding: 0 15px;
}

.home-page__title--big {
  font-size: 40px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-page__title--small {
  margin-top: 35px;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  color: #a8b5c1;
}

.game-cards-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto;
}

.game-cards-wrap--full-width {
  width: 100%;
}

.game-cards-wrap--sub-game {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}

.game-card {
  width: 300px;
  height: 300px;
  padding: 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  cursor: pointer;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.game-card:hover {
  z-index: 3;
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.game-card:hover .game-card__title {
  margin-bottom: 30px;
}

.game-card:hover .game-card__logo {
  top: calc(40% - 75px);
  opacity: 0.7;
}

.game-card--sub-game:hover .game-card__title {
  margin-bottom: 75px;
}

.game-card:hover .game-card__bg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.game-card:last-of-type {
  margin-right: 0;
}

.game-card--sub-game {
  width: 150px;
  height: 150px;
  padding: 0;
  overflow: visible;
}

.game-card--sub-game:last-of-type {
  margin-right: 0;
}

.game-card--sub-game:hover .game-card__bg {
  -webkit-transform: scale(1.15) rotate(8deg);
  -ms-transform: scale(1.15) rotate(8deg);
  transform: scale(1.15) rotate(8deg);
}

.game-card--sub-game:hover .game-card__title {
  -webkit-transform: rotate(-5deg) scale(1.1);
  -ms-transform: rotate(-5deg) scale(1.1);
  transform: rotate(-5deg) scale(1.1);
}

.game-card--main {
  width: 165px;
  height: 165px;
}

.game-card--disable {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.game-card--disable:hover {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.game-card--centered-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.game-card__logo {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -100%;
  left: calc(50% - 75px);
  opacity: 0;
  -webkit-transition: all 450ms ease-in-out;
  -o-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
}

.game-card__flag {
  padding: 3px 5px;
  position: absolute;
  top: 20px;
  right: 0;
  background-color: #21c55e;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-card__fadeout {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: -98;
  background-color: #131b23cc;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.game-card__bg {
  background-position: 50% center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -99;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.game-card__title {
  width: 100%;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 1px;
}

.game-card__title--sub-game {
  padding: 8px 0;
  background-color: #27648c /*COLOR2*/;
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
}

.game-card__title--rounded {
  border-radius: 4px;
}

.game-card__title--main {
  font-size: 13px;
}

/* 14. Content slides */

.slide {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-color: #293b4c;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.slide__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  -webkit-transition: all 1000ms ease-in-out;
  -o-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.slide__img {
  min-width: 250px;
  min-height: 250px;
  width: 250px;
  height: 250px;
  margin-top: 20px;
  border-radius: 50% 50%;
  background-size: cover;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.slide__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 10px;
  text-align: center;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.slide__big-text {
  width: 100%;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.slide__small-text {
  color: #9ba3ab;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.slide:nth-child(odd) {
  background-color: #233342;
}

.slide--profile {
  width: auto;
  height: auto;
  margin: 25px 0;
  padding: 20px;
  background-color: transparent;
}

.slide--profile .slide__content {
  width: 100%;
}

.slide--profile .slide__image {
  border-radius: 0;
  border: 3px solid #42A8EA; /*COLOR1*/
}

/* 15. Forms — controls, labels, validation, and layout variants */

.form__header {
  padding: 10px 15px;
  background-color: #133246 /*COLOR3*/;
  color: #6b7c8a;
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form__text {
  padding: 10px 15px;
  color: #6d7d8c;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

.form__body {
  padding: 10px 15px;
}

.form__input-group {
  font-size: 0;
  margin-left: -10px;
}

.form__input-select {
  width: 50% !important;
  display: inline-block;
  padding-left: 10px;
  margin-bottom: 10px;
}

.form__input-select .select2 {
  width: 100% !important;
}

.form__link {
  padding: 10px;
  text-align: center;
}

.form__input-wrapper {
  min-width: 200px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.form__input {
  height: 35px;
  padding: 0 10px;
  border: 2px solid #dfdfdf;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.form__input.form__input--active,
.form__input:focus {
  border-color: #fff;
  margin-top: 35px;
}

.form__input.form__input--valid-state {
  border-color: #21c55e;
}

.form__input.form__input--colored-state {
  border-color: #42A8EA; /*COLOR1*/
}

.form__input.form__input--invalid-state {
  border-color: #ea4b4b;
}

.form__input.form__input--active ~ .form__input-title,
.form__input:focus ~ .form__input-title {
  top: 2px;
  background-color: #fff;
  color: #222;
}

.form__input.form__input--valid-state ~ .form__input-title {
  background-color: #21c55e;
}

.form__input.form__input--invalid-state ~ .form__input-title {
  background-color: #ea4b4b;
}

.form__input-title {
  width: 100%;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  padding: 0 10px;
  letter-spacing: 1px;
  color: #dfdfdf;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  z-index: -1;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.form--col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form--col-indent .form__input-wrapper,
.form--col-indent .logo {
  margin-bottom: 10px;
}

.form--sign-up {
  width: 300px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  margin-bottom: 8%;
}

.form--sign-up .form__input-wrapper,
.form--sign-up .logo {
  margin-bottom: 10px;
}

textarea.form__input {
  padding-top: 7px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  line-height: 1.5;
}

/* 16. Tabs */

.tabs {
  width: 100%;
}

.tabs__links-wpapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs__link {
  width: 50%;
  text-align: center;
  position: relative;
  padding: 13px 17px;
  z-index: 2;
  overflow: hidden;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #464646;
  background-color: #bfbebe;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.tabs__link:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  background-color: #27648c /*COLOR2*/;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.tabs__link span {
  border-bottom: 2px solid transparent;
  -webkit-transition: border 250ms ease-in-out;
  -o-transition: border 250ms ease-in-out;
  transition: border 250ms ease-in-out;
}

.tabs__link--active {
  color: #fff;
}

.tabs__link--active span {
  border-color: #42A8EA; /*COLOR1*/
}

.tabs__link--active:before {
  top: 0;
  visibility: visible;
  opacity: 1;
}

.tabs__wrapper {
  position: relative;
}

.tabs__tab {
  width: 100%;
  padding: 15px;
  display: none;
  background-color: #fff;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.tabs__tab--active {
  display: block;
}

/* 17. Footer */

.footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  background-color: #151514;
}

.footer__caption {
  padding: 20px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #858E8F;
  line-height: 1.5;
  text-align: center;
}

.footer__social-link {
  width: 30px;
  height: 30px;
}

.footer__social-link img {
  width: 30px;
  height: 30px;
}

.footer__part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__comodo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
}

#comodoTL {
  padding: 0 !important;
  font-size: 9px !important;
}

/* 18. Nested lists and accordions */

.list {
  min-width: 220px;
  max-width: 220px;
  display: none;
  list-style: none;
  cursor: pointer;
}

.list--open {
  display: block;
}

.list__item {
  min-width: 220px;
  max-width: 220px;
  position: relative;
  padding: 1px 2px;
  border: 1px solid #42A8EA /*COLOR1*/;
  border-bottom: 0;
  background-color: #0f969612;
  color: #fff;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.5px;
  font-family: 'Verdana', sans-serif;
  font-smooth: never;
  -webkit-font-smoothing: none;
  text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.list__item:last-of-type {
  border-bottom: 1px solid #42A8EA; /*COLOR1*/
}

.list__item--title {
  text-align: center;
}

.list__item--category:before {
  content: '[+] ';
}

.list__item--category:hover:before {
  content: '[-] ';
}

.list__item .list {
  display: none;
  position: absolute;
  left: 100%;
  top: -1px;
}

.list__item:hover {
  background-color: #0f96964d;
}

.list__item:hover > .list {
  display: block;
}

.list__item-desc {
  min-width: 220px;
  max-width: 220px;
  display: none;
  padding: 1px 2px;
  position: absolute;
  z-index: 100;
  border: 1px solid #42A8EA /*COLOR1*/;
  background-color: #46562f1c;
  color: #dcd38f;
}

.accordion {
  display: none;
  opacity: 0;
}

.accordion--open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

/* 19. Payment cards */

.pay-card {
  width: 90%;
  margin: 0 auto;
  font-size: 0;
}

.pay-card .grid__cell {
  margin-bottom: 30px;
}

.pay-card__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0;
  background-color: #fff;
}

.pay-card__price-wrap {
  position: relative;
}

.pay-card__price {
  position: relative;
  padding: 0 11px;
  color: #fff;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 2px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  text-align: center;
  background-color: #42A8EA; /*COLOR1*/
}

.pay-card__price--non-base {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  font-size: 25px;
  background-color: #4ead6e;
}

.pay-card__price-bar {
  background-color: #42A8EA; /*COLOR1*/
}

.pay-card__old-price {
  position: relative;
  padding: 0 20px;
  color: #dfdfdf;
  font-size: 14px;
}

.pay-card__old-price:before {
  content: '';
  width: 26px;
  height: 3px;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 14px);
  background-color: #ea4b4bcc;
}

.pay-card__discount {
  font-size: 16px;
  padding: 0 5px;
}

.pay-card__type {
  padding-top: 15px;
  color: #444;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.pay-card__desc {
  height: 120px;
  background-color: #fff;
  padding: 10px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

/* 20. Pop-ups — content, controls, and open states */

.pop-up {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow-y: scroll;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  background-color: #182633e6;
  visibility: hidden;
  opacity: 0;
}

.pop-up--centered-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pop-up__opener {
  cursor: pointer;
}

.pop-up__closer {
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0.26, 0, 0.97);
  -o-transition: all 0.5s cubic-bezier(0.4, 0.26, 0, 0.97);
  transition: all 0.5s cubic-bezier(0.4, 0.26, 0, 0.97);
}

.pop-up__closer--cross {
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: fixed;
  top: 25px;
  right: 25px;
}

.pop-up__closer:hover {
  opacity: 0.8;
}

.pop-up__content {
  max-width: calc(100% - 32px);
  margin: 64px auto;
  margin-top: 15%;
  background-color: #151514;
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0.26, 0, 0.97);
  -o-transition: all 0.6s cubic-bezier(0.4, 0.26, 0, 0.97);
  transition: all 0.6s cubic-bezier(0.4, 0.26, 0, 0.97);
}

.pop-up__content--dark {
  background-color: #333;
}

.pop-up--active {
  visibility: visible;
  opacity: 1;
}

.pop-up--active .pop-up__content {
  margin-top: 64px;
}

.pop-up__image {
  width: 100%;
}

.pop-up h3 {
  padding: 10px 20px;
  background-color: #133246 /*COLOR3*/;
  color: #6b7c8a;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.7s cubic-bezier(0.4, 0.26, 0, 0.97);
  -o-transition: all 0.7s cubic-bezier(0.4, 0.26, 0, 0.97);
  transition: all 0.7s cubic-bezier(0.4, 0.26, 0, 0.97);
}

.pop-up h2,
.pop-up li,
.pop-up p,
.pop-up__text {
  color: #6d7d8c;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

.pop-up__text--home-slide {
  padding: 20px;
}

.pop-up__text--latos {
  padding: 20px;
}

/* 21. Profile games */

.profile-game {
  height: 160px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 15px;
  cursor: pointer;
  background-size: cover;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.profile-game:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #32475a80;
}

.profile-game__flag {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 3px 5px;
  background-color: #42A8EA /*COLOR1*/;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Roboto Condensed", sans-serif;
}

.profile-game--not-purchased .profile-game__flag {
  background-color: #596c7d;
}

/* 22. About cards — layout, elements, and size modifiers */

.about-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-wrap--wrapped {
  max-width: 100%;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.about-card {
  width: 275px;
  height: 275px;
  min-width: 275px;
  min-height: 275px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px;
  border-radius: 50% 50%;
  background-size: cover;
  background-color: #dfdfdf;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.about-card__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-card__social-list a {
  width: 40px;
  height: 40px;
  margin: 15px;
  background-size: cover;
}

.about-card__social-list a:last-of-type {
  margin-right: 0;
}

.about-card__social-list a:first-of-type {
  margin-left: 0;
}

.about-card__info {
  z-index: 1;
}

.about-card__info h1 {
  display: inline-block;
  background-color: #42A8EA /*COLOR1*/;
  padding: 5px 10px;
}

.about-card__info span {
  display: block;
  width: 100%;
  padding: 5px 30px;
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 700;
  color: #d8d8d8;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.about-card:hover .about-card__info span {
  background-color: #fff;
  color: #222;
}

.about-card:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50% 50%;
  background-color: #41607be6;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.about-card:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.about-card:hover:before {
  background-color: #de7b3dba;
}

.about-card--big {
  width: 300px;
  height: 300px;
  min-width: 300px;
  min-height: 300px;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.about-card--small {
  width: 150px;
  height: 150px;
  min-width: 150px;
  min-height: 150px;
}

.about-card--small .about-card__info h1 {
  font-size: 16px;
}

/* 23. Shared headings and text */

.title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.title--centered {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 20px 0;
}

.title--counter {
  color: #27648c /*COLOR2*/;
  font-size: 50px;
  padding-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.title--flag {
  background-color: #42A8EA /*COLOR1*/;
  padding: 5px 10px;
  text-transform: uppercase;
}

.title--about-small {
  font-size: 21px;
}

.title--section {
  color: #8c8c8c;
  text-transform: uppercase;
  font-size: 23px;
}

.title--profile-game {
  padding: 10px;
  z-index: 1;
  color: #fff;
  font-size: 18px;
}

.title--dlc {
  font-size: 35px;
  margin-bottom: 30px;
}

.text {
  position: relative;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.text__desc {
  position: absolute;
  right: 100%;
  margin-right: 15px;
  font-size: 30px;
  line-height: 1;
  color: #cc8041;
}

.text__desc--answer {
  color: #1d7575;
}

.text--list {
  margin-left: 50px;
  margin-top: 10px;
}

.text--list li {
  line-height: 1.5;
}

.text--about {
  margin: 25px 0;
  color: #dcdcdc;
}

.text--faq-title {
  margin: 15px 0;
  margin-top: 50px;
  font-size: 23px;
  letter-spacing: 1px;
}

.text--faq-content {
  font-size: 19px;
  color: #c7c7c7;
}

/* 24. Notices and full-background layouts */

.notice-window {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 15px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  color: #333;
  line-height: 1.5;
}

.notice-window--warning {
  background-color: #ea4b4b;
}

.notice-window--alert {
  background-color: #eaaa39;
}

.notice-window--success {
  background-color: #21c55e;
}

.notice-window--disabled {
  background-color: #5d5d5d;
  color: #fff;
}

.full-bg {
  width: 100%;
  padding-bottom: 15px;
  position: relative;
  background-size: cover;
}

.full-bg:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #233342cc;
}

.full-bg > * {
  z-index: 1;
}

.full-bg--centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 25. Page-specific grid modifiers */

.grid--profile-wrap {
  margin: 0 auto;
}

.grid--indent-top {
  margin-top: 100px;
}

.grid--full-height {
  min-height: 100%;
}

.grid--profile {
  margin-left: -15px;
  margin-bottom: 15px;
}

.grid--profile .grid__cell {
  padding-left: 15px;
}

.grid--s {
  width: 900px;
  max-width: 100%;
}

.grid--s .grid__cell {
  padding-bottom: 10px;
}

/* 26. Navigation icon — closed and open states */

.nav-icon {
  width: 30px;
  height: 30px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-icon span:nth-child(even) {
  left: 50%;
}

.nav-icon span:nth-child(odd) {
  left: 0px;
}

.nav-icon span:nth-child(1),
.nav-icon span:nth-child(2) {
  top: 0px;
}

.nav-icon span:nth-child(3),
.nav-icon span:nth-child(4) {
  top: 12px;
}

.nav-icon span:nth-child(5),
.nav-icon span:nth-child(6) {
  top: 24px;
}

.nav-icon.open span {
  background-color: #222;
}

.nav-icon.open span:nth-child(1),
.nav-icon.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon.open span:nth-child(2),
.nav-icon.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(1) {
  left: 3px;
  top: 5px;
}

.nav-icon.open span:nth-child(2) {
  left: calc(50% - 2px);
  top: 5px;
}

.nav-icon.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.nav-icon.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.nav-icon.open span:nth-child(5) {
  left: 3px;
  top: 15px;
}

.nav-icon.open span:nth-child(6) {
  left: calc(50% - 2px);
  top: 15px;
}

/* 27. Statistics and status badges */

.stat-card {
  margin-left: 0;
}

.stat-card .title {
  padding-left: 0;
  margin-bottom: 10px;
}

.stat-card__category,
.stat-card__value {
  padding: 7px 10px;
  margin-bottom: 15px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stat-card__category {
  color: #fff;
  background-color: #42A8EA; /*COLOR1*/
}

.stat-card__value {
  text-align: center;
  background-color: #dfdfdf;
}

.stat-card--full-size {
  margin-left: -20px;
}

.stat-card--full-size .title {
  padding-left: 20px;
}

.status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 15px;
}

.status--warning {
  background-color: #eaaa39;
}

.status--good {
  background-color: #21c55e;
}

.status--banned {
  background-color: #ea4b4b;
}

.status__title,
.status__value {
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status__title {
  padding: 7px 13px;
  background-color: #ffffff80;
}

.status__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.status__value img {
  width: 18px;
  height: 18px;
  margin: 0 10px;
}

.status__value span {
  margin-right: 10px;
}

/* 28. Linked content and sale banners */

.link-card {
  position: relative;
  margin: 0 20px;
  padding-bottom: 10px;
}

.link-card:after {
  content: '';
  width: 4px;
  height: calc(100% - 107px);
  position: absolute;
  top: 70px;
  left: -14px;
  background-color: #27648c; /*COLOR2*/
}

.link-card:before {
  content: '';
  width: 4px;
  height: 100%;
  position: absolute;
  top: 22px;
  left: -25px;
  background-color: #42A8EA; /*COLOR1*/
}

.link-card__date {
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 10px;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #42A8EA; /*COLOR1*/
}

.link-card__date:before {
  content: '';
  width: 40px;
  height: 4px;
  position: absolute;
  top: 18px;
  left: -25px;
  background-color: #42A8EA; /*COLOR1*/
}

.link-card__list {
  padding-bottom: 0;
}

.link-card__list-item {
  position: relative;
  padding-bottom: 15px;
  margin-left: 20px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  line-height: 1.5;
}

.link-card__list-item:before {
  content: '';
  width: 20px;
  height: 4px;
  position: absolute;
  top: 12px;
  left: -30px;
  background-color: #27648c; /*COLOR2*/
}

.link-card__list-item--category {
  display: inline-block;
  background-color: #27648c /*COLOR2*/;
  margin-left: 0;
  padding: 7px 10px;
  margin-bottom: 10px;
}

.link-card__list-item--category:before {
  top: 18px;
  left: -10px;
}

.link-card--blog:after {
  display: none;
}

.link-card--blog:before {
  display: none;
}

.link-card--blog .link-card__list-item--blog-link {
  display: block;
  margin-left: 0;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.link-card--blog .link-card__list-item--blog-link span {
  display: inline-block;
  padding: 7px 10px;
  background-color: #27648c; /*COLOR2*/
}

.link-card--blog .link-card__list-item--blog-link:before {
  display: none;
}

.sale {
  width: 100%;
  position: absolute;
  bottom: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 18px;
  background-color: #335673;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

.sale img {
  height: 30px;
  margin-right: 12px;
}

.sale span {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 13px;
}

/* 29. Articles */

.article {
  max-width: 100%;
  padding: 20px;
  background-color: #fff;
}

.article__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.article__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.article__info-left {
  display: inline-block;
  padding: 3px 5px;
  color: #fff;
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #42A8EA; /*COLOR1*/
}

.article__info-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}

.article__lang-switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5px;
}

.article__lang {
  position: relative;
  padding: 3px 5px;
  margin-left: 0px;
  color: #ababab;
  cursor: pointer;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  background-color: #d2d6d6;
}

.article__lang:hover {
  opacity: 0.8;
}

.article__lang--active {
  background-color: #42A8EA /*COLOR1*/;
  color: #444;
}

.article__lang--active:before {
  content: '';
  width: 88%;
  height: 2px;
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background-color: #18bbbb;
}

.article q {
  background-color: #dfdfdf;
  padding: 1px 5px;
  padding-top: 0;
}

.article q:before,
.article q:after {
  content: '';
}

.article p {
  color: #444;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
}

.article blockquote {
  position: relative;
  display: block;
  margin: 0 -20px;
  padding: 20px;
  padding-left: 100px;
  color: #444;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  background-color: #dfdfdf;
}

.article blockquote:before {
  content: '';
  width: 40px;
  height: 40px;
  position: absolute;
  top: 26px;
  left: 30px;
  background-size: cover;
  background-image: url("{% static 'images/quote.svg' %}");
}

.article__img {
  text-align: center;
  font-size: 0;
}

.article__img img {
  max-width: 100%;
  font-size: 0;
}

.article__img-desc {
  padding: 5px 0;
  color: #444;
  font-size: 14px;
  background-color: #dfdfdf;
}

/* 30. Preloader */

.preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  background-color: #202b3599;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.preloader__logo {
  width: auto;
  height: 80px;
}

.preloader--hide {
  bottom: 100%;
  opacity: 0;
  visibility: hidden;
}

/* 31. Support and ticket dialogs */

.main-container--support {
  height: calc(100% - 60px);
  padding: 0;
  padding-top: 80px;
}

.support {
  height: 100%;
  overflow: hidden;
  background-color: #17212b;
}

.support .open-ticket span {
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.support .open-ticket.is-active:hover {
  background-color: #42A8EA /*COLOR1*/;
  border-color: #42A8EA; /*COLOR1*/
}

.support .open-ticket.is-active span {
  opacity: 0;
  -webkit-transform: translate3d(75px, 0, 0);
  transform: translate3d(75px, 0, 0);
}

.support__clear-msg {
  display: block;
  text-align: center;
  padding: 100px 0;
  color: #989898;
  font-size: 12px;
}

.support__ticket-sidebar {
  width: 450px;
  height: calc(100% - 169px);
  position: fixed;
  top: 109px;
  bottom: 0;
  left: 0;
  z-index: 50;
}

.support__ticket-sidebar .button {
  width: 100%;
  height: 50px;
  padding: 0;
  line-height: 47px;
}

.support__ticket-list-wrap {
  height: calc(100% - 50px);
  overflow-y: auto;
  background-color: #1d2731;
}

.support__ticket-list-wrap::-webkit-scrollbar {
  width: 5px;
}

.support__ticket-list-wrap::-webkit-scrollbar-track {
  background-color: #1C2934;
}

.support__ticket-list-wrap::-webkit-scrollbar-thumb {
  background-color: #425b71;
}

.support__ticket-list {
  list-style: none;
}

.support__ticket-link {
  display: block;
  margin-top: 10px;
  color: #eee;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.support__ticket-link:hover {
  opacity: 0.8;
}

.support__ticket-link-info {
  padding: 20px;
  padding-bottom: 25px;
  background-color: #293b4c;
}

.support__ticket-link-title {
  font-size: 20px;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.support__ticket-link-category {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.support__ticket-link-category li {
  position: relative;
  float: left;
  margin-right: 15px;
  color: #6b7c8a;
  font-size: 12px;
}

.support__ticket-link-category li:after {
  content: '>';
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 5px;
  color: #6b7c8a;
}

.support__ticket-link-category li:last-of-type:after {
  content: '';
}

.support__ticket-link-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #133246; /*COLOR3*/
}

.support__ticket-link-tag {
  width: 33.3%;
  padding: 10px 20px;
  color: #6b7c8a;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.support__ticket-link-tag span {
  display: block;
  margin-top: 2px;
  color: #eee;
  font-size: 12px;
  font-weight: 300;
  text-transform: none;
}

.support__ticket-wrap {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 50;
  padding-left: 450px;
}

.support__ticket-wrap::-webkit-scrollbar {
  width: 5px;
}

.support__ticket-wrap::-webkit-scrollbar-track {
  background-color: #1C2934;
}

.support__ticket-wrap::-webkit-scrollbar-thumb {
  background-color: #425b71;
}

.support__ticket {
  width: 100%;
  height: 100%;
  padding: 100px 200px;
  font-size: 0;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.support__ticket .select2 {
  width: 100% !important;
}

.support__ticket.opened {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.support__ticket .button {
  padding: 10px 0;
}

.support__ticket-input {
  width: 100%;
  padding: 10px 15px;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #333;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #42A8EA; /*COLOR1*/
}

.support textarea {
  height: calc(100% - 120px);
  min-height: 300px;
  resize: none;
  font-weight: 500;
}

.support .form--new-ticket {
  max-width: 650px;
  margin: 5% auto;
  background-color: #151514;
}

.support .form--new-ticket .g-recaptcha {
  margin: 0 auto;
}

.ticket-dialog {
  max-width: 650px;
  margin: 5% auto;
}

.ticket-dialog__message {
  background-color: #151514;
  margin-bottom: 20px;
}

.ticket-dialog__message-header {
  padding: 10px 15px;
  background-color: #133246; /*COLOR3*/
}

.ticket-dialog__username {
  color: #42A8EA /*COLOR1*/;
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticket-dialog__message-text {
  padding: 10px 15px;
  color: #dfdfdf;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

.ticket-dialog__message-text p {
  margin-bottom: 15px;
}

/* 32. Hash tabs and their entrance keyframes */

.hash-tab {
  display: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
}

.hash-tab.active {
  display: block;
  -webkit-animation: slide 0.6s cubic-bezier(0.4, 0.26, 0, 1) forwards;
  animation: slide 0.6s cubic-bezier(0.4, 0.26, 0, 1) forwards;
  visibility: visible;
  opacity: 1;
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

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

@keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

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

/* 33. Requirements cards */

.requirements-cards {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
  padding-right: 20px;
  padding-top: 20px;
  margin-top: 10%;
  background-color: #151514;
}

.requirements-cards h2 {
  display: inline-block;
  padding: 7px 12px;
  margin: 0;
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #151514;
}

.requirements-cards h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 14px;
}

.requirements-cards .grid__cell {
  margin: 0;
}

.requirements-card {
  color: #fff;
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 0;
}

.requirements-card__tag {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 0;
}

.requirements-card__tag:last-of-type {
  margin-bottom: 0;
}

.requirements-card__tag label {
  padding: 3px 6px;
  font-size: 12px;
  background-color: #436c8e;
}

.requirements-card__tag span {
  padding: 3px 10px;
  color: #c5c5c5;
  font-size: 12px;
  background-color: #4d4d4d;
}

/* 34. Server status bar */

.server-status-bar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #333333;
}

.server-status-bar__tag {
  padding: 5px 15px;
  text-align: center;
}

.server-status-bar__tag span {
  color: #7f91a2;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

.server-status-bar__tag--status {
  position: relative;
}

.server-status-bar__tag--status span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.server-status-bar__tag--status:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 15px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  -webkit-animation: blink 1s ease-in-out alternate infinite;
  animation: blink 1s ease-in-out alternate infinite;
}

@-webkit-keyframes blink {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@keyframes blink {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.server-status-bar__tag--status span {
  color: #ffffff;
}

.server-status-bar__tag--status-online {
  padding-left: 40px;
  background-color: #21c55e;
}

.server-status-bar__tag--status-online:before {
  background-color: #1f9268;
}

.server-status-bar__tag--status-warning {
  background-color: #eaaa39;
}

.server-status-bar__tag--status-offline {
  background-color: #ea4b4b;
}

/* 35. Responsive component overrides — retain cascade order */

@media only screen and (min-width: 1024px) {
  .body--no-scroll {
    overflow: hidden !important;
  }
}

@media only screen and (min-width: 768px) {
  .header__side-bar .button {
    color: #fff;
    margin: 0;
  }

  .header__links {
    position: relative;
    top: auto;
    right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
  }

  .header__links .button--bordered {
    margin-left: 15px;
  }
}

@media only screen and (min-width: 1024px) {
  .header {
    top: 29px;
  }
}

@media only screen and (min-width: 768px) {
  .button--menu {
    margin-right: 30px !important;
  }

  .dropmenu {
    margin: 0;
  }

  .dropmenu:hover .dropmenu__list {
    top: 100%;
  }

  .dropmenu__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media only screen and (min-width: 1024px) {
  .game-cards-wrap {
    width: 900px;
    max-width: 100%;
  }

  .game-cards-wrap--full-width {
    width: 100%;
  }

  .game-cards-wrap--sub-game {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: auto;
  }

  .game-card--sub-game {
    width: 250px;
    height: 250px;
    margin-right: 75px;
  }

  .game-card--main {
    width: 350px;
    height: 350px;
  }

  .game-card__title--sub-game {
    padding: 15px 0;
    font-size: 30px;
  }

  .game-card__title--main {
    padding: 20px 0;
    font-size: 35px;
    letter-spacing: 4px;
  }
}

@media only screen and (min-width: 1500px) {
  .game-cards-wrap {
    width: 1200px;
  }

  .game-cards-wrap--full-width {
    width: 100%;
  }

  .game-card {
    width: 400px;
    height: 400px;
  }

  .game-card--sub-game {
    width: 300px;
    height: 300px;
  }

  .game-card--main {
    width: 400px;
    height: 400px;
  }

  .game-card__title {
    font-size: 21px;
  }

  .game-card__title--sub-game {
    font-size: 30px;
  }

  .game-card__title--main {
    font-size: 35px;
  }
}

@media only screen and (min-width: 768px) {
  .slide__img {
    min-width: 350px;
    min-height: 350px;
    width: 350px;
    height: 350px;
  }
}

@media only screen and (min-width: 1024px) {
  .slide {
    height: 500px;
  }

  .slide--profile {
    height: auto;
  }

  .slide__content {
    width: 900px;
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .slide__img {
    margin: 0;
  }

  .slide__desc {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin: 0;
    margin-left: 50px;
    text-align: right;
  }

  .slide:nth-child(odd) .slide__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }

  .slide:nth-child(odd) .slide__content .slide__desc {
    margin-left: 0;
    margin-right: 50px;
    text-align: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 1400px) {
  .slide {
    height: 600px;
  }

  .slide__content {
    width: 1200px;
  }

  .slide:nth-child(odd) .slide__content .slide__desc {
    margin-right: 175px;
  }

  .slide__img {
    min-width: 450px;
    min-height: 450px;
    width: 450px;
    height: 450px;
  }

  .slide__desc {
    margin-left: 175px;
  }

  .slide__big-text {
    font-size: 45px;
  }

  .slide--profile {
    height: auto;
  }
}

@media only screen and (min-width: 768px) {
  .full-bg {
    height: 100%;
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .footer {
    height: 60px;
    padding: 0 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .footer__caption {
    padding: 0;
  }

  .footer-fixed .footer {
    position: fixed;
    bottom: 0;
    background-color: #202b35 !important;
  }
}

@media only screen and (min-width: 1440px) {
  .footer-fixed .footer {
    position: fixed;
    bottom: 0;
    background-color: transparent !important;
  }
}

@media only screen and (min-width: 1024px) {
  .pop-up__content--centered-text {
    width: 950px;
  }

  .pop-up--active .pop-up__content {
    margin-top: 6%;
  }
}

@media only screen and (min-width: 1100px) {
  .about-wrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .about-wrap--wrapped {
    width: 1100px;
  }

  .about-card {
    width: 325px;
    height: 325px;
    min-width: 325px;
    min-height: 325px;
  }

  .about-card--small {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
  }

  .about-card--big {
    width: 375px;
    height: 375px;
    min-width: 375px;
    min-height: 375px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .about-card__info span {
    padding: 10px 30px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 1400px) {
  .about-card {
    width: 375px;
    height: 375px;
    min-width: 375px;
    min-height: 375px;
  }

  .about-card--small {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
  }

  .about-card--big {
    width: 450px;
    height: 450px;
    min-width: 450px;
    min-height: 450px;
  }
}

@media only screen and (min-width: 768px) {
  .nav-icon {
    display: none;
  }
}

@media only screen and (min-width: 500px) {
  .button--profile-with-icon {
    width: 350px;
  }
}

@media only screen and (min-width: 900px) {
  .grid--profile-wrap {
    width: 900px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .notice-window {
    width: 500px;
    top: 30px;
    left: calc(50% - 250px);
  }

  .link-card {
    margin: 0;
  }

  .sale {
    bottom: calc(100% + 10px);
  }

  .sale span {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1024px) {
  .pay-card__desc {
    height: 100px;
  }
}

@media only screen and (min-width: 1280px) {
  .pay-card {
    width: 80%;
  }
}

@media only screen and (min-width: 768px) {
  .article {
    max-width: 732px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1280px) {
  .requirements-cards {
    width: 80%;
  }
}

@media only screen and (min-width: 1024px) {
  .server-status-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .server-status-bar__tag {
    text-align: left;
  }
}

/* 36. Select2 — shared structure, controls, and accessibility helper */

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

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: #111e29;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 10px;
  color: #dfdfdf;
  font-size: 14px;
  font-weight: 500;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 10px;
}

.select2-search--dropdown .select2-search__field {
  padding: 5px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  background-color: #111e29;
  border: 2px solid #fff !important;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

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

/* 36.1 Legacy palette annotations — retained at their original cascade positions */

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #27648c; /*COLOR2*/
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #42A8EA /*COLOR1*/;
  color: white;
}

/* 36.2 Select2 classic theme — controls, states, RTL, and results */

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* 36.3 Select2 default theme — controls, states, RTL, and results */

.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 35px;
  padding: 0 10px;
  color: #333;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  border: 2px solid #ffffff;
  background-color: #ffffff;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
  font-size: 16px;
}

.select2-container--default .select2-selection__arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 100%;
  border: none;
  background-color: #ffffff;
}

.select2-container--default .select2-selection__arrow b {
  border-color: #151514 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #151514 transparent;
  border-width: 0 5px 5px 5px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #dfdfdf;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #27648c; /*COLOR2*/
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #42A8EA /*COLOR1*/;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

/* 37. Shared layouts for pages built from the existing components. */
.page-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.page-container--narrow {
  max-width: 900px;
}

.page-stack > * + * {
  margin-top: 20px;
}

.page-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.page-columns--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-columns--sidebar {
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
}

.page-columns > *,
.header__content > *,
.slide__content > * {
  min-width: 0;
}

/* 38. Mobile and intermediate viewports — desktop dimensions remain unchanged. */
/* Let centered forms grow vertically instead of clipping on short screens. */
.body--centered-content {
  height: auto;
  min-height: 100%;
}

@media only screen and (max-width: 1399px) {
  .about-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1279px) {
  .page-columns--sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .wrapper {
    margin-top: 80px;
  }

  .game-cards-wrap,
  .slide__content {
    max-width: 100%;
  }

  .support {
    height: auto;
    min-height: 100%;
    overflow: visible;
  }

  .main-container--support {
    height: auto;
    min-height: 100%;
  }

  .support__ticket-sidebar {
    position: static;
    width: 100%;
    height: auto;
  }

  .support__ticket-list-wrap {
    height: auto;
    max-height: 300px;
  }

  .support__ticket-wrap {
    height: auto;
    overflow: visible;
    padding-left: 0;
  }

  .support__ticket {
    height: auto;
    padding: 40px 20px;
  }

  .support textarea {
    height: 300px;
  }

  .support .form--new-ticket,
  .ticket-dialog {
    max-width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 1199px) {
  .slide__content {
    padding-inline: 20px;
  }

  .slide__img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .page-columns--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .page-container {
    padding-inline: 16px;
  }

  .page-columns,
  .page-columns--three {
    grid-template-columns: minmax(0, 1fr);
  }

  .wrapper {
    max-width: calc(100% - 32px);
  }

  .header {
    padding: 12px 16px;
  }

  .header__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .game-card,
  .game-card--main,
  .game-card--sub-game {
    max-width: 100%;
  }

  .slide__img {
    min-width: 0;
    max-width: 100%;
  }

  .slide__big-text {
    overflow-wrap: anywhere;
  }

  .features {
    height: auto;
    min-height: 0;
    margin: 16px;
  }

  .features__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .features__info {
    width: 100%;
  }

  .home-page__centered-title {
    height: auto;
    min-height: 240px;
  }

  .footer__part {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__comodo {
    margin-left: 0;
  }

  .notice-window {
    max-height: 100dvh;
    overflow-y: auto;
  }

  .form__input-group {
    margin-left: 0;
  }

  .form__input-select {
    width: 100% !important;
    padding-left: 0;
  }

  .pay-card,
  .requirements-cards {
    width: calc(100% - 32px);
  }

  .pop-up--centered-content {
    display: block;
  }

  .article__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }

  .article blockquote {
    padding-left: 70px;
  }

  .article blockquote:before {
    left: 15px;
  }
}

@media only screen and (max-width: 499px) {
  .g-recaptcha {
    max-width: 100%;
  }

  .form__input-wrapper {
    min-width: 0;
  }

  .about-card,
  .about-card--big {
    max-width: calc(100vw - 60px);
    min-width: 0;
    height: auto;
    aspect-ratio: 1;
  }
}

/* 39. Site controls — size and alignment can be mixed with existing button variants. */
.button--small {
  padding: 6px 12px;
  font-size: 13px;
  letter-spacing: 1px;
}

.button--medium {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 15px;
}

.button--large {
  min-height: 48px;
  padding: 11px 24px;
  font-size: 17px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.button-group--start {
  justify-content: flex-start;
}

.button-group--center {
  justify-content: center;
}

.button-group--end {
  justify-content: flex-end;
}

.button-group--between {
  justify-content: space-between;
}

/* 40. Account page shell, intro, and dialog. */
.site-layout {
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-image: url("background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-header.header {
  position: relative;
  top: auto;
  background-color: #202b35;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.site-header__logo {
  width: 30px;
  height: 30px;
}

.site-header__nav {
  display: flex;
  align-items: center;
}

.site-main {
  width: 100%;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.site-content {
  width: 100%;
  margin-inline: auto;
}

.site-intro {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 0;
  text-align: center;
  -webkit-animation: site-intro-in 400ms ease-out both;
  animation: site-intro-in 400ms ease-out both;
}

.site-intro__eyebrow,
.account-modal__eyebrow {
  color: #42A8EA;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-intro__title {
  margin: 12px 0;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 12px #0008;
}

.site-intro__description {
  max-width: 560px;
  margin: 0 auto 26px;
  color: #c3d2e0;
  font-size: 17px;
  text-shadow: 0 1px 5px #0009;
}

@-webkit-keyframes site-intro-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes site-intro-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.featured-products {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 0 48px;
  text-align: center;
}

.featured-products__panel {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 24px;
}

/* Each card gets its own same-size frame and four corner connectors. */
.featured-products .game-cards-wrap {
  width: auto;
  max-width: 100%;
  gap: 40px;
}

.featured-products__card-frame {
  --frame-depth: 9px;
  width: 300px;
  max-width: 100%;
  height: 300px;
  position: relative;
  isolation: isolate;
  flex: 0 1 300px;
  background: #0b1823;
  box-shadow: inset 0 0 22px #000c, 0 18px 38px #000a;
  transition: box-shadow 400ms ease-in-out;
}

.featured-products__depth {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.featured-products__depth--right {
  top: 0;
  left: 100%;
  width: var(--frame-depth);
  height: calc(100% + var(--frame-depth));
  background: linear-gradient(to right, #304b60, #122a3d);
  clip-path: polygon(0 0, 100% var(--frame-depth), 100% 100%, 0 calc(100% - var(--frame-depth)));
}

.featured-products__depth--bottom {
  top: 100%;
  left: 0;
  width: calc(100% + var(--frame-depth));
  height: var(--frame-depth);
  background: linear-gradient(to bottom, #213c51, #0c1d2b);
  clip-path: polygon(0 0, calc(100% - var(--frame-depth)) 0, 100% 100%, var(--frame-depth) 100%);
}

/* Front rim and offset back rim make a shallow square tube around the card. */
.featured-products__card-frame::before,
.featured-products__card-frame::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border: 1px solid #52718b;
}

.featured-products__card-frame::before {
  z-index: -1;
  inset: var(--frame-depth) calc(-1 * var(--frame-depth)) calc(-1 * var(--frame-depth)) var(--frame-depth);
  border-color: #29445c;
  box-shadow: 5px 8px 16px #0009;
}

.featured-products__card-frame::after {
  z-index: 4;
  inset: 0;
  border-top-color: #7b9bb1;
  border-left-color: #6b8aa2;
  border-right-color: #263f54;
  border-bottom-color: #223a4d;
  box-shadow: inset 0 0 9px #000b, 0 0 9px #65a7d133;
}

.featured-products .game-card {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: #0b1823;
}

/* Show artwork at full opacity over an opaque surface, including transparent PNGs. */
.featured-products .game-card__bg {
  z-index: 0;
  background-color: #0b1823;
  opacity: 1;
}

.featured-products .game-card__fadeout {
  display: none;
}

.featured-products .game-card__logo,
.featured-products .game-card__title {
  z-index: 2;
}

.featured-products .game-card__title {
  text-shadow: 0 2px 6px #000, 0 0 12px #000;
}

/* Each connector joins (x, y) to (x + depth, y + depth). No top-left connector. */
.featured-products__line {
  position: absolute;
  z-index: 3;
  width: calc(var(--frame-depth) * 1.4142135624);
  height: 1px;
  pointer-events: none;
  transform: rotate(45deg);
  transform-origin: left top;
}

.featured-products__line--right {
  top: 0;
  left: calc(100% - 1px);
  background: linear-gradient(to right, #263f54, #29445c);
}

.featured-products__line--bottom {
  top: calc(100% - 1px);
  left: calc(100% - 1px);
  background: linear-gradient(to right, #223a4d, #29445c);
}

.featured-products__line--left {
  top: calc(100% - 1px);
  left: 0;
  background: linear-gradient(to right, #223a4d, #29445c);
}

.featured-products__card-frame:hover {
  z-index: 3;
  box-shadow: inset 0 0 24px #000e, 0 22px 46px #000c;
}

.featured-products__card-frame:hover .game-card--display-only {
  z-index: 5;
  -webkit-transform: translate(-16px, -16px);
  -ms-transform: translate(-16px, -16px);
  transform: translate(-16px, -16px);
  box-shadow: 12px 20px 30px #000b;
}

/* The badge sits outside the clipped artwork and rises with the card. */
.featured-products .game-card__flag {
  --flag-depth: 6px;
  z-index: 6;
  top: 20px;
  right: -8px;
  padding: 5px 10px;
  box-shadow: 3px 6px 10px #0009;
  transition: transform 400ms ease-in-out, box-shadow 400ms ease-in-out;
}

.featured-products .game-card__flag::before,
.featured-products .game-card__flag::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.featured-products .game-card__flag::before {
  top: 0;
  right: calc(-1 * var(--flag-depth));
  width: var(--flag-depth);
  height: calc(100% + var(--flag-depth));
  background: #126e37;
  clip-path: polygon(0 0, 100% var(--flag-depth), 100% 100%, 0 calc(100% - var(--flag-depth)));
}

.featured-products .game-card__flag::after {
  top: 100%;
  left: 0;
  width: calc(100% + var(--flag-depth));
  height: var(--flag-depth);
  background: #0d582b;
  clip-path: polygon(0 0, calc(100% - var(--flag-depth)) 0, 100% 100%, var(--flag-depth) 100%);
}

.featured-products__card-frame:hover .game-card__flag {
  transform: translate(-16px, -16px);
  box-shadow: 8px 14px 16px #000b;
}

.featured-products .game-card__logo {
  top: 20px;
  left: 20px;
  width: 64px;
  height: 64px;
  opacity: 1;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px #000a);
}

.featured-products .game-card:hover .game-card__logo {
  top: 20px;
  opacity: 1;
}

.featured-products .game-card--display-only:hover .game-card__title {
  margin-bottom: 0;
}

.featured-products__empty {
  color: #9ba3ab;
}

.game-card--display-only {
  cursor: default;
}

.game-card--display-only:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.account-modal__content {
  width: 480px;
  max-width: calc(100% - 32px);
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  margin: 32px auto;
  padding: 0;
  border: 1px solid #36516b;
  border-radius: 4px;
  -webkit-box-shadow: 0 20px 50px #0008;
  box-shadow: 0 20px 50px #0008;
}

.pop-up--active .account-modal__content {
  margin: 32px auto;
}

.account-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background-color: #133246;
  border-bottom: 1px solid #36516b;
}

.account-modal__title {
  margin-top: 4px;
  font-size: 26px;
  text-shadow: 0 2px 8px #0008;
}

.account-modal__body {
  padding: 24px;
}

.account-modal__lead {
  margin-bottom: 22px;
  color: #c3d2e0;
  font-size: 16px;
  text-shadow: 0 1px 5px #0008;
}

.account-modal__field {
  margin-bottom: 16px;
}

.account-modal__label {
  display: block;
  margin-bottom: 8px;
  color: #c3d2e0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.account-modal__field .form__input {
  width: 100%;
  height: 42px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
}

.account-modal__field .form__input:focus {
  margin-top: 0;
}

.account-modal__field .form__input::placeholder {
  color: #7f91a2;
  opacity: 1;
}

.account-modal__hint {
  margin-top: 7px;
  color: #9ba3ab;
  font-size: 13px;
}

.account-modal__secondary {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #36516b;
}

.account-modal__secondary p {
  margin-bottom: 14px;
  color: #c3d2e0;
  font-size: 14px;
}

.account-modal__details {
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}

.account-modal__detail {
  padding: 16px;
  border: 1px solid #36516b;
  background-color: #202b35;
}

.account-modal__detail + .account-modal__detail {
  margin-top: 10px;
}

.account-modal__number {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(17px, 5vw, 22px);
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #0009;
}

.account-modal__confirmation {
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid #36516b;
  background-color: #202b35;
}

.account-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c3d2e0;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.account-modal__checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: #42A8EA;
}

.account-modal__actions {
  padding-top: 18px;
  border-top: 1px solid #36516b;
}

@media only screen and (max-width: 499px) {
  .site-intro {
    padding: 24px 0;
  }

  .featured-products__panel {
    padding: 16px;
  }

  .account-modal__header,
  .account-modal__body {
    padding: 18px;
  }

  .account-modal__content {
    max-height: calc(100dvh - 32px);
  }
}

/* The locked view is the only site content sent to visitors without access. */
.site-locked {
  min-height: 100dvh;
  background: #0c1117;
}

.lock-screen {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 15%, #19334a 0, #101820 55%, #0c1117 100%);
}

.lock-screen__content {
  width: min(100%, 460px);
  padding: clamp(24px, 6vw, 40px);
  border: 1px solid #36516b;
  background: #151c23;
  box-shadow: 0 24px 60px #000a;
}

.lock-screen__logo {
  width: 48px;
  height: 48px;
}

.lock-screen__eyebrow {
  margin-top: 20px;
  color: #42a8ea;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lock-screen__title {
  margin: 12px 0;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(28px, 6vw, 40px);
}

.lock-screen__lead {
  color: #c3d2e0;
  line-height: 1.6;
}

.lock-screen__form {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #36516b;
}

.lock-screen__input {
  width: 100%;
  height: 42px;
  margin-bottom: 14px;
  color: #fff;
}

.lock-screen__message {
  margin-top: 18px;
  color: #ffb6b6;
}

/* Keep account-creation notes above the dialog so they can be acknowledged. */
.styled-home .notice-window {
  z-index: 1100;
}

/* Styled account page — keep HTML's hidden states above component display rules. */
.styled-home [hidden] {
  display: none !important;
}

/* Permit longer, unbroken account numbers without overflowing the account dialog. */
.styled-home #account-number {
  overflow-wrap: anywhere;
}

/* 41. Accessibility preferences — default motion is unchanged. */

/* Restore keyboard focus suppressed by the reset, without affecting pointer focus. */

a[href]:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.select2-container .select2-selection:focus-visible,
.select2-container .select2-search__field:focus-visible {
  outline: 2px solid #42A8EA;
  outline-offset: 2px;
}

/* Complete existing animations instead of disabling their final states/events.
 * Keep this opt-in override last; !important also covers plugin inline timings. */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-delay: 0ms !important;
    animation-delay: 0ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    -o-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    -webkit-transition-delay: 0ms !important;
    -o-transition-delay: 0ms !important;
    transition-delay: 0ms !important;
  }
}
