<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: 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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

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

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: 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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

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

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

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

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-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);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

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

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

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

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

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

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

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

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

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__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);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-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);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: 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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

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

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

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

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-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;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-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;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

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

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

@font-face {
  font-family: "Poppins";
  src: url(/fonts/Poppins-Thin.eot?3029e492a607502a8c6717b0d7ad9d6c);
  src: url(/fonts/Poppins-Thin.eot?3029e492a607502a8c6717b0d7ad9d6c) format("embedded-opentype"), url(/fonts/Poppins-Thin.woff2?ecbc7cb6ea1863ba4e00c3e514a89d53) format("woff2"), url(/fonts/Poppins-Thin.woff?362d5991e980e0b2656cd75ed2a8ed04) format("woff"), url(/fonts/Poppins-Thin.svg?2c0e829b6aea142611268db530413aa2) format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(/fonts/Poppins-Light.eot?af7b766154a0c6d892ff813b45b4655d);
  src: url(/fonts/Poppins-Light.eot?af7b766154a0c6d892ff813b45b4655d) format("embedded-opentype"), url(/fonts/Poppins-Light.woff2?3a7edf2f61eba7ba6b4d9e78da8ab57a) format("woff2"), url(/fonts/Poppins-Light.woff?ceaf8c4de9ee0f8530fddaa4a76a4df9) format("woff"), url(/fonts/Poppins-Light.svg?09c10c871fa2cdda28614ca23dcfb7df) format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(/fonts/Poppins-Regular.eot?e54f6a914cfdad667f28e87396234bda);
  src: url(/fonts/Poppins-Regular.eot?e54f6a914cfdad667f28e87396234bda) format("embedded-opentype"), url(/fonts/Poppins-Regular.woff2?e02e190248839fec59328523142ce88c) format("woff2"), url(/fonts/Poppins-Regular.woff?1ed9a698de5b1b3328ff71950731a500) format("woff"), url(/fonts/Poppins-Regular.svg?b07b14a47c7d4c05501f04fed5af558f) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(/fonts/Poppins-Medium.eot?dedb4980ba19642c0a1ffc8c7ac5df15);
  src: url(/fonts/Poppins-Medium.eot?dedb4980ba19642c0a1ffc8c7ac5df15) format("embedded-opentype"), url(/fonts/Poppins-Medium.woff2?2d9db5c9b67bce30464c0c4d0d840fef) format("woff2"), url(/fonts/Poppins-Medium.woff?896fb06c7b3bead35bb2fbe6be7d8b54) format("woff"), url(/fonts/Poppins-Medium.svg?971d155c26028c7155e6f5fd506fd236) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(/fonts/Poppins-SemiBold.eot?d7ff87b101632ea96eae90aa476e10a9);
  src: url(/fonts/Poppins-SemiBold.eot?d7ff87b101632ea96eae90aa476e10a9) format("embedded-opentype"), url(/fonts/Poppins-SemiBold.woff2?42a21f3f5b33aa4d346d0423428faacd) format("woff2"), url(/fonts/Poppins-SemiBold.woff?164269256f0c2b8f3f3e7aa19a8edeb4) format("woff"), url(/fonts/Poppins-SemiBold.svg?2e280bfb05ae6ef7c31685c16b7c63f2) format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next LT Pro";
  src: url(/fonts/AvenirNextLTPro-Bold.eot?5ddf86ebd907c8ecdc7680aa3fcfd054);
  src: url(/fonts/AvenirNextLTPro-Bold.eot?5ddf86ebd907c8ecdc7680aa3fcfd054) format("embedded-opentype"), url(/fonts/AvenirNextLTPro-Bold.woff2?60c644df933de96f92f7ba1eb6cd7e07) format("woff2"), url(/fonts/AvenirNextLTPro-Bold.woff?8889fdfa420dea7124a66e8c79a35fb4) format("woff"), url(/fonts/AvenirNextLTPro-Bold.ttf?a41536d323f65451a277ac796a779bd4) format("truetype"), url(/fonts/AvenirNextLTPro-Bold.svg?1d6c2b042e7965f712639c43f2922c27) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/*Plugins*/

/*ODOMETER*/

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  transition: transform 2s;
  transform: translateY(0);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.1em;
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

/* ! ODOMETER*/

/* ! Plugins*/

:root {
  --animate-duration: 0.3s;
}

.hover_mobile {
  display: none;
}

.wrapper {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #0F0D0F;
  margin: 0 auto;
  overflow: hidden;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header_burger {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
  padding: 45px 0;
  border-bottom: 2px solid #292329;
  transition: ease all 0.3s;
}

header.welcome-page {
  border-bottom: 2px solid transparent;
}

header.offset {
  top: 60px;
}

header.scrolled {
  background-color: #0A090A;
}

.sale_header {
  width: 100%;
  height: 60px;
  background-color: #E73E3F;
  display: flex;
  align-items: center;
}

.sale_header .container {
  display: flex;
  justify-content: center;
}

.sale_header .container .sale_text {
  display: flex;
  align-items: center;
  padding-right: 15px;
  padding-left: 20px;
  background: url(/images/offer.svg?2cd3160e8f4da3a80300563cafa65479) left 12px/12px 12px no-repeat;
}

.sale_header .container .btn {
  padding: 12px 0;
  background-color: #F1BB3E;
  color: #000;
  font-size: 12px;
  text-align: center;
  border-radius: 4px;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
  width: 110px;
}

.sale_header .container .btn:hover {
  opacity: 1;
}

.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.header_row {
  display: flex;
  justify-content: space-between;
}

.header_row .logo_header {
  width: 88px;
  height: 24px;
  margin: 0 0 0 -90px;
}

.header_row .logo_header a .logo {
  background: url(/images/logo.png?212ce878d4ffd8496211cdf0e1440b26) center no-repeat;
  width: 88px;
  height: 24px;
}

.header_row .header_menu {
  flex: 1 1 50%;
  width: 100%;
}

.header_row .header_menu .menu {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.header_row .header_menu .menu a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin: auto 30px auto 0;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.6;
  width: 70px;
  letter-spacing: 0.58px;
  transition: all 0.3s ease 0s;
}

.header_row .header_menu .menu a:hover {
  opacity: 1;
}

.header_row .header_menu .menu a.menu-767 {
  display: none;
}

.header_row .header_menu .menu a.profile {
  background: url(/images/profile.svg?e434847cd27526d2afa42a836274a48c) 0 4px no-repeat;
  padding: 0 0 0 16px;
  transition: all 0.3s ease 0s;
}

.header_row .header_menu .menu a.profile:hover {
  background: url(/images/profile_h.svg?d812bc3b369d27651525b76dee5e6c78) 0 4px no-repeat;
}

.header_row .btn_buy_now {
  flex: 0 0 140px;
}

.blue_btn {
  padding: 15px 40px;
  background: linear-gradient(135deg, #006466 24%, #186785 50%, #186785 79%, #316AA4 100%);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}

.blue_btn:hover {
  opacity: 1;
}

.main_block {
  padding-top: 126px;
}

.main_block.main {
  overflow: hidden;
  background: url(/images/vape_dark.png?0b9a6e94596749f9f3b3f65ffb5d6498) center top no-repeat;
  min-height: 51vw;
  display: flex;
  align-items: center;
  padding-bottom: 90px;
  background-size: cover;
}

.main_title {
  margin-top: 130px;
  max-width: 470px;
}

.main_title h1 {
  font-size: 72px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1.73px;
  text-shadow: 0 0 99px #000000;
}

.main_sale {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #3ABAC2;
  letter-spacing: -1.73px;
  text-shadow: 0 0 99px rgba(255, 255, 255, 0.1607843137);
  margin-top: -60px;
}

.main_sale strong {
  font-size: 64px;
  font-weight: 600;
}

.main_sale em {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0;
  line-height: 34px;
  vertical-align: top;
  padding-left: 5px;
}

.subtitle {
  margin-top: 50px;
  max-width: 565px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.43px;
  opacity: 0.8;
}

.mb_btns {
  margin: 70px 0 160px 0;
}

.mb_btns .learn_more {
  margin: 0 0 0 20px;
  color: #fff;
  letter-spacing: -0.38px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  transition: all ease 0.3s;
}

.mb_btns .learn_more:after {
  position: absolute;
  top: 6px;
  left: 90px;
  content: "";
  width: 5px;
  height: 9px;
}

.mb_btns .learn_more:hover:after {
  left: 92px;
}

.underline_blue:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #186785;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  transform-origin: left;
  opacity: 0.8;
}

.underline_blue:hover:before {
  transform: scale(1);
  width: 114%;
  opacity: 1;
}

.blue_tr:after {
  content: "";
  display: block;
  position: absolute;
  background: url(/images/arrow_right.svg?956cb453cb8f905c6574d844594aed2e) no-repeat;
  width: 5px;
  height: 9px;
  right: -10px;
  bottom: 2px;
  opacity: 0.8;
}

.blue_tr:hover:after {
  right: -12px;
  transition: all 0.3s ease 0s;
  opacity: 1;
}

.features {
  max-width: 1300px;
  margin: 100px -180px 0 0;
  display: flex;
}

.features .guarantee {
  flex: 0 0 272px;
  padding: 25px 0 0 0;
  opacity: 0.8;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.34px;
  margin: 0 8px 0 0;
}

.features .feature {
  flex: 1 1 340px;
  background-color: #141114;
  padding: 25px 30px 35px 58px;
  margin: 0 8px 0 0;
}

.features .feature .feature_title {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.38px;
  margin: 0 0 0 -35px;
  padding: 0 0 20px 35px;
  font-weight: 300;
}

.features .feature .feature_title.ft1 {
  background: url(/images/undetectable.svg?4c251f60269ff26dcb476029e942cae7) no-repeat;
}

.features .feature .feature_title.ft2 {
  background: url(/images/performance.svg?e21d158a66df720a5f89f8a190344747) no-repeat;
}

.features .feature .feature_title.ft3 {
  background: url(/images/ghost.svg?650b1044a5ca0ee9f362d82397554cda) no-repeat;
}

.features .feature .feature_text {
  font-size: 12px;
  letter-spacing: -0.29px;
  color: #535261;
  line-height: 1.7;
}

.slider-768 {
  display: none;
}

.more_features {
  position: relative;
}

.more_features .feature_row {
  display: flex;
  flex: 0 0 50%;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.more_features .feature_row .full_feature {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.more_features .feature_row .full_feature.feature_left {
  padding: 70px 70px 170px 0;
  background-color: #141114;
  text-align: right;
  align-items: flex-end;
  transform: skewX(1deg);
  margin-bottom: 15px;
}

.more_features .feature_row .full_feature.feature_left .feature_block {
  transform: skewX(-1deg);
}

.more_features .feature_row .full_feature.feature_left:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  bottom: 0;
  z-index: -1;
  background-image: url(/images/bgr_left.png?f756a795b15288f101023eedca7de956);
  background-repeat: no-repeat;
  background-position: right top;
}

.more_features .feature_row .full_feature.feature_right {
  padding: 70px 0 170px 70px;
  background-color: #19161A;
  margin-left: -6px;
  z-index: 0;
}

.more_features .feature_row .full_feature.feature_right:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  bottom: 0;
  z-index: -2;
  background-image: url(/images/bgr_right.png?ba7079806d1e49d374f2a5003e1efbe7);
  background-repeat: no-repeat;
  background-position: left top;
}

.more_features .feature_row .full_feature.feature_right .explore_all {
  display: none;
}

.more_features .feature_row .full_feature .feature_block {
  max-width: 500px;
}

.more_features .feature_row .full_feature .feature_block .big_fb_title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.86px;
  line-height: 1.3;
  padding-bottom: 12px;
}

.more_features .feature_row .full_feature .feature_block .big_feature_text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -0.38px;
  padding-bottom: 27px;
}

.more_features .feature_row .full_feature .feature_block .fb_title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.43px;
  padding: 20px 0 8px 0;
}

.more_features .feature_row .full_feature .feature_block .fb_title.title_left {
  padding-right: 45px;
}

.more_features .feature_row .full_feature .feature_block .fb_title.title_right {
  padding-left: 45px;
}

.more_features .feature_row .full_feature .feature_block .fb_title.classic {
  background: url(/images/classic.svg?92de01909877b4de6d927a1da5b33ec5) right 20px no-repeat;
}

.more_features .feature_row .full_feature .feature_block .fb_title.proof {
  background: url(/images/screenshot_proof.svg?7664ad70bc29b3447c12a7a88a2f4678) right 20px no-repeat;
}

.more_features .feature_row .full_feature .feature_block .fb_title.hybrid {
  background: url(/images/hybrid.svg?ef974c8b06b83c4a724806085f91af0f) left 13px no-repeat;
}

.more_features .feature_row .full_feature .feature_block .fb_title.f-s {
  background: url(/images/features.svg?006786e7d49cf3247f293091ee691594) left 20px no-repeat;
}

.more_features .feature_row .full_feature .feature_block .feature_text {
  font-size: 12px;
  color: #535261;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: -0.29px;
  padding: 0 0 22px 0;
}

.more_features .feature_row .full_feature .feature_block .feature_text.text_left {
  padding-right: 45px;
}

.more_features .feature_row .full_feature .feature_block .feature_text.text_right {
  padding-left: 45px;
}

.more_features .feature_row .full_feature .feature_block.bb {
  border-bottom: 2px solid #292329;
}

.more_features .explore_all {
  z-index: 10;
}

.more_features .explore_all .blue_btn {
  position: relative;
}

.more_features .explore_all .blue_btn:after {
  position: absolute;
  top: 23px;
  left: 178px;
  content: "";
  width: 5px;
  height: 9px;
}

.more_features .explore_all .blue_btn:hover:after {
  left: 181px;
  transition: all 0.3s ease 0s;
}

.advantages {
  padding: 100px 0 0 0;
}

.advantages .text {
  padding: 0 0 50px 557px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.38px;
  opacity: 0.8;
}

.advantages .advantage_row {
  background-image: url(/images/left_cube_p.png?58f5b111e0bf662da15fa7ba0321f934);
  background-repeat: no-repeat;
  background-position: -42px -45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.advantages .advantage_row .advantage {
  background-color: #141114;
  flex: 0 0 368px;
  height: 288px;
  margin: 0 5px 5px 0;
  padding: 30px 90px 30px 30px;
  cursor: default;
}

.advantages .advantage_row .advantage.advantage_h:hover {
  background-color: #19161A;
  transition: all 0.3s ease 0s;
}

.advantages .advantage_row .advantage .adv-e_title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.43px;
  padding-bottom: 15px;
}

.advantages .advantage_row .advantage .adv-e_about {
  color: #7A7580;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: -0.29px;
  padding-bottom: 50px;
}

.advantages .advantage_row .advantage.three_rows .adv-e_about {
  padding-bottom: 20px;
}

.advantages .advantage_row .advantage .adv-e_btn {
  margin-bottom: 30px;
}

.advantages .advantage_row .advantage .adv-e_btn a {
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: -0.29px;
}

.advantages .advantage_row .advantage .adv-e_btn .learn_more {
  position: relative;
}

.advantages .advantage_row .advantage .adv-e_img {
  padding-bottom: 60px;
}

.advantages .advantage_row .advantage .adv-e_img1 {
  height: 20px;
  width: 30px;
  background: url(/images/premium_quality.svg?288f04e3b5be3a228733f4505a03c9ff) no-repeat;
}

.advantages .advantage_row .advantage .adv-e_img2 {
  height: 20px;
  width: 30px;
  background: url(/images/highly_customizable.svg?391374864e3883176af28820f0d08deb) no-repeat;
}

.advantages .advantage_row .advantage .adv-e_img3 {
  height: 20px;
  width: 30px;
  background: url(/images/frequent_updates.svg?c04f727fd15a90b21f6b0f50cc3e4c54) no-repeat;
}

.advantages .advantage_row .advantage .adv-e_img4 {
  height: 20px;
  width: 30px;
  background: url(/images/trust.svg?45f801adbd9474e805dcfa100228790e) no-repeat;
}

.advantages .advantage_row .advantage .adv-e_img5 {
  height: 20px;
  width: 30px;
  background: url(/images/support.svg?1b00a6066d05e1899f7fb108a31b6196) no-repeat;
}

.advantages .advantage_row .advantage_title {
  background: transparent;
  padding: 30px 0 30px 30px;
}

.advantages .advantage_row .advantage_title h2 {
  letter-spacing: -1.1px;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 15px;
}

.advantages .advantage_row .advantage_title .adv-e_about {
  padding: 0 50px 20px 0;
}

.advantages .advantage_row .advantage_title .adv-e_btn a {
  color: #186785;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  opacity: 0.8;
}

.advantages .advantage_row .advantage_title .adv-e_btn .see_all_f {
  position: relative;
}

.advantages .advantage_row .advantage_title .adv-e_btn .see_all_f:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #186785;
}

.advantages .advantage_row .advantage_title .adv-e_btn .see_all_f:hover {
  opacity: 1;
  transition: all 0.3s ease 0s;
}

.start_vape {
  background-image: url(/images/bottom_cubeb.png?1f156db710d4dc10cf999542a5798bf2);
  background-repeat: no-repeat;
  background-position: 72px 23px;
  padding: 180px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.start_vape .start_title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.72px;
}

.start_vape .start_btn {
  margin: 40px 0;
}

.start_vape .start_btn .start_for {
  text-align: center;
  margin-top: 25px;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
  font-weight: 300;
}

footer {
  background: url(/images/footer440.png?7d3ce66b0e09528d91835ff4352fb44c) no-repeat;
  background-size: cover;
  padding: 0 0 30px 0;
}

footer .footer_logo {
  display: none;
}

footer .logo {
  display: none;
}

footer .footer_row {
  padding-top: 150px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

footer .footer_row .footer_menu {
  display: flex;
  padding: 30px 0;
  align-self: flex-end;
}

footer .footer_row .footer_menu .footer_menu_main a {
  font-size: 14px;
  line-height: 2.1;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.34px;
  position: relative;
}

footer .footer_row .footer_menu .footer_menu_sub {
  padding-left: 35px;
  margin-left: 50px;
  border-left: 1px solid #292329;
}

footer .footer_row .footer_menu .footer_menu_sub a {
  font-size: 14px;
  color: #7A7580;
  letter-spacing: -0.34px;
  font-weight: 300;
  line-height: 2.1;
  position: relative;
}

footer .footer_row .footer_info {
  padding: 40px 0 20px 0;
  align-self: flex-end;
}

footer .footer_row .footer_info a {
  font-size: 14px;
  color: #7A7580;
  letter-spacing: -0.34px;
  font-weight: 300;
  line-height: 2.1;
  position: relative;
}

footer .copyright {
  padding-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
  opacity: 0.4;
}

@media (min-width: 3800px) {
  .big_features_row {
    margin-top: -300px;
  }
}

@media (min-width: 1903px) {
  .main_block.main {
    min-height: 51vw;
  }
}

@media (max-width: 1450px) {
  .features {
    margin: 100px 0;
    max-width: 100%;
  }

  .features .guarantee {
    flex: 0 0 110px;
  }

  .features .feature {
    flex: 0 0 28%;
  }
}

@media (max-width: 1367px) {
  .header_row .logo_header {
    margin: 0;
  }

  .main_block.main {
    background-position: 70% top;
  }
}

@media (max-width: 1199px) {
  .main_block {
    background-size: cover;
  }

  .container {
    max-width: 960px;
  }

  .features .feature {
    padding: 15px 10px 20px 44px;
  }

  .advantages .text {
    padding: 0 0 50px 482px;
  }

  .advantages .advantage_row .advantage {
    flex: 1 0 368px;
  }
}

@media (min-width: 768px) {
  .explore_all {
    position: absolute;
    top: 520px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 991px) {
  .main_block {
    padding-top: 200px;
  }

  .main_block.main {
    padding-bottom: 50px;
  }

  .container {
    max-width: 680px;
  }

  .header_row .header_menu {
    flex: 0 0 70%;
  }

  .header_row .logo_header {
    margin: 0 0 0 -35px;
  }

  .features {
    display: none;
  }

  .slider-768 {
    display: block;
    padding: 0 0 30px 0;
  }

  .slider-768 .slick-track {
    display: flex;
  }

  .slider-768 .slick-track .slider_item .feature {
    width: 330px;
    background-color: #141114;
    padding: 25px 30px 50px 58px;
    margin: 0 8px 0 0;
  }

  .slider-768 .slick-track .slider_item .feature .feature_title {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.38px;
    margin-right: 8px;
    padding: 0 0 20px 35px;
  }

  .slider-768 .slick-track .slider_item .feature .feature_title.ft1 {
    background: url(/images/undetectable.svg?4c251f60269ff26dcb476029e942cae7) no-repeat;
  }

  .slider-768 .slick-track .slider_item .feature .feature_title.ft2 {
    background: url(/images/performance.svg?e21d158a66df720a5f89f8a190344747) no-repeat;
  }

  .slider-768 .slick-track .slider_item .feature .feature_title.ft3 {
    background: url(/images/ghost.svg?650b1044a5ca0ee9f362d82397554cda) no-repeat;
  }

  .slider-768 .slick-track .slider_item .feature .feature_text {
    font-size: 12px;
    letter-spacing: -0.29px;
    color: #535261;
    line-height: 1.7;
  }

  .slider-768 .slick-arrow {
    font-size: 0;
  }

  .slider-768 .slick-dots {
    display: flex;
    justify-content: flex-end;
  }

  .slider-768 .slick-dots li {
    margin: 5px;
  }

  .slider-768 .slick-dots li.slick-active button {
    color: #fff;
    background: #fff;
  }

  .slider-768 .slick-dots li button {
    font-size: 0;
    width: 5px;
    height: 5px;
    background-color: #535261;
    border-radius: 50%;
  }

  .more_features .explore_all {
    left: 23%;
    bottom: 50px;
  }

  .more_features .feature_row {
    position: relative;
    overflow: hidden;
    flex-direction: column-reverse;
  }

  .more_features .feature_row .explore_all.second_btn {
    display: block;
    top: 1140px;
    left: 59%;
    z-index: 12;
  }

  .more_features .feature_row .full_feature {
    flex: 0 0 100%;
  }

  .more_features .feature_row .full_feature.feature_left {
    margin-top: 10px;
    position: relative;
    text-align: left;
    align-items: flex-start;
    padding-left: 350px;
  }

  .more_features .feature_row .full_feature.feature_left .feature_block {
    max-width: 360px;
  }

  .more_features .feature_row .full_feature.feature_left .feature_block .fb_title.title_left {
    padding: 20px 0 8px 45px;
  }

  .more_features .feature_row .full_feature.feature_left .feature_block .fb_title.title_left.classic {
    background: url(/images/classic.svg?92de01909877b4de6d927a1da5b33ec5) left 20px no-repeat;
  }

  .more_features .feature_row .full_feature.feature_left .feature_block .fb_title.title_left.proof {
    background: url(/images/screenshot_proof.svg?7664ad70bc29b3447c12a7a88a2f4678) left 20px no-repeat;
  }

  .more_features .feature_row .feature_img_left {
    top: 582px;
    left: -530px;
  }

  .more_features .feature_row .feature_img_right {
    top: -27px;
    right: -470px;
  }

  .advantages {
    background-position: -65px 33px;
  }

  .advantages .text {
    padding: 0 90px 50px 0;
  }

  .advantages .advantage_row {
    justify-content: center;
    align-items: center;
  }

  .advantages .advantage_row .advantage_title h2 {
    font-size: 36px;
  }

  .advantages .advantage_row .advantage {
    padding: 30px 50px 30px 30px;
    flex: 0 0 330px;
  }

  .advantages .advantage_row .advantage .adv-e_img {
    padding-bottom: 50px;
  }

  .advantages .advantage_row .advantage .adv-e_about {
    padding-bottom: 30px;
  }

  .start_vape {
    padding: 120px 0 0 0;
    background-position: 60px -30px;
  }
}

body {
  background-color: #0F0D0F;
}

body.lock {
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  body.lock {
    overflow: hidden;
    position: relative;
  }

  body.lock .hover_mobile {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 85%;
    z-index: 88;
  }

  header:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #141114;
  }

  .header_row {
    position: relative;
  }

  .header_row .header_menu {
    z-index: 88;
  }

  .header_row .header_menu .menu a {
    margin: 0;
    color: #7A7580;
    opacity: 1;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.43px;
    font-weight: 400;
  }

  .header_row .header_menu .menu a.menu-767 {
    display: inline;
  }

  .header_row .header_menu .menu a.menu-767.blue_btn {
    color: #fff;
    padding: 12px 57px;
    font-size: 14px;
    transition: all 0.3s ease 0s;
    opacity: 0.8;
  }

  .header_row .header_menu .menu a.menu-767.blue_btn:hover {
    opacity: 1;
  }

  .header_row .header_menu .menu a.menu-767.login_menu {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.58px;
    padding-left: 18px;
    background: url(/images/profile.svg?e434847cd27526d2afa42a836274a48c) 0 2px no-repeat;
  }

  .header_row .header_menu .menu a.menu-767.login_menu:hover {
    background: url(/images/profile_h.svg?d812bc3b369d27651525b76dee5e6c78) 0 2px no-repeat;
    transition: all 0.3s ease 0s;
  }

  .header_row .header_menu .menu a:hover {
    color: #fff;
    transition: all 0.3s ease 0s;
  }

  .header_burger {
    display: block;
    position: relative;
    width: 16px;
    height: 14px;
  }

  .header_burger span {
    position: absolute;
    width: 10px;
    background-color: #fff;
    right: 0;
    height: 2px;
    top: 6px;
    z-index: 90;
    border-radius: 20%;
  }

  .header_burger:before,
  .header_burger:after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    right: 0;
    border-radius: 20%;
  }

  .header_burger:before {
    top: 0;
    z-index: 90;
  }

  .header_burger:after {
    bottom: 0;
    z-index: 90;
  }

  .header_burger.active:before {
    transform: rotate(45deg);
    transition: all 0.3s ease 0s;
    top: 6px;
  }

  .header_burger.active:after {
    transform: rotate(-45deg);
    bottom: 6px;
    transition: all 0.3s ease 0s;
  }

  .header_burger.active span {
    transform: scale(0);
    transition: all 0.3s ease 0s;
  }

  .header_burger &gt; .touchable {
    position: absolute;
    width: 46px;
    height: 44px;
    top: -15px;
    left: -15px;
    z-index: 1100;
  }

  .header_menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    background-color: #19161A;
    padding: 70px 0 0 55px;
    transition: all 0.3s ease 0s;
    overflow: auto;
  }

  .header_menu.active {
    right: 0;
    width: 70%;
  }

  .menu {
    flex-direction: column;
  }

  .menu li {
    margin-bottom: 35px;
  }

  .menu li a {
    margin-right: 0;
    color: #7A7580;
    font-size: 18px;
    line-height: 1.2;
  }

  .menu li a.profile {
    display: none;
  }

  .menu li a:hover {
    color: #fff;
    transition: all 0.3s ease 0s;
  }

  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  header {
    padding: 15px 0;
  }

  header .header_row .logo_header {
    margin: 0;
  }

  header .header_row .btn_buy_now {
    display: none;
  }

  .main_block.main {
    padding-top: 0;
    background: url(/images/dots.svg?cc4e6198361d39647fbe531d34afe010) 25px 0 no-repeat, url(/images/Mask_bg.svg?9810842cf23bc4238b4f4b0077b3c56d) center 250px no-repeat;
  }

  .main_title {
    padding: 0 36px;
    margin-top: 110px;
  }

  .main_title h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .main_sale {
    font-size: 42px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
  }

  .main_sale strong {
    font-size: 42px;
  }

  .subtitle {
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    padding: 0 30px;
  }

  .mb_btns {
    text-align: center;
    margin: 80px auto 60px auto;
  }

  .mb_btns .learn_more {
    display: none;
  }

  .slider-768 {
    position: relative;
    display: block;
    padding: 0 0 30px 0;
  }

  .slider-768 .slick-track {
    display: flex;
  }

  .slider-768 .slick-track .slider_item .feature {
    width: 100%;
    background-color: #141114;
    padding: 20px 30px 40px 30px;
  }

  .slider-768 .slick-track .slider_item .feature .feature_title {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.38px;
    margin-right: 8px;
    padding: 35px 0 20px 0;
  }

  .slider-768 .slick-track .slider_item .feature .feature_title.ft1 {
    background: url(/images/undetectable.svg?4c251f60269ff26dcb476029e942cae7) top no-repeat;
  }

  .slider-768 .slick-track .slider_item .feature .feature_title.ft2 {
    background: url(/images/performance.svg?e21d158a66df720a5f89f8a190344747) top no-repeat;
  }

  .slider-768 .slick-track .slider_item .feature .feature_title.ft3 {
    background: url(/images/ghost.svg?650b1044a5ca0ee9f362d82397554cda) top no-repeat;
  }

  .slider-768 .slick-track .slider_item .feature .feature_text {
    font-size: 14px;
    text-align: center;
    letter-spacing: -0.29px;
    color: #535261;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
  }

  .slider-768 .slick-arrow {
    font-size: 0;
  }

  .slider-768 .slick-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }

  .slider-768 .slick-dots li {
    margin: 5px;
  }

  .slider-768 .slick-dots li .slick-active button {
    color: #fff;
    background: #fff;
  }

  .slider-768 .slick-dots li button {
    font-size: 0;
    width: 5px;
    height: 5px;
    background-color: #535261;
    border-radius: 50%;
  }

  .more_features .classic {
    background: url(/images/classic.svg?92de01909877b4de6d927a1da5b33ec5) center 0 no-repeat;
  }

  .more_features .proof {
    background: url(/images/screenshot_proof.svg?7664ad70bc29b3447c12a7a88a2f4678) center 0 no-repeat;
  }

  .more_features .explore_all .blue_btn {
    padding: 14px 30px;
  }

  .more_features .feature_row {
    flex-direction: column;
  }

  .more_features .feature_row .explore_all {
    order: 2;
    margin: 40px auto;
  }

  .more_features .feature_row .explore_all.second_btn {
    order: 4;
  }

  .more_features .feature_row .feature_img_right {
    top: -10px;
    left: -15px;
  }

  .more_features .feature_row .feature_img_right img {
    height: 300px;
  }

  .more_features .feature_row .feature_img_left {
    top: 930px;
    left: -60px;
  }

  .more_features .feature_row .feature_img_left img {
    height: 300px;
  }

  .more_features .feature_row .full_feature {
    position: static;
  }

  .more_features .feature_row .full_feature .feature_block {
    width: 100%;
    padding: 20px 0;
    max-width: 280px;
  }

  .more_features .feature_row .full_feature .feature_block .feature_text {
    text-align: center;
  }

  .more_features .feature_row .full_feature .feature_block .feature_text.text_left {
    padding: 0;
    max-width: 280px;
    margin: 0 auto;
  }

  .more_features .feature_row .full_feature .feature_block .feature_text.text_right {
    padding: 0;
    max-width: 280px;
    margin: 0 auto;
  }

  .more_features .feature_row .full_feature .feature_block .big_fb_title {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
  }

  .more_features .feature_row .full_feature .feature_block .big_feature_text {
    max-width: 350px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    padding: 0;
  }

  .more_features .feature_row .full_feature .feature_block .fb_title {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.43px;
    padding: 45px 0 8px 0;
  }

  .more_features .feature_row .full_feature .feature_block .fb_title.title_left {
    padding-right: 0;
  }

  .more_features .feature_row .full_feature .feature_block .fb_title.title_right {
    padding-left: 0;
  }

  .more_features .feature_row .full_feature .feature_block .fb_title.hybrid {
    background: url(/images/hybrid.svg?ef974c8b06b83c4a724806085f91af0f) center 0 no-repeat;
  }

  .more_features .feature_row .full_feature .feature_block .fb_title.f-s {
    background: url(/images/features.svg?006786e7d49cf3247f293091ee691594) center 0 no-repeat;
  }

  .more_features .feature_row .full_feature.feature_right {
    order: 1;
    background-color: #0F0D0F;
    padding: 0;
    margin: 0 auto;
  }

  .more_features .feature_row .full_feature.feature_right:before {
    position: static;
  }

  .more_features .feature_row .full_feature.feature_left {
    order: 3;
    background-color: #0F0D0F;
    padding: 0;
  }

  .more_features .feature_row .full_feature.feature_left:before {
    position: static;
  }

  .more_features .feature_row .full_feature.feature_left .feature_block {
    max-width: 700px;
  }

  .more_features .feature_row .full_feature.feature_left .feature_block .fb_title.title_left {
    padding: 40px 0 8px 0;
  }

  .more_features .feature_row .full_feature.feature_left .feature_block .fb_title.title_left.classic {
    background: url(/images/classic.svg?92de01909877b4de6d927a1da5b33ec5) center 0 no-repeat;
  }

  .more_features .feature_row .full_feature.feature_left .feature_block .fb_title.title_left.proof {
    background: url(/images/screenshot_proof.svg?7664ad70bc29b3447c12a7a88a2f4678) center 0 no-repeat;
  }

  .advantages {
    padding: 60px 0 0 0;
  }

  .advantages .text {
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    padding: 0 8px;
    font-size: 14px;
  }

  .advantages .advantage_row {
    background-image: none;
    flex-direction: column;
  }

  .advantages .advantage_row .advantage_title .adv-e_about {
    padding: 0;
  }

  .advantages .advantage_row .advantage_title h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    padding: 60px 30px 20px 30px;
  }

  .advantages .advantage_row .advantage_title .adv-e_btn {
    text-align: center;
  }

  .advantages .advantage_row .advantage {
    text-align: center;
    flex: 0 0 100%;
    padding: 30px 40px 0 40px;
    max-width: 400px;
  }

  .advantages .advantage_row .advantage .adv-e_img {
    margin: auto;
  }

  .start_vape {
    background-image: none;
    padding: 70px 0 0 0;
    display: flex;
    flex-direction: column;
  }

  .start_vape .start_title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
  }

  .start_vape .start_btn {
    margin: 70px auto 40px auto;
  }

  .start_vape .start_btn .start_for {
    text-align: center;
    margin-top: 40px;
  }

  footer {
    height: 200px;
    padding: 70px 0 15px 0;
  }

  footer .footer_logo {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  footer .footer_logo img {
    width: 58px;
    height: 16px;
  }

  footer .footer_row {
    padding-top: 0;
    display: block;
  }

  footer .footer_row .footer_menu {
    display: none;
  }

  footer .footer_row .footer_info {
    justify-content: center;
    display: flex;
    padding-top: 0;
    padding-bottom: 10px;
  }

  footer .footer_row .footer_info a {
    font-size: 12px;
    color: #7A7580;
    letter-spacing: -0.34px;
    font-weight: 300;
    line-height: 2.1;
    margin-right: 12px;
  }

  footer .copyright {
    max-width: 248px;
    margin: 0px auto;
    padding-top: 0px;
    text-align: center;
    font-size: 12px;
    color: #7A7580;
    letter-spacing: -0.29px;
    opacity: 0.4;
  }
}

@media (max-width: 350px) {
  .advantages .advantage_row .advantage {
    padding: 10px 10px 0 10px;
  }
}

/*************************second footer **********************/

footer .logo {
  transition: ease all 0.3s;
}

footer .logo:hover {
  transform: scale(1.05);
}

footer.i_footer {
  background: #0A090A;
  height: auto;
  padding: 40px 0 24px 0;
}

footer.i_footer .logo {
  margin-left: -40px;
  display: block;
}

.i_footer_row {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.i_footer_menu_main ul {
  display: flex;
  flex-direction: row;
}

.i_footer_menu_main ul li {
  margin-right: 30px;
}

.i_footer_menu_main a {
  font-size: 12px;
  line-height: 2.1;
  font-weight: 300;
  color: #7A7580;
  letter-spacing: -0.34px;
  transition: ease all 0.3s;
}

.i_footer_menu_main a:hover {
  color: #fff;
}

.i_footer_menu_sub {
  display: none;
}

.i_footer_info ul {
  display: flex;
  flex-direction: row;
}

.i_footer_info a {
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.34px;
  font-weight: 300;
  line-height: 2.1;
  margin-left: 30px;
  transition: ease all 0.3s;
}

.i_footer_info a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .i_footer_menu_main {
    display: none;
  }

  .i_footer_row {
    flex-direction: column;
  }

  footer.i_footer {
    padding: 40px 0 24px 0;
  }

  footer.i_footer .logo {
    display: block;
    margin: 0 auto 30px auto;
    text-align: center;
  }

  footer.i_footer .i_footer_info {
    margin: 0 auto;
  }

  footer.i_footer .i_footer_info a {
    margin: 15px;
  }

  footer.i_footer .copyright {
    padding-top: 10px;
  }
}

@media (max-width: 767px) {
  footer.i_footer .logo {
    display: none;
  }
}

.fit-game_block {
  background: url(/images/hero_bg.svg?cf38949441bb0983fc13a38134d0267a) center 0 no-repeat;
  background-size: 100%;
  padding: 110px 0 60px 0;
}

.fit-game_title {
  margin-top: 75px;
}

.fit-game_title .fit-game1 h1 {
  font-size: 72px;
  letter-spacing: -0.72px;
  line-height: 1.3;
  background: linear-gradient(45deg, #316AA4 33%, #7B6BB6 50%, #CE6CC9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #316AA4;
  font-weight: 600;
  text-align: center;
}

.fit-game_title .fit-game2 h1 {
  font-size: 72px;
  letter-spacing: -0.72px;
  line-height: 1.3;
  background: linear-gradient(45deg, #316AA4 33%, #3E7C9C 50%, #5BA688);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #316AA4;
  font-weight: 600;
  text-align: center;
}

.fit-game_block .subtitle {
  text-align: center;
  margin: 25px auto 60px auto;
}

.pricing_choice {
  display: flex;
}

.vape_block {
  flex: 0 0 50%;
}

.grey_block {
  padding: 50px 32px 25px 32px;
  background-color: #141114;
}

.vape_v4 {
  margin-right: 8px;
}

.v_about {
  padding: 30px 0 20px 0;
  font-size: 14px;
  font-weight: 300;
  color: #7A7580;
  letter-spacing: -0.34px;
  line-height: 1.7;
  border-bottom: 1px solid #292329;
}

.v_points {
  padding: 25px 0 10px 0;
}

.v_points li {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: -0.38px;
  line-height: 1.6;
  padding-left: 30px;
  background: url(/images/check_pr.svg?9c127758bb03720e971bba54b7382d49) 10px 8px no-repeat;
}

.v_buy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #0A090A;
  padding: 24px 24px 36px 32px;
}

.v_buy .v_price {
  padding-top: 10px;
  flex: 1 0 70%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.38px;
  display: flex;
}

.v_buy .v_price span.s_price {
  margin-right: 8px;
  font-size: 38px;
  font-family: "Avenir Next LT Pro";
  letter-spacing: -0.91px;
  font-weight: 600;
}

.v_buy .btn_sub {
  position: relative;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.29px;
  opacity: 0.8;
  margin-bottom: 50px;
}

.v_buy .btn_sub:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #186785;
}

.v_buy .btn_sub:hover {
  opacity: 1;
  transition: all 0.3s ease 0s;
}

.v_buy .btn_sub.blue_tr:after {
  opacity: 1;
  bottom: 7px;
}

.v_buy .price_description {
  padding: 0 0 28px 0;
  flex: 1 0 100%;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
}

.v_buy .blue_btn {
  padding: 17px 74px;
}

.v_buy .learn_more {
  flex: 1 1 50%;
  margin: 16px 0 0 40px;
  color: #fff;
  letter-spacing: -0.38px;
  font-size: 16px;
  position: relative;
  display: inline-block;
}

.v_buy .learn_more:after {
  position: absolute;
  top: 4px;
  left: 146px;
  content: "";
  background: url(/images/arrow_right_white.svg?4cc023a10ed641abbea20be505554d68) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
}

.v_buy .learn_more:hover:after {
  left: 148px;
  transition: all 0.3s ease 0s;
}

.v_buy .learn_more.underline_blue:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 57%;
  height: 1px;
  border-bottom: 1px dotted #186785;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  transform-origin: left;
  opacity: 0.8;
}

.v_buy .learn_more.underline_blue:hover:before {
  transform: scale(1);
  width: 60%;
  opacity: 1;
}

.vape_lite .grey_block {
  padding-top: 44px;
}

.vape_lite .v_about {
  padding: 21px 0 20px 0;
}

.vape_lite li {
  background: url(/images/check_gblue.svg?1d5c9021a8594a14263526c53fe602f2) 10px 8px no-repeat;
}

.pricing_questions {
  padding-bottom: 250px;
  flex: 1 1 auto;
  background: url(/images/bg_pr2.png?3cffbd806babb8fb7f550fc92f4fc6e2) 0 0 no-repeat;
  background-size: 840px 700px;
}

.border {
  border-bottom: 1px solid #292329;
  height: 40px;
}

.questions_row {
  display: flex;
  justify-content: space-between;
  padding: 220px 0 140px 0;
}

.questions_title {
  flex: 0 0 36%;
  padding: 100px 0 0 0;
}

.questions_title h3 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.86px;
  line-height: 1.3;
}

.questions_block {
  flex: 0 0 64%;
  padding-left: 75px;
}

.q_small_title {
  padding: 40px 0 20px 0;
  color: #7A7580;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: -0.34px;
}

.question_body {
  border-bottom: 1px dotted #292329;
}

.question {
  padding: 20px 0 15px 0;
  position: relative;
}

.question_text {
  font-size: 18px;
  letter-spacing: -0.43px;
  font-weight: 400;
  line-height: 1.6;
}

.button {
  margin: 0 12px 0 0;
  position: absolute;
  width: 10px;
  height: 10px;
  right: 1px;
  top: 27px;
}

.button .question_btn {
  display: inline-block;
  background: #535261;
  height: 8px;
  width: 2px;
  position: relative;
}

.button .question_btn:after {
  content: "";
  height: 2px;
  width: 8px;
  background: #535261;
  position: absolute;
  left: -3px;
  top: 3px;
}

.button .question_btn.active {
  width: 0;
}

.button .question_btn.active:after {
  background: #fff;
}

.answer {
  display: none;
  padding: 20px 0 0 0;
  font-size: 14px;
  color: #7A7580;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -0.34px;
}

.answer p {
  margin-bottom: 30px;
}

.question_contact {
  padding-top: 50px;
  display: flex;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.34px;
}

.question_contact .contact_us {
  color: #186785;
  opacity: 0.9;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.question_contact .contact_us:hover {
  opacity: 1;
}

.v_price_desc {
  display: flex;
  font-size: 16px;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-height: 46px;
  align-self: flex-start;
}

.v_price_desc .v_price_old {
  display: block;
  color: #00787a;
  font-weight: 700;
}

.v_price_desc .v_price_old_line_through {
  color: #00a2ff;
  text-decoration: line-through;
}

.buy-app .variation__price .v_price_desc .v_price_old {
  color: #ffffff;
  font-weight: 400;
}

.buy-app .variation__price .v_price_desc .v_price_old_line_through {
  color: #ffffff;
}

.buy-app .variation__price.v_sale {
  font-size: 22px;
}

.buy-app .on-pause {
  font-size: 12px;
  line-height: 14px;
}

.popup_wrapper {
  display: block;
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s, z-index 0.1s;
}

.popup_wrapper.active {
  z-index: 999;
  opacity: 1;
}

.popup_close {
  position: absolute;
  top: 7px;
  right: 5px;
  width: 15px;
  height: 15px;
}

.popup_close span {
  width: 15px;
  height: 2px;
  top: 5px;
  background-color: #292329;
  display: block;
  transform: rotate(45deg);
  position: absolute;
  transition: 0.3s;
}

.popup_close span:nth-child(1) {
  transform: rotate(135deg);
}

.popup_close:hover span {
  background-color: #ffffff;
}

.code_form {
  max-width: 360px;
  width: 100%;
  border: 2px solid #292329;
  position: fixed;
  font-family: "Poppins", sans-serif;
  padding: 25px;
  text-align: center;
  background-color: #0A090A;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.code_form_title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.popup_wrapper button {
  padding: 10px 40px;
}

.mb_15 {
  margin-bottom: 15px !important;
}

@media (min-width: 2000px) {
  .pricing_questions {
    background-position: 15% 0;
  }
}

@media (min-width: 3000px) {
  .pricing_questions {
    background-position: 30% 0;
  }
}

@media (max-width: 1024px) {
  .pricing_questions {
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .pricing_choice {
    flex-direction: column;
    align-items: center;
  }

  .vape_block {
    max-width: 570px;
    margin: 0 auto 24px auto;
  }

  .vape_block.vape_lite {
    margin-bottom: 0;
  }

  .v_buy .learn_more.underline_blue:before {
    width: 150px;
  }

  .v_buy .learn_more.underline_blue:hover:before {
    transform: scale(1);
    width: 153px;
    opacity: 1;
  }

  .questions_row {
    flex-direction: column;
    padding-top: 0;
  }

  .fit-game_block {
    padding-bottom: 0;
  }

  .questions_title h3 {
    max-width: 450px;
  }

  .questions_block {
    padding-left: 0;
  }

  .pricing_questions {
    padding-bottom: 0;
  }

  .border {
    height: 75px;
  }
}

@media (max-width: 767px) {
  .fit-game_block {
    padding-top: 60px;
    background-position: center -100px;
  }

  .fit-game_title {
    margin-top: 80px;
  }

  .fit-game_title .fit-game1 h1,
  .fit-game_title .fit-game2 h1 {
    font-size: 42px;
    letter-spacing: -1.01px;
  }

  .subtitle {
    max-width: 100%;
    margin-bottom: 65px;
  }

  .vape_block {
    max-width: 100%;
  }

  .grey_block {
    padding: 30px 20px;
  }

  .v_buy {
    padding: 20px 15px 25px 25px;
  }

  .v_buy .blue_btn {
    flex: 0 0 120px;
    padding: 17px 30px;
  }

  .v_buy .v_price {
    padding-top: 0;
    flex: 1 1 55%;
  }

  .v_buy .v_price span.delete {
    display: none;
  }

  .v_buy .btn_sub {
    margin-bottom: 40px;
  }

  .v_buy .learn_more {
    flex: 1 1 120px;
    font-size: 14px;
  }

  .v_buy .learn_more:after {
    left: 128px;
  }

  .v_buy .learn_more:hover:after {
    left: 130px;
  }

  .v_buy .learn_more.underline_blue:before {
    width: 130px;
  }

  .v_buy .learn_more.underline_blue:hover:before {
    transform: scale(1);
    width: 135px;
    opacity: 1;
  }

  .pricing_questions {
    background: none;
  }

  .questions_row {
    padding-bottom: 50px;
  }

  .questions_title {
    padding-top: 0;
  }

  .questions_block {
    padding: 0 8px;
  }

  .question_text {
    font-weight: 300;
    padding-right: 40px;
    font-size: 14px;
  }

  .question_contact {
    padding-top: 20px;
    font-weight: 300;
  }

  .question_contact .contact_us {
    font-size: 16px;
    margin-left: 12px;
  }

  .q_small_title {
    padding: 30px 0 0 0;
  }
}

/* Dispount code popup */

.discount-popup-form-wrapper {
  max-width: 360px;
  margin-top: 60px;
}

.discount-popup-form-wrapper * {
  transition: all 0.3s ease;
}

.discount-popup-form-wrapper .submit-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}

.discount-popup-form-wrapper .submit-container button {
  background: #186785;
  max-width: 96px;
  width: 100%;
  height: 40px;
  color: #fff;
}

.discount-popup-form-wrapper .submit-container button:hover {
  background: #1E80A6;
}

.discount-popup-form-input-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(122, 117, 128, 0.4);
}

.discount-popup-form-input-container input {
  width: 100%;
  height: 32px;
  background: transparent;
  color: #7A7580;
  font-size: 14px;
  letter-spacing: -0.34px;
  font-weight: 300;
  padding: 5px;
}

.discount-popup-form-input-container input.is-invalid:not(:hover):not(:focus) {
  box-shadow: 0 0 6px #FF564F;
}

.discount-popup-form-input-container input.invalid {
  border: 1px solid #FF564F;
  box-shadow: 0px 0px 8px #FF564F;
}

.compare_block {
  background: url(/images/hero_bg.svg?cf38949441bb0983fc13a38134d0267a) center 0 no-repeat;
  background-size: 100%;
  padding: 110px 0 100px 0;
}

.compare_block .main_title {
  margin: 100px auto;
}

.compare_block .main_title h1 {
  text-align: center;
}

.compare_choice {
  display: flex;
}

.title_vape_v4 {
  background: url(/images/graphicb.png?07e4ee29109a2e8c2384fa04d3a0381b) no-repeat;
  background-size: cover;
  padding: 50px 32px 25px 32px;
}

.title_vape_lite {
  background: url(/images/graphic.png?434759a0384190970dbd935782abbf2c) no-repeat;
  padding: 44px 32px 25px 32px;
  background-size: cover;
}

.title_v .v_logo {
  margin-bottom: 70px;
}

.title_v .sub_title {
  font-size: 24px;
  letter-spacing: -0.58px;
  line-height: 1.3;
  max-width: 224px;
}

.title_vape_v4 .v_logo {
  margin-bottom: 83px;
}

.compare_points {
  padding: 18px 53px 48px 80px;
  background: #141114;
}

.point_body {
  font-weight: 300;
  line-height: 1.6;
}

.point {
  padding: 22px 0;
  position: relative;
  border-bottom: 1px dotted #292329;
}

.point.opened .point-slider {
  position: absolute;
  width: 0;
  border-bottom: 1px dotted #186785;
  bottom: -1px;
}

.point .button {
  margin: 0;
  position: absolute;
  width: 10px;
  height: 10px;
  left: -28px;
  top: 25px;
}

.point .button .point_btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  background: #535261;
  height: 8px;
  width: 2px;
  top: -3px;
  left: 0;
}

.point .button .point_btn:hover {
  background: #fff;
}

.point .button .point_btn:hover:after {
  background: #fff;
}

.point .button .point_btn:after {
  content: "";
  height: 2px;
  width: 8px;
  background: #535261;
  position: absolute;
  top: 3px;
  left: -3px;
}

.point .button .point_btn.active {
  width: 0;
}

.point .button .point_btn.active:after {
  background: #fff;
}

.last_point {
  border-bottom: none;
}

.point_text {
  cursor: pointer;
  font-size: 16px;
  letter-spacing: -0.38px;
}

.point_answer {
  display: none;
  padding: 16px 0 2px 0;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
}

.features-included {
  padding-bottom: 160px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}

.features-included h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.58px;
  padding: 0 0 40px 60px;
}

.features-included .img {
  flex: 0 0 30%;
  margin-right: 50px;
}

.features-included .img img {
  width: 100%;
  height: auto;
}

.features-included .points_block {
  background: #141114;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

.features-included .points {
  width: 100%;
}

.features-included .points .question_body.last-child {
  border: none;
}

.features-included .points .question_body .question {
  padding-left: 40px;
}

.features-included .points .question_body .question .question_text {
  letter-spacing: -0.38px;
  font-weight: 300;
  color: #7A7580;
}

.features-included .points .question_body .question .question_text.active {
  color: #fff;
}

.features-included .points .question_body .question .button {
  left: 15px;
}

.features-included.second {
  padding-top: 0px;
}

.compare_title h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.1px;
  text-align: center;
  margin: 0 auto;
}

.compare_subtitle h5 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.58px;
  text-align: center;
  margin-bottom: 60px;
}

.start_btn {
  text-align: center;
}

.table {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}

.table_menu {
  flex: 0 0 200px;
  border-right: 1px solid #292329;
  padding-right: 24px;
  max-height: 230px;
  position: sticky;
  top: calc(50% - 120px);
}

.table_btn .table_button {
  display: block;
  color: #7A7580;
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: -0.38px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.table_btn .table_button.active {
  color: #fff;
  background: url(/images/arrow_right.svg?956cb453cb8f905c6574d844594aed2e) right 14px/9px 8px no-repeat;
  transform: translateX(10px);
}

.table_btn:hover {
  cursor: pointer;
}

.table_btn:hover .table_button {
  color: #fff;
  cursor: pointer;
  transform: translateX(10px);
}

.table_body {
  flex: 1 1 837px;
}

.table_overall {
  border-top: 4px solid #292329;
  background-color: #141114;
  margin: 0 0 0 50px;
  display: block;
}

.heading {
  font-weight: 500;
  font-size: 14px;
  justify-content: space-between;
  text-transform: uppercase;
  border-bottom: 1px solid #292329;
}

.heading .table_lite {
  padding-right: 126px;
}

.heading .table_v4 {
  padding-left: 50px;
}

.name_feature {
  flex: 0 0 228px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.43px;
  margin-bottom: auto;
}

.nf_about {
  color: #7A7580;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.34px;
  font-weight: 300;
}

.table_row {
  padding: 22px 40px 22px 28px;
  display: flex;
  align-items: center;
}

.table_row.second_row {
  padding-bottom: 50px;
  border-bottom: 1px solid #292329;
}

.table_row.odd {
  background-color: #120F12;
}

.sub_feature {
  font-size: 14px;
  flex: 0 0 228px;
  letter-spacing: -0.34px;
  font-weight: 300;
}

.sub_info_feature .s_i:hover + .sub_info_info {
  display: block;
}

.sub_info_info {
  display: none;
  position: absolute;
  max-width: 400px;
  background-color: #19161A;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.29px;
  color: #7A7580;
  font-weight: 300;
  background-image: url(/images/sub_info_h.svg?1f19bf471754f93e8ca3f3d3d4076ba6);
  background-repeat: no-repeat;
  background-position: 12px 50%;
  padding: 10px 20px 10px 35px;
  left: -60px;
  bottom: 28px;
  width: -moz-max-content;
  width: max-content;
  background-size: 12px 12px;
  border-radius: 3px;
}

.sub_info_info:after {
  content: "";
  display: block;
  position: absolute;
  border: 10px solid transparent;
  border-top: 5px solid #19161A;
  top: 100%;
  left: 57px;
}

.sub_info_feature {
  flex: 0 0 150px;
  position: relative;
}

.sub_info_feature img {
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sub_info_feature img:hover {
  opacity: 1;
  cursor: pointer;
}

.artwork {
  display: none;
  width: 16px;
  height: 14px;
  background: url(/images/photos.svg?b9f631e63f26c91094a5587132326f5f) no-repeat;
  opacity: 0.8;
  transition: all ease 0.3s;
  position: relative;
  cursor: pointer;
}

.artwork:hover {
  opacity: 1;
}

.artwork.active .img_art {
  display: block;
}

.artwork.active .zoom {
  display: block;
}

.artwork .img_art {
  opacity: 1;
  display: none;
  position: absolute;
  background: url(/images/artimg1.png?d4d532ef00bf1af5aa7edea2d3e5d90e) no-repeat;
  background-size: cover;
  width: 232px;
  height: 152px;
  bottom: 28px;
  left: -16px;
  border: 3px solid #19161A;
}

.artwork .img_art:after {
  content: "";
  display: block;
  position: absolute;
  border: 10px solid transparent;
  border-top: 5px solid #19161A;
  top: 102%;
  left: 12px;
}

.artwork .zoom {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 188px;
  transition: all 0.3s ease 0.3s;
}

.artwork .zoom:hover img {
  width: 18px;
  height: 18px;
}

.mark.mark_v4 {
  flex: 0 0 20px;
}

.mark.mark_lite {
  margin-left: 254px;
}

.mark.mark_lite1 {
  margin: 0 8px 0 254px;
}

.table_empty {
  height: 40px;
  background: #0F0D0F;
}

.feature_table .start_vape {
  background: none;
}

@media (min-width: 2400px) {
  .compare_block,
  .fit-game_block {
    background-position: 0 51%;
  }
}

@media (max-width: 1199px) {
  .heading .table_v4 {
    padding-left: 130px;
  }

  .heading .table_lite {
    padding-right: 50px;
  }

  .mark.mark_lite1,
  .mark.mark_lite {
    margin-left: 180px;
  }
}

@media (max-width: 991px) {
  .compare_choice {
    flex-direction: column;
    align-items: center;
  }

  .compare_block {
    padding-bottom: 50px;
  }

  .vape_block {
    width: 570px;
    margin: 0 0 24px 0;
  }

  .vape_v4 {
    margin-right: 0;
  }

  .table_menu {
    display: none;
  }

  .table_body {
    flex: 0 0 648px;
    margin: 0 auto;
  }

  .table_overall {
    margin-left: 0;
  }

  .heading .table_lite {
    padding-right: 55px;
  }

  .heading .table_v4 {
    padding-left: 200px;
  }

  .mark.mark_lite1 {
    margin-left: 110px;
  }

  .mark.mark_lite {
    margin-left: 110px;
  }

  .artwork .img_art {
    width: 200px;
    height: 130px;
    left: -60px;
  }

  .artwork .zoom {
    left: 110px;
  }
}

@media (min-width: 768px) {
  .wrapper {
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .compare_block {
    padding-top: 57px;
    background-position: center -210px;
  }

  .compare_block .main_title {
    margin: 60px auto;
  }

  .compare_block .main_title h1 {
    max-width: 300px;
    margin: 0 auto;
  }

  .vape_block {
    width: 335px;
  }

  .title_vape_v4 {
    padding: 35px 30px 20px 24px;
  }

  .title_vape_v4 .v_logo {
    margin-bottom: 20px;
  }

  .features-included {
    padding-bottom: 60px;
  }

  .features-included h5 {
    padding: 0 0 30px 0;
    text-align: center;
    font-size: 18px;
  }

  .features-included .points_block {
    padding: 10px 20px;
    flex-direction: column;
    max-width: 335px;
    margin: 0 auto;
  }

  .features-included .img img {
    height: 200px;
    width: auto;
    padding: 20px 0;
  }

  .title_v .sub_title {
    font-size: 16px;
  }

  .title_v .v_logo {
    margin-bottom: 20px;
  }

  .compare_points {
    padding: 6px 20px 12px 40px;
  }

  .point_text {
    font-size: 14px;
    letter-spacing: -0.34px;
  }

  .point_answer {
    font-size: 14px;
  }

  .point .button {
    top: 24px;
    left: -20px;
  }

  .title_vape_lite {
    padding: 25px 30px 20px 24px;
  }

  .compare_title h2 {
    font-size: 30px;
  }

  .compare_subtitle h5 {
    font-size: 18px;
  }

  .table {
    margin-top: 89px;
  }

  .table_body {
    flex: 0 0 335px;
  }

  .heading .table_lite {
    padding-right: 20px;
  }

  .heading .table_v4 {
    padding-left: 50px;
  }

  .table_row {
    padding: 15px;
  }

  .table_row.second_row {
    flex-direction: column;
    padding-bottom: 12px;
    align-items: flex-start;
  }

  .table_empty {
    height: 24px;
  }

  .name_feature {
    flex: 0 0 100%;
  }

  .sub_feature {
    flex: 0 0 120px;
  }

  .sub_info_feature {
    flex: 0 0 60px;
  }

  .mark.mark_lite {
    margin-left: 67px;
  }

  .mark.mark_lite1 {
    margin-left: 67px;
  }

  .sub_info_info {
    left: -120px;
    bottom: 22px;
    max-width: 300px;
  }

  .sub_info_info:after {
    left: 118px;
  }

  .artwork .img_art {
    width: 160px;
    height: 100px;
    left: -125px;
    bottom: 23px;
  }

  .artwork .zoom {
    left: 6px;
    bottom: 35px;
  }

  .start_vape .start_title {
    margin: 0 auto;
    max-width: 300px;
  }

  .start_vape .start_btn {
    margin-bottom: 20px;
  }
}

.contact_main {
  padding: 114px 0 240px 0;
  flex: 1 1 auto;
}

.contact_row {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
}

.contact_block {
  background: url(/images/dots_c.svg?9ef2c36f0ac74a31a4dd1ee13ab23030) 200px 0 no-repeat;
  flex: 0 0 67%;
  padding-right: 100px;
}

.contact_block .subtitle {
  max-width: 500px;
  margin-bottom: 40px;
}

.contact_block .sub_notification {
  background-position: 20px 24px;
  background-repeat: no-repeat;
  border-radius: 3px;
  color: #000;
  width: 100%;
  padding: 18px 30px 22px 50px;
  letter-spacing: -0.34px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.contact_block .sub_notification--warning {
  background-color: #FFB8B8;
  background-image: url(/images/note.svg?861b14a92b6bb89462494d39eda05820);
}

.contact_block .sub_notification--success {
  background-image: url(/images/check.svg?af8d91a492fad4f1c8d27b555ce55377);
  background-repeat: no-repeat;
  background-position: 20px 23px;
  background-color: #5BA688;
}

.contact_block .sub_notification--error {
  background-image: url(/images/info.svg?ce2e32e8fdfcd16bc54e292e56b92838);
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: 20px 23px;
  background-color: #FF564F;
}

.contact_block .sub_notification--info {
  background-image: url(/images/announce.svg?75968e59c5ee91ea38796b2f31315431);
  background-repeat: no-repeat;
  background-position: 20px 23px;
  background-color: #186785;
}

h2 {
  font-size: 46px;
  max-width: 480px;
  letter-spacing: -1.1px;
  line-height: 1.2;
}

.contact_asked {
  flex: 0 0 33%;
  background-color: #19161A;
  background-image: url(/images/corner.svg?aa9359519243b03ab6b00f907a31a9df);
  background-position: right top;
  background-repeat: no-repeat;
  padding: 50px 40px;
  height: -moz-fit-content;
  height: fit-content;
}

.table_title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.72px;
  padding-right: 55px;
}

.question_body .button {
  margin-right: 0;
  top: 23px;
}

.question_body .question_text {
  font-size: 16px;
  padding-right: 20px;
  cursor: pointer;
}

.question_body .answer {
  font-size: 12px;
}

.question_body .answer p {
  margin-bottom: 15px;
}

.question_body .answer .answer_title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.72px;
  color: #fff;
  margin-bottom: 20px;
}

.question_body .answer li {
  list-style: square;
  margin-left: 20px;
  line-height: 1.7;
}

.question_body .answer li:last-child {
  margin-bottom: 10px;
}

.question_body .answer a {
  color: #186785;
}

.contact_form .form_c {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.contact_form .form_c::-moz-placeholder {
  font-size: 14px;
  color: #7A7580;
}

.contact_form .form_c::placeholder {
  font-size: 14px;
  color: #7A7580;
}

.contact_form .form_c .input_email {
  min-width: 317px;
  padding: 0 0 10px 8px;
  background-color: #0F0D0F;
  color: #fff;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #241E24;
}

.contact_form .form_c .prompt {
  font-size: 12px;
  color: #7A7580;
  width: 100%;
  margin-bottom: 90px;
}

.contact_form textarea {
  width: 100%;
  background-color: #0F0D0F;
  border-bottom: 1px solid #241E24;
  color: #fff;
  cursor: pointer;
}

.contact_form .border_hover {
  position: relative;
  margin: 15px 0;
}

.contact_form .border_hover.textarea {
  width: 100%;
}

.contact_form .border_hover.textarea:before {
  bottom: 2px;
}

.contact_form .border_hover.subject:before {
  bottom: 1px;
}

.contact_form .border_hover:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #535261;
  transform: scale(0);
  transition: transform 0.6s ease-in-out;
  transform-origin: left;
  opacity: 0.5;
  z-index: 222;
}

.contact_form .border_hover:hover:before {
  transform: scale(1);
  width: 100%;
  opacity: 1;
}

.subject {
  width: 49%;
}

.subject .select {
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #292329;
}

.subject .new-select {
  position: relative;
  padding: 2px 15px 13px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.subject .new-select__list {
  position: absolute;
  top: 41px;
  left: 0;
  cursor: pointer;
  width: 100%;
  z-index: 2;
  background: #141114;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.subject .new-select__list.on {
  display: block;
}

.subject .new-select__item span {
  display: block;
  padding: 10px 20px;
  color: #7A7580;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: -0.29px;
}

.subject .new-select__item span:hover {
  color: #fff;
  background-color: #19161A;
}

.subject .new-select:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  top: 2px;
  background: url(/images/down_arrow.svg?077c0bbec59763f7640e9d9a5ba085b6) no-repeat center;
  transition: all 0.3s ease-in-out;
  transform: rotate(0deg);
}

.subject .new-select.on:after {
  transform: rotate(180deg);
}

.sub_info--error {
  display: none;
  position: absolute;
  background-color: #FF564F;
  font-size: 12px;
  letter-spacing: -0.29px;
  color: #000;
  font-weight: 300;
  background-image: url(/images/s_ib.png?a10035db21d80799f9ca827f103e508f);
  background-repeat: no-repeat;
  background-position: 12px 50%;
  padding: 8px 20px 9px 30px;
  left: 45px;
  top: 46px;
  background-size: 12px 12px;
  border-radius: 3px;
}

.sub_info--error.active {
  display: block;
}

.sub_info--error span {
  position: relative;
}

.sub_info--error span:after {
  content: "";
  display: block;
  position: absolute;
  border: 10px solid transparent;
  border-bottom: 5px solid #FF564F;
  bottom: 21px;
  left: 27px;
}

@media (max-width: 1199px) {
  .subject {
    width: 40%;
  }
}

@media (max-width: 991px) {
  .contact_main {
    padding-bottom: 50px;
  }

  .contact_row {
    flex-direction: column;
  }

  .contact_form {
    margin-bottom: 100px;
  }

  .contact_block {
    padding-right: 0;
  }

  .contact_asked {
    width: 650px;
    flex: 0 0 100%;
    margin: 0 auto;
  }

  .table_title {
    max-width: 305px;
  }

  .subject {
    width: 49%;
  }
}

@media (max-width: 767px) {
  .cf-row {
    width: 100%;
  }

  .cf-row .input_email {
    width: 100%;
    max-width: 100%;
  }

  .contact_main {
    padding-top: 53px;
  }

  h2 {
    font-size: 30px;
  }

  .contact_block {
    border-bottom: 1px solid #292329;
  }

  .contact_block .subtitle {
    margin: 20px 0 40px 0;
    text-align: left;
    padding: 0;
    font-weight: 300;
    font-size: 16px;
  }

  .notification {
    font-size: 12px;
    margin-bottom: 70px;
  }

  .sub_notification--error {
    background-position: 20px 50%;
  }

  .contact_form {
    margin-bottom: 70px;
  }

  .contact_form .form_c .enter {
    width: 100%;
  }

  .contact_form .form_c .prompt {
    margin-bottom: 60px;
    padding-right: 20px;
  }

  .subject {
    width: 100%;
    margin: 10px 0 50px 0;
  }

  .subject .sub_help li {
    margin-bottom: 0;
  }

  .contact_asked {
    padding: 30px 20px 50px 20px;
    width: 100%;
    margin: 40px 0 0 0;
  }
}

.changelog_main {
  padding: 120px 0 300px 0;
}

.changelog_main .change_title {
  margin: 90px 0 140px 0;
}

.changelog_main h2 {
  margin: 0 auto;
  text-align: center;
}

.timeline_main {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}

.main_line_row {
  display: flex;
  height: 20px;
  align-items: center;
  margin-left: -4.5px;
}

.line_point {
  border: 1px solid #186785;
  border-radius: 50%;
  flex: 0 0 10px;
  height: 10px;
  margin-right: 35px;
}

.date {
  flex: 0 0 150px;
}

.timeago {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
}

.change_name {
  font-size: 18px;
  letter-spacing: -0.43px;
}

.change_block {
  border-left: 1px solid #19161A;
  padding: 30px 0 15px 190px;
}

.change_theme {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.29px;
  padding: 5px 8px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.bug_fixes_tag {
  background-color: #FF564F;
}

.improvements_tag {
  background-color: #FFA054;
}

.features_tag {
  background-color: #5BA688;
}

.other_tag {
  background-color: #EE609C;
}

.change_about {
  line-height: 1.7;
  font-size: 14px;
  letter-spacing: -0.34px;
  color: #7A7580;
  margin: 15px 0 20px 0;
}

.change_points {
  color: #7A7580;
}

.change_points li {
  margin-bottom: 20px;
  line-height: 1.7;
}

.change_points li li {
  margin-left: 40px;
  list-style: circle;
}

@media (max-width: 991px) {
  .changelog_main {
    padding: 80px 0 180px 0;
  }

  .changelog_main .change_title {
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .changelog_main {
    padding: 50px 0 30px 0;
  }

  .changelog_main .change_title {
    margin: 50px 0;
  }

  .change_block {
    padding-left: 0;
    padding-right: 30px;
    border: none;
  }

  .main_line_row {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin-left: 0;
  }

  .line_point {
    display: none;
  }

  .date {
    order: 2;
    flex: 0 0 0;
  }

  .change_name {
    margin-bottom: 10px;
    order: 1;
  }

  .timeago {
    font-size: 14px;
  }
}

.main_my-account {
  padding: 117px 0 200px 0;
}

.main_my-account.p-products {
  padding-bottom: 0;
}

.main_my-account .block1 {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.main_my-account #other_downloads {
  margin-bottom: 160px;
}

.hidden {
  display: none;
}

.my_title {
  margin: 15px 0 0 0;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.43px;
}

.my_sub {
  font-size: 12px;
  color: #7A7580;
  line-height: 1.8;
  letter-spacing: -0.29px;
}

.my_sub_error {
  color: #FF564F;
}

.btn_log {
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 20px;
  font-weight: 300;
  border: 1px solid #292329;
  margin: 30px auto 0 auto;
  border-radius: 1px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.btn_log:hover {
  border: 1px solid #535261;
}

#acc_tab_logout {
  min-width: 60px;
  padding-top: 10px;
}

#acc_tab_logout img {
  height: 13px;
  margin-top: 2px;
}

.btn_logout {
  font-size: 12px;
  padding: 0 0 0 7px;
  font-weight: 300;
  border-width: 0;
  margin: 0;
  cursor: pointer;
  color: #7A7580;
  background: transparent;
  transition: all 0.3s ease;
}

.grey_button {
  display: inline-block;
  font-size: 12px;
  padding: 12px 20px;
  font-weight: 300;
  border: 1px solid #292329;
  margin: 30px auto 0 auto;
  border-radius: 1px;
  cursor: pointer;
  color: #7A7580;
  background: transparent;
  transition: all 0.3s ease;
}

.grey_button:hover {
  border: 1px solid #535261;
}

#acc_tabs {
  max-width: 744px;
  width: 100%;
  margin: 0 auto 24px auto;
  display: flex;
  justify-content: space-between;
}

#acc_tabs .tab_items {
  text-align: center;
}

#acc_tabs #acc_tab_left {
  width: 90px;
}

#acc_tabs .btn_log {
  margin: 0;
}

.acc_tab {
  display: inline-block;
  padding: 10px 10px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.34px;
  color: #7A7580;
  position: relative;
}

.acc_tab.active {
  color: #fff;
}

.acc_tab.active:after {
  background-color: #186785;
  content: "";
  width: 25px;
  height: 1px;
  bottom: 0px;
  left: 8px;
  position: absolute;
  display: inline-block;
}

.my_block {
  max-width: 744px;
  width: 100%;
  background-color: #141114;
  margin: 0 auto 24px auto;
}

.my_block .row {
  display: flex;
}

.my_t_header {
  padding: 25px 30px;
  border-top: 2px solid #19161A;
  border-bottom: 1px solid #19161A;
}

.my_t_header.second {
  padding-top: 60px;
}

.my_t_header .title {
  font-size: 18px;
  letter-spacing: -0.43px;
  line-height: 1.6;
  position: relative;
}

.my_t_header .sub_title {
  font-size: 12px;
  font-weight: 300;
  color: #7A7580;
  line-height: 1.8;
  letter-spacing: -0.29px;
}

.my_t_header .title_2 {
  font-size: 18px;
  letter-spacing: -0.43px;
  line-height: 1.6;
  color: #7A7580;
}

.my_block1_row {
  display: flex;
  padding: 20px;
}

.products {
  padding-left: 10px;
  flex: 0 0 32%;
  font-size: 14px;
  letter-spacing: -0.34px;
  color: #7A7580;
}

.vape_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #19161A;
  padding: 20px;
  border: 1px solid #292329;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.29);
  flex: 0 0 33.333%;
  margin-right: 5px;
}

.vape_box.vape__buy {
  background-color: #141114;
}

.vape_box.vape__buy .blue_btn {
  display: block;
  align-items: center;
  text-transform: uppercase;
  padding: 7px 17px;
  background: #186785;
  font-size: 10px;
  font-weight: 500;
}

.vape_box.vape__buy .vape_name {
  color: #7A7580;
}

.vape-lite_box {
  margin-right: 8px;
}

.vape-lite_box .period.infinite {
  justify-content: center;
}

.vape-lite_box .period.time {
  background-color: #292329;
  padding: 3px 4px;
  height: 18px;
  width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.vape-lite_box .period .period_logo {
  margin-right: 5px;
}

.vape-lite_box .period .period_logo img {
  display: block;
  width: 12px;
  height: 12px;
}

.vape-lite_box .period .hour_index {
  font-size: 10px;
  color: #7A7580;
}

.check {
  width: 20px;
  height: 20px;
  margin-bottom: 25px;
}

.check img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.vape_name {
  flex: 0 0 100%;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 5px;
}

.vape_sub {
  font-size: 10px;
  color: #7A7580;
}

.vape_sub a {
  margin-left: 3px;
  color: #5BA688;
  border-bottom: 1px dotted #5BA688;
  opacity: 0.8;
}

.vape_sub a:hover {
  opacity: 1;
}

.vape-v4_box {
  background-color: #19161A;
  flex: 0 0 33.333%;
  padding: 20px;
}

.row {
  background-color: #19161A;
  padding: 20px 30px;
  border-top: 1px solid #1E1B1E;
  align-items: center;
}

.row .value {
  font-weight: 300;
  letter-spacing: -0.34px;
}

.row_title {
  font-weight: 500;
  color: #7A7580;
  flex: 0 0 210px;
}

.row_title .sub_info_btn {
  display: inline-block;
  padding-left: 15px;
}

.row_title .sub_info {
  left: -78px;
}

.sub_info_btn {
  position: relative;
  flex: 0 0 20px;
  height: 10px;
  text-align: right;
}

.sub_info_btn:hover .sub_info {
  display: block;
}

.sub_info {
  display: none;
  position: absolute;
  max-width: 400px;
  font-size: 12px;
  letter-spacing: -0.29px;
  color: #000;
  font-weight: 300;
  background-image: url(/images/sub_info_h.svg?1f19bf471754f93e8ca3f3d3d4076ba6);
  background-repeat: no-repeat;
  background-position: 12px 50%;
  padding: 7px 12px 8px 30px;
  left: -87px;
  top: inherit;
  bottom: 17px;
  background-size: 12px 12px;
  border-radius: 3px;
  width: -moz-max-content;
  width: max-content;
}

.sub_info:after {
  content: "";
  display: block;
  position: absolute;
  border: 10px solid transparent;
  border-top: 5px solid #FF564F;
  top: 100%;
  left: 90px;
}

.sub_info--error {
  background-color: #FF564F;
  background-image: url(/images/s_ib.png?a10035db21d80799f9ca827f103e508f);
  text-align: left;
}

.sub_info--sub {
  background-color: #292329;
}

.sub_info--sub span:after {
  border-top: 5px solid #292329;
  bottom: -32px;
  left: 60px;
}

.password.value {
  letter-spacing: 3px;
}

.value {
  flex: 0 0 450px;
}

.btn_pass {
  flex: 0 0 30px;
  height: 10px;
  text-align: right;
  background: url(/images/arrow_p.svg?37ace78886afd24a1339d660f1bda463) 10px center no-repeat;
}

.btn_pass:hover {
  background: url(/images/arrow_rh.svg?3527dd8df142b6e144d1834c98fbe2b0) 11px center no-repeat;
}

.my_block3 .my_t_header {
  display: flex;
  justify-content: space-between;
}

.my_block3 .table_arrow {
  flex: 0 0 20px;
  background: url(/images/arrow_p.svg?37ace78886afd24a1339d660f1bda463) center no-repeat;
  transition: ease all 0.3s;
}

.my_block3 .table_arrow:hover {
  background: url(/images/arrow_rh.svg?3527dd8df142b6e144d1834c98fbe2b0) 9px center no-repeat;
}

.my_block3 .table_arrow.arrow_slide.closed {
  transform: rotate(90deg);
}

/* ******** sub_notification  with class --success, --error, --info ********* */

.sub_notification {
  margin: 30px auto 30px auto;
  padding: 20px 0 20px 10px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.29px;
  border-radius: 3px;
  width: 100%;
  max-width: 740px;
  line-height: 1.7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #000;
}

.sub_notification .btn_close {
  flex: 0 0 30px;
  background: url(/images/close.svg?244c611eb3ab060857f9c94ea760290c) 5px 5px no-repeat;
  cursor: pointer;
}

.sub_notification .btn_close:hover {
  background: url(/images/hover_close.svg?3248ca5c25c5289d072fae6e7f2a3f70) 0 0 no-repeat;
}

.sub_notification--success {
  background-color: #5BA688;
}

.sub_notification--success .sn_text {
  padding-left: 15px;
  background-image: url(/images/check.svg?af8d91a492fad4f1c8d27b555ce55377);
  background-repeat: no-repeat;
  background-position: 0 4px;
}

.sub_notification--error {
  background-color: #FF564F;
}

.sub_notification--error .sn_text {
  padding-left: 15px;
  background-image: url(/images/s_ib.png?a10035db21d80799f9ca827f103e508f);
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: 0 4px;
}

.sub_notification--info {
  background-color: #186785;
}

.sub_notification--info .sn_text {
  padding-left: 15px;
  background-image: url(/images/announce.svg?75968e59c5ee91ea38796b2f31315431);
  background-repeat: no-repeat;
  background-position: 0 4px;
}

.ip_value {
  display: flex;
  flex-wrap: wrap;
  max-width: 230px;
}

.img_ip {
  flex: 0 0 30px;
}

.ip_number {
  margin: 2px 0 4px 0;
  flex: 0 0 200px;
  letter-spacing: 0.95px;
  font-weight: 300;
}

.ip_message {
  flex: 0 0 110px;
  color: #FF564F;
  font-weight: 300;
  font-size: 10px;
  transition: all 0.3s ease;
}

.ip_message.success {
  color: #5BA688;
}

.btn_update {
  flex: 0 0 35px;
  margin-left: 5px;
  color: #5BA688;
  border-bottom: 1px dotted #5BA688;
  opacity: 0.8;
  font-size: 10px;
  cursor: pointer;
}

.btn_update:hover {
  opacity: 1;
}

.btn_enable {
  color: #186785;
  font-size: 12px;
  letter-spacing: -0.29px;
  opacity: 0.8;
  transition: ease all 0.3s;
}

.btn_enable:hover {
  opacity: 1;
}

.sub_value {
  color: #7A7580;
  font-weight: 300;
}

.HVID_value {
  letter-spacing: 0;
}

/*toggleClass '.active' to .fa_window  .overlay_window  and class '.lock' to body*/

.fa_window {
  display: none;
  z-index: 1001;
  text-align: center;
  width: 370px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  transition: all 0.3s ease;
  opacity: 0;
}

.fa_window.active {
  display: block;
}

.fa_window .code_block {
  background-color: #186785;
  padding: 35px 40px;
  position: relative;
}

.fa_window .code_block .btn_close_w {
  display: none;
  position: absolute;
  width: 30px;
  height: 20px;
  top: 15px;
  right: 10px;
  background: url(/images/hover_close.svg?3248ca5c25c5289d072fae6e7f2a3f70) 0 center no-repeat;
  cursor: pointer;
}

.fa_window .code_title {
  font-size: 24px;
  letter-spacing: -0.58px;
  margin-bottom: 25px;
}

.fa_window .code_sub {
  line-height: 1.7;
  letter-spacing: -0.34px;
  font-weight: 300;
  max-width: 235px;
  margin: 0 auto;
}

.fa_window .enter_code_block {
  background-color: #19161A;
  padding: 35px 40px;
}

.fa_window .enter_code_block .blue_btn {
  background: #186785;
  padding: 10px 50px;
}

.fa_window .qr_img {
  margin: 20px auto 20px auto;
  border-bottom: 1px solid #2B738F;
  width: 200px;
  height: 200px;
}

.fa_window .qr_img img {
  width: 100%;
  height: 100%;
}

.fa_window .qr_code {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  padding: 7px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.38px;
  margin: 20px auto 8px auto;
}

.fa_window .qr_sub_info {
  opacity: 0.6;
  font-weight: 300;
  font-size: 10px;
  text-align: left;
  letter-spacing: -0.24px;
  line-height: 1.7;
}

.fa_window .fa_code {
  margin: 20px auto;
  background-color: #0F0D0F;
  padding: 12px 36px;
  text-align: center;
  border-radius: 3px;
  letter-spacing: 4px;
  opacity: 0.5;
  color: #fff;
}

.overlay_window {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.overlay_window.active {
  display: block;
}

/* Discount Codes statistic block */

.dc-stat-container {
  width: 100%;
}

.dc-stat-container .dcs_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.dc-stat-container .dcs_table th,
.dc-stat-container .dcs_table td {
  padding: 20px 8px;
  border: 2px solid #19161A;
}

.dc-stat-container .dcs_table .percent {
  padding: 20px 2px;
}

.dc-stat-container .dcs_table td.percent,
.dc-stat-container .dcs_table td.subscr_count,
.dc-stat-container .dcs_table td.total {
  text-align: center;
}

.dc-stat-container .dcs_table .dct_title {
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.34px;
}

.dc-stat-container .dcs_table .dct_value {
  color: #7A7580;
  font-weight: 300;
  letter-spacing: -0.34px;
}

.dc-stat-container .dcs_table .dct_value.subscr_count {
  line-height: 1.6;
}

.dc-stat-container .dcs_table .empty_set {
  text-align: center;
  color: #7A7580;
  font-weight: 300;
  letter-spacing: -0.34px;
}

#dcs_form {
  border: 2px solid #19161A;
  margin-top: 30px;
  padding: 10px 20px;
}

#dcs_form #dcs_form_range {
  display: inline-block;
  color: #7A7580;
}

#dcs_form #dcs_form_range &gt; span {
  padding: 0 20px;
}

#dcs_form #dcs_form_submit {
  margin-left: 30px;
  padding: 10px 40px;
  transition: none;
}

#dcs_form #dcs_form_submit.disabled {
  background: grey;
  color: #555;
}

#dcs_form input {
  background-color: #131114;
  padding: 10px 5px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #241E24;
  width: 160px;
  height: 32px;
  color: #7A7580;
  font-size: 14px;
  letter-spacing: -0.34px;
  font-weight: 300;
  padding-bottom: 12px;
}

#dcs_form .datepicker-picker {
  background-color: #0F0D0F;
  border: 2px solid #292329;
}

#dcs_form .datepicker-controls .button {
  background-color: #0F0D0F;
  color: #7A7580;
}

#dcs_form .datepicker-cell.next:not(.disabled),
#dcs_form .datepicker-cell.prev:not(.disabled) {
  color: #333;
}

#dcs_form .datepicker-cell.selected,
#dcs_form .datepicker-cell.range-end:not(.selected),
#dcs_form .datepicker-cell.range-start:not(.selected),
#dcs_form .datepicker-cell.focused:not(.selected),
#dcs_form .datepicker-cell.range {
  background-color: #19161A;
}

#dcs_form .datepicker-cell.focused:not(.selected),
#dcs_form .datepicker-cell.range {
  color: #fff;
}

.pricing_questions.p-products {
  background: #141114;
  border-top: 2px solid #19161A;
  padding-bottom: 50px;
}

#acc_no_subs {
  max-width: 600px;
  margin: 0 auto;
}

#acc_no_subs .ns-row {
  text-align: center;
  padding-bottom: 40px;
}

#acc_no_subs .ns-row .ns-img {
  margin-top: 40px;
}

#acc_no_subs .ns-row .ns-title {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.34px;
  color: #fff;
  margin-top: 15px;
}

#acc_no_subs .ns-row .ns-descr {
  font-size: 12px;
  color: #7A7580;
  line-height: 1.8;
  letter-spacing: -0.29px;
  margin-top: 20px;
}

#acc_no_subs .ns-row .grey_button {
  margin-top: 35px;
}

.f-12 {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: -0.29px;
}

.f-14 {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: -0.29px;
}

.f-g {
  color: #7A7580;
}

.f-w {
  color: #fff;
}

#acc_subs {
  width: 100%;
}

#acc_subs .ms-title {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.43px;
}

#acc_subs .ms-descr {
  margin-bottom: 20px;
  line-height: 1.3;
}

#acc_subs .ms-head {
  padding: 30px 30px 0;
  border-top: 2px solid #19161A;
  border-bottom: 1px solid #19161A;
}

#acc_subs .ms-subscription {
  padding: 30px;
  background-color: #1A171C;
  display: flex;
  justify-content: space-between;
}

#acc_subs .ms-subscription .lc {
  max-width: 400px;
  padding-right: 20px;
}

#acc_subs .ms-subscription .rc {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

#acc_subs .ms-subscription .ms-top {
  font-weight: 300;
}

#acc_subs .ms-subscription .pause_subscription {
  display: inline-block;
  color: #FFA054;
  margin-right: 10px;
}

#acc_subs .ms-subscription .resubscribe {
  color: #5BA688;
}

#acc_subs .ms-subscription .mss-oname {
  display: flex;
  margin-bottom: 10px;
}

#acc_subs .ms-subscription .mss-name {
  display: inline-block;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 22px;
  letter-spacing: -0.43px;
  font-weight: 300;
}

#acc_subs .ms-subscription .mss-status {
  display: inline-block;
  margin-left: 10px;
  padding: 6px 7px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: -0.34px;
  color: #7A7580;
  background-color: #201D23;
}

#acc_subs .ms-subscription .mss-status.active {
  color: #5BA688;
  background-color: #1B2221;
}

#acc_subs .ms-subscription .mss-predate {
  display: inline-block;
  padding: 3px 14px 3px 0;
}

#acc_subs .ms-subscription .mss-date {
  display: inline-block;
  border-radius: 2px;
  padding: 3px 14px;
  background-color: #42404E;
}

#acc_subs .ms-subscription .mss-date.active {
  background-color: #186785;
}

#acc_subs .ms-subscription .mss-price {
  display: inline-block;
  font-size: 30px;
  font-family: "Avenir Next LT Pro", sans-serif;
  letter-spacing: -0.91px;
  font-weight: normal;
  line-height: 1;
  margin-right: 10px;
  color: #7A7580;
}

#acc_subs .ms-subscription.status_active .mss-price {
  color: #fff;
}

#acc_subs .ms-subscription .mss-per {
  display: inline-block;
  color: #7A7580;
}

#acc_subs .ms-subscription.status_active .mss-per {
  color: #fff;
}

#subs_act {
  margin-top: 50px;
}

#subs_act .container {
  max-width: 684px;
  margin: 0 auto;
}

#subs_act .content {
  max-width: 485px;
  margin-left: 0;
}

#subs_act .bottom {
  margin-bottom: 50px;
}

#subs_act .sa-header {
  position: relative;
}

#subs_act #subs_back {
  position: absolute;
  width: 30px;
  height: 30px;
  color: #fff;
  top: 5px;
  left: -60px;
  font-size: 20px;
  font-weight: bold;
}

#subs_act .sa-title {
  font-size: 30px;
  letter-spacing: -0.72px;
  color: #FFFFFF;
  margin-bottom: 30px;
}

#subs_act .text {
  font-weight: 300;
  margin-bottom: 20px;
}

#subs_act .warn {
  color: #FFA054;
  font-weight: 300;
}

#subs_act .warn img {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 3px;
  margin-top: 6px;
}

#subs_act .sa-buttons {
  padding-top: 45px;
  height: 60px;
}

#subs_act .blue_btn {
  padding: 10px 30px;
  color: #fff;
  opacity: 1;
  font-weight: 300;
}

#subs_act .blue_btn:hover {
  background: linear-gradient(135deg, #006e70 24%, #197291 50%, #197291 79%, #3176b0 100%);
}

#subs_act .cancel_btn {
  color: #7A7580;
  line-height: 1.8;
  letter-spacing: -0.29px;
  padding: 10px 30px;
  transition: all 0.3s ease 0s;
}

#subs_act .cancel_btn:hover {
  color: #8F8A9B;
}

.collapsible .title {
  cursor: pointer;
}

.collapse-button {
  margin: 0 12px 0 0;
  position: absolute;
  width: 10px;
  height: 10px;
  right: 1px;
  top: 0;
}

.collapse-button .coll_btn {
  display: inline-block;
  background: #535261;
  height: 8px;
  width: 2px;
  position: relative;
}

.collapse-button .coll_btn:after {
  content: "";
  height: 2px;
  width: 8px;
  background: #535261;
  position: absolute;
  left: -3px;
  top: 3px;
}

.collapse-button .coll_btn.active {
  width: 0;
}

.collapse-button .coll_btn.active:after {
  background: #fff;
}

.vape_box .download_place {
  height: 25px;
  width: 120px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.vape_box .download_place .signed {
  opacity: 0.6;
  cursor: pointer;
  flex: 0 0 30px;
  text-align: center;
  border: 1px solid #535261;
  padding: 5px 8px;
  margin-right: 8px;
  transition: all 0.3s ease 0s;
}

.vape_box .download_place .signed:hover {
  opacity: 1;
}

.vape_box .download_place .signed img {
  display: block;
}

.vape_box .blue_btn {
  font-size: 10px;
  font-weight: 500;
  background: #186785;
  padding: 8px 15px 7px 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.vape_box .blue_btn.d_v4_btn {
  margin-left: 30px;
}

.vape_box .log_btn {
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}

.vape_box .log_btn:hover {
  opacity: 1;
  cursor: pointer;
}

.vape_box .vape_sub a {
  color: #5BA688;
}

#account_locked_popup {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s, z-index 0.1s;
}

#account_locked_popup.active {
  z-index: 999;
  opacity: 1;
}

#account_locked_popup .popup-content {
  position: absolute;
  width: 70%;
  left: 15%;
  top: 15%;
  height: 70vh;
  padding: 20px;
  border: 2px solid #292329;
  background-color: #0A090A;
  margin-bottom: 50px;
  text-align: center;
}

#account_locked_popup .submits-container {
  text-align: center;
  margin: 70px 0 20px;
  width: 100%;
}

#account_locked_popup .submits-container .contact_button {
  padding: 15px 40px;
  color: #fff;
  border-radius: 2px;
  margin-left: 20px;
  text-decoration: none;
  border: 1px solid #292329;
}

#account_locked_popup .popup_close {
  right: 10px;
  width: 15px;
}

#account_locked_popup .textpage {
  margin-bottom: 50px;
  padding: 0 20px 0 20px;
}

#account_locked_popup .textpage p {
  font-size: 15px;
}

@media (max-width: 991px) {
  #account_locked_popup .popup-content {
    width: 90%;
    left: 5%;
    top: 5%;
    height: 90vh;
  }
}

@media (max-width: 991px) {
  .main_my-account .my_block {
    max-width: 650px;
  }

  .main_my-account .sub_notification {
    max-width: 650px;
  }

  .main_my-account .value {
    flex: 0 0 380px;
  }

  .main_my-account .row_title {
    flex: 0 0 180px;
  }
}

@media (max-width: 767px) {
  .fa_window {
    width: 335px;
  }

  .fa_window .code_block .btn_close_w {
    display: block;
  }

  .sub_info {
    max-width: 300px;
    left: inherit;
    right: -25px;
  }

  .sub_info:after {
    left: 260px;
  }

  .main_my-account {
    padding: 57px 0 100px 0;
    max-width: 335px;
    margin: 0 auto;
  }

  .main_my-account.p-products {
    padding-bottom: 0;
  }

  .main_my-account .block1 {
    margin: 30px 0;
  }

  .main_my-account .sub_notification {
    max-width: 335px;
    padding: 10px 0 10px 40px;
  }

  .main_my-account .vape_box {
    max-width: 295px;
    height: 140px;
    margin: 0 auto 8px auto;
  }

  .main_my-account .vape-lite_box {
    margin-bottom: 8px;
  }

  .main_my-account .my_block1_row {
    display: block;
  }

  .main_my-account .products {
    display: none;
  }

  .main_my-account .my_block .row {
    flex-wrap: wrap;
    padding: 20px;
  }

  .main_my-account .row_title {
    margin-bottom: 10px;
  }

  .main_my-account .row_title .sub_info {
    left: -110px;
  }

  .main_my-account .row_title .sub_info:after {
    left: 122px;
  }

  .main_my-account .value {
    flex: 0 0 265px;
  }

  .main_my-account .value.sub_value {
    flex: 0 0 250px;
  }

  .ip_value {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .sub_notification--info {
    background-position: 15px 32%;
  }

  .sub_notification--success {
    background-position: 15px 32%;
  }

  .sub_notification--error {
    background-position: 15px 32%;
  }
}

.top_section_dots {
  position: absolute;
  top: 116px;
  width: 100%;
  height: 216px;
  background-image: url(/images/dots_c.svg?9ef2c36f0ac74a31a4dd1ee13ab23030);
  background-position: 295px 39px;
  background-repeat: no-repeat;
}

.operation_result_page {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #0F0D0F url(/images/hero_bg.svg?cf38949441bb0983fc13a38134d0267a) center -401px no-repeat;
  background-size: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 115px;
}

.operation_result_page .p-p_block_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.operation_result_page .main_pp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 auto;
}

.operation_result_page .img {
  background: url(/images/success.svg?81b713a3c370f77764b397bf2bc2ac87) center center no-repeat;
  height: 105px;
  width: 125px;
  margin-bottom: 30px;
}

.operation_result_page .img.pending-icon {
  background: url(/images/pending.svg?fc83a8b48cad92dda2bf3d3605cf4b9e) center center no-repeat;
}

.operation_result_page h1 {
  font-size: 24px;
  letter-spacing: -0.58px;
  font-weight: normal;
  margin-bottom: 15px;
  line-height: 1.3;
}

.operation_result_page .subtitle {
  font-size: 14px;
  letter-spacing: -0.34px;
  line-height: 24px;
  margin-bottom: 80px;
  max-width: 450px;
  color: #7A7580;
}

.operation_result_page .question_contact {
  font-size: 16px;
  font-weight: 300;
  display: block;
  padding: 100px 0;
}

.operation_result_page .link {
  color: #186785;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.operation_result_page .link:hover {
  opacity: 1;
}

.operation_result_page .hidden-captcha-form {
  visibility: hidden;
}

@media (max-width: 767px) {
  .operation_result_page {
    background-position: center 50px;
    padding: 150px 0 40px 0;
  }

  .operation_result_page h1 {
    max-width: 300px;
    font-size: 24px;
  }

  .operation_result_page .subtitle {
    font-size: 14px;
    margin: 20px 0 50px 0;
  }

  .operation_result_page .question_contact {
    margin: 0;
    padding-top: 40px;
  }
}

.header-download {
  display: none;
  background-color: #006466;
  position: sticky;
  top: 116px;
  z-index: 1000;
}

.header-download .dl-notification-block {
  position: relative;
}

.header-download .btn_close_section {
  position: absolute;
  background-image: url(/images/close.svg?244c611eb3ab060857f9c94ea760290c);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  display: block;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  top: 15px;
  right: 5px;
}

.header-download .btn_close_section:hover {
  background-color: rgba(13, 15, 15, 0.5);
  background-image: url(/images/close_hover.svg?3248ca5c25c5289d072fae6e7f2a3f70);
}

.header-download .d_row {
  display: flex;
  justify-content: space-between;
}

.header-download .d_row.sub {
  position: relative;
}

.header-download .title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.34px;
  padding-left: 50px;
  height: 36px;
  line-height: 1.4;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.header-download .header_block + .header_block {
  padding-left: 40px;
  border-left: 1px solid #0B6A6C;
}

.header-download .header_block {
  display: flex;
  flex-direction: column;
  padding-top: 35px;
  padding-bottom: 35px;
  transform: skewX(-5deg);
  flex: 0 0 33%;
  padding-right: 40px;
}

.header-download .header_block .title,
.header-download .header_block .text,
.header-download .header_block .faq_btn {
  transform: skewX(5deg);
}

.header-download .header_block a {
  color: #5BA688;
  border-bottom: 1px dotted #5BA688;
  opacity: 0.8;
}

.header-download .header_block a:hover {
  opacity: 1;
}

.header-download .header_block .text {
  flex: 1 1 auto;
}

.header-download .header_block:last-child {
  padding-right: 0;
}

.header-download .faq_btn {
  margin-top: 20px;
}

.header-download .header_block .title {
  background: url(/images/num1.svg?22de7dc45191350b628856c16e5d5c70) left center no-repeat;
}

.header-download .header_block:nth-child(2) .title {
  background: url(/images/num2.svg?d06e8100ea8582dabb3fe97fa9349d4f) left center no-repeat;
}

.header-download .header_block:nth-child(3) .title {
  background: url(/images/num3.svg?4915fe645ba26cd0e0cee4041b15cf1a) left center no-repeat;
}

.header-download .text,
.header-download .faq_btn {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.29px;
  line-height: 1.5;
  opacity: 0.8;
}

.main_download {
  padding: 100px 0 120px 0;
  background: #0F0D0F;
}

.main_download .container {
  padding-top: 70px;
}

.vape-download .download_place {
  height: 25px;
  width: 120px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.vape-download .download_place .signed {
  opacity: 0.6;
  cursor: pointer;
  flex: 0 0 30px;
  text-align: center;
  border: 1px solid #535261;
  padding: 5px 8px;
  margin-right: 8px;
  transition: all 0.3s ease 0s;
}

.vape-download .download_place .signed:hover {
  opacity: 1;
}

.vape-download .download_place .signed img {
  display: block;
}

.vape-download .blue_btn {
  font-size: 10px;
  font-weight: 500;
  background: #186785;
  padding: 8px 15px 7px 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.vape-download .blue_btn.d_v4_btn {
  margin-left: 30px;
}

.vape-download .log_btn {
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}

.vape-download .log_btn:hover {
  opacity: 1;
  cursor: pointer;
}

.block4 .row_title {
  text-transform: uppercase;
  flex: 0 0 210px;
}

.block4 .sub_value {
  flex: 0 0 250px;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
}

.block4 .sub_value .view_changelog {
  color: #5BA688;
  border-bottom: 1px dotted #5BA688;
  font-weight: 300;
  opacity: 0.8;
  margin-left: 5px;
  transition: all 0.3s ease 0s;
}

.block4 .sub_value .view_changelog:hover {
  opacity: 1;
}

.block4 .download_button {
  color: rgba(24, 103, 133, 0.8);
  margin-left: 160px;
  flex: 0 0 60px;
  font-size: 12px;
  transition: all 0.3s ease 0s;
}

.block4 .download_button:hover {
  color: #186785;
}

.pricing_questions .questions_row {
  padding-top: 100px;
}

.pricing_questions.download {
  background: #141114;
  border-top: 2px solid #19161A;
}

#license_agreement_popup {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s, z-index 0.1s;
}

#license_agreement_popup.active {
  z-index: 999;
  opacity: 1;
}

#license_agreement_popup .popup-content {
  position: absolute;
  width: 90%;
  left: 5%;
  top: 5%;
  height: 90vh;
  overflow-y: scroll;
  padding: 20px;
  border: 2px solid #292329;
  background-color: #0A090A;
  margin-bottom: 50px;
}

#license_agreement_popup .submit-container {
  text-align: center;
  margin-bottom: 50px;
  position: fixed;
  bottom: 15px;
  left: 5%;
  width: 100%;
}

#license_agreement_popup .popup_close {
  right: 10px;
  width: 15px;
}

#license_agreement_popup .textpage {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .main_download {
    padding-bottom: 70px;
  }

  .main_download .vape_box {
    flex: 0 0 38%;
  }

  .main_download .products {
    flex: 0 0 23%;
  }

  .sub_notification {
    max-width: 650px;
  }

  .my_block {
    max-width: 650px;
  }

  .block4 .download_button {
    margin-left: 70px;
  }
}

@media (max-width: 767px) {
  .main_download {
    padding-bottom: 15px;
  }

  .main_download .my_block1_row {
    display: block;
  }

  .main_download .vape_box {
    max-width: 295px;
    border: 2px solid #292329;
    height: 140px;
    margin: 0 auto 8px auto;
  }

  .main_download .products {
    display: none;
  }

  .block4 {
    width: 100%;
  }

  .block4 .row {
    display: block;
    padding: 20px;
  }

  .block4 .row_title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .block4 .sub_value {
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: -0.34px;
  }

  .block4 .download_button {
    margin-left: 0;
  }

  .btn_close_section {
    z-index: 1201;
    top: 10px;
    right: 0;
  }

  .d_row.sm-slider {
    min-width: 0;
    padding: 0 10px;
    position: relative;
  }

  .d_row.sm-slider .slick-track {
    display: flex;
  }

  .d_row.sm-slider .slick-list {
    overflow: hidden;
  }

  .d_row.sm-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    font-size: 0;
  }

  .d_row.sm-slider .slick-arrow.slick-disabled {
    opacity: 0.2;
  }

  .d_row.sm-slider .slick-arrow.slick-prev {
    left: 0;
    background: url(/images/arrow_rh.svg?3527dd8df142b6e144d1834c98fbe2b0) 0 0/100% no-repeat;
    width: 11px;
    height: 20px;
    transform: rotate(180deg);
  }

  .d_row.sm-slider .slick-arrow.slick-next {
    right: 0;
    width: 11px;
    height: 20px;
    background: url(/images/arrow_rh.svg?3527dd8df142b6e144d1834c98fbe2b0) 0 0/100% no-repeat;
  }

  .d_row.sm-slider .header_block {
    border: none;
    min-width: 0;
    transform: skewX(0);
    padding: 30px;
  }

  .d_row.sm-slider .title,
  .d_row.sm-slider .text,
  .d_row.sm-slider .faq_btn {
    transform: skewX(0);
  }
}

.auth .container {
  max-width: 320px;
}

.auth .container * {
  transition: all 0.3s ease;
}

.auth-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
}

.auth-nav-row a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
}

#verify_page_head {
  position: relative;
  margin-top: 114px;
  height: 20px;
}

#verify_page_logout {
  text-align: center;
  margin-top: 40px;
}

.invalid-feedback {
  color: #FF564F;
}

.success-feedback {
  color: #5BA688;
}

.google-auth-wrapper .btn.btn-google-auth {
  position: relative;
  background: #19161A;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 48px;
  color: #7A7580;
  border-radius: 2px;
}

.google-auth-wrapper .btn.btn-google-auth:hover {
  background: #1D1A1F;
  color: #fff;
}

.google-auth-wrapper .btn.btn-google-auth:before {
  content: url("/img/google.svg");
  position: absolute;
  width: 16px;
  height: 16px;
  left: 20px;
}

.input-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.input-container input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 300;
  color: #7A7580;
  background: #141114;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 10px 0 10px 16px;
}

.input-container input:hover {
  border: 1px solid rgba(24, 103, 133, 0.4);
}

.input-container input:focus {
  border: 1px solid rgba(24, 103, 133, 0.4);
  box-shadow: 0 0 6px rgba(24, 103, 133, 0.4);
}

.input-container input.is-invalid:not(:hover):not(:focus) {
  border: 1px solid #FF564F;
  box-shadow: 0 0 6px #FF564F;
}

.input-container button {
  display: flex;
  width: 100%;
  height: 40px;
  font-size: 14px;
  color: #fff;
  background: #186785;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.input-container button:hover:not(:disabled) {
  background: #1E80A6;
}

.input-container button:disabled {
  opacity: 0.45;
  cursor: default;
}

.fa_window-login {
  display: none;
  z-index: 1001;
  text-align: center;
  width: 370px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  transition: all 0.3s ease;
  opacity: 0;
}

.fa_window-login.active {
  display: block;
}

.fa_window-login .code_title {
  font-size: 24px;
  letter-spacing: -0.58px;
  margin-bottom: 25px;
}

.fa_window-login .code_sub {
  line-height: 1.7;
  letter-spacing: -0.34px;
  font-weight: 300;
  max-width: 235px;
  margin: 0 auto;
}

.fa_window-login .enter_code_block-login {
  background-color: #19161A;
  padding: 35px 40px;
}

.fa_window-login .enter_code_block-login .blue_btn {
  background: #186785;
  padding: 10px 50px;
}

.fa_window-login .qr_sub_info {
  opacity: 0.6;
  font-weight: 300;
  font-size: 10px;
  text-align: left;
  letter-spacing: -0.24px;
  line-height: 1.7;
}

.fa_window-login .fa_code-login {
  margin: 20px auto 10px;
  background-color: #0F0D0F;
  padding: 12px 36px;
  text-align: center;
  border-radius: 3px;
  letter-spacing: 4px;
  opacity: 0.5;
  color: #fff;
}

.fa_window-login .fa_code-login.error {
  border: 1px solid red;
}

.fa_window-login .fa_error {
  color: red;
  margin-bottom: 10px;
  font-size: 12px;
}

.overlay_login_window {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.overlay_login_window.active {
  display: block;
}

.actions-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.actions-wrapper .forgot-pass {
  font-size: 12px;
  letter-spacing: -0.29px;
  color: #7A7580;
  line-height: 25px;
  border-bottom: 1px dotted #7A7580;
}

.actions-wrapper .forgot-pass:hover {
  color: #186785;
  border-bottom: 1px dotted #186785;
}

.login-form-register-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A7580;
  font-size: 12px;
}

.login-form-register-link a {
  font-size: 12px;
  letter-spacing: -0.29px;
  color: #186785;
  line-height: 25px;
  border-bottom: 1px dotted #186785;
  margin-left: 10px;
}

.login-form-register-link a:hover {
  color: #1E80A6;
  border-bottom: 1px dotted #1E80A6;
}

.register-form-login-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #7A7580;
  font-size: 12px;
  margin-bottom: 42px;
}

.register-form-login-link a {
  font-size: 12px;
  letter-spacing: -0.29px;
  color: #186785;
  margin-left: 5px;
  margin-right: 5px;
}

.register-form-login-link a:hover {
  color: #1E80A6;
}

/*Checkbox styles*/

/* Customize the label (the container) */

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.checkbox-container .label-text {
  font-size: 12px;
  letter-spacing: -0.29px;
  color: #7A7580;
  line-height: 16px;
}

/* Hide the browser's default checkbox */

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: 1px solid #292329;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* On mouse-over, add a grey background color */

.checkbox-container:hover input ~ .checkmark {
  border: 1px solid #186785;
}

/* When the checkbox is checked, add a blue background */

.checkbox-container input:checked ~ .checkmark {
  background-color: #186785;
  border: 1px solid #186785;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

.checkbox-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #0F0D0F;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

/*Inputs separator*/

.form-inputs-separator {
  width: 100%;
  height: 1px;
  margin: 21px 0;
}

/*Separator styles*/

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.29px;
  text-transform: uppercase;
  color: #7A7580;
  opacity: 0.5;
  margin: 15px 0;
  cursor: default;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #141114;
}

.separator::before {
  margin-right: 0.25em;
}

.separator::after {
  margin-left: 0.25em;
}

.main_my-account {
  flex: 1 1 auto;
}

.main_my-account .account-action-wrapper {
  max-width: 492px;
}

.account-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
}

.account-nav-row a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: -16px;
  transform: translateX(-50px);
}

.account-nav-row a img {
  transition: all 0.3s ease;
  transform: translateX(0);
}

.account-nav-row a:hover img {
  transform: translateX(-5px);
}

@media (max-width: 767px) {
  .account-nav-row a {
    transform: translateX(-10px);
  }
}

.action-description {
  font-size: 14px;
  letter-spacing: -0.34px;
  line-height: 24px;
  color: #7A7580;
  font-weight: 300;
}

.account-action-form-wrapper {
  max-width: 360px;
  margin-top: 60px;
}

.account-action-form-wrapper * {
  transition: all 0.3s ease;
}

.account-action-form-wrapper .submit-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}

.account-action-form-wrapper .submit-container button {
  background: #186785;
  max-width: 96px;
  width: 100%;
  height: 40px;
  color: #fff;
}

.account-action-form-wrapper .submit-container button:hover {
  background: #1E80A6;
}

.account-action-form-input-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(122, 117, 128, 0.4);
}

.account-action-form-input-container input {
  width: 100%;
  height: 32px;
  background: transparent;
  color: #7A7580;
  font-size: 14px;
  letter-spacing: -0.34px;
  font-weight: 300;
  padding-bottom: 12px;
}

.account-action-form-input-container input.is-invalid:not(:hover):not(:focus) {
  box-shadow: 0 0 6px #FF564F;
}

.account-action-form-input-container .input-slider {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #7A7580;
}

.steps-wrapper {
  margin-top: 32px;
  font-size: 14px;
  letter-spacing: -0.34px;
  line-height: 24px;
  color: #7A7580;
  font-weight: 300;
}

.steps-wrapper .step {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 355px;
  margin-bottom: 24px;
}

.steps-wrapper .step .step-number {
  min-width: 45px;
  margin-right: 22px;
  white-space: nowrap;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

.steps-wrapper .step a {
  color: #186785;
  border-bottom: 1px dotted #186785;
  transition: all 0.3s ease;
}

.steps-wrapper .step a:hover {
  color: #1E80A6;
  border-bottom: 1px dotted #1E80A6;
}

.main_privacy {
  padding: 117px 0 200px 0;
}

.privacy_title {
  margin: 50px 0 70px 0;
}

.privacy_title h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.1px;
  text-align: center;
}

.title_border {
  border-bottom: 1px solid #292329;
}

.privacy_table .start_btn {
  text-align: center;
}

.privacy_table .table {
  margin-top: 100px;
  display: flex;
  justify-content: flex-start;
}

.privacy_table .table_menu {
  flex: 0 0 230px;
  border-right: 1px solid #292329;
  padding-right: 24px;
  max-height: 300px;
}

.privacy_table .table_btn .table_button {
  color: #7A7580;
  font-size: 16px;
  line-height: 3;
  letter-spacing: -0.38px;
  padding-right: 15px;
  display: block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.privacy_table .table_btn .table_button.active {
  color: #fff;
  background: url(/images/arrow_right.svg?956cb453cb8f905c6574d844594aed2e) right 21px/6px 8px no-repeat;
  transform: translateX(10px);
}

.privacy_table .table_btn:hover {
  cursor: pointer;
}

.privacy_table .table_btn:hover .table_button {
  color: #fff;
  cursor: pointer;
  transform: translateX(10px);
}

.privacy_table .table_body {
  flex: 0 0 800px;
}

.privacy_table .p_table_overall {
  border: none;
  margin: 0 0 0 50px;
  display: block;
}

.privacy_table .privacy_heading {
  display: flex;
}

.privacy_table .rules_name_block {
  flex: 0 0 33%;
  background: #19161A;
  padding: 40px 40px 30px 35px;
}

.privacy_table .rules_img {
  margin-bottom: 20px;
}

.privacy_table .rules_title {
  font-size: 30px;
  letter-spacing: -0.72px;
  line-height: 1.3;
  margin-bottom: 80px;
}

.privacy_table .rules_sub {
  font-size: 12px;
  line-height: 1.7;
  color: #7A7580;
  max-width: 130px;
}

.privacy_table .grand_points {
  padding: 30px 40px;
  flex: 0 0 67%;
  background: #141114;
}

.privacy_table .grand_point {
  display: flex;
}

.privacy_table .dot_point {
  top: 16px;
  height: 5px;
  width: 10px;
  position: relative;
  left: 5px;
  display: block;
}

.privacy_table .dot_point.red_dot_point {
  background: transparent;
  left: 10px;
}

.privacy_table .dot_point.red_dot_point:after {
  background: #FFB8B8;
}

.privacy_table .dot_point.green_dot_point {
  background: url(/images/plus.png?fca8c7bd377c48edaee670532cf36a20) center no-repeat;
}

.privacy_table .dot_point:after {
  content: "";
  height: 2px;
  width: 5px;
  position: absolute;
  left: -2px;
  top: 2px;
  display: block;
}

.privacy_table .g_point_info {
  min-width: 395px;
  padding: 10px 0;
  margin-left: 20px;
  border-bottom: 1px dotted #292329;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: -0.29px;
  line-height: 1.7;
}

.privacy_table .g_point_info.red_point {
  color: #FFB8B8;
}

.privacy_table .g_point_info.green_point {
  color: #5BA688;
}

.privacy_table .table_info_body {
  background: #0F0D0F;
}

.privacy_table .table_info_body li {
  padding-left: 35px;
  background: url(/images/check_pr.svg?9c127758bb03720e971bba54b7382d49) 15px 11px no-repeat;
  font-weight: 300;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
  line-height: 2.7;
}

.privacy_table .info_title {
  padding: 60px 0 0 0;
  font-size: 36px;
  letter-spacing: -0.43px;
  line-height: 1.6;
}

.privacy_table .info_subtitle {
  margin: 30px 0 0 0;
  font-size: 18px;
  letter-spacing: -0.43px;
  line-height: 1.6;
}

.privacy_table p {
  margin-top: 30px;
  font-weight: 300;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .privacy_table .table_menu {
    display: none;
  }
}

@media (max-width: 991px) {
  .privacy_table .table {
    margin-top: 0;
  }

  .privacy_table .table_menu {
    display: none;
  }

  .privacy_table .table_body {
    flex: 0 0 650px;
  }

  .privacy_table .p_table_overall {
    margin: 0;
  }

  .privacy_table .privacy_heading {
    width: 768px;
    margin-left: -44px;
  }

  .privacy_table p {
    max-width: 650px;
  }

  .privacy_table .table_info_body li {
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .main_privacy {
    padding: 56px 0 80px 0;
  }

  .privacy_title {
    margin: 40px 0;
  }

  .privacy_table .table {
    display: block;
  }

  .privacy_table .p_table_overall {
    margin-left: 0;
  }

  .privacy_table .table_body {
    flex: 0 0 100%;
  }

  .privacy_table .privacy_heading {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    display: block;
  }

  .privacy_table .rules_name_block {
    display: flex;
    align-items: center;
    padding: 20px 10px;
  }

  .privacy_table .rules_sub {
    display: none;
  }

  .privacy_table .rules_img {
    margin-bottom: 0;
  }

  .privacy_table .rules_title {
    margin-bottom: 0;
    margin-left: 10px;
    font-size: 18px;
  }

  .privacy_table .grand_points {
    padding: 5px;
  }

  .privacy_table .g_point_info {
    margin-left: 15px;
    min-width: auto;
    width: 100%;
  }

  .privacy_table p {
    margin-top: 20px;
  }

  .privacy_table .info_title {
    padding: 30px 0 0 0;
    font-size: 24px;
  }

  .privacy_table .info_subtitle {
    font-size: 18px;
    margin: 20px 0 0 0;
  }

  .privacy_table .table_info_body {
    padding-left: 10px;
  }

  .privacy_table .table_info_body li {
    padding-right: 0;
  }
}

.section.amazon-pay {
  padding: 117px 0 200px 0;
}

.section.amazon-pay .amz-pay-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 744px;
  color: #fff;
  font-size: 18px;
  margin: 60px auto 24px auto;
}

.section.amazon-pay .amz-pay-nav-row a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: -16px;
  transform: translateX(-50px);
}

.section.amazon-pay .amz-pay-nav-row a img {
  transition: all 0.3s ease;
  transform: translateX(0);
}

.section.amazon-pay .amz-pay-nav-row a:hover img {
  transform: translateX(-5px);
}

.section.amazon-pay .amz-pay-wrapper {
  max-width: 744px;
  width: 100%;
  background-color: #141114;
  margin: 60px auto 24px auto;
}

.section.amazon-pay .amz-pay-row {
  display: flex;
  background-color: #19161A;
  padding: 20px 30px;
  border-top: 1px solid #1C191C;
  align-items: center;
}

.section.amazon-pay .amz-pay-row.btn-wrapper {
  justify-content: center;
}

.section.amazon-pay .amz-pay-row-title {
  font-weight: 500;
  color: #7A7580;
  flex: 0 0 210px;
}

.section.amazon-pay .amz-pay-row-value {
  flex: auto;
  display: flex;
  justify-content: flex-end;
}

.section.amazon-pay .amz-pay-block_header {
  padding: 25px 30px;
  border-top: 2px solid #19161A;
  border-bottom: 1px solid #19161A;
}

.section.amazon-pay .amz-pay-block_header .title {
  font-size: 18px;
  letter-spacing: -0.43px;
  line-height: 1.6;
}

.section.amazon-pay .amz-pay-block_header .sub_title {
  font-size: 12px;
  font-weight: 300;
  color: #7A7580;
  line-height: 1.8;
  letter-spacing: -0.29px;
}

.section.amazon-pay .amz-pay-button.blue-btn {
  padding: 15px 0;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amz-success {
  font-family: "Poppins", sans-serif;
}

.amz-success__icon-wrapper {
  margin-bottom: 40px;
  text-align: center;
}

.amz-success__title {
  font-size: 72px;
  letter-spacing: -1.73px;
  line-height: 72px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.amz-success__text {
  max-width: 406px;
  font-size: 18px;
  letter-spacing: -0.43px;
  line-height: 28px;
  text-align: center;
  margin: 0 auto 75px;
}

.amz-success__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 200px;
  width: 100%;
  height: 56px;
  font-size: 16px;
  letter-spacing: -0.38px;
  line-height: 26px;
  border-radius: 2px;
  background: linear-gradient(135deg, #006466 24%, #186785 50%, #186785 79%, #316AA4 100%);
  opacity: 0.8;
  color: #fff;
  transition: all 0.3s ease;
}

.amz-success__button a:hover {
  opacity: 1;
}

.amz-success__two_fa_code .input-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.amz-success__two_fa_code .input-container .input_area {
  padding: 32px 24px;
  background-color: #19161A;
  border-radius: 3px;
}

.amz-success__two_fa_code .input-container input {
  width: 288px;
  height: 40px;
  font-size: 14px;
  font-weight: 300;
  color: #7A7580;
  background: #141114;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 3px;
}

.amz-success__two_fa_code .input-container input:hover {
  border: 1px solid rgba(24, 103, 133, 0.4);
}

.amz-success__two_fa_code .input-container input:focus {
  border: 1px solid rgba(24, 103, 133, 0.4);
  box-shadow: 0 0 6px rgba(24, 103, 133, 0.4);
}

.amz-success__two_fa_code .input-container .two-fa-submit {
  width: auto;
  margin: 100px auto 0 auto;
  padding: 12px 24px;
  background: rgba(24, 103, 133, 0.8);
  color: #fff;
  text-align: center;
  border-radius: 3px;
  transition: all 0.3s ease 0s;
}

.amz-success__two_fa_code .input-container .two-fa-submit:hover {
  background: #186785;
}

@media (max-width: 767px) {
  .amz-success__title {
    font-size: 36px;
    letter-spacing: -0.86px;
  }

  .amz-success__icon-wrapper {
    margin-bottom: 25px;
  }

  .amz-success__text {
    margin: 0 auto 50px auto;
    font-size: 14px;
    max-width: 295px;
  }
}

.pending-payment {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #0F0D0F url(/images/hero_bg.svg?cf38949441bb0983fc13a38134d0267a) center -320px no-repeat;
  background-size: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pending-payment .p-p_block_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.pending-payment .main_pp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 auto;
}

.pending-payment .img {
  background: url(/images/success.svg?81b713a3c370f77764b397bf2bc2ac87) center center no-repeat;
  height: 105px;
  width: 125px;
  margin-bottom: 30px;
}

.pending-payment .img.pending-icon {
  background: url(/images/pending.svg?fc83a8b48cad92dda2bf3d3605cf4b9e) center center no-repeat;
}

.pending-payment h1 {
  font-size: 46px;
  letter-spacing: -1.73px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.pending-payment .subtitle {
  font-size: 18px;
  letter-spacing: -0.43px;
  line-height: 1.6;
  margin-bottom: 80px;
  max-width: 450px;
}

.pending-payment .question_contact {
  font-size: 16px;
  font-weight: 300;
  display: block;
  padding: 100px 0;
}

.pending-payment .link {
  color: #186785;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.pending-payment .link:hover {
  opacity: 1;
}

.pending-payment .loader-icon {
  margin-bottom: 40px;
}

.pending-payment .loader-title {
  font-size: 24px;
  margin-bottom: 48px;
}

.pending-payment .loader-subtitle {
  font-size: 14px;
  color: #7A7580;
  margin-top: 0;
  max-width: 256px;
}

#paypal-button-container {
  width: 200px;
  height: 36px;
}

.paypal_buttons_loader {
  width: 200px;
  text-align: center;
}

@media (max-width: 767px) {
  .pending-payment {
    background-position: center 50px;
    padding: 150px 0 40px 0;
  }

  .pending-payment h1 {
    max-width: 300px;
    font-size: 36px;
  }

  .pending-payment .subtitle {
    font-size: 14px;
    margin: 20px 0 50px 0;
  }

  .pending-payment .question_contact {
    margin: 0;
    padding-top: 40px;
  }
}

/*     pending-payment error         */

.main_textpage {
  padding: 117px 0 200px 0;
}

.textpage h3 {
  margin: 30px 0 0 0;
  font-size: 18px;
  letter-spacing: -0.43px;
  line-height: 1.6;
}

.textpage p {
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
  line-height: 1.7;
}

.textpage ul {
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
  line-height: 1.7;
}

.textpage ul li {
  padding-left: 35px;
  background: url("/images/check_pr.svg") 15px 11px no-repeat;
  font-weight: 300;
  font-size: 12px;
  color: #7A7580;
  letter-spacing: -0.29px;
  line-height: 2.7;
}

.textpage a {
  color: #186785;
  border-bottom: 1px dotted #186785;
}

.textpage_title {
  margin: 50px 0 70px 0;
}

.textpage_title h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.1px;
  text-align: center;
  max-width: none;
}

.title_border {
  border-bottom: 1px solid #292329;
}

@media (max-width: 767px) {
  .main_textpage {
    padding: 56px 0 80px 0;
  }

  .textpage_title {
    margin: 40px 0;
  }
}

.support_top {
  margin-top: 114px;
  background-image: url(/images/dots_c.svg?9ef2c36f0ac74a31a4dd1ee13ab23030);
  background-position: 200px 0;
  background-repeat: no-repeat;
  background-color: #0F0D0F;
  text-align: center;
  padding-bottom: 60px;
}

.support_top &gt; .container {
  padding-top: 60px;
  position: relative;
  max-width: 565px;
}

.support_top .back_btn {
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100px;
  height: 30px;
  color: #fff;
  font-size: 15px;
  text-align: left;
}

.support_top .back_btn.hidden {
  display: none;
}

.support_top .support_abovetitle {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.72px;
  text-transform: uppercase;
}

.support_top .support_title {
  font-size: 36px;
  letter-spacing: -1.1px;
  line-height: 1.2;
  margin-top: 20px;
}

.support_content {
  padding: 25px 30px 0 30px;
  border-top: 1px solid #292329;
}

.support_content .container {
  max-width: 565px;
}

.support_content .textcontent {
  padding-bottom: 40px;
  border-bottom: 1px solid #292329;
  font-size: 15px;
}

.support_content .questions {
  display: none;
  transition: ease all 0.3s;
}

.support_content .questions.show {
  display: block;
}

.support_content h3 {
  margin: 50px 0 15px 0;
  padding-bottom: 15px;
  font-size: 18px;
  letter-spacing: -0.43px;
  line-height: 1.6;
  border-bottom: 1px solid #292329;
}

.support_content h4 {
  font-size: 15px;
  letter-spacing: -0.43px;
  line-height: 1.6;
}

.support_content p {
  margin-top: 5px;
  margin-bottom: 15px;
  font-weight: normal;
  font-size: 15px;
  color: #7A7580;
  letter-spacing: -0.2px;
  line-height: 1.7;
}

.support_content ul {
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 15px;
  color: #7A7580;
  letter-spacing: -0.29px;
  line-height: 1.7;
}

.support_content ul li {
  padding-left: 35px;
  background: url("/images/check_pr.svg") 15px 11px no-repeat;
  font-weight: 300;
  font-size: 15px;
  color: #7A7580;
  letter-spacing: -0.29px;
  line-height: 2.7;
}

.support_content p &gt; a {
  color: #186785;
  border-bottom: 1px dotted #186785;
}

.support_breadcrumbs {
  margin-top: 40px;
}

.support_breadcrumbs span,
.support_breadcrumbs a {
  font-size: 13px;
  letter-spacing: -0.34px;
  font-weight: 300;
  color: #7A7580;
  display: inline-block;
  border-bottom: 1px solid #292329;
  padding-bottom: 3px;
}

.support_breadcrumbs span,
.support_breadcrumbs a {
  margin-left: 20px;
  position: relative;
  cursor: pointer;
}

.support_breadcrumbs span:before,
.support_breadcrumbs a:before {
  content: "";
  width: 7px;
  height: 7px;
  top: 3px;
  left: -15px;
  position: absolute;
  display: inline-block;
  background-image: url("/images/arrow_p.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.support_breadcrumbs a:first-child:before {
  display: none;
}

.support_breadcrumbs &gt; .answ {
  font-style: italic;
}

.question_link {
  font-size: 16px;
  cursor: pointer;
  letter-spacing: -0.43px;
  font-weight: 400;
  line-height: 1.6;
  color: #186785;
  border-bottom: 2px solid #292329;
  padding: 10px 20px 10px 0;
  background-image: url("/images/arrow_p.svg");
  background-position: right center;
  background-repeat: no-repeat;
}

.question_title {
  font-size: 20px;
  padding: 30px 0;
}

.message_title {
  margin-top: 100px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.43px;
  text-align: center;
  margin-bottom: 30px;
}

.message_body {
  background-color: #141215;
  /*background-image: url("/images/hero_bg.svg");*/
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 30px 10px 30px;
}

.message_body .s_right {
  width: 180px;
  height: 60px;
  text-align: right;
  margin-top: 30px;
}

.message_body .s_left {
  flex: 1;
  padding-right: 30px;
}

.message_body .s_title {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.43px;
  min-width: 150px;
}

.message_body .s_stitle {
  font-size: 13px;
  color: #7A7580;
  letter-spacing: -0.29px;
  margin-bottom: 20px;
  line-height: 1.6;
  margin-top: 10px;
}

.support_form {
  margin-top: 40px;
}

.support_form .form_c {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.support_form .form_c::-moz-placeholder {
  font-size: 14px;
  color: #7A7580;
}

.support_form .form_c::placeholder {
  font-size: 14px;
  color: #7A7580;
}

.support_form .form_c .prompt {
  font-size: 12px;
  color: #7A7580;
  width: 100%;
  margin-bottom: 90px;
}

.support_form .field_block {
  border: 1px solid #241E24;
  background-color: #131114;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.support_form .field_title {
  font-size: 17px;
  letter-spacing: -0.43px;
  line-height: 1.6;
  color: #C9C9C9;
}

.support_form .field_comment {
  margin-top: 10px;
  color: #7A7580;
  font-size: 12px;
}

.support_form .field_area {
  margin-top: 40px;
}

.support_form textarea {
  width: 100%;
  background-color: #131114;
  border-bottom: 1px solid #241E24;
  padding: 5px;
  color: #fff;
  cursor: pointer;
}

.support_form input[type=text],
.support_form input[type=email] {
  background-color: #131114;
  color: #fff;
  padding: 10px 5px;
  min-width: 317px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #241E24;
}

.support_form label {
  color: #7A7580;
}

.support_form label &gt; input {
  margin-right: 20px;
}

.support_form .sf-checkbox,
.support_form .sf-radio {
  margin: 0 0 20px 20px;
  font-size: 15px;
  line-height: 20px;
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
}

.support_form .sf-checkbox label,
.support_form .sf-radio label {
  cursor: pointer;
}

.support_form .sf-checkbox input,
.support_form .sf-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.support_form .sf-checkbox .checkmark,
.support_form .sf-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #131114;
}

.support_form .sf-checkbox:hover input ~ .checkmark,
.support_form .sf-radio:hover input ~ .checkmark {
  border-color: #7A7580;
}

.support_form .sf-checkbox input:checked ~ .checkmark,
.support_form .sf-radio input:checked ~ .checkmark {
  background-color: #186785;
  border-color: #186785;
}

.support_form .sf-checkbox .checkmark:after,
.support_form .sf-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.support_form .sf-checkbox input:checked ~ .checkmark:after,
.support_form .sf-radio input:checked ~ .checkmark:after {
  display: block;
}

.support_form .sf-checkbox {
  /* Style the checkmark/indicator */
}

.support_form .sf-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.support_form .sf-radio {
  /* Style the checkmark/indicator */
}

.support_form .sf-radio .checkmark {
  border-radius: 50%;
}

.support_form .sf-radio .checkmark:after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
}

.support_form .sf-checkbox:last-child,
.support_form .sf-radio:last-child {
  margin-bottom: 0;
}

.support_form select {
  background-color: #131114;
  padding: 10px 5px;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid #241E24;
  min-width: 317px;
}

.support_form .blue_btn {
  margin-top: 20px;
}

.support_form .border_hover {
  position: relative;
  margin: 15px 0;
}

.support_form .border_hover.textarea {
  width: 100%;
}

.support_form .border_hover.textarea:before {
  bottom: 2px;
}

.support_form .border_hover.subject:before {
  bottom: 1px;
}

.support_form .border_hover:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #535261;
  transform: scale(0);
  transition: transform 0.6s ease-in-out;
  transform-origin: left;
  opacity: 0.5;
  z-index: 222;
}

.support_form .border_hover:hover:before {
  transform: scale(1);
  width: 100%;
  opacity: 1;
}

/*Odometer custom*/

.v-animated-odometer {
  display: inline-block;
  margin-right: 8px;
}

.odometer-inside {
  display: flex;
  align-items: flex-end;
  max-height: 46px;
}

.odometer.odometer-theme-default .odometer-digit {
  display: flex;
  align-items: center;
}

.price-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.38px;
}

.s_price-od {
  display: flex;
  align-items: center;
  max-height: 46px;
}

.s_price-od .price-sub {
  align-self: flex-end;
  font-family: Poppins, sans-serif;
}

.v_buy .btn_sub.od-switch {
  margin-bottom: 57px;
}

.v_buy .btn_sub.od-switch:before {
  bottom: -5px;
}

.v_buy .btn_sub.od-switch:after {
  bottom: 0;
}

@media (max-width: 767px) {
  .v_buy {
    position: relative;
  }

  .v_buy .btn_sub.od-switch {
    position: absolute;
    right: 20px;
  }
}

/* ! Odometer custom*/

a[disabled] {
  filter: grayscale(1) !important;
  cursor: default;
}

.reset_block {
  margin-top: 20px;
}

.form-wrapper {
  font-size: 16px;
  color: #7A7580;
  line-height: normal;
}

.hide_permanent {
  visibility: hidden;
  pointer-events: none;
}

</pre></body></html>