@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;-ms-touch-action:manipulation;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;-ms-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;-ms-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;-ms-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;-ms-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{-webkit-backface-visibility:hidden;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)}}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */.hamburger{font:inherit;display:inline-block;overflow:visible;margin:0;padding:15px;cursor:pointer;transition-timing-function:linear;transition-duration:.15s;transition-property:opacity,filter;text-transform:none;color:inherit;border:0;background-color:transparent}.hamburger.is-active:hover,.hamburger:hover{opacity:.7}.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner:after,.hamburger.is-active .hamburger-inner:before{background-color:#000}.hamburger-box{position:relative;display:inline-block;width:40px;height:24px}.hamburger-inner{top:50%;display:block;margin-top:-2px}.hamburger-inner,.hamburger-inner:after,.hamburger-inner:before{position:absolute;width:40px;height:4px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform;border-radius:4px;background-color:#000}.hamburger-inner:after,.hamburger-inner:before{display:block;content:""}.hamburger-inner:before{top:-10px}.hamburger-inner:after{bottom:-10px}.hamburger--3dx .hamburger-box{perspective:80px}.hamburger--3dx .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx .hamburger-inner:after,.hamburger--3dx .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx.is-active .hamburger-inner{transform:rotateY(180deg);background-color:transparent!important}.hamburger--3dx.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dx.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dx-r .hamburger-box{perspective:80px}.hamburger--3dx-r .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx-r .hamburger-inner:after,.hamburger--3dx-r .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx-r.is-active .hamburger-inner{transform:rotateY(-180deg);background-color:transparent!important}.hamburger--3dx-r.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dx-r.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dy .hamburger-box{perspective:80px}.hamburger--3dy .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy .hamburger-inner:after,.hamburger--3dy .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy.is-active .hamburger-inner{transform:rotateX(-180deg);background-color:transparent!important}.hamburger--3dy.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dy.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dy-r .hamburger-box{perspective:80px}.hamburger--3dy-r .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy-r .hamburger-inner:after,.hamburger--3dy-r .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy-r.is-active .hamburger-inner{transform:rotateX(180deg);background-color:transparent!important}.hamburger--3dy-r.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dy-r.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dxy .hamburger-box{perspective:80px}.hamburger--3dxy .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dxy .hamburger-inner:after,.hamburger--3dxy .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dxy.is-active .hamburger-inner{transform:rotateX(180deg) rotateY(180deg);background-color:transparent!important}.hamburger--3dxy.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dxy.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dxy-r .hamburger-box{perspective:80px}.hamburger--3dxy-r .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dxy-r .hamburger-inner:after,.hamburger--3dxy-r .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dxy-r.is-active .hamburger-inner{transform:rotateX(180deg) rotateY(180deg) rotate(-180deg);background-color:transparent!important}.hamburger--3dxy-r.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dxy-r.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--arrow.is-active .hamburger-inner:before{transform:translate3d(-8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrow.is-active .hamburger-inner:after{transform:translate3d(-8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--arrow-r.is-active .hamburger-inner:before{transform:translate3d(8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--arrow-r.is-active .hamburger-inner:after{transform:translate3d(8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowalt .hamburger-inner:before{transition:top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt .hamburger-inner:after{transition:bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt.is-active .hamburger-inner:before{top:0;transition:top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(-8px,-10px,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowalt.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(-8px,10px,0) rotate(45deg) scaleX(.7)}.hamburger--arrowalt-r .hamburger-inner:before{transition:top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt-r .hamburger-inner:after{transition:bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt-r.is-active .hamburger-inner:before{top:0;transition:top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(8px,-10px,0) rotate(45deg) scaleX(.7)}.hamburger--arrowalt-r.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(8px,10px,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowturn.is-active .hamburger-inner{transform:rotate(-180deg)}.hamburger--arrowturn.is-active .hamburger-inner:before{transform:translate3d(8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--arrowturn.is-active .hamburger-inner:after{transform:translate3d(8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowturn-r.is-active .hamburger-inner{transform:rotate(-180deg)}.hamburger--arrowturn-r.is-active .hamburger-inner:before{transform:translate3d(-8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowturn-r.is-active .hamburger-inner:after{transform:translate3d(-8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--boring .hamburger-inner,.hamburger--boring .hamburger-inner:after,.hamburger--boring .hamburger-inner:before{transition-property:none}.hamburger--boring.is-active .hamburger-inner{transform:rotate(45deg)}.hamburger--boring.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--boring.is-active .hamburger-inner:after{bottom:0;transform:rotate(-90deg)}.hamburger--collapse .hamburger-inner{top:auto;bottom:0;transition-delay:.13s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--collapse .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear}.hamburger--collapse .hamburger-inner:before{transition:top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--collapse.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--collapse.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;opacity:0}.hamburger--collapse.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;transform:rotate(-90deg)}.hamburger--collapse-r .hamburger-inner{top:auto;bottom:0;transition-delay:.13s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--collapse-r .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear}.hamburger--collapse-r .hamburger-inner:before{transition:top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--collapse-r.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(45deg)}.hamburger--collapse-r.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;opacity:0}.hamburger--collapse-r.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;transform:rotate(90deg)}.hamburger--elastic .hamburger-inner{top:2px;transition-timing-function:cubic-bezier(.68,-.55,.265,1.55);transition-duration:.275s}.hamburger--elastic .hamburger-inner:before{top:10px;transition:opacity .125s ease .275s}.hamburger--elastic .hamburger-inner:after{top:20px;transition:transform .275s cubic-bezier(.68,-.55,.265,1.55)}.hamburger--elastic.is-active .hamburger-inner{transition-delay:75ms;transform:translate3d(0,10px,0) rotate(135deg)}.hamburger--elastic.is-active .hamburger-inner:before{transition-delay:0s;opacity:0}.hamburger--elastic.is-active .hamburger-inner:after{transition-delay:75ms;transform:translate3d(0,-20px,0) rotate(-270deg)}.hamburger--elastic-r .hamburger-inner{top:2px;transition-timing-function:cubic-bezier(.68,-.55,.265,1.55);transition-duration:.275s}.hamburger--elastic-r .hamburger-inner:before{top:10px;transition:opacity .125s ease .275s}.hamburger--elastic-r .hamburger-inner:after{top:20px;transition:transform .275s cubic-bezier(.68,-.55,.265,1.55)}.hamburger--elastic-r.is-active .hamburger-inner{transition-delay:75ms;transform:translate3d(0,10px,0) rotate(-135deg)}.hamburger--elastic-r.is-active .hamburger-inner:before{transition-delay:0s;opacity:0}.hamburger--elastic-r.is-active .hamburger-inner:after{transition-delay:75ms;transform:translate3d(0,-20px,0) rotate(270deg)}.hamburger--emphatic{overflow:hidden}.hamburger--emphatic .hamburger-inner{transition:background-color .125s ease-in .175s}.hamburger--emphatic .hamburger-inner:before{left:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s}.hamburger--emphatic .hamburger-inner:after{top:10px;right:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s}.hamburger--emphatic.is-active .hamburger-inner{transition-delay:0s;transition-timing-function:ease-out;background-color:transparent!important}.hamburger--emphatic.is-active .hamburger-inner:before{top:-80px;left:-80px;transition:left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(80px,80px,0) rotate(45deg)}.hamburger--emphatic.is-active .hamburger-inner:after{top:-80px;right:-80px;transition:right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(-80px,80px,0) rotate(-45deg)}.hamburger--emphatic-r{overflow:hidden}.hamburger--emphatic-r .hamburger-inner{transition:background-color .125s ease-in .175s}.hamburger--emphatic-r .hamburger-inner:before{left:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s}.hamburger--emphatic-r .hamburger-inner:after{top:10px;right:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s}.hamburger--emphatic-r.is-active .hamburger-inner{transition-delay:0s;transition-timing-function:ease-out;background-color:transparent!important}.hamburger--emphatic-r.is-active .hamburger-inner:before{top:80px;left:-80px;transition:left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(80px,-80px,0) rotate(-45deg)}.hamburger--emphatic-r.is-active .hamburger-inner:after{top:80px;right:-80px;transition:right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(-80px,-80px,0) rotate(45deg)}.hamburger--minus .hamburger-inner:after,.hamburger--minus .hamburger-inner:before{transition:bottom .08s ease-out 0s,top .08s ease-out 0s,opacity 0s linear}.hamburger--minus.is-active .hamburger-inner:after,.hamburger--minus.is-active .hamburger-inner:before{transition:bottom .08s ease-out,top .08s ease-out,opacity 0s linear .08s;opacity:0}.hamburger--minus.is-active .hamburger-inner:before{top:0}.hamburger--minus.is-active .hamburger-inner:after{bottom:0}.hamburger--slider .hamburger-inner{top:2px}.hamburger--slider .hamburger-inner:before{top:10px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform,opacity}.hamburger--slider .hamburger-inner:after{top:20px}.hamburger--slider.is-active .hamburger-inner{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--slider.is-active .hamburger-inner:before{transform:rotate(-45deg) translate3d(-5.71429px,-6px,0);opacity:0}.hamburger--slider.is-active .hamburger-inner:after{transform:translate3d(0,-20px,0) rotate(-90deg)}.hamburger--slider-r .hamburger-inner{top:2px}.hamburger--slider-r .hamburger-inner:before{top:10px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform,opacity}.hamburger--slider-r .hamburger-inner:after{top:20px}.hamburger--slider-r.is-active .hamburger-inner{transform:translate3d(0,10px,0) rotate(-45deg)}.hamburger--slider-r.is-active .hamburger-inner:before{transform:rotate(45deg) translate3d(5.71429px,-6px,0);opacity:0}.hamburger--slider-r.is-active .hamburger-inner:after{transform:translate3d(0,-20px,0) rotate(90deg)}.hamburger--spin .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.22s}.hamburger--spin .hamburger-inner:before{transition:top .1s ease-in .25s,opacity .1s ease-in}.hamburger--spin .hamburger-inner:after{transition:bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)}.hamburger--spin.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(225deg)}.hamburger--spin.is-active .hamburger-inner:before{top:0;transition:top .1s ease-out,opacity .1s ease-out .12s;opacity:0}.hamburger--spin.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(-90deg)}.hamburger--spin-r .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.22s}.hamburger--spin-r .hamburger-inner:before{transition:top .1s ease-in .25s,opacity .1s ease-in}.hamburger--spin-r .hamburger-inner:after{transition:bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)}.hamburger--spin-r.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(-225deg)}.hamburger--spin-r.is-active .hamburger-inner:before{top:0;transition:top .1s ease-out,opacity .1s ease-out .12s;opacity:0}.hamburger--spin-r.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(90deg)}.hamburger--spring .hamburger-inner{top:2px;transition:background-color 0s linear .13s}.hamburger--spring .hamburger-inner:before{top:10px;transition:top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring .hamburger-inner:after{top:20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring.is-active .hamburger-inner{transition-delay:.22s;background-color:transparent!important}.hamburger--spring.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--spring.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:translate3d(0,10px,0) rotate(-45deg)}.hamburger--spring-r .hamburger-inner{top:auto;bottom:0;transition-delay:0s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--spring-r .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity 0s linear}.hamburger--spring-r .hamburger-inner:before{transition:top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring-r.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--spring-r.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity 0s linear .22s;opacity:0}.hamburger--spring-r.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:rotate(90deg)}.hamburger--stand .hamburger-inner{transition:transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0s linear 75ms}.hamburger--stand .hamburger-inner:before{transition:top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand .hamburger-inner:after{transition:bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand.is-active .hamburger-inner{transition:transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0s linear .15s;transform:rotate(90deg);background-color:transparent!important}.hamburger--stand.is-active .hamburger-inner:before{top:0;transition:top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(-45deg)}.hamburger--stand.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(45deg)}.hamburger--stand-r .hamburger-inner{transition:transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0s linear 75ms}.hamburger--stand-r .hamburger-inner:before{transition:top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand-r .hamburger-inner:after{transition:bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand-r.is-active .hamburger-inner{transition:transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0s linear .15s;transform:rotate(-90deg);background-color:transparent!important}.hamburger--stand-r.is-active .hamburger-inner:before{top:0;transition:top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(-45deg)}.hamburger--stand-r.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(45deg)}.hamburger--squeeze .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:75ms}.hamburger--squeeze .hamburger-inner:before{transition:top 75ms ease .12s,opacity 75ms ease}.hamburger--squeeze .hamburger-inner:after{transition:bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19)}.hamburger--squeeze.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(45deg)}.hamburger--squeeze.is-active .hamburger-inner:before{top:0;transition:top 75ms ease,opacity 75ms ease .12s;opacity:0}.hamburger--squeeze.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(-90deg)}.hamburger--vortex .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transition-duration:.2s}.hamburger--vortex .hamburger-inner:after,.hamburger--vortex .hamburger-inner:before{transition-delay:.1s;transition-timing-function:linear;transition-duration:0s}.hamburger--vortex .hamburger-inner:before{transition-property:top,opacity}.hamburger--vortex .hamburger-inner:after{transition-property:bottom,transform}.hamburger--vortex.is-active .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transform:rotate(765deg)}.hamburger--vortex.is-active .hamburger-inner:after,.hamburger--vortex.is-active .hamburger-inner:before{transition-delay:0s}.hamburger--vortex.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--vortex.is-active .hamburger-inner:after{bottom:0;transform:rotate(90deg)}.hamburger--vortex-r .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transition-duration:.2s}.hamburger--vortex-r .hamburger-inner:after,.hamburger--vortex-r .hamburger-inner:before{transition-delay:.1s;transition-timing-function:linear;transition-duration:0s}.hamburger--vortex-r .hamburger-inner:before{transition-property:top,opacity}.hamburger--vortex-r .hamburger-inner:after{transition-property:bottom,transform}.hamburger--vortex-r.is-active .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transform:rotate(-765deg)}.hamburger--vortex-r.is-active .hamburger-inner:after,.hamburger--vortex-r.is-active .hamburger-inner:before{transition-delay:0s}.hamburger--vortex-r.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--vortex-r.is-active .hamburger-inner:after{bottom:0;transform:rotate(-90deg)}
:root{--tagify-dd-color-primary:rgb(53,149,246);--tagify-dd-bg-color:white}.tagify{--tags-border-color:#DDD;--tags-hover-border-color:#CCC;--tags-focus-border-color:#3595f6;--tag-bg:#E5E5E5;--tag-hover:#D3E2E2;--tag-text-color:black;--tag-text-color--edit:black;--tag-pad:0.3em 0.5em;--tag-inset-shadow-size:1.1em;--tag-invalid-color:#D39494;--tag-invalid-bg:rgba(211, 148, 148, 0.5);--tag-remove-bg:rgba(211, 148, 148, 0.3);--tag-remove-btn-color:black;--tag-remove-btn-bg:none;--tag-remove-btn-bg--hover:#c77777;--input-color:inherit;--tag--min-width:1ch;--tag--max-width:auto;--tag-hide-transition:0.3s;--placeholder-color:rgba(0, 0, 0, 0.4);--placeholder-color-focus:rgba(0, 0, 0, 0.25);--loader-size:.8em;display:flex;align-items:flex-start;flex-wrap:wrap;border:1px solid #ddd;border:1px solid var(--tags-border-color);padding:0;line-height:normal;cursor:text;outline:0;position:relative;box-sizing:border-box;transition:.1s}@keyframes tags--bump{30%{transform:scale(1.2)}}@keyframes rotateLoader{to{transform:rotate(1turn)}}.tagify:hover{border-color:#ccc;border-color:var(--tags-hover-border-color)}.tagify.tagify--focus{transition:0s;border-color:#3595f6;border-color:var(--tags-focus-border-color)}.tagify[readonly]:not(.tagify--mix){cursor:default}.tagify[readonly]:not(.tagify--mix)>.tagify__input{visibility:hidden;width:0;margin:5px 0}.tagify[readonly]:not(.tagify--mix) .tagify__tag>div{padding:.3em .5em;padding:var(--tag-pad)}.tagify[readonly]:not(.tagify--mix) .tagify__tag>div::before{background:linear-gradient(45deg,var(--tag-bg) 25%,transparent 25%,transparent 50%,var(--tag-bg) 50%,var(--tag-bg) 75%,transparent 75%,transparent) 0/5px 5px;box-shadow:none;filter:brightness(.95)}.tagify[readonly] .tagify__tag__removeBtn{display:none}.tagify--loading .tagify__input::before{content:none}.tagify--loading .tagify__input::after{content:'';vertical-align:middle;opacity:1;width:.7em;height:.7em;width:var(--loader-size);height:var(--loader-size);border:3px solid;border-color:#eee #bbb #888 transparent;border-radius:50%;animation:rotateLoader .4s infinite linear;margin:-2px 0 -2px .5em}.tagify--loading .tagify__input:empty::after{margin-left:0}.tagify+input,.tagify+textarea{display:none!important}.tagify__tag{display:inline-flex;align-items:center;margin:5px 0 5px 5px;position:relative;z-index:1;outline:0;cursor:default;transition:.13s ease-out}.tagify__tag>div{vertical-align:top;box-sizing:border-box;max-width:100%;padding:.3em .5em;padding:var(--tag-pad,.3em .5em);color:#000;color:var(--tag-text-color,#000);line-height:inherit;border-radius:3px;white-space:nowrap;transition:.13s ease-out}.tagify__tag>div>*{white-space:pre-wrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:top;min-width:1ch;max-width:auto;min-width:var(--tag--min-width,1ch);max-width:var(--tag--max-width,auto);transition:.8s ease,.1s color}.tagify__tag>div>[contenteditable]{outline:0;-webkit-user-select:text;user-select:text;cursor:text;margin:-2px;padding:2px;max-width:350px}.tagify__tag>div::before{content:'';position:absolute;border-radius:inherit;left:0;top:0;right:0;bottom:0;z-index:-1;pointer-events:none;transition:120ms ease;animation:tags--bump .3s ease-out 1;box-shadow:0 0 0 1.1em #e5e5e5 inset;box-shadow:0 0 0 var(--tag-inset-shadow-size,1.1em) var(--tag-bg,#e5e5e5) inset}.tagify__tag:hover:not([readonly]) div::before{top:-2px;right:-2px;bottom:-2px;left:-2px;box-shadow:0 0 0 1.1em #d3e2e2 inset;box-shadow:0 0 0 var(--tag-inset-shadow-size,1.1em) var(--tag-hover,#d3e2e2) inset}.tagify__tag--loading{pointer-events:none}.tagify__tag--loading .tagify__tag__removeBtn{display:none}.tagify__tag--loading::after{--loader-size:.4em;content:'';vertical-align:middle;opacity:1;width:.7em;height:.7em;width:var(--loader-size);height:var(--loader-size);border:3px solid;border-color:#eee #bbb #888 transparent;border-radius:50%;animation:rotateLoader .4s infinite linear;margin:0 .5em 0 -.1em}.tagify__tag--flash div::before{animation:none}.tagify__tag--hide{width:0!important;padding-left:0;padding-right:0;margin-left:0;margin-right:0;opacity:0;transform:scale(0);transition:.3s;transition:var(--tag-hide-transition,.3s);pointer-events:none}.tagify__tag--hide>div>*{white-space:nowrap}.tagify__tag.tagify--noAnim>div::before{animation:none}.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div>span{opacity:.5}.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div::before{box-shadow:0 0 0 1.1em rgba(211,148,148,.5) inset!important;box-shadow:0 0 0 var(--tag-inset-shadow-size,1.1em) var(--tag-invalid-bg,rgba(211,148,148,.5)) inset!important;transition:.2s}.tagify__tag[readonly] .tagify__tag__removeBtn{display:none}.tagify__tag[readonly]>div::before{background:linear-gradient(45deg,var(--tag-bg) 25%,transparent 25%,transparent 50%,var(--tag-bg) 50%,var(--tag-bg) 75%,transparent 75%,transparent) 0/5px 5px;box-shadow:none;filter:brightness(.95)}.tagify__tag--editable>div{color:#000;color:var(--tag-text-color--edit,#000)}.tagify__tag--editable>div::before{box-shadow:0 0 0 2px #d3e2e2 inset!important;box-shadow:0 0 0 2px var(--tag-hover,#d3e2e2) inset!important}.tagify__tag--editable>.tagify__tag__removeBtn{pointer-events:none}.tagify__tag--editable>.tagify__tag__removeBtn::after{opacity:0;transform:translateX(100%) translateX(5px)}.tagify__tag--editable.tagify--invalid>div::before{box-shadow:0 0 0 2px #d39494 inset!important;box-shadow:0 0 0 2px var(--tag-invalid-color,#d39494) inset!important}.tagify__tag__removeBtn{order:5;display:inline-flex;align-items:center;justify-content:center;border-radius:50px;cursor:pointer;font:14px/1 Arial;background:0 0;background:var(--tag-remove-btn-bg,none);color:#000;color:var(--tag-remove-btn-color,#000);width:14px;height:14px;margin-right:4.66667px;margin-left:-4.66667px;overflow:hidden;transition:.2s ease-out}.tagify__tag__removeBtn::after{content:"\00D7";transition:.3s,color 0s}.tagify__tag__removeBtn:hover{color:#fff;background:#c77777;background:var(--tag-remove-btn-bg--hover,#c77777)}.tagify__tag__removeBtn:hover+div>span{opacity:.5}.tagify__tag__removeBtn:hover+div::before{box-shadow:0 0 0 1.1em rgba(211,148,148,.3) inset!important;box-shadow:0 0 0 var(--tag-inset-shadow-size,1.1em) var(--tag-remove-bg,rgba(211,148,148,.3)) inset!important;transition:box-shadow .2s}.tagify:not(.tagify--mix) .tagify__input br{display:none}.tagify:not(.tagify--mix) .tagify__input *{display:inline;white-space:nowrap}.tagify__input{flex-grow:1;display:inline-block;min-width:110px;margin:5px;padding:.3em .5em;padding:var(--tag-pad,.3em .5em);line-height:inherit;position:relative;white-space:pre-wrap;color:inherit;color:var(--input-color,inherit);box-sizing:inherit}.tagify__input:empty::before{transition:.2s ease-out;opacity:1;transform:none;display:inline-block;width:auto}.tagify--mix .tagify__input:empty::before{display:inline-block}.tagify__input:focus{outline:0}.tagify__input:focus::before{transition:.2s ease-out;opacity:0;transform:translatex(6px)}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.tagify__input:focus::before{display:none}}@supports (-ms-ime-align:auto){.tagify__input:focus::before{display:none}}.tagify__input:focus:empty::before{transition:.2s ease-out;opacity:1;transform:none;color:rgba(0,0,0,.25);color:var(--placeholder-color-focus)}@-moz-document url-prefix(){.tagify__input:focus:empty::after{display:none}}.tagify__input::before{content:attr(data-placeholder);height:1em;line-height:1em;margin:auto 0;z-index:1;color:rgba(0,0,0,.4);color:var(--placeholder-color);white-space:nowrap;pointer-events:none;opacity:0;position:absolute}.tagify--mix .tagify__input::before{display:none;position:static;line-height:inherit}.tagify__input::after{content:attr(data-suggest);display:inline-block;white-space:pre;color:#000;opacity:.3;pointer-events:none;max-width:100px}.tagify__input .tagify__tag{margin:0}.tagify__input .tagify__tag>div{padding-top:0;padding-bottom:0}.tagify--mix{display:block}.tagify--mix .tagify__input{padding:5px;margin:0;width:100%;height:100%;line-height:1.5;display:block}.tagify--mix .tagify__input::before{height:auto}.tagify--mix .tagify__input::after{content:none}.tagify--select::after{content:'>';opacity:.5;position:absolute;top:50%;right:0;bottom:0;font:16px monospace;line-height:8px;height:8px;pointer-events:none;transform:translate(-150%,-50%) scaleX(1.2) rotate(90deg);transition:.2s ease-in-out}.tagify--select[aria-expanded=true]::after{transform:translate(-150%,-50%) rotate(270deg) scaleY(1.2)}.tagify--select .tagify__tag{position:absolute;top:0;right:1.8em;bottom:0}.tagify--select .tagify__tag div{display:none}.tagify--select .tagify__input{width:100%}.tagify--invalid{--tags-border-color:#D39494}.tagify__dropdown{position:absolute;z-index:9999;transform:translateY(1px);overflow:hidden}.tagify__dropdown[placement=top]{margin-top:0;transform:translateY(-100%)}.tagify__dropdown[placement=top] .tagify__dropdown__wrapper{border-top-width:1px;border-bottom-width:0}.tagify__dropdown[position=text]{box-shadow:0 0 0 3px rgba(var(--tagify-dd-color-primary),.1);font-size:.9em}.tagify__dropdown[position=text] .tagify__dropdown__wrapper{border-width:1px}.tagify__dropdown__wrapper{max-height:300px;overflow:hidden;background:#fff;background:var(--tagify-dd-bg-color);border:1px solid #3595f6;border-color:var(--tagify-dd-color-primary);border-width:1.1px;border-top-width:0;box-shadow:0 2px 4px -2px rgba(0,0,0,.2);transition:.25s cubic-bezier(0,1,.5,1)}.tagify__dropdown__wrapper:hover{overflow:auto}.tagify__dropdown--initial .tagify__dropdown__wrapper{max-height:20px;transform:translateY(-1em)}.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper{transform:translateY(2em)}.tagify__dropdown__item{box-sizing:inherit;padding:.3em .5em;margin:1px;cursor:pointer;border-radius:2px;position:relative;outline:0}.tagify__dropdown__item--active{background:#3595f6;background:var(--tagify-dd-color-primary);color:#fff}.tagify__dropdown__item:active{filter:brightness(105%)}
:root{--width-desktop-safe: 1720px;--maxwidth-desktop-safe: calc(100% - 20px * 2);--width-mobile-safe: calc(100% - 20px * 2);--width-desktop: 2000px;--width-mobile: 768px;--height-desktop: 1000px;--height-mobile: 1000px;--fontsize-primary-desktop: 18px;--fontsize-primary-mobile: 24px;--fontheight-primary: 1.4;--fontweight-heavy: 900;--fontweight-bold: 700;--fontweight-semibold: 600;--fontweight-medium: 500;--fontweight-normal: 400;--fontweight-light: 300}@media(orientation:landscape){:root{--fontsize-primary: var(--fontsize-primary-desktop)}}@media(orientation:portrait){:root{--fontsize-primary: var(--fontsize-primary-mobile)}}@-ms-viewport{width:device-width}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}*,::after,::before{box-sizing:inherit}html{box-sizing:border-box;touch-action:manipulation;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}body{line-height:1;font-family:sans-serif;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote::after,blockquote::before,q::after,q::before{content:"";content:none}table{border-collapse:collapse;border-spacing:0}caption{caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}hr{box-sizing:content-box;height:0;overflow:visible}code,kbd,pre,samp{font-family:monospace,monospace}pre{overflow:auto;-ms-overflow-style:scrollbar}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0}sub{bottom:-0.25em}sup{top:-0.5em}em{font-style:italic}img{border-style:none}svg:not(:root){overflow:hidden}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}[tabindex="-1"]:focus{outline:0 !important}fieldset{min-width:0}legend{max-width:100%;white-space:normal;color:inherit;display:block}progress{vertical-align:baseline}textarea{overflow:auto;resize:vertical}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}template{display:none}[hidden]{display:none}@font-face{font-family:UVNLacLongQuan;font-display:swap;src:local("UVNLacLongQuan");src:url(fonts/UVNLacLongQuan.ttf)}@font-face{font-family:UVNLacLongQuanR;font-display:swap;src:local("UVNLacLongQuan");src:url(fonts/UVNLacLongQuan_R.ttf)}@font-face{font-family:cambria;src:url(fonts/CAMBRIA.ttc)}@font-face{font-family:cambriab;src:url(fonts/CAMBRIAB.ttf)}@font-face{font-family:Roboto-Light;src:url(fonts/Roboto-Light.ttf)}@font-face{font-family:Roboto-Regular;src:url(fonts/Roboto-Regular.ttf)}@font-face{font-family:Roboto-Bold;src:url(fonts/Roboto-Bold.ttf)}@font-face{font-family:Philosopher;src:url(fonts/Philosopher-Regular.ttf)}*{box-sizing:border-box;appearance:none;-webkit-appearance:none;-moz-appearance:none;text-decoration:none}*:focus{outline:none}.off,.off:hover{filter:grayscale(100%);pointer-events:none}html{overflow-x:hidden;overflow-y:auto;background:#fdfdfd}html.popup-opened{position:relative;height:100% !important;overflow:hidden;touch-action:none;-ms-touch-action:none}body{font-family:var(--font-primary),var(--font-secondary),sans-serif;line-height:var(--fontheight-primary);font-size:var(--fontsize-primary);width:100%;overflow-x:hidden;overflow-y:hidden;margin:0;padding:0;background:none}body.popup-opened{overflow:hidden}.row{display:flex;flex-wrap:wrap;width:100%}.row>.col-1{padding:0 10px;flex-basis:8.3333333333%;max-width:8.3333333333%}.row>.col-offset-1{padding:0 10px;margin-left:8.3333333333%;max-width:8.3333333333%}.row>.col-2{padding:0 10px;flex-basis:16.6666666667%;max-width:16.6666666667%}.row>.col-offset-2{padding:0 10px;margin-left:16.6666666667%;max-width:16.6666666667%}.row>.col-3{padding:0 10px;flex-basis:25%;max-width:25%}.row>.col-offset-3{padding:0 10px;margin-left:25%;max-width:25%}.row>.col-4{padding:0 10px;flex-basis:33.3333333333%;max-width:33.3333333333%}.row>.col-offset-4{padding:0 10px;margin-left:33.3333333333%;max-width:33.3333333333%}.row>.col-5{padding:0 10px;flex-basis:41.6666666667%;max-width:41.6666666667%}.row>.col-offset-5{padding:0 10px;margin-left:41.6666666667%;max-width:41.6666666667%}.row>.col-6{padding:0 10px;flex-basis:50%;max-width:50%}.row>.col-offset-6{padding:0 10px;margin-left:50%;max-width:50%}.row>.col-7{padding:0 10px;flex-basis:58.3333333333%;max-width:58.3333333333%}.row>.col-offset-7{padding:0 10px;margin-left:58.3333333333%;max-width:58.3333333333%}.row>.col-8{padding:0 10px;flex-basis:66.6666666667%;max-width:66.6666666667%}.row>.col-offset-8{padding:0 10px;margin-left:66.6666666667%;max-width:66.6666666667%}.row>.col-9{padding:0 10px;flex-basis:75%;max-width:75%}.row>.col-offset-9{padding:0 10px;margin-left:75%;max-width:75%}.row>.col-10{padding:0 10px;flex-basis:83.3333333333%;max-width:83.3333333333%}.row>.col-offset-10{padding:0 10px;margin-left:83.3333333333%;max-width:83.3333333333%}.row>.col-11{padding:0 10px;flex-basis:91.6666666667%;max-width:91.6666666667%}.row>.col-offset-11{padding:0 10px;margin-left:91.6666666667%;max-width:91.6666666667%}.row>.col-12{padding:0 10px;flex-basis:100%;max-width:100%}.row>.col-offset-12{padding:0 10px;margin-left:100%;max-width:100%}@media(orientation:portrait){.row>.col-mobile-1{padding:0 10px;flex-basis:8.3333333333%;max-width:8.3333333333%}.row>.col-mobile-offset-1{padding:0 10px;margin-left:8.3333333333%;max-width:8.3333333333%}.row>.col-mobile-2{padding:0 10px;flex-basis:16.6666666667%;max-width:16.6666666667%}.row>.col-mobile-offset-2{padding:0 10px;margin-left:16.6666666667%;max-width:16.6666666667%}.row>.col-mobile-3{padding:0 10px;flex-basis:25%;max-width:25%}.row>.col-mobile-offset-3{padding:0 10px;margin-left:25%;max-width:25%}.row>.col-mobile-4{padding:0 10px;flex-basis:33.3333333333%;max-width:33.3333333333%}.row>.col-mobile-offset-4{padding:0 10px;margin-left:33.3333333333%;max-width:33.3333333333%}.row>.col-mobile-5{padding:0 10px;flex-basis:41.6666666667%;max-width:41.6666666667%}.row>.col-mobile-offset-5{padding:0 10px;margin-left:41.6666666667%;max-width:41.6666666667%}.row>.col-mobile-6{padding:0 10px;flex-basis:50%;max-width:50%}.row>.col-mobile-offset-6{padding:0 10px;margin-left:50%;max-width:50%}.row>.col-mobile-7{padding:0 10px;flex-basis:58.3333333333%;max-width:58.3333333333%}.row>.col-mobile-offset-7{padding:0 10px;margin-left:58.3333333333%;max-width:58.3333333333%}.row>.col-mobile-8{padding:0 10px;flex-basis:66.6666666667%;max-width:66.6666666667%}.row>.col-mobile-offset-8{padding:0 10px;margin-left:66.6666666667%;max-width:66.6666666667%}.row>.col-mobile-9{padding:0 10px;flex-basis:75%;max-width:75%}.row>.col-mobile-offset-9{padding:0 10px;margin-left:75%;max-width:75%}.row>.col-mobile-10{padding:0 10px;flex-basis:83.3333333333%;max-width:83.3333333333%}.row>.col-mobile-offset-10{padding:0 10px;margin-left:83.3333333333%;max-width:83.3333333333%}.row>.col-mobile-11{padding:0 10px;flex-basis:91.6666666667%;max-width:91.6666666667%}.row>.col-mobile-offset-11{padding:0 10px;margin-left:91.6666666667%;max-width:91.6666666667%}.row>.col-mobile-12{padding:0 10px;flex-basis:100%;max-width:100%}.row>.col-mobile-offset-12{padding:0 10px;margin-left:100%;max-width:100%}}.wrapper{width:var(--width-desktop);transform-origin:top left;overflow-x:hidden;overflow-y:auto}@media(orientation:portrait){.wrapper{width:var(--width-mobile)}}.wrapper__content{overflow-x:hidden;overflow-y:hidden;width:var(--width-desktop)}.container{display:block;margin:0 auto;width:var(--width-desktop-safe);max-width:var(--maxwidth-desktop-safe)}@media(orientation:portrait){.container{width:var(--width-mobile-safe)}}hr.split{margin:0;border:0;background:rgba(0,0,0,0)}hr.split--low{height:16px}hr.split--medium{height:24px}hr.split--high{height:32px}hr.split--giant{height:48px}.section{position:relative;display:block;width:var(--width-desktop)}@media(max-width: 700px){.section{width:var(--width-mobile)}}@media(orientation:portrait){.section{width:var(--width-mobile)}}.section__background{display:block;width:100%}.section__background img,.section__background video{width:100%;height:100%;object-fit:cover}.section__background video{position:absolute;top:0}.section__content{display:block;width:100%;height:100%;position:absolute;top:0px;left:0px}.section.autoHeight .section__background{position:absolute;top:0;left:0;bottom:0}.section.autoHeight .section__content{display:block;position:relative}.section--fixedHeight>.section__background{position:static;display:block;width:100%;height:100%}.section--fixedHeight>.section__background img{width:100%;height:100%;object-fit:cover}@media(max-width: 700px){.section--fixedHeight>.section__background img{height:auto}}@media(orientation:portrait){.section--fixedHeight>.section__background img{height:auto}}.section--fixedHeight>.section__content{display:block;width:100%;height:100%;position:absolute;top:0px;left:0px}.section__overlay{display:block;width:100%;height:100%;position:absolute;top:0px;left:0px;background:rgba(0,0,0,.8) 100%;background:-webkit-linear-gradient(rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);background:linear-gradient(rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%)}.desktop{display:block !important}.desktop-inline{display:inline-block !important}.desktop-flex{display:flex !important}.desktop-grid{display:grid !important}.mobile,.mobile-inline,.mobile-flex,.mobile-grid{display:none !important}@media(orientation:portrait){.desktop,.desktop-inline,.desktop-flex,.desktop-grid{display:none !important}.mobile{display:block !important}.mobile-inline{display:inline-block !important}.mobile-flex{display:flex !important}.mobile-grid{display:grid !important}}.clearfix:after{content:"";clear:both;display:table}.ml-auto{margin-left:auto}.mr-auto{margin-right:auto}.text-left{text-align:left;justify-content:flex-start !important}.text-center{text-align:center;justify-content:center !important}.text-right{text-align:right;justify-content:flex-end !important}.flex{display:flex}.flex-wrap{flex-wrap:wrap}.flex-column{flex-direction:column}.flex-start{justify-content:flex-start}.flex-end{justify-content:flex-end}.flex-middle{align-items:center}.flex.column{flex-direction:column}.flex.space-between{justify-content:space-between}.flex.center{align-items:center}.flex.wrap{flex-wrap:wrap}@media(orientation:portrait){.mobile-flex{display:flex}.mobile-flex-wrap{flex-wrap:wrap}.mobile-flex-column{flex-direction:column}.mobile-flex-start{justify-content:flex-start}.mobile-flex-end{justify-content:flex-end}.mobile-flex-middle{align-items:center}.mobile-flex.column{flex-direction:column}.mobile-flex.space-between{justify-content:space-between}.mobile-flex.center{align-items:center}.mobile-flex.wrap{flex-wrap:wrap}}.floating{pointer-events:none;position:fixed;top:0;left:0;width:100%;height:100vh;z-index:500;display:flex;align-items:center;justify-content:center}.floating *{pointer-events:all}.scrollwatch-pin{position:absolute;left:50%;top:50%;width:1px;height:1px;background:rgba(0,0,0,0);pointer-events:none}@keyframes shine{100%{filter:brightness(120%)}}@keyframes shine_scale{100%{filter:brightness(90%);transform:scale(1.1);transform-origin:center center}}@keyframes shine_move{100%{filter:brightness(110%);transform:translateX(12px)}}.fancybox-active{height:100% !important}.popup{pointer-events:none;position:fixed;top:0;left:0;width:100%;height:100vh;z-index:500;display:flex;align-items:center;justify-content:center}.popup__background,.popup__background--unclosable{opacity:0;visibility:hidden;position:absolute;background:rgba(0,0,0,.8);width:100%;height:100vh;transition:opacity 1s}.popup__content{opacity:0;visibility:hidden;z-index:2;transition:all .2s;transform:scale(0)}.popup__tool{pointer-events:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:500;padding:5px;display:flex;opacity:0;visibility:hidden}.popup__close{pointer-events:all;background:#000;position:absolute;right:0%;top:0%;display:flex;justify-content:center;align-items:center;align-content:center;width:42px;height:42px}.popup.active{opacity:1;visibility:visible;pointer-events:all}.popup.active .popup__background,.popup.active .popup__background--unclosable{opacity:1;visibility:visible}.popup.active .popup__content{opacity:1;visibility:visible;transform:scale(1)}.popup.active .popup__tool{opacity:1;visibility:visible}.popup--open-image .popup__content .image img{display:block;max-width:100%;max-height:100%}.popup--open-video .popup__content{width:80%;height:60%}.popup--open-video .popup__content .embed{width:100%;height:100%}.popup--open-video .popup__content .embed iframe{display:block;width:100%;height:100%}
.MS__sprite-bg-info{background-image:url(optimized/header/images/sprite.webp);background-position:0px -212px;width:334px;height:59px;display:block}.MS__sprite-btn_thele{background-image:url(optimized/header/images/sprite.webp);background-position:0px -119px;width:250px;height:93px;display:block}.MS__sprite-btn-fanpage{background-image:url(optimized/header/images/sprite.webp);background-position:-334px -212px;width:59px;height:59px;display:block}.MS__sprite-btn-home{background-image:url(optimized/header/images/sprite.webp);background-position:-393px -212px;width:59px;height:59px;display:block}.MS__sprite-btn{background-image:url(optimized/header/images/sprite.webp);background-position:-250px -119px;width:216px;height:51px;display:block}.MS__sprite-sao{background-image:url(optimized/header/images/sprite.webp);background-position:0px 0px;width:475px;height:119px;display:block}.taydu2_cuuthienhuyennu_header{margin-top:0}@media(orientation:landscape){.taydu2_cuuthienhuyennu_header,.taydu2_cuuthienhuyennu_header .section__background,.taydu2_cuuthienhuyennu_header .section__content,.taydu2_cuuthienhuyennu_header .inner{height:1000px}}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header,.taydu2_cuuthienhuyennu_header .section__background,.taydu2_cuuthienhuyennu_header .section__content,.taydu2_cuuthienhuyennu_header .inner{height:1300px}}.taydu2_cuuthienhuyennu_header video{width:2000px;height:1000px}.taydu2_cuuthienhuyennu_header .inner{position:absolute;left:0;top:0;right:0;bottom:0;box-sizing:border-box;z-index:1;font-family:UVNLacLongQuan}.taydu2_cuuthienhuyennu_header .inner .logo{position:absolute;top:10px;left:20px}.taydu2_cuuthienhuyennu_header .inner .rating{position:absolute;top:20px;left:270px}.taydu2_cuuthienhuyennu_header .inner .text_main{position:absolute;top:25px;left:445px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .text_main{top:90px;left:10px;width:315px}}.taydu2_cuuthienhuyennu_header .inner .gr_luot{background-image:url(optimized/header/images/sprite.webp);background-position:0px 0px;width:475px;height:119px;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:5px;position:absolute;bottom:15px;left:28%;transform:translateX(-50%);z-index:10}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_luot{bottom:130px;transform-origin:center bottom;left:0;right:0;margin:auto;transform:unset}}.taydu2_cuuthienhuyennu_header .inner .gr_luot .turn{font-size:30px;line-height:40px;color:#faecd8;position:absolute;top:55px;left:128px;font-family:cambriab;width:225px;text-align:center;font-weight:bold}.taydu2_cuuthienhuyennu_header .inner .gr_bar{background:url(optimized/header/images/bg-bar.webp) center center no-repeat;background-size:100% 100%;position:absolute;bottom:15px;left:54%;transform:translateX(-50%);width:1000px;height:80px;overflow:hidden}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_bar{background:url(optimized/header/images/bg-bar-mb.webp) center center no-repeat;bottom:105px;width:683px;height:72px;left:0;right:0;margin:auto;transform:unset;transform-origin:left top}}.taydu2_cuuthienhuyennu_header .inner .gr_bar--track{position:absolute;top:30px;left:30px;width:900px;height:14px;border-radius:7px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_bar--track{width:615px;top:29px}}.taydu2_cuuthienhuyennu_header .inner .gr_bar--progress{background:linear-gradient(to right, #fff, #fff09e);box-shadow:inset 0 0 3px #fff;height:100%;width:0%;transition:width .6s ease;border-radius:7px;position:relative}.taydu2_cuuthienhuyennu_header .inner .gr_bar--progress:after{background:url(optimized/header/images/light-arrow.webp) right top no-repeat;content:"";width:120px;height:65px;display:block;position:absolute;top:-27px;right:-50px}.taydu2_cuuthienhuyennu_header .inner .gr_button{display:flex;align-items:center;justify-content:center;position:absolute;left:495px;top:565px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_button{bottom:25px;top:unset;transform-origin:center top;left:0;right:0;transform:scale(1.5)}}.taydu2_cuuthienhuyennu_header .inner .gr_button .btn_thele{background-image:url(optimized/header/images/sprite.webp);background-position:0px -119px;width:250px;height:93px;display:block}.taydu2_cuuthienhuyennu_header .inner .gr_button .btn_thele:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item{position:absolute}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item img.normal{display:block}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item img.active{display:none}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item.active{pointer-events:auto}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item.active img.normal{display:none}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item.active img.active{display:block}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_reward--item img{scale:.6;transform-origin:center center}}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item.off{filter:grayscale(1)}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:hover{z-index:100}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:hover .tooltip{display:block}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item .tooltip{position:absolute;bottom:30%;left:120px;z-index:100;display:none;pointer-events:none}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(1){bottom:113px;left:calc(50% - 663px)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(1){bottom:266px;left:-52px}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(1) .tooltip{bottom:50%;left:50px}}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(2){bottom:60px;left:calc(50% - 428px)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(2){bottom:145px;left:30px}}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(3){bottom:106px;left:calc(50% - 190px)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(3){bottom:240px;left:160px}}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(4){bottom:50px;left:calc(50% + 48px)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(4){bottom:140px;left:300px}}.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(5){bottom:89px;left:calc(50% + 313px)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_reward--item:nth-child(5){bottom:220px;left:450px}}.taydu2_cuuthienhuyennu_header .inner .gr_login{position:absolute;top:20px;right:30px;display:flex;align-items:center;justify-content:center;gap:10px}.taydu2_cuuthienhuyennu_header .inner .gr_login .btn_login,.taydu2_cuuthienhuyennu_header .inner .gr_login .btn_logout{background-image:url(optimized/header/images/sprite.webp);background-position:-250px -119px;width:216px;height:51px;display:block;font-size:20px;line-height:34px;color:#091543;text-decoration:none;text-transform:uppercase;padding:10px 20px;padding-bottom:13px;text-align:center}.taydu2_cuuthienhuyennu_header .inner .gr_login .btn_home{background-image:url(optimized/header/images/sprite.webp);background-position:-393px -212px;width:59px;height:59px;display:block;font-size:0}.taydu2_cuuthienhuyennu_header .inner .gr_login .btn_fanpage{background-image:url(optimized/header/images/sprite.webp);background-position:-334px -212px;width:59px;height:59px;display:block;font-size:0}.taydu2_cuuthienhuyennu_header .inner .gr_login .info-user{position:absolute;top:70px;right:0;background-image:url(optimized/header/images/sprite.webp);background-position:0px -212px;width:334px;height:59px;font-size:20px;color:#ffecc1;line-height:59px;text-align:center;font-family:Cambria}@media(orientation:portrait){.taydu2_cuuthienhuyennu_header .inner .gr_login .info-user{right:-15px}}
.taydu2_cuuthienhuyennu_vongquay{margin-top:-1px}@media(orientation:landscape){.taydu2_cuuthienhuyennu_vongquay,.taydu2_cuuthienhuyennu_vongquay .section__background,.taydu2_cuuthienhuyennu_vongquay .section__content,.taydu2_cuuthienhuyennu_vongquay .inner{height:1000px}}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay,.taydu2_cuuthienhuyennu_vongquay .section__background,.taydu2_cuuthienhuyennu_vongquay .section__content,.taydu2_cuuthienhuyennu_vongquay .inner{height:1300px}}.taydu2_cuuthienhuyennu_vongquay .inner .title{position:absolute;top:-20px;left:50%;transform:translateX(-50%)}.taydu2_cuuthienhuyennu_vongquay .inner .group__btn{display:flex;align-items:center;justify-content:center;gap:22px;left:50%;transform:translateX(-50%);position:absolute;top:200px;z-index:9}.taydu2_cuuthienhuyennu_vongquay .inner .group__btn a{z-index:1}.taydu2_cuuthienhuyennu_vongquay .inner .group__btn a:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_vongquay .inner .group__btn--diemdanh{display:block;font-size:0px;background-image:url(optimized/vongquay/images/sprite.webp);background-position:0px -266px;width:230px;height:69px}.taydu2_cuuthienhuyennu_vongquay .inner .group__btn--thele{display:block;font-size:0px;background-image:url(optimized/vongquay/images/sprite.webp);background-position:-388px -69px;width:230px;height:69px}.taydu2_cuuthienhuyennu_vongquay .inner .group__btn--lichsu{display:block;font-size:0px;background-image:url(optimized/vongquay/images/sprite.webp);background-position:-388px 0px;width:230px;height:69px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__btn{left:50%;transform:translateX(-50%);flex-direction:row;gap:20px}}.taydu2_cuuthienhuyennu_vongquay .inner .text__point{position:absolute;top:150px;right:0;left:0;margin:auto;font-size:22px;text-align:center;font-weight:bold;font-family:cambriab;display:flex;align-items:center;justify-content:center;gap:12px;z-index:10;text-transform:uppercase}.taydu2_cuuthienhuyennu_vongquay .inner .text__point .text{font-size:22px;color:#fff}.taydu2_cuuthienhuyennu_vongquay .inner .text__point>span{font-size:22px;color:#fff}.taydu2_cuuthienhuyennu_vongquay .inner .text__point .group__point{display:flex;align-items:center;justify-content:center;gap:10px;font-size:28px;color:#fae58f}.taydu2_cuuthienhuyennu_vongquay .inner .text__point .group__point--btn{display:block;font-size:0px;background-image:url(optimized/vongquay/images/sprite.webp);background-position:-443px -247px;width:63px;height:63px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .text__point{position:absolute;top:10%}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy{position:absolute;left:450px;top:833px;z-index:10}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy{width:100%;left:0;top:auto;bottom:94px}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn{display:flex;flex-direction:column;width:212px;height:110px;position:relative;z-index:2;cursor:pointer;color:#0c5187;font-family:cambriab;text-align:center;margin-top:0;gap:5px;text-transform:uppercase}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn{width:170px;margin-top:0;top:-33px;left:50px}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn .small{font-size:20px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn .small{font-size:17px}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn .lager{font-size:18px;text-transform:uppercase}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn .lager{font-size:17px}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn .point_tichluy{margin:0 auto}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn .point_tichluy span{font-size:30px;line-height:39px;color:#fbeedc}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--btn .point_tichluy span{font-size:26px}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item{width:1300px;height:110px;position:absolute;top:0;left:255px;padding:0}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item{background:none;width:460px;top:-35px;padding:0;left:235px;z-index:5}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item.active{display:block}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item--child .swiper-wrapper{align-items:center}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item--child .swiper-wrapper{align-items:flex-start}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item--child--item{display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;width:115px;box-sizing:border-box;height:auto;padding-bottom:38px}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item--child--item img{display:block;max-width:100%}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item--child--item{width:140px}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .tooltip{position:absolute;top:-190px;left:calc(var(--tooltip-base-left, 0px) + 50px);z-index:2;display:none;pointer-events:none}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .tooltip.show{display:block}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .tooltip{left:var(--tooltip-base-left, 0px)}}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .btn__gift{display:block;font-size:0px;background-image:url(optimized/vongquay/images/sprite.webp);background-position:-443px -213px;width:126px;height:34px;position:absolute;bottom:0;left:48%;transform:translateX(-50%)}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .btn__gift:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .btn__gift.received{pointer-events:none;display:block;font-size:0px;background-image:url(optimized/vongquay/images/sprite.webp);background-position:-443px -179px;width:126px;height:34px}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .swiper-button--milestone{display:none}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .swiper-button-next--milestoneSwiper{display:flex;align-items:center;justify-content:center;position:absolute;width:50px;height:50px;left:470px;right:auto;top:20px;margin:0;z-index:12;border-radius:50%;background:radial-gradient(circle at 50% 45%, #ffffff 0%, #eaf3ff 62%, #cfe0f6 100%);box-shadow:0 0 0 3px #f3a43a,0 0 10px 2px rgba(243,164,58,.6);cursor:pointer}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .swiper-button-next--milestoneSwiper::after{content:"";display:block;width:14px;height:14px;margin-left:-4px;border-top:4px solid #1c3f73;border-right:4px solid #1c3f73;border-radius:2px;transform:rotate(45deg)}.taydu2_cuuthienhuyennu_vongquay .inner .group__tichluy--item .swiper-button-next--milestoneSwiper.swiper-button-disabled{opacity:.4}}.taydu2_cuuthienhuyennu_vongquay .inner .effect{width:2000px;height:1000px;position:absolute;top:0;left:0;z-index:2;pointer-events:none}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect{width:100%;height:625px;left:15px;top:298px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main{position:absolute;animation-duration:7s;animation-timing-function:linear;animation:float 6s ease-in-out infinite}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main img{height:auto;display:block}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main img{scale:.8;transform-origin:bottom}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main img.tooltip{display:none;position:absolute;left:-15px;bottom:0}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main:hover img.tooltip{display:block}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main:hover.spin__effect--8 img.tooltip,.taydu2_cuuthienhuyennu_vongquay .inner .effect__main:hover.spin__effect--9 img.tooltip{left:55px;bottom:30px}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.active{filter:brightness(130%)}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--1{top:246px;left:401px;animation-delay:0s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--1{top:129px;left:-18px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--2{top:321px;left:556px;animation-delay:.3s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--2{top:1px;left:41px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--3{top:350px;left:360px;animation-delay:.6s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--3{top:204px;left:-41px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--4{top:471px;left:551px;animation-delay:.9s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--4{left:90px;top:365px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--5{top:546px;left:396px;animation-delay:1.2s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--5{left:218px;top:410px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--6{top:251px;left:1461px;animation-delay:.4s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--6{left:619px;top:126px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--7{top:326px;left:1311px;animation-delay:1.5s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--7{left:573px;top:-3px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--8{top:401px;left:1466px;animation-delay:.7s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--8{left:600px;top:260px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--9{top:476px;left:1280px;animation-delay:1.1s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--9{left:476px;top:323px}}.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--10{top:551px;left:1466px;animation-delay:.2s}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .effect__main.spin__effect--10{left:386px;top:408px}}.taydu2_cuuthienhuyennu_vongquay .inner .voso{width:1000px;height:auto;position:absolute;top:300px;left:0;right:0;margin:auto}.taydu2_cuuthienhuyennu_vongquay .inner .voso img{display:block;width:100%;height:auto}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .voso{top:auto;bottom:470px;left:-140px}}.taydu2_cuuthienhuyennu_vongquay .inner .voso-top{top:95px;left:0;z-index:2;position:absolute;transform-origin:top center}.taydu2_cuuthienhuyennu_vongquay .inner .voso-bottom{bottom:0;left:0;z-index:1;position:absolute}.taydu2_cuuthienhuyennu_vongquay .inner .voso-open{bottom:0;left:0;z-index:5;position:absolute;display:none;opacity:0}.taydu2_cuuthienhuyennu_vongquay .inner .voso.active{z-index:11}.taydu2_cuuthienhuyennu_vongquay .inner .voso.active img{animation:lotusGlowZoom 1.2s ease-out forwards}.taydu2_cuuthienhuyennu_vongquay .inner .voso.active .voso-top{transform-origin:center top;animation:vosoTopOpen 1.5s linear forwards}.taydu2_cuuthienhuyennu_vongquay .inner .voso.active .voso-open{display:block;animation:vosoOpenShow 1s ease 1.4s forwards}.taydu2_cuuthienhuyennu_vongquay .inner .action{position:absolute;left:0;right:0;margin:auto;display:flex;justify-content:center;bottom:200px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .action{display:flex;justify-content:center;align-items:center;align-content:center;text-align:center;vertical-align:middle;gap:0;top:auto;bottom:280px}}.taydu2_cuuthienhuyennu_vongquay .inner .action .rut{position:absolute;top:672px;transform:scale(0.75);transform-origin:center center}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .action .rut{position:static;top:auto;transform:none}}.taydu2_cuuthienhuyennu_vongquay .inner .action .rut-1{display:block;font-size:0px;background-image:url(optimized/vongquay/images/sprite.webp);background-position:0px 0px;width:388px;height:133px}.taydu2_cuuthienhuyennu_vongquay .inner .action .rut-1:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_vongquay .inner .action .rut-1{left:606px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .action .rut-1{left:auto}}.taydu2_cuuthienhuyennu_vongquay .inner .action .rut-10{display:block;font-size:0px;background-image:url(optimized/vongquay/images/sprite.webp);background-position:0px -133px;width:388px;height:133px}.taydu2_cuuthienhuyennu_vongquay .inner .action .rut-10:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_vongquay .inner .action .rut-10{left:1006px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_vongquay .inner .action .rut-10{left:auto}}@keyframes float{0%,100%{transform:translate(0, 0) rotate(0deg)}25%{transform:translate(8px, -12px) rotate(1deg)}50%{transform:translate(-6px, -8px) rotate(-1deg)}75%{transform:translate(10px, -10px) rotate(0.5deg)}}@keyframes vosoTopOpen{0%{transform:scaleY(1);opacity:1}75%{transform:scaleY(0.8);opacity:1}95%{transform:scaleY(0.6);opacity:.4}100%{transform:scaleY(0);opacity:0}}@keyframes vosoOpenShow{0%{opacity:0}100%{opacity:1}}@keyframes lotusGlowZoom{0%{transform:scale(1) translateY(0);filter:brightness(1)}60%{transform:scale(1.05) translateY(-20px);filter:brightness(1.15) drop-shadow(0 0 40px rgba(180, 222, 255, 0.95)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.65))}100%{transform:scale(1.1) translateY(-20px);filter:brightness(1.2) drop-shadow(0 0 40px rgba(180, 222, 255, 0.95)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.65))}}
.taydu2_cuuthienhuyennu_thatim{margin-top:-1px}@media(orientation:landscape){.taydu2_cuuthienhuyennu_thatim,.taydu2_cuuthienhuyennu_thatim .section__background,.taydu2_cuuthienhuyennu_thatim .section__content,.taydu2_cuuthienhuyennu_thatim .inner{height:1000px}}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim,.taydu2_cuuthienhuyennu_thatim .section__background,.taydu2_cuuthienhuyennu_thatim .section__content,.taydu2_cuuthienhuyennu_thatim .inner{height:1300px}}.taydu2_cuuthienhuyennu_thatim .inner{font-family:cambriab}.taydu2_cuuthienhuyennu_thatim .inner .title{position:absolute;top:-20px;left:50%;transform:translateX(-50%)}.taydu2_cuuthienhuyennu_thatim .inner .group__btn{display:flex;align-items:center;justify-content:center;gap:6px;left:1340px;position:absolute;flex-direction:column;top:271px;z-index:9}.taydu2_cuuthienhuyennu_thatim .inner .group__btn a{z-index:1}.taydu2_cuuthienhuyennu_thatim .inner .group__btn a:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--nhantienpham{display:block;font-size:0px;background-image:url(optimized/thatim/images/sprite.webp);background-position:-470px -69px;width:230px;height:69px}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--thele{display:block;font-size:0px;background-image:url(optimized/thatim/images/sprite.webp);background-position:-470px -138px;width:230px;height:69px}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--lichsu{display:block;font-size:0px;background-image:url(optimized/thatim/images/sprite.webp);background-position:-470px 0px;width:230px;height:69px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__btn{left:50%;transform:translateX(-50%);flex-direction:row;width:-moz-fit-content;width:fit-content;top:160px;gap:20px}}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left{position:absolute;left:0;top:0;z-index:10}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left{top:400px;left:550px;transform:scale(0.9)}}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left .btn__congoc{display:block;font-size:0px;background-image:url(optimized/thatim/images/sprite.webp);background-position:-265px 0px;width:205px;height:212px}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left .btn__congoc:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left .btn__congoc{position:absolute;left:516px;top:259px;z-index:2}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left .btn__congoc{left:10px;top:0}}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left .btn__thanngoc{display:block;font-size:0px;background-image:url(optimized/thatim/images/sprite.webp);background-position:0px -265px;width:204px;height:197px}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left .btn__thanngoc:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left .btn__thanngoc{position:absolute;left:513px;top:450px;z-index:1}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__btn--left .btn__thanngoc{left:10px;top:170px}}.taydu2_cuuthienhuyennu_thatim .inner .btn__nhanthuong{display:block;font-size:0px;background-image:url(optimized/thatim/images/sprite.webp);background-position:0px 0px;width:265px;height:265px;position:absolute;left:860px;top:420px;z-index:10}.taydu2_cuuthienhuyennu_thatim .inner .btn__nhanthuong:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .btn__nhanthuong{transform:scale(0.7);right:-30px;left:auto;top:650px}}.taydu2_cuuthienhuyennu_thatim .inner .feature{position:absolute;margin:0 auto;height:760px;width:2000px;top:102px;left:calc(50% - 1000px)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .feature{width:100%;height:654px;top:105px;left:0}}.taydu2_cuuthienhuyennu_thatim .inner .feature_list{max-width:1600px;height:760px;top:8.5%;left:53%;transform:translateX(-50%)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .feature_list{top:19%;left:50%;width:768px;height:880px;z-index:2}}.taydu2_cuuthienhuyennu_thatim .inner .feature_slide{width:1080px !important;height:760px}.taydu2_cuuthienhuyennu_thatim .inner .feature_slide .pet__act{filter:grayscale(1)}.taydu2_cuuthienhuyennu_thatim .inner .feature_slide.levelup .pet__act{filter:grayscale(0)}.taydu2_cuuthienhuyennu_thatim .inner .feature_slide{opacity:1 !important}.taydu2_cuuthienhuyennu_thatim .inner .feature_slide:not(.taydu2_cuuthienhuyennu_thatim .inner .feature_slide.swiper-slide-active){opacity:0 !important;pointer-events:none}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .feature_slide{width:768px !important}}.taydu2_cuuthienhuyennu_thatim .inner .feature_item{display:block;width:100%;margin:0 auto;height:100%;background:rgba(0,0,0,0);display:flex;justify-content:center;align-items:center;align-content:center;text-align:center;vertical-align:middle;position:relative}.taydu2_cuuthienhuyennu_thatim .inner .feature_item .pet__act{position:absolute;left:50%;top:57%;transform:translate(-50%, -50%)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .feature_item .pet__act{max-width:100%;height:auto;left:calc(50% + 30px);top:46%;transform:translate(-50%, -50%) scale(0.85)}}.taydu2_cuuthienhuyennu_thatim .inner .feature_item .pet__name{position:absolute;top:auto;left:0;right:0;bottom:10px;margin:auto}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .feature_item .pet__name{top:700px}}.taydu2_cuuthienhuyennu_thatim .inner .feature_item img{border-radius:1rem}.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-prev,.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-next{top:460px;margin-top:0;opacity:1;pointer-events:auto}.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-prev.swiper-button-disabled,.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-next.swiper-button-disabled{opacity:.4;pointer-events:none}.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-prev:after,.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-next:after{content:none}.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-prev{left:246px;display:block;font-size:0px;background-image:url(optimized/thatim/images/sprite.webp);background-position:-578px -207px;width:108px;height:91px}.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-prev:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-prev{left:200px;top:875px;transform:scale(0.8)}}.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-next{right:246px;left:auto;display:block;font-size:0px;background-image:url(optimized/thatim/images/sprite.webp);background-position:-470px -207px;width:108px;height:91px}.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-next:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .swiper-button-next{right:200px;top:875px;transform:scale(0.8)}}.taydu2_cuuthienhuyennu_thatim .inner .group__level{width:1070px;height:160px;position:absolute;bottom:50px;left:0;right:0;margin:auto;z-index:10;display:flex;align-items:center;justify-content:center;gap:10px;pointer-events:none}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__level{width:100%;height:135px;bottom:203px;z-index:1}}.taydu2_cuuthienhuyennu_thatim .inner .group__level .des{font-size:21px;color:#245198;position:absolute;top:86px;text-transform:uppercase}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__level .des{top:32px;font-size:20px}}.taydu2_cuuthienhuyennu_thatim .inner .group__level--info{background-image:url(optimized/thatim/images/sprite.webp);background-position:-204px -265px;width:137px;height:130px;display:flex;display:flex;justify-content:center;align-items:center;align-content:center;text-align:center;vertical-align:middle;display:flex;flex-direction:column;align-items:center;justify-content:center;position:absolute;left:30px;top:70px;z-index:5}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__level--info{position:absolute;left:10px;transform:scale(0.85);top:10px}}.taydu2_cuuthienhuyennu_thatim .inner .group__level--info span{font-size:23px;color:#245198;line-height:30px;text-transform:uppercase}.taydu2_cuuthienhuyennu_thatim .inner .group__level--info span.levelup__number{font-size:60px;font-family:Philosopher;color:#245198;line-height:50px}.taydu2_cuuthienhuyennu_thatim .inner .group__level--progress{position:absolute;top:125px;left:200px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__level--progress{top:60px;left:120px}}.taydu2_cuuthienhuyennu_thatim .inner .group__level--progress-bar{background:#2656a4;box-shadow:inset 1px 1px 3px 0px #214b92;width:700px;height:24px;position:relative;border-radius:12px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__level--progress-bar{width:525px}}.taydu2_cuuthienhuyennu_thatim .inner .group__level--progress-bar-fill{width:690px;height:15px;position:absolute;display:flex;justify-content:center;align-items:center;align-content:center;text-align:center;vertical-align:middle;justify-content:flex-start;top:4px;margin:auto;left:4px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__level--progress-bar-fill{width:465px}}.taydu2_cuuthienhuyennu_thatim .inner .group__level--progress-bar-fill span{background:#fff6bc;box-shadow:inset 0 0 0 5px #fff;height:100%;border-radius:7px}.taydu2_cuuthienhuyennu_thatim .inner .group__level--exp{position:absolute;top:122px;right:-60px;text-align:right}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__level--exp{position:absolute;top:93px;left:320px;right:auto;text-align:left;width:250px}}.taydu2_cuuthienhuyennu_thatim .inner .group__level--exp span{font-size:25px;color:#2657a5;text-transform:uppercase;line-height:1}@media(orientation:portrait){.taydu2_cuuthienhuyennu_thatim .inner .group__level--exp span{font-size:27px}}
.taydu2_cuuthienhuyennu_iframe{margin-top:-1px}@media(orientation:landscape){.taydu2_cuuthienhuyennu_iframe,.taydu2_cuuthienhuyennu_iframe .section__background,.taydu2_cuuthienhuyennu_iframe .section__content,.taydu2_cuuthienhuyennu_iframe .inner{height:1000px}}@media(orientation:portrait){.taydu2_cuuthienhuyennu_iframe,.taydu2_cuuthienhuyennu_iframe .section__background,.taydu2_cuuthienhuyennu_iframe .section__content,.taydu2_cuuthienhuyennu_iframe .inner{height:1300px}}
.taydu2_cuuthienhuyennu_kimtuong{margin-top:-1px}@media(orientation:landscape){.taydu2_cuuthienhuyennu_kimtuong,.taydu2_cuuthienhuyennu_kimtuong .section__background,.taydu2_cuuthienhuyennu_kimtuong .section__content,.taydu2_cuuthienhuyennu_kimtuong .inner{height:1000px}}@media(orientation:portrait){.taydu2_cuuthienhuyennu_kimtuong,.taydu2_cuuthienhuyennu_kimtuong .section__background,.taydu2_cuuthienhuyennu_kimtuong .section__content,.taydu2_cuuthienhuyennu_kimtuong .inner{height:900px}}.taydu2_cuuthienhuyennu_kimtuong .inner .title{position:absolute;top:-20px;left:50%;transform:translateX(-50%)}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left,.taydu2_cuuthienhuyennu_kimtuong .inner .group__right{position:absolute}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item,.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item{position:relative;cursor:pointer}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item .tooltip,.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item .tooltip{display:none;position:absolute}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item:hover .tooltip,.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item:hover .tooltip{display:block}.taydu2_cuuthienhuyennu_kimtuong .inner .group__right{right:9%;top:68px;bottom:0;margin:auto;height:-moz-fit-content;height:fit-content;display:flex;flex-direction:column;gap:20px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_kimtuong .inner .group__right{right:10px;top:120px;gap:14px}}.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item .tooltip{top:-30px;left:-420px}.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item:nth-child(1),.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item:nth-child(6){margin-left:0px}.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item:nth-child(2),.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item:nth-child(5){margin-left:50px}.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item:nth-child(3),.taydu2_cuuthienhuyennu_kimtuong .inner .group__right--item:nth-child(4){margin-left:80px}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left{left:7%;top:250px;display:flex;flex-direction:column;align-items:flex-end;gap:15px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_kimtuong .inner .group__left{left:-75px;top:195px}}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item .tooltip{top:-150px;right:-300px;z-index:2}@media(orientation:portrait){.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item .tooltip{transform:scale(0.8)}}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item:nth-child(1){margin-bottom:-50px;position:relative;left:116px;top:-26px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item:nth-child(1){top:-16px}}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item:nth-child(2),.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item:nth-child(5){margin-right:-20px}.taydu2_cuuthienhuyennu_kimtuong .inner .group__left--item:nth-child(6){margin-right:-55px}
.taydu2_cuuthienhuyennu_footer{margin-top:-1px}@media(orientation:landscape){.taydu2_cuuthienhuyennu_footer,.taydu2_cuuthienhuyennu_footer .section__background,.taydu2_cuuthienhuyennu_footer .section__content,.taydu2_cuuthienhuyennu_footer .inner{height:200px}}@media(orientation:portrait){.taydu2_cuuthienhuyennu_footer,.taydu2_cuuthienhuyennu_footer .section__background,.taydu2_cuuthienhuyennu_footer .section__content,.taydu2_cuuthienhuyennu_footer .inner{height:400px}}.taydu2_cuuthienhuyennu_footer .inner{height:100%;display:flex;justify-content:center;align-items:center;align-content:center;text-align:center;vertical-align:middle}.taydu2_cuuthienhuyennu_footer .inner .group__top{display:flex;align-items:center;gap:20px;flex-direction:column;margin-top:-18px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_footer .inner .group__top{padding:0 30px;margin-top:-180px}}.taydu2_cuuthienhuyennu_footer .inner .group__top p{font-family:Roboto-Regular;font-size:16px;color:#353535;text-align:center}@media(orientation:portrait){.taydu2_cuuthienhuyennu_footer .inner .group__top p{text-align:center;line-height:1.5}}
.floating .taydu2_cuuthienhuyennu_float_top{position:absolute;top:0%;left:0%;pointer-events:all;z-index:100;display:flex;justify-content:center;align-items:flex-start}.floating .taydu2_cuuthienhuyennu_float_top .floattop__background{display:block;background:rgba(35,32,29,.97);height:81px;width:1920px}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floattop__background{background:url(optimized/float_top/images/bg.webp);height:81px;width:768px}}.floating .taydu2_cuuthienhuyennu_float_top .floattop__content{position:absolute;height:100%;width:1040px;display:flex;justify-content:center;align-items:center}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floattop__content{justify-content:flex-end;gap:12px;padding:0 20px;width:100%;top:0}}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--appicon{display:block;font-size:0px;background-image:url(optimized/float_top/images/sprite.webp);background-position:-250px 0px;width:119px;height:115px}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--appicon:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--login{display:block;font-size:0px;background-image:url(optimized/float_top/images/sprite.webp);background-position:0px 0px;width:250px;height:89px}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--login:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--logout{display:block;font-size:0px;background-image:url(optimized/float_top/images/sprite.webp);background-position:0px -89px;width:250px;height:89px}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--logout:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--facebook{display:block;font-size:0px;background-image:url(optimized/float_top/images/sprite.webp);background-position:-250px -115px;width:59px;height:59px}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--facebook:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--home{display:block;font-size:0px;background-image:url(optimized/float_top/images/sprite.webp);background-position:-309px -115px;width:59px;height:59px}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--home:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--appicon{margin-top:50px;position:absolute;left:20px}.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--login,.floating .taydu2_cuuthienhuyennu_float_top .floattop__item--logout{margin-right:200px;margin-top:10px}.floating .taydu2_cuuthienhuyennu_float_top .floatnav{height:100%;display:flex;justify-content:center}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav{position:absolute;width:100%;height:max-content;justify-content:center;position:absolute;top:90px;left:0px;flex-wrap:wrap;padding:0 0px}.floating .taydu2_cuuthienhuyennu_float_top .floatnav{max-height:0px;overflow:hidden}.floating .taydu2_cuuthienhuyennu_float_top .floatnav.active{max-height:1400px;overflow-x:hidden;overflow-y:auto;padding:0px 0;background:#171512}}.floating .taydu2_cuuthienhuyennu_float_top .floatnav>li{position:relative}@media(orientation:landscape){.floating .taydu2_cuuthienhuyennu_float_top .floatnav>li{margin:0 8px}}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav>li{height:auto;width:calc(100% - 0px)}.floating .taydu2_cuuthienhuyennu_float_top .floatnav>li:not(:last-child){border-bottom:1px solid #fff}}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__dropdown{position:absolute;bottom:12px;left:calc(50% - 16px);z-index:10;transition:transform .4s}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav__dropdown{bottom:auto;left:auto;top:35px;right:20px}}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__dropdown:checked{transform:scaleY(-1);bottom:3px}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item{font-size:22px;font-weight:var(--fontweight-semibold);color:#fff;padding:0 30px;height:100%;display:flex;justify-content:center;align-items:center;align-content:center;text-transform:uppercase;text-align:center;position:relative;z-index:10;display:flex;align-content:center;align-items:center;height:100%;padding:0 50px;position:relative;z-index:2}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item{height:100px}}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item:before{position:absolute;top:0;left:0;right:0;bottom:0;content:"";z-index:-1;transform:skewX(-10deg)}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item:hover:before,.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item.active:before{background:#4f3f2e;border-bottom:2px solid #ffb93d}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul{position:absolute;top:80px;width:240px;left:calc(50% - 120px);background:rgba(35,32,29,.97);max-height:0px;overflow:hidden}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul{position:static;width:100%;background:rgba(35,32,29,.97)}}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul li{margin-bottom:0px}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul li{border-bottom:1px solid #e6f7ff}}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul .floatnav__item{font-size:16px;height:60px;line-height:1}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul .floatnav__item{font-size:24px;height:80px}}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul .floatnav__item:hover{background:#ffc036;background:-webkit-linear-gradient(to bottom, #ffc036, #ffe955);background:linear-gradient(to bottom, #ffc036, #ffe955)}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul .floatnav__item:hover{background:#ffc036}}.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul .floatnav__item:hover:before{content:none}@media(orientation:landscape){.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item:hover+input+ul,.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item:focus+input+ul,.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input:checked+ul,.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input:hover+ul,.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input+ul:hover{max-height:500px;overflow:visible}}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_top .floatnav__item+input:checked+ul{max-height:500px;overflow:visible}}
.floating .taydu2_cuuthienhuyennu_float_right{position:absolute;top:0;right:0;pointer-events:all;z-index:100;display:flex;justify-content:center;align-items:flex-start}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_right{width:var(--width-mobile);background-color:hsla(0,0%,100%,0)}.floating .taydu2_cuuthienhuyennu_float_right:before{content:"";display:block;position:absolute;z-index:-1}}.floating .taydu2_cuuthienhuyennu_float_right .close{display:block;font-size:0px;background-image:url(optimized/float_right/images/sprite.webp);background-position:-216px -49px;width:20px;height:49px;position:absolute;left:0px;top:135px;cursor:pointer}.floating .taydu2_cuuthienhuyennu_float_right .close.active{display:block;font-size:0px;background-image:url(optimized/float_right/images/sprite.webp);background-position:-216px 0px;width:20px;height:49px}.floating .taydu2_cuuthienhuyennu_float_right .aside{position:fixed;display:flex;justify-content:flex-start;align-items:center;flex-direction:column;right:0;top:220px;background-image:url(optimized/float_right/images/bg-floatingright.webp);width:225px;height:544px;background-repeat:no-repeat;transition:all .25s linear;gap:10px;padding-top:40px;transform:translateX(0)}.floating .taydu2_cuuthienhuyennu_float_right .aside.active{transform:translateX(90%)}@media(min-width: 701px)and (max-width: 840px){.floating .taydu2_cuuthienhuyennu_float_right .aside{display:none}}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_right .aside{display:none}}.floating .taydu2_cuuthienhuyennu_float_right .aside__child{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:10px}.floating .taydu2_cuuthienhuyennu_float_right .aside__child li{width:unset !important}.floating .taydu2_cuuthienhuyennu_float_right .aside li{width:100%;display:flex;justify-content:center}.floating .taydu2_cuuthienhuyennu_float_right .aside li a{display:flex;justify-content:center;align-items:center;align-content:center;color:#fff;font-weight:bold;text-transform:uppercase;text-shadow:0 4px 2px rgba(0,0,0,.9);padding:0 10px;text-align:center;line-height:24px;font-size:0}.floating .taydu2_cuuthienhuyennu_float_right .aside__item--qr{margin-top:32px;margin-bottom:10px}.floating .taydu2_cuuthienhuyennu_float_right .aside__item--downappstore{display:block;font-size:0px;background-image:url(optimized/float_right/images/sprite.webp);background-position:0px -49px;width:216px;height:49px}.floating .taydu2_cuuthienhuyennu_float_right .aside__item--downggplay{display:block;font-size:0px;background-image:url(optimized/float_right/images/sprite.webp);background-position:0px -98px;width:216px;height:49px}.floating .taydu2_cuuthienhuyennu_float_right .aside__item--downapk{display:block;font-size:0px;background-image:url(optimized/float_right/images/sprite.webp);background-position:0px 0px;width:216px;height:49px}.floating .taydu2_cuuthienhuyennu_float_right .aside__item--facebook{display:block;font-size:0px;background-image:url(optimized/float_right/images/sprite.webp);background-position:0px -147px;width:45px;height:45px}.floating .taydu2_cuuthienhuyennu_float_right .aside__item--home{display:block;font-size:0px;background-image:url(optimized/float_right/images/sprite.webp);background-position:-45px -147px;width:45px;height:45px}.floating .taydu2_cuuthienhuyennu_float_right .aside__item--play{display:block;font-size:0px;background-image:url(optimized/float_right/images/sprite.webp);background-position:-90px -147px;width:45px;height:45px}
.floating .taydu2_cuuthienhuyennu_float_left{background:url(optimized/float_left/images/bg-left.png) no-repeat;width:64px;height:570px;top:100px;left:20px;position:fixed;align-items:flex-start;flex-direction:column;opacity:1;padding:0}@media(orientation:portrait){.floating .taydu2_cuuthienhuyennu_float_left{display:none}}.floating .taydu2_cuuthienhuyennu_float_left ul{align-items:flex-start;justify-content:center;gap:33px;padding-left:0;padding-top:25px;margin-left:-7px;pointer-events:none}.floating .taydu2_cuuthienhuyennu_float_left ul li span{cursor:pointer;margin:0 0 -10px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(1) span{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:-364px -78px;width:78px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(1) span:hover,.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(1) span.active{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:0px 0px;width:364px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(2) span{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:-442px -78px;width:78px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(2) span:hover,.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(2) span.active{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:0px -78px;width:364px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(3) span{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:-520px -78px;width:78px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(3) span:hover,.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(3) span.active{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:0px -156px;width:364px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(4) span{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:-598px -78px;width:78px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(4) span:hover,.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(4) span.active{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:0px -234px;width:364px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(5) span{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:-364px -156px;width:78px;height:78px}.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(5) span:hover,.floating .taydu2_cuuthienhuyennu_float_left ul li:nth-child(5) span.active{display:block;font-size:0px;background-image:url(optimized/float_left/images/sprite.webp);background-position:-364px 0px;width:364px;height:78px}
.taydu2_cuuthienhuyennu_popup{align-items:center;justify-content:center;position:absolute !important;pointer-events:none !important;top:0;left:0;width:2000px;z-index:100;transform-origin:left top;height:var(--sr-device-height)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_popup{width:768px}}.taydu2_cuuthienhuyennu_popup span.profile-success{display:flex}.taydu2_cuuthienhuyennu_popup .btn__text{font-size:24px;display:flex;align-items:center;justify-content:center;color:#fff;text-transform:uppercase}.taydu2_cuuthienhuyennu_popup .popup{height:100%}.taydu2_cuuthienhuyennu_popup .popup__background{height:100%;background:rgba(0,0,0,.8)}.taydu2_cuuthienhuyennu_popup .popup.popup__frame--top .popup__content{margin-top:-50vh}.taydu2_cuuthienhuyennu_popup .popup__content{display:block;background:url(optimized/popup/images/khung1.webp) center center no-repeat;width:848px;height:583px;position:relative;padding:50px 80px 50px 140px;font-family:Roboto-Regular;color:#343d95;font-size:20px;background-size:100% 100%}@media(orientation:portrait){.taydu2_cuuthienhuyennu_popup .popup__content{transform:scale(0.9) !important}}.taydu2_cuuthienhuyennu_popup .popup__content .close{background:rgba(0,0,0,0);display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:0px -288px;width:90px;height:88px}.taydu2_cuuthienhuyennu_popup .popup__content .close:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_popup .popup__content .close{top:0;right:-40px}.taydu2_cuuthienhuyennu_popup .popup__content .title{font-family:cambriab;margin-bottom:20px;font-size:32px;text-transform:uppercase;color:#343d95;display:flex;gap:15px;align-items:center;justify-content:center;width:100%}.taydu2_cuuthienhuyennu_popup .popup__content .title:after{content:"";display:block;display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-592px -124px;width:135px;height:14px}.taydu2_cuuthienhuyennu_popup .popup__content .title:before{content:"";display:block;display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-599px -104px;width:135px;height:14px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_popup .popup__content .title:after{display:none}.taydu2_cuuthienhuyennu_popup .popup__content .title:before{display:none}}.taydu2_cuuthienhuyennu_popup .popup__content a{color:#e01900;text-decoration:underline}.taydu2_cuuthienhuyennu_popup .popup__content.popup__frame--1{margin-top:-50vh}.taydu2_cuuthienhuyennu_popup .popup__content.popup__frame--2{margin-top:50vh}.taydu2_cuuthienhuyennu_popup .popup__content .title__description{font-size:22px;color:#343d95;font-weight:700;text-align:center}.taydu2_cuuthienhuyennu_popup .popup__content table,.taydu2_cuuthienhuyennu_popup .popup__content td,.taydu2_cuuthienhuyennu_popup .popup__content th{border:rgba(0,0,0,0);text-align:center}.taydu2_cuuthienhuyennu_popup .popup__content td,.taydu2_cuuthienhuyennu_popup .popup__content th{padding:6px;font-size:16px}.taydu2_cuuthienhuyennu_popup .popup__content td{font-weight:500}.taydu2_cuuthienhuyennu_popup .popup__content table{border-collapse:collapse;width:100%;border:1px solid #ad9080}.taydu2_cuuthienhuyennu_popup .popup__content table thead tr th{font-size:16px;text-transform:uppercase;background:#343d95;color:#fff}.taydu2_cuuthienhuyennu_popup .popup__content table tbody tr{background:rgba(0,0,0,0);font-weight:bold}.taydu2_cuuthienhuyennu_popup .popup__content table tbody tr:nth-child(odd){background:#fff}.taydu2_cuuthienhuyennu_popup .popup__content table tbody tr:nth-child(even){background:#eefbff}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content{padding:260px 230px 100px 150px;display:flex;align-items:center;justify-content:center;flex-direction:column}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .note__title,.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .note__description{color:#415a80}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .note__title{font-size:30px;text-transform:uppercase}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .note__description{font-size:20px;font-weight:500}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .register{background:rgba(0,0,0,0);margin:20px 0}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .register:active,.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .register:focus{outline:none}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content input{width:100%;height:40px;border-radius:2rem;background-color:#f5d683;display:flex;align-items:center;justify-content:center;font-weight:500;color:#343d95;text-align:center;border:none;margin-top:10px}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__history{width:100%;height:220px;overflow:auto}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__history::-webkit-scrollbar{margin-right:6px;width:6px;transition:width .2s}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__history:hover::-webkit-scrollbar{width:6px}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__history::-webkit-scrollbar-track{background:rgba(165,202,255,.5)}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__history::-webkit-scrollbar-thumb{background:#343d95}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__history::-webkit-scrollbar-thumb:hover{background:#343d95}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__history{padding-right:20px}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu{width:100%;height:400px;overflow:auto}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu::-webkit-scrollbar{margin-right:6px;width:6px;transition:width .2s}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu:hover::-webkit-scrollbar{width:6px}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu::-webkit-scrollbar-track{background:rgba(165,202,255,.5)}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu::-webkit-scrollbar-thumb{background:#343d95}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu::-webkit-scrollbar-thumb:hover{background:#343d95}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu{padding-right:20px}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu table th,.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu table td{vertical-align:middle}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content .table__nhiemvu table td a.btn__nhiemvu{font-size:20px;display:flex;align-items:center;justify-content:center;color:#fff;text-transform:uppercase}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content table,.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content td,.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content th{border:1px solid #edd284;text-align:center}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content td,.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content th{padding:8px;font-size:18px;font-weight:bold}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content table{border-collapse:collapse;width:100%}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content table thead tr th{font-size:18px;text-transform:uppercase;background:#274d8c;color:#474848}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content table tbody{color:#385aa0}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content table tbody tr:nth-child(odd){background:#fcefab}.taydu2_cuuthienhuyennu_popup .popup.popup__nhanluot .popup__content table tbody tr:nth-child(even){background:#fbe8ae}.taydu2_cuuthienhuyennu_popup .popup_thele .popup__content,.taydu2_cuuthienhuyennu_popup .popup_history .popup__content{display:flex;flex-direction:column;align-items:center}.taydu2_cuuthienhuyennu_popup #popup_inform .popup__content{display:flex;align-items:center;justify-content:center;flex-direction:column}.taydu2_cuuthienhuyennu_popup #popup_inform .popup__content .description{font-size:25px;flex:1;text-align:center;width:100%;display:flex;align-items:center;justify-content:center}.taydu2_cuuthienhuyennu_popup #popup_diemdanh .gr__quadiemdanh{display:flex;justify-content:center;margin-top:-30px}.taydu2_cuuthienhuyennu_popup #popup_diemdanh .item__nhanqua p{font-size:26px}.taydu2_cuuthienhuyennu_popup #popup_reward .popup__content{display:flex;align-items:center;flex-direction:column;font-family:cambriab}.taydu2_cuuthienhuyennu_popup #popup_reward .popup__content .des__reward{font-size:25px}.taydu2_cuuthienhuyennu_popup #popup_reward .popup__content .group__reward{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap;width:100%;margin-top:20px;height:290px;overflow:auto}.taydu2_cuuthienhuyennu_popup #popup_reward .popup__content .group__reward .item__child{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;position:relative}.taydu2_cuuthienhuyennu_popup #popup_reward .popup__content .group__reward .item__child img{width:150px;margin:-20px 0}.taydu2_cuuthienhuyennu_popup #popup_reward .popup__content .group__reward .item__child p{font-size:20px;color:#2d5289;white-space:wrap;text-align:center}.taydu2_cuuthienhuyennu_popup #popup_reward .popup__content .group__reward img{z-index:99}.taydu2_cuuthienhuyennu_popup #popup_reward.popup_5 .group__reward{margin-top:10px;row-gap:0}.taydu2_cuuthienhuyennu_popup #popup_reward.popup_5 .des__reward{margin-top:0}.taydu2_cuuthienhuyennu_popup #popup_reward.popup_5 .btn-xacnhan{bottom:50px}.taydu2_cuuthienhuyennu_popup #popup_reward.popup_5 .group__reward{width:100%;transform-origin:top}.taydu2_cuuthienhuyennu_popup #popup_reward.popup_5 .group__reward .item__child{width:160px;height:130px;gap:0}.taydu2_cuuthienhuyennu_popup #popup_reward.popup_5 .group__reward .item__child p{font-size:16px;line-height:18px}.taydu2_cuuthienhuyennu_popup #popup_reward.popup_5 .group__reward .item__child img{width:130px}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content{font-family:cambriab;text-align:center}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .text-red{color:#ed353e}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .des__doiqua{text-align:center;font-size:25px}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .des__doiqua .red{font-size:30px;color:#e01900}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .des__doiqua span{font-size:30px;margin:0 5px;color:#e01900}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item{display:flex;align-items:center;justify-content:center;gap:5px 0;flex-wrap:wrap;margin-top:-5px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item{scale:.9;transform-origin:center top}}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item .item__child{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;min-width:190px;height:165px;position:relative}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item .item__child input[type=radio]{position:absolute;top:10px;left:10px;border:none;margin:0;padding:0;width:80%;height:70%}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item .item__child input[type=radio]::after{content:"";display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-696px -60px;width:18px;height:18px;position:absolute;right:0}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item .item__child input[type=radio]:checked::after{display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-678px -60px;width:18px;height:18px}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item .item__child .thumb{display:flex;flex-direction:column;align-items:center;justify-content:center;margin-top:-20px}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item .item__child .thumb img{width:150px}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .group__item .item__child p{font-size:16px;text-align:center;line-height:20px;margin-top:-20px}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .item__nhanqua{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:10px}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .item__nhanqua img{margin:20px 0}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .item__nhanqua p{font-size:30px;color:#b73800;text-align:center;line-height:1}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .btn-xacnhan{background:rgba(0,0,0,0);border:none;display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-357px -124px;width:235px;height:60px;position:absolute;left:0;right:0;margin:auto;bottom:50px;outline:none;cursor:pointer}.taydu2_cuuthienhuyennu_popup .popup_doiqua .popup__content .btn-xacnhan:hover{filter:brightness(1.3)}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content{font-family:cambriab}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content .text-red{color:#ed353e}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content .des__doiqua{text-align:center;font-size:25px;margin-bottom:20px}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content .des__doiqua .red{font-size:32px;color:#e01900}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content .des__doiqua span{font-size:32px;margin:0 5px;color:#e01900}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content .item__nhanqua{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:10px}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content .item__nhanqua img{margin:0 auto}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content .btn-xacnhan{background:rgba(0,0,0,0);border:none;display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-357px -124px;width:235px;height:60px;position:absolute;left:0;right:0;margin:auto;bottom:70px;outline:none;cursor:pointer}.taydu2_cuuthienhuyennu_popup .popup_doiqua_small .popup__content .btn-xacnhan:hover{filter:brightness(1.3)}.taydu2_cuuthienhuyennu_popup #popup_doiqua .popup__content .btn-xacnhan,.taydu2_cuuthienhuyennu_popup #popup_doiqua2 .popup__content .btn-xacnhan{bottom:50px}.taydu2_cuuthienhuyennu_popup #popup_doiqua .des__doiqua,.taydu2_cuuthienhuyennu_popup #popup_doiqua2 .des__doiqua{margin-top:-20px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content{display:flex;align-items:center;flex-direction:column}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content--body,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content--body,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body{display:flex;align-items:center;flex-direction:column;height:100%;overflow-y:auto;width:100%}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .note,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .note,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .note{font-size:22px;text-align:center;margin:10px 0}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .note .red,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .note .red,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .note .red{color:#e01900}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .note a,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .note a,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .note a{color:#e01900;margin-left:5px;font-weight:bold;text-decoration:underline}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .group__login,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .group__login,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .group__login{display:flex;flex-direction:column;gap:10px;justify-content:center}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .group__login--apple,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .group__login--apple,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .group__login--apple{display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:0px 0px;width:357px;height:80px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .group__login--apple:not(.off):hover,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .group__login--apple:not(.off):hover,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .group__login--apple:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .group__login--zingid,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .group__login--zingid,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .group__login--zingid{display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:0px -157px;width:311px;height:77px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .group__login--zingid:not(.off):hover,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .group__login--zingid:not(.off):hover,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .group__login--zingid:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .group__login--email,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .group__login--email,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .group__login--email{display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:0px -80px;width:311px;height:77px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .group__login--email:not(.off):hover,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .group__login--email:not(.off):hover,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .group__login--email:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .popup__content-container .title,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .popup__content-container .title,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .popup__content-container .title{position:absolute;left:50%;transform:translateX(-50%)}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #pm__profile-form,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #pm__profile-form,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #pm__profile-form{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;width:100%}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #pm__quiz-form>div,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #pm__quiz-form>div,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #pm__quiz-form>div{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #pm__quiz-form>div .pm__quiz-name,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #pm__quiz-form>div .pm__quiz-name,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #pm__quiz-form>div .pm__quiz-name{color:#fff;font-size:22px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #pm__quiz-form>div .pm__quiz-answer,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #pm__quiz-form>div .pm__quiz-answer,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #pm__quiz-form>div .pm__quiz-answer{display:flex;align-items:center}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #pm__quiz-form>div .pm__quiz-answer span,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #pm__quiz-form>div .pm__quiz-answer span,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #pm__quiz-form>div .pm__quiz-answer span{color:#fff;font-size:22px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #pm__quiz-form>div .pm__quiz-container,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #pm__quiz-form>div .pm__quiz-container,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #pm__quiz-form>div .pm__quiz-container{width:100%}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #pm__quiz-form>div input.pm__quiz-answer-value,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #pm__quiz-form>div input.pm__quiz-answer-value,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #pm__quiz-form>div input.pm__quiz-answer-value{background:rgba(0,0,0,0);width:50px;height:18px;-webkit-appearance:auto;-moz-appearance:auto;appearance:auto;margin-top:5px;float:left;min-width:auto}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .captcha,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .captcha,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .captcha{display:flex;align-items:center;gap:10px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .refresh,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .refresh,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .refresh{background:rgba(0,0,0,0);box-shadow:none;border:none;background-image:url(optimized/popup/images/sprite.webp);background-position:-599px -60px;width:44px;height:44px;cursor:pointer}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile{width:100%;display:flex;flex-direction:column;gap:20px;align-items:center;justify-content:center;margin-bottom:20px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .form__profile--item,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .form__profile--item,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .form__profile--item{display:flex;flex-direction:column;align-items:flex-start;gap:5px;width:90%}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .form__profile--item label,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .form__profile--item label,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .form__profile--item label{font-size:20px;font-weight:bold}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .form__profile--item select,.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .form__profile--item textarea,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .form__profile--item select,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .form__profile--item textarea,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .form__profile--item select,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .form__profile--item textarea{background:#fff;border:none;font-size:18px;color:#2d5289;border:1px solid #343d95;width:99%;height:58px;font-weight:bold;padding:0 20px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .form__profile--item select option,.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .form__profile--item textarea option,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .form__profile--item select option,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .form__profile--item textarea option,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .form__profile--item select option,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .form__profile--item textarea option{color:#343d95;display:block}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .form__profile--item select,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .form__profile--item select,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .form__profile--item select{appearance:none;-webkit-appearance:none;background:#fff url(assets/main/setup/svg/arrow-down.svg) no-repeat right 10px center;padding-right:35px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .form__profile--item textarea,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .form__profile--item textarea,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .form__profile--item textarea{height:80px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .form__profile .list-icon,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .form__profile .list-icon,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .form__profile .list-icon{list-style-type:disc;margin-left:20px;font-size:15px;line-height:20px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .button-group button,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .button-group button,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .button-group button{background:rgba(0,0,0,0);border:none;display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-357px -124px;width:235px;height:60px;outline:none;cursor:pointer}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .creat__nhanvat,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .creat__nhanvat,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .creat__nhanvat{display:flex;flex-direction:column;align-items:center;justify-content:center;margin-top:20px;font-weight:500}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .creat__nhanvat a,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .creat__nhanvat a,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .creat__nhanvat a{color:#a03d34;font-weight:bold}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .condition-form,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .condition-form,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .condition-form{display:flex;justify-content:center;align-items:center;align-content:center;text-align:center;vertical-align:middle;flex-direction:column;gap:10px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .captcha-img,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .captcha-img,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .captcha-img{display:flex;align-items:center;justify-content:center;padding-top:10px;padding-left:10px;background:#fff}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content input[name=captcha],.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #text-invite,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content input[name=captcha],.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #text-invite,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content input[name=captcha],.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #text-invite{background:#fff;border:none;font-size:22px;color:#474848;padding:5px 20px;text-align:center;width:400px;height:45px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content input[name=captcha]::placeholder,.taydu2_cuuthienhuyennu_popup #popup_login .popup__content #text-invite::placeholder,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content input[name=captcha]::placeholder,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content #text-invite::placeholder,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content input[name=captcha]::placeholder,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content #text-invite::placeholder{color:#736e6d;opacity:1}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .submit__captcha,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .submit__captcha,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .submit__captcha{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .des__nhanluot,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .des__nhanluot,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .des__nhanluot{text-align:center}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .des__nhanluot span,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .des__nhanluot span,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .des__nhanluot span{font-weight:bold}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .btn-share,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .btn-share,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .btn-share{display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-357px -184px;width:196px;height:48px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .btn-xacnhan,.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .btn-copy,.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .btn-submit,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .btn-xacnhan,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .btn-copy,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .btn-submit,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .btn-xacnhan,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .btn-copy,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .btn-submit{background:rgba(0,0,0,0);border:none;display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-203px -234px;width:203px;height:54px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .condition-form,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .condition-form,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .condition-form{display:flex;flex-direction:column;align-items:center;justify-content:center}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .pm__form-history,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .pm__form-history,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .pm__form-history{width:100%;margin-top:20px}.taydu2_cuuthienhuyennu_popup #popup_login .popup__content .input__text,.taydu2_cuuthienhuyennu_popup .popupProfileInfo .popup__content .input__text,.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content .input__text{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;margin-top:20px;padding:0 50px 0 40px}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body::-webkit-scrollbar{margin-right:6px;width:6px;transition:width .2s}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body:hover::-webkit-scrollbar{width:6px}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body::-webkit-scrollbar-track{background:rgba(165,202,255,.5)}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body::-webkit-scrollbar-thumb{background:#343d95}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body::-webkit-scrollbar-thumb:hover{background:#343d95}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body{padding-right:5px;overflow-y:auto;width:100%}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body .input__share{width:500px;height:45px;background:#fff;text-align:center;color:#724236;border:2px solid #f6d07a;font-size:20px;font-weight:bold;margin-top:10px}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body .title__frame{font-size:24px;font-weight:bold;text-transform:uppercase}.taydu2_cuuthienhuyennu_popup .popupCondition .popup__content--body .btn-xacnhan{margin-bottom:10px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content{display:flex;flex-direction:column;align-items:center}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content--body{width:100%;margin-top:10px;overflow-y:auto}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content--body::-webkit-scrollbar{margin-right:6px;width:6px;transition:width .2s}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content--body:hover::-webkit-scrollbar{width:6px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content--body::-webkit-scrollbar-track{background:rgba(165,202,255,.5)}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content--body::-webkit-scrollbar-thumb{background:#343d95}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content--body::-webkit-scrollbar-thumb:hover{background:#343d95}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content--body{padding-right:10px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .popup__content-container .popup__content-body{margin-top:65px;display:flex;flex-direction:column;gap:30px;height:500px;overflow-y:auto}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .popup__content-container .popup__content-body::-webkit-scrollbar{margin-right:6px;width:6px;transition:width .2s}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .popup__content-container .popup__content-body:hover::-webkit-scrollbar{width:6px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .popup__content-container .popup__content-body::-webkit-scrollbar-track{background:rgba(165,202,255,.5)}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .popup__content-container .popup__content-body::-webkit-scrollbar-thumb{background:#343d95}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .popup__content-container .popup__content-body::-webkit-scrollbar-thumb:hover{background:#343d95}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .popup__content-container .popup__content-body{padding-right:10px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .popup__content-container .title{position:absolute;left:50%;transform:translateX(-50%)}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .exchange-item{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:25px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .exchange-item .left{display:flex;align-content:center;gap:10px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .exchange-item .stt{display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-643px -60px;width:35px;height:33px;font-size:22px;display:flex;align-items:center;justify-content:center;color:#fff}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .exchange-item-name{font-size:25px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .exchange-item-name span{font-style:20px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .exchange-item.received .btn-exchange{pointer-events:none;filter:grayscale(1);display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:0px -234px;width:203px;height:54px}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .red{color:#e03626}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .btn-exchange{display:block;font-size:0px;background-image:url(optimized/popup/images/sprite.webp);background-position:-203px -234px;width:203px;height:54px;flex-shrink:0}.taydu2_cuuthienhuyennu_popup .popup_nhanluot .popup__content .btn-exchange:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_popup #popup_history .popup__content .table__history{width:100%;height:100%;overflow-y:auto;padding:0 20px;margin-top:10px}.taydu2_cuuthienhuyennu_popup #popup_history .popup__content .table__history::-webkit-scrollbar{margin-right:6px;width:6px;transition:width .2s}.taydu2_cuuthienhuyennu_popup #popup_history .popup__content .table__history:hover::-webkit-scrollbar{width:6px}.taydu2_cuuthienhuyennu_popup #popup_history .popup__content .table__history::-webkit-scrollbar-track{background:rgba(165,202,255,.5)}.taydu2_cuuthienhuyennu_popup #popup_history .popup__content .table__history::-webkit-scrollbar-thumb{background:#343d95}.taydu2_cuuthienhuyennu_popup #popup_history .popup__content .table__history::-webkit-scrollbar-thumb:hover{background:#343d95}.taydu2_cuuthienhuyennu_popup #popup_history #popup_rank .popup__content{padding:260px 260px 165px 200px}.taydu2_cuuthienhuyennu_popup #popup_history #popup_rank .popup__content .note__title{font-size:30px;text-align:center;color:#415a80;margin-bottom:15px;text-transform:uppercase}.taydu2_cuuthienhuyennu_popup #popup_history #popup_rank .popup__content table tbody tr:nth-child(1) td{position:relative}.taydu2_cuuthienhuyennu_popup #popup_history #popup_rank .popup__content table tbody tr:nth-child(1) td:nth-child(1)::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.taydu2_cuuthienhuyennu_popup #popup_history #popup_rank .popup__content table tbody tr:nth-child(2) td{position:relative}.taydu2_cuuthienhuyennu_popup #popup_history #popup_rank .popup__content table tbody tr:nth-child(2) td:nth-child(1)::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.taydu2_cuuthienhuyennu_popup #popup_history #popup_rank .popup__content table tbody tr:nth-child(3) td{position:relative}.taydu2_cuuthienhuyennu_popup #popup_history #popup_rank .popup__content table tbody tr:nth-child(3) td:nth-child(1)::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:flex;flex-direction:column;align-items:center;gap:10px;font-weight:500}.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form #form-profile{gap:20px}.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form>div,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .info__server,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .character{display:flex;flex-direction:column}.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form>div label,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .info__server label,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .character label{font-size:20px;color:#445a87;font-weight:bold}.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form>div select,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .info__server select,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .character select{width:310px;height:45px;border:none;border-radius:2rem;background:#f7da8c;padding-left:10px;color:#445a87;font-size:18px;font-weight:500}.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form>div select option,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .info__server select option,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .character select option{font-size:18px;font-weight:bold}.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .btn__submit{background:rgba(0,0,0,0)}.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .btn__submit:active,.taydu2_cuuthienhuyennu_popup #popup_history #popup_register .popup__content form .btn__submit:focus{outline:none}iframe{width:100%;height:100%}.floating__popup{pointer-events:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:500;display:flex;align-items:center;justify-content:center}
.taydu2_cuuthienhuyennu_diemdanh{margin-top:-1px}@media(orientation:landscape){.taydu2_cuuthienhuyennu_diemdanh,.taydu2_cuuthienhuyennu_diemdanh .section__background,.taydu2_cuuthienhuyennu_diemdanh .section__content,.taydu2_cuuthienhuyennu_diemdanh .inner{height:1000px}}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh,.taydu2_cuuthienhuyennu_diemdanh .section__background,.taydu2_cuuthienhuyennu_diemdanh .section__content,.taydu2_cuuthienhuyennu_diemdanh .inner{height:1300px}}.taydu2_cuuthienhuyennu_diemdanh .inner{font-family:cambriab}.taydu2_cuuthienhuyennu_diemdanh .inner .time{color:#fff;font-size:28px;position:absolute;top:255px;left:50%;transform:translateX(-50%)}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .time{top:170px;font-size:20px}}.taydu2_cuuthienhuyennu_diemdanh .inner .info{position:absolute;top:195px;left:50%;transform:translateX(-50%);font-size:28px;color:#fff;text-transform:uppercase;font-weight:600;display:flex;align-items:center;gap:5px;background:url(optimized/diemdanh/images/bg-diemdanh.webp);width:857px;height:55px;justify-content:center;padding-top:5px;z-index:2}.taydu2_cuuthienhuyennu_diemdanh .inner .info span{color:#fff799}.taydu2_cuuthienhuyennu_diemdanh .inner .info .icon-refresh{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:0px -1020px;width:63px;height:63px;margin-left:10px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .info{top:137px;left:52%}}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh{width:1220px;display:flex;flex-direction:column;position:absolute;top:181px;left:50%;transform:translateX(-50%);gap:0}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh{width:100%;gap:0;top:160px}}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left{position:relative}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list{width:1220px;gap:0;row-gap:15px;position:absolute;top:35px;left:50%;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;flex-wrap:wrap;padding:0 30px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list{width:100%;left:0;transform:translateX(0);transform-origin:left top;top:10px;row-gap:10px;padding:0 10px}}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item{width:78px;display:flex !important;align-items:center;justify-content:center;position:relative}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item{width:50px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item img{width:40px;height:40px;object-fit:cover}}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item .activeday{display:none}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item .default{display:block}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item.active .activeday{display:block}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item.active .default{display:none}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item span{font-size:25px;position:absolute;top:15px;color:#4463c2}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--left--list .item span{font-size:16px;top:15px}}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right{width:100%;display:flex;align-items:center;justify-content:center;gap:0}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right{scale:.95;gap:0;flex-wrap:wrap;transform-origin:left top}}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift{position:relative;width:272px;height:405px;top:50px;margin:0 -10px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.received{filter:grayscale(1);pointer-events:none}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.off{pointer-events:auto}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift a{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-963px -946px;width:126px;height:34px;position:absolute;bottom:100px;left:30%;display:none;font-size:18px;line-height:30px;color:#6d402c;text-align:center}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift a.off{pointer-events:none}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift:hover a{display:block}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-1{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-272px 0px;width:272px;height:473px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-1:hover{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:0px 0px;width:272px;height:473px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-2{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-816px 0px;width:272px;height:473px;margin-top:50px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-2:hover{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-544px 0px;width:272px;height:473px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-3{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-272px -473px;width:272px;height:473px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-3:hover{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:0px -473px;width:272px;height:473px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-4{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-816px -473px;width:272px;height:473px;margin-top:50px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-4:hover{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-544px -473px;width:272px;height:473px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-5{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-1088px -473px;width:272px;height:473px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-5:hover{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-1088px 0px;width:272px;height:473px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-4,.taydu2_cuuthienhuyennu_diemdanh .inner .group__diemdanh--right .gift.gift-5{margin-top:-140px}}.taydu2_cuuthienhuyennu_diemdanh .inner .group__btn{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap;width:100%;position:absolute;bottom:30px;left:50%;transform:translateX(-50%)}.taydu2_cuuthienhuyennu_diemdanh .inner .group__btn a{display:flex !important}.taydu2_cuuthienhuyennu_diemdanh .inner .group__btn a:not(.off):hover{cursor:pointer;pointer-events:all;filter:brightness(110%)}.taydu2_cuuthienhuyennu_diemdanh .inner .group__btn--history{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-503px -946px;width:230px;height:69px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__btn--thele{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-733px -946px;width:230px;height:69px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__btn--diemdanh{display:block;font-size:0px;background-image:url(optimized/diemdanh/images/sprite.webp);background-position:-273px -946px;width:230px;height:69px}@media(orientation:portrait){.taydu2_cuuthienhuyennu_diemdanh .inner .group__btn{bottom:70px;gap:10px}.taydu2_cuuthienhuyennu_diemdanh .inner .group__btn a{scale:.9}}
.common_required_loading{margin-top:-1px}@media(orientation:landscape){.common_required_loading,.common_required_loading .section__background,.common_required_loading .section__content,.common_required_loading .inner{height:1000px}}@media(orientation:portrait){.common_required_loading,.common_required_loading .section__background,.common_required_loading .section__content,.common_required_loading .inner{height:1000px}}.common_required_loading .loading{display:none;position:fixed;top:0;left:0;bottom:0;right:0;background:rgba(0,0,0,.97);justify-content:center;align-items:center;align-content:center;flex-direction:column;color:#fff;z-index:312}.common_required_loading .loading .multi-ripple{width:2.6rem;height:2.6rem;margin:2rem}.common_required_loading .loading .multi-ripple div{position:absolute;width:2rem;height:2rem;border-radius:50%;border:.3rem solid hsla(0,0%,100%,.4);animation:1.5s ripple infinite}.common_required_loading .loading .multi-ripple div:nth-child(2){animation-delay:.5s}@keyframes ripple{from{transform:scale(0);opacity:1}to{transform:scale(1);opacity:0}}.common_required_loading .loading.active{display:flex}

/*# sourceMappingURL=taydu2.css.map*/