@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;
}

.row-menu-content-list {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
}
.row-menu-content-list .navbar-collapse {
  flex: 1;
  align-items: center;
  padding-right: 20px;
}
.row-menu-content-list .on-profile-content {
  padding-left: 10px;
}
.row-menu-content-list .on-profile-content .top-menu .pull-left .authControl .drop-down-menu-account .login-popup {
  border: unset;
  display: flex;
  align-items: center;
  line-height: unset;
}
.row-menu-content-list .on-profile-content .top-menu .pull-left .authControl .drop-down-menu-account .login-popup .icon-user {
  padding-right: 2px;
}
.row-menu-content-list .on-profile-content .top-menu .pull-left .authControl .drop-down-menu-account .login-popup .info {
  display: flex;
  align-items: center;
}
.row-menu-content-list .on-profile-content .top-menu .pull-left .authControl .drop-down-menu-account .login-popup .info span {
  line-height: unset;
  font-size: 14px;
}
.row-menu-content-list .on-profile-content .top-menu .pull-left .authControl .drop-down-menu-account .login-popup .info span:first-child {
  border-right: 1px solid whitesmoke;
  padding: 0 10px;
}
.row-menu-content-list .on-profile-content .top-menu .pull-left .authControl .drop-down-menu-account .login-popup .info span:last-child {
  padding-left: 10px;
}

b,
strong {
  font-weight: 500;
}

.box-shadow {
  box-shadow: 0px 3px 4px -1px grey;
}

.package-card {
  background: white;
}

.afterlog {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-self: flex-start;
  z-index: 99;
}

body {
  font-family: Battambang, Arial, Helvetica, sans-serif;
}

.bg-white {
  background: white;
}

.card-relate-package .package-list-relate {
  display: block;
}
.card-relate-package .package-list-relate .package-list {
  display: flex;
  border-bottom: 1px dashed gray;
  padding: 10px;
  cursor: pointer;
}
.card-relate-package .package-list-relate .package-list .image {
  display: block;
  width: 30%;
  height: 60px;
}
.card-relate-package .package-list-relate .package-list .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-relate-package .package-list-relate .package-list .info {
  width: 70%;
  padding-left: 10px;
}
.card-relate-package .package-list-relate .package-list .info > small {
  color: grey;
}
.card-relate-package .package-list-relate .package-list .info .big-title-info {
  stroke-width: 1px;
  font-size: 16px;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #626262;
}
.card-relate-package .package-list-relate .active {
  background: gainsboro;
}

.card-relate-package .big-title,
.card-description .big-title {
  font-size: 22px;
  margin: 0;
  text-align: left;
  margin-bottom: 0px;
  padding-top: 0;
  padding-bottom: 20px;
  position: relative;
}
.card-relate-package .big-title:before,
.card-description .big-title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: #231f20;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
}
.card-relate-package .big-title:after,
.card-description .big-title:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background: #f13e44;
  display: block;
  bottom: 0;
  left: 0;
}

.card-video-modal #video-playing-vimeo,
.card-description #video-playing-vimeo {
  background: #231f20;
}
.card-video-modal .big-description-title,
.card-description .big-description-title {
  font-size: 20px;
  color: #f13e44;
}
.card-video-modal .video-group-list,
.card-description .video-group-list {
  display: block;
  background: black;
  max-height: 450px;
  overflow-y: auto;
  position: relative;
}
.card-video-modal .video-group-list::-webkit-scrollbar,
.card-description .video-group-list::-webkit-scrollbar {
  width: 4px;
}
.card-video-modal .video-group-list::-webkit-scrollbar-track,
.card-description .video-group-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.card-video-modal .video-group-list::-webkit-scrollbar-thumb,
.card-description .video-group-list::-webkit-scrollbar-thumb {
  background: #f13e44;
}
.card-video-modal .video-group-list::-webkit-scrollbar-thumb:hover,
.card-description .video-group-list::-webkit-scrollbar-thumb:hover {
  background: #f13e44;
}
.card-video-modal .video-group-list .video-list,
.card-description .video-group-list .video-list {
  display: flex;
  align-items: center;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
}
.card-video-modal .video-group-list .video-list .image,
.card-description .video-group-list .video-list .image {
  width: 50px;
  height: 50px;
  background: black;
}
.card-video-modal .video-group-list .video-list .image img,
.card-description .video-group-list .video-list .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-video-modal .video-group-list .video-list .v-title,
.card-description .video-group-list .video-list .v-title {
  padding: 0 15px;
  font-weight: bold;
  font-size: 15px;
  flex: 1;
}
.card-video-modal .video-group-list .video-list .v-title .v-active,
.card-description .video-group-list .video-list .v-title .v-active {
  padding-right: 10px;
}
.card-video-modal .video-group-list .video-list .v-duration,
.card-description .video-group-list .video-list .v-duration {
  flex: 0;
}
.card-video-modal .video-group-list .active-list,
.card-description .video-group-list .active-list {
  background: gray;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.card-video-modal .video-group-list .disable-list,
.card-description .video-group-list .disable-list {
  opacity: 0.5;
  cursor: default;
}

.package-card {
  font-family: Battambang, Arial, Helvetica, sans-serif;
}
.package-card:hover .image-package {
  position: relative;
}
.package-card:hover .image-package img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.package-card:hover .image-package::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f13e44;
  opacity: 0.2;
  z-index: 99;
}
.package-card .image-package {
  height: 180px;
  display: block;
  overflow: hidden;
}
.package-card .image-package img {
  width: 100%;
  transition: all 0.5s;
}
.package-card .card-body {
  padding: 10px;
}
.package-card .card-body .big-title {
  font-size: 20px;
  line-height: 30px;
}
.package-card .card-body .description-title {
  font-size: 16px;
  height: 45px;
}
.package-card .card-body .hr-big {
  margin: 5px 0;
}
.package-card .card-body .author {
  font-size: 10px;
  color: gray;
}
.package-card .card-body .cost {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.package-card .card-body .cost .cost-group {
  flex: 1;
  display: flex;
  align-items: center;
}
.package-card .card-body .cost .cost-group .cost-dis {
  margin-right: 10px;
}
.package-card .card-body .cost .cost-group .cost-sale {
  color: #f13e44;
  font-weight: bold;
  font-size: 16px;
}
.package-card .card-body .cost .action .action-btn {
  background: transparent;
  border: none;
  color: #f13e44;
}
.package-card .card-body .cost .action .action-btn:hover {
  font-weight: bold;
}

form input.error {
  border: 1px solid crimson;
}
form label.error {
  font-size: 12px;
  color: crimson;
}

.member-form-create {
  background: white;
  padding: 30px 10px;
  border-radius: 10px;
}
.member-form-create .report-info {
  border-radius: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  gap: 10px;
}
.member-form-create .report-info .item {
  width: 33.3333333333%;
  height: 60px;
  border-radius: 5px;
  padding: 0 15px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.member-form-create .report-info .item.bg-success {
  background-color: #00b74a !important;
}
.member-form-create .report-info .item.bg-danger {
  background-color: #f93154 !important;
}
.member-form-create .report-info .item.bg-info {
  background-color: #39c0ed !important;
}
.member-form-create .report-info .item h3 {
  font-size: 18px;
}
.member-form-create .report-info .item span {
  font-size: 16px;
}

.card-member {
  display: block;
  padding: 15px 0;
}
.card-member .body-card-member {
  display: flex;
  padding: 10px;
  box-sizing: border-box;
  align-items: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.card-member .body-card-member:nth-child(odd) {
  background: whitesmoke;
}
.card-member .body-card-member .avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 5px;
}
.card-member .body-card-member .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-member .body-card-member .member-info {
  list-style-type: none;
  flex: auto;
  padding: 0 20px;
  margin: 0;
}
.card-member .body-card-member .member-info .member-info-list .capitalize {
  text-transform: capitalize;
}
.card-member .body-card-member .agency-commission {
  position: absolute;
  top: 0;
  right: 0;
  background: #f13e44;
  padding: 3px;
  font-size: 12px;
}

.panel-body {
  position: relative;
}

.login-container .login-form {
  width: 300px;
  height: 500px;
}

.login-container .login-form,
.login-container .registration-form {
  margin: 10px auto 10px auto;
}

.panel-b {
  border: 1px solid transparent;
  border-radius: 4px;
  /* border-color      : #ffd10b;  */
  /* Before */
  border-color: #f13e44;
  /* Update */
  /* -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05); */
  /* box-shadow        : 0 1px 1px rgba(0,0,0,.05); */
  background: #242021;
}

.btnblock-signin {
  /* border-color: #ffd10b;  */
  /* Before */
  border-color: #f13e44;
  /* Update */
  color: white;
  background: #f13e44;
}

.p-center:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 70px;
  height: 100%;
  background: #242021;
  margin: auto;
  z-index: -1;
}

.p-center:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #a9a9a9;
  left: 0;
  top: 19px;
  z-index: -1;
}

.p-center {
  position: relative;
  padding: 10px 0;
  z-index: 1;
}

.member,
.p-center {
  font-size: 12px;
  color: #a9a9a9;
}

.btn-facebook {
  background: #3b5998;
  color: #fff;
  /* font-size     : 14px; */
  /* text-transform: uppercase; */
}

.uppercase {
  text-transform: uppercase;
}

.fa:hover {
  color: none;
  /* .btn-facebook:hover {
    background        : #3B5998;
  } */
}

.body_backgroud {
  background: #242021;
  color: #c9c9c9;
}

.btn-block-fp {
  display: block;
  width: 100%;
  background: #242021;
  color: #c9c9c9;
}

.btn-block-fp:hover {
  background: #242021;
  color: #c9c9c9;
}

.linktc a {
  color: #c1c0ca !important;
  text-decoration: underline;
}

.linktc a:hover {
  /* color: #ffd10b !important;  */
  /* Before */
  color: #f13e44 !important;
  /* Update*/
}

.payment-form {
  border: 1px solid gainsboro;
  padding: 15px 0;
  background: white;
  border-radius: 10px;
}

.hr-payment {
  margin: 8px 0;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.payment-method label {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: 100%;
}
.payment-method label input {
  width: 20px;
  height: 20px;
}
.payment-method label input:checked ~ .pay-option {
  background: #f5f5f5;
}
.payment-method label .pay-option {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  border-radius: 5px;
  padding: 10px;
  flex: auto;
}
.payment-method label .pay-option img {
  width: 50px;
  min-width: 50px;
  border-radius: 8px;
}
.payment-method label .pay-option .title {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.payment-method label .pay-option .title p {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
}
.payment-method label .pay-option .title img {
  min-width: auto;
  height: 20px;
  width: auto;
  border-radius: unset;
}
.payment-method label h5 {
  display: block;
}
.payment-method label .pipay {
  width: 50px;
}
.payment-method .wing {
  background: black;
  color: white;
}
.payment-method .wing img {
  width: 35px;
}

.wrap-top-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header-withdraw {
  display: flex;
  justify-content: space-between;
}
.header-withdraw .title {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.header-withdraw .form-select {
  height: 45px;
}

label .required {
  color: #f13e44;
}

body {
  transition: all 0.3s;
  position: relative;
  transition-timing-function: ease;
  -webkit-animation: action 0.3s;
          animation: action 0.3s;
}

.card-balance-history {
  border: 1px solid gainsboro;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 10px;
}
.card-balance-history:nth-child(even) {
  background-color: #ebebeb;
}
.card-balance-history .date {
  color: gray;
  font-size: small;
}
.card-balance-history .body-balance-history {
  display: flex;
  justify-content: space-between;
}
.card-balance-history .body-balance-history .left .balance {
  color: #f13e44;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.card-balance-history .body-balance-history .left .remark {
  color: gray;
  padding-top: 0px;
}

.code-referent {
  display: block;
  padding: 10px 0;
}
.code-referent .input-copy {
  display: flex;
  align-items: center;
}
.code-referent .input-copy label {
  white-space: nowrap;
  margin-right: 10px;
}
.code-referent .input-copy input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.code-referent .input-copy button {
  margin-left: 10px;
}

.self-account {
  box-shadow: 0px 3px 4px -1px grey;
  border-radius: 10px;
  overflow: hidden;
}
.self-account .group-profile {
  position: relative;
  padding: 20px;
  background: #f13e44;
  height: 223px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.self-account .group-profile .parent-frame {
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  color: #f13e44;
  font-weight: bold;
  padding: 5px 30px;
}
.self-account .group-profile .avatar {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50px;
  box-sizing: border-box;
  padding: 5px;
  overflow: hidden;
}
.self-account .group-profile .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.self-account .group-profile .info-account {
  padding: 10px 0;
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
  filter: drop-shadow(0px 2px 2px #f13e44);
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
}
.self-account .balance-album {
  padding: 20px;
}
.self-account .balance-album .group-balance {
  list-style-type: none;
}
.self-account .balance-album .group-balance .balance {
  font-weight: bold;
}

.text-note {
  padding: 20px;
  background-image: linear-gradient(45deg, #ecd9b4, #f5ae2b);
  border-radius: 5px;
  display: block;
}
.text-note .list-text-note {
  padding: 5px;
  font-weight: bold;
  list-style-type: none;
}

.account-information {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 15px;
}
.account-information .avatar {
  width: 80px;
  height: 80px;
  border: 1px solid #f13e44;
  border-radius: 50px;
  background: #f13e44;
  overflow: hidden;
  margin-bottom: 10px;
}
.account-information .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.password-confirm input {
  padding: 10px;
  height: 45px;
  text-align: center;
}

.account-profile {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: white;
  background: #f13e44;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 3px 4px -1px grey;
  height: 183px;
  overflow: hidden;
}
.account-profile .btn-edit {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  color: white;
  filter: drop-shadow(0px 2px 2px gray);
}
.account-profile .avatar {
  background: white;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 10px;
}
.account-profile .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.account-profile .info-account {
  font-weight: bold;
  text-align: center;
}
.account-profile .info-account h4 {
  font-weight: bold;
  color: white;
  filter: drop-shadow(0px 2px 2px #f13e44);
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-success-custom {
  color: #fff;
  background-color: #f13e44;
  border-color: #f13e44;
}

.afterlog .formSearch {
  width: calc(100% - 477px);
}

.course-left {
  padding: 10px 20px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 3px 4px -1px grey;
}

.user-menu li a {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.user-menu li a i {
  color: #f13e44;
}

@-webkit-keyframes action {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes action {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.profile-img {
  background-image: linear-gradient(45deg, #ffd78c, #f13e44);
  width: 100px;
  height: 100px;
}

.course-left ul li:last-child a {
  border: none;
}
.course-left ul li h4 {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 14px;
  padding: 10px 0;
  color: #f13e44;
}
.course-left ul hr {
  flex: auto;
  margin: 0;
}

.profile-content .table > tbody > tr > th {
  font-weight: 500;
}

.avatar-group-profile {
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 0px;
  height: 180px;
  align-items: center;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 15px;
}
.avatar-group-profile .change-avatar-group {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}
.avatar-group-profile .change-avatar-group img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.avatar-group-profile .change-avatar-group .photo-change {
  position: absolute;
  bottom: 0;
  z-index: 99;
  left: 0;
  width: 100%;
  opacity: 0.5;
  transition: all 0.3s;
}
.avatar-group-profile .change-avatar-group .photo-change:hover {
  opacity: 1;
  transition: all 0.3s;
}
.avatar-group-profile .change-avatar-group .photo-change:hover i {
  color: #f13e44;
}

.info-list-edit {
  display: flex;
  justify-content: space-between;
  width: 100%;
  transition: all 0.3s;
  align-items: center;
}
.info-list-edit td button {
  opacity: 0;
  background: transparent;
  position: absolute;
  visibility: hidden;
  right: -10px;
  transition: right 0.3s;
}
.info-list-edit:hover {
  cursor: pointer;
  transition: all 0.3s;
}
.info-list-edit:hover td button {
  position: relative;
  visibility: visible;
  right: 0px;
  transition: right 0.3s;
  opacity: 1;
}

.form-search {
  border-radius: 50px;
  border: 2px solid #f13e44;
  color: #f13e44;
  font-weight: bold;
}
.form-search::-moz-placeholder {
  color: gray;
  font-weight: 500;
}
.form-search:-ms-input-placeholder {
  color: gray;
  font-weight: 500;
}
.form-search::placeholder {
  color: gray;
  font-weight: 500;
}

.btn-company {
  border-radius: 50px;
  padding: 10px;
  font-weight: 600;
  background: #f13e44;
  color: white;
  border: 2px solid white;
  min-width: 120px;
}
.btn-company:hover {
  color: white;
  box-shadow: 0px 3px 4px -1px grey;
}

.btn-search {
  border-radius: 50px;
  padding: 10px;
  font-weight: 600;
  background: #f13e44;
  color: white;
  border: 2px solid white;
  min-width: 100%;
}
.btn-search:hover {
  color: white;
  box-shadow: 0px 3px 4px -1px grey;
}

.bg-company {
  background: white;
  color: #f13e44;
  filter: drop-shadow(0px 0px 0px "white");
}

.btn-cancel {
  border-radius: 50px;
  padding: 10px;
  font-weight: 600;
  background: black;
  color: #f13e44;
  border: 2px solid #f13e44;
  min-width: 120px;
}
.btn-cancel:hover {
  color: white;
  box-shadow: 0px 3px 4px -1px grey;
}

.modal-body .form-control {
  height: 45px;
}

.search-container {
  margin-top: 20px;
}
.search-container .h-45 {
  height: 45px;
}

.ui-menu {
  border-radius: 10px;
  overflow: hidden;
}
.ui-menu .ui-menu-item {
  font-family: Battambang, Arial, Helvetica, sans-serif;
  padding: 5px 10px;
}
.ui-menu .ui-menu-item:hover .ui-menu-item-wrapper,
.ui-menu .ui-menu-item:hover .ui-state-active {
  border: none;
  border-radius: 10px;
  background-color: #f13e44;
  color: white;
}
.ui-menu .ui-menu-item .ui-menu-item-wrapper {
  background: transparent;
}
.ui-menu .ui-menu-item .ui-state-active {
  border: none;
  border-radius: 10px;
  background-color: #f13e44;
  color: white;
}

.sm-login-account {
  display: flex !important;
  align-items: center;
}
.sm-login-account .profile-sm {
  background: #f13e44;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  margin-right: 10px;
  border: 2px solid white;
  overflow: hidden;
  box-shadow: 0px 3px 4px -1px grey;
}
.sm-login-account .profile-sm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

label {
  font-weight: 500;
}

.swal-title {
  font-weight: 500;
}

.main-menu .navbar a {
  padding-top: 3px;
  padding-bottom: 3px;
}

.searchBox-sm {
  padding: 0 20px !important;
}
.searchBox-sm i {
  font-size: 16px;
}

.main-menu .navbar .active a {
  color: #f13e44;
}

.drop-down-menu-account:hover .drop-down-account {
  visibility: visible !important;
  opacity: 1;
  transition: all 0.5s;
  top: 100%;
}

.drop-down-account {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 200px;
  background: white;
  color: #f13e44;
  padding: 15px;
  box-shadow: 0px 3px 4px -1px grey;
  border-radius: 10px;
  transition: all 0.5s;
  top: 50px;
  z-index: 99;
}
.drop-down-account::after {
  content: "";
  z-index: -99;
  width: 15px;
  height: 15px;
  background: white;
  transform: translate(-50%, 0) rotate(45deg);
  position: absolute;
  top: -7px;
  left: 50%;
  transition: all 0.5s;
}
.drop-down-account .account-profile-account {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #f13e44;
  font-weight: bold;
}
.drop-down-account .account-profile-account .account-info-list {
  display: block;
  flex: 1;
  line-height: 25px;
}
.drop-down-account .account-profile-account .avatar-profile-account {
  width: 50px;
  height: 50px;
  background: #f13e44;
  border-radius: 50px;
  margin-right: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 4px -1px grey;
  border: 1px solid white;
}
.drop-down-account .account-profile-account .avatar-profile-account img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.drop-down-account .list-menu-account {
  display: block;
  list-style-type: none;
  height: 30px;
}
.drop-down-account .list-menu-account .links-account {
  border: none;
  color: grey !important;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin: 3px 0;
  padding: 0;
  font-family: Battambang, Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.drop-down-account .list-menu-account .links-account .icon {
  font-size: 14px;
  width: 25px;
  display: flex;
  height: 25px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
}
.drop-down-account .list-menu-account .text-danger {
  color: red;
}

.authControl {
  display: flex;
}

.account-name-sm {
  font-size: 14px;
  line-height: 25px;
}

.profile-sm-group {
  margin-bottom: 10px;
}

#empty-group {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px 0;
  background: white;
  margin: 15px 0;
  border-radius: 10px;
}
#empty-group .empty-data {
  width: 200px;
  text-align: center;
}

.card-account-menu {
  border-radius: 5px;
  box-shadow: 0px 3px 4px -1px grey;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.card-account-menu:hover h4 {
  color: #f13e44;
}
.card-account-menu .menu-icon {
  margin-bottom: 5px;
}
.card-account-menu .menu-icon i {
  color: #f13e44;
  font-size: 25px;
  opacity: 0.8;
}
.card-account-menu h4 {
  color: black;
  font-size: 14px;
}

.bg-active {
  background-color: #f13e44 !important;
}
.bg-active .menu-icon i {
  color: white !important;
}
.bg-active h4 {
  color: white;
}
.bg-active:hover h4 {
  color: black;
}

.course-left ul li a {
  border-bottom: none;
}

.text-sign-out {
  color: #c33232 !important;
}

.audio-sound-play {
  margin-bottom: 10px;
}
.audio-sound-play audio {
  width: 100%;
  background-color: #f1f3f4;
}

.audio-group-list {
  background: white !important;
}
.audio-group-list .video-list {
  color: #f13e44 !important;
}

.card-package-book .card-image {
  background-color: #ebe8e8;
  border-radius: 5px;
  width: 100%;
  height: 190px;
}
.card-package-book .card-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .menu-custom li a {
    display: flex;
    justify-content: space-between;
  }

  .card-relate-package {
    margin-top: 20px;
  }
}
.playing-group {
  display: flex;
  align-items: flex-end;
}
.playing-group .stop-icon {
  width: 3px;
  margin: 2px;
  height: 10px;
  background: #f13e44;
  height: 20px;
}
.playing-group .stop-icon:nth-child(1n) {
  height: 10px;
}
.playing-group .stop-icon:nth-child(2n) {
  height: 8px;
}
.playing-group .stop-icon:nth-child(3n) {
  height: 5px;
}
.playing-group .stop-icon:nth-child(4n) {
  height: 10px;
}
.playing-group .playing-icon {
  width: 3px;
  display: inline-block;
  margin: 2px;
  background: #f13e44;
  height: 20px;
}
.playing-group .playing-icon:nth-child(1n) {
  -webkit-animation: playing1 0.3s infinite alternate;
          animation: playing1 0.3s infinite alternate;
}
.playing-group .playing-icon:nth-child(2n) {
  -webkit-animation: playing2 0.3s infinite alternate;
          animation: playing2 0.3s infinite alternate;
}
.playing-group .playing-icon:nth-child(3n) {
  -webkit-animation: playing3 0.3s infinite alternate;
          animation: playing3 0.3s infinite alternate;
}
.playing-group .playing-icon:nth-child(4n) {
  -webkit-animation: playing4 0.3s infinite alternate;
          animation: playing4 0.3s infinite alternate;
}

@-webkit-keyframes playing1 {
  from {
    height: 2px;
  }
  to {
    height: 10px;
  }
}

@keyframes playing1 {
  from {
    height: 2px;
  }
  to {
    height: 10px;
  }
}
@-webkit-keyframes playing2 {
  from {
    height: 10px;
  }
  to {
    height: 5px;
  }
}
@keyframes playing2 {
  from {
    height: 10px;
  }
  to {
    height: 5px;
  }
}
@-webkit-keyframes playing3 {
  from {
    height: 0px;
  }
  to {
    height: 10px;
  }
}
@keyframes playing3 {
  from {
    height: 0px;
  }
  to {
    height: 10px;
  }
}
@-webkit-keyframes playing4 {
  from {
    height: 10px;
  }
  to {
    height: 5px;
  }
}
@keyframes playing4 {
  from {
    height: 10px;
  }
  to {
    height: 5px;
  }
}
.no-fullscreen-support .fullscreen {
  display: block !important;
}

.full-screen-video {
  -webkit-animation-fill-mode: none !important;
          animation-fill-mode: none !important;
}

.chapter {
  margin: 20px 0;
}
.chapter.table-report {
  overflow-x: auto;
}
.chapter.table-report .group-chapter {
  min-width: 600px;
}
.chapter.table-report .pagination {
  min-width: 600px;
}
.chapter .play-list-video {
  width: 100%;
  text-align: right;
  color: #f13e44;
  display: block;
  background: rgba(220, 220, 220, 0.63);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.chapter .chapter-title {
  margin-bottom: 10px;
  stroke-width: 1px;
}
.chapter .group-chapter {
  list-style-type: none;
}
.chapter .group-chapter .chapter-list {
  display: flex;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid #e9e9e9;
}
.chapter .group-chapter .chapter-list .image {
  width: 80px;
  height: 50px;
  padding-right: 15px;
  overflow: hidden;
}
.chapter .group-chapter .chapter-list .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.chapter .group-chapter .chapter-list .group-info {
  display: flex;
  justify-content: center;
  flex: 1 auto;
  flex-direction: column;
  width: 70%;
}
.chapter .group-chapter .chapter-list .group-info .title-chapter {
  font-size: 16px;
  stroke-width: 1px;
  margin-bottom: 5px;
}
.chapter .group-chapter .chapter-list .group-info .description-chapter {
  font-size: 12px;
}
.chapter .group-chapter .chapter-list .action-chapter .btn-company {
  min-width: 45px;
}
.chapter .group-chapter .chapter-list .action-chapter .btn-cancel {
  min-width: 45px;
}

.loading-group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 10px;
  flex-direction: column;
}
.loading-group .text {
  padding: 10px;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f13e44;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
          animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
          animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
          animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
          animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
          animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
          animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
          animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
          animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@-webkit-keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#videoModal,
.card-video-modal {
  margin: 0;
}
#videoModal .close-video,
.card-video-modal .close-video {
  position: absolute;
  right: 0;
  top: 0;
  background: #f13e44;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  margin: 10px;
  cursor: pointer;
}
#videoModal .modal-video-youtube,
.card-video-modal .modal-video-youtube {
  height: 100vh;
  padding: 0;
}
#videoModal .modal-video-youtube #video-playing-vimeo,
.card-video-modal .modal-video-youtube #video-playing-vimeo {
  background: black;
}

.message-alert-group {
  display: flex;
  position: absolute;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  text-align: center;
  background: wheat;
}
.message-alert-group .message-body {
  line-height: 35px;
  margin-bottom: 10px;
}

.play-audio-group {
  display: flex;
  width: 100%;
  padding: 10px 0;
}
.play-audio-group .source-play {
  width: 100%;
}

.audio-card-container {
  list-style-type: none;
  max-height: 50%;
  overflow: auto;
}
.audio-card-container .audio-list {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
}
.audio-card-container .audio-list .info-audio {
  display: flex;
  align-items: center;
}
.audio-card-container .audio-list .info-audio .image {
  width: 70px;
  height: 70px;
  background: #fafafa;
  margin-right: 20px;
}
.audio-card-container .audio-list .info-audio .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-purchase {
  padding: 20px 0 !important;
}

.alert-notification {
  padding: 10px;
  position: relative;
}
.alert-notification:nth-child(odd) {
  background: whitesmoke;
}
.alert-notification h5 {
  text-transform: capitalize;
  font-size: 16px;
}
.alert-notification .alert-body {
  color: gray;
  font-size: 14px;
}
.alert-notification .date-time {
  position: absolute;
  right: 20px;
  top: 15px;
  display: flex;
}
.alert-notification .is_read {
  width: 10px;
  height: 10px;
  background: #f13e44;
  border-radius: 50px;
  margin-left: 10px;
}

.sweet-alert {
  font-family: Battambang, Arial, Helvetica, sans-serif;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

#agency-success {
  position: absolute;
  right: 0;
  top: 0;
  background: black;
  color: #f13e44;
  padding: 5px 10px;
}

.section-container {
  padding: 20px 0;
  background-color: #f7f7f7;
}
.section-container:nth-child(2n+1) {
  background-color: white;
}
.section-container .container .big-title {
  font-size: 35px;
}
.section-container .container .slide_show {
  overflow: hidden;
}
.section-container .container .slide_show .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
}
.section-container .container .slide_show .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.section-container .container .slide_show .swiper-wrapper .swiper-slide .cap {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.section-container .container .slide_show .swiper-wrapper .swiper-slide .cap h3 {
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: unset;
  z-index: 1;
  background: #f13e44;
  color: white;
  border: 1px solid whitesmoke;
  cursor: pointer;
  padding: 7px 25px;
  border-radius: 50px;
  filter: drop-shadow(0px 3px 4px black);
}
.section-container .container .section-aside {
  display: flex;
  justify-content: space-between;
}
.section-container .container .section-aside aside {
  width: 30%;
  box-sizing: border-box;
}
.section-container .container .section-aside aside .aside-content .image {
  position: relative;
  cursor: pointer;
}
.section-container .container .section-aside aside .aside-content .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(236, 236, 236, 0.62);
}
.section-container .container .section-aside aside .aside-content .image img {
  width: 100%;
  height: 100%;
}
.section-container .container .section-aside aside .aside-content .image .cap {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  text-align: center;
}
.section-container .container .section-aside aside .aside-content .image .cap h3 {
  font-size: 18px;
  font-weight: unset;
  -webkit-text-stroke: 0.5px;
  color: #f13e44;
  z-index: 1;
}
.section-container .container .section-aside aside .aside-content .image .cap button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: unset;
  z-index: 1;
  background: #f13e44;
  color: white;
  border: 1px solid whitesmoke;
  cursor: pointer;
  padding: 7px 25px;
  border-radius: 50px;
  filter: drop-shadow(0px 3px 4px black);
}
.section-container .container .section-aside aside .aside-content .image .cap button:focus {
  outline: none;
}
.section-container .container .section-aside .row {
  width: 70%;
  box-sizing: border-box;
  margin-top: -10px;
  margin-bottom: -10px;
}
.section-container .container .section-aside .row .grid {
  padding: 10px !important;
}
.section-container .container .section-aside .row .grid .card {
  background-color: whitesmoke;
}
.section-container .container .section-aside .row .grid .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.section-container .container .section-aside .row .grid .card .card-body h4.card-title {
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.section-container .container .register-wrapper .register-group {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  height: 350px;
  display: block;
  padding: 40px;
}
.section-container .container .register-wrapper .register-group .register {
  background: rgba(255, 255, 255, 0.555);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  height: 100%;
}
.section-container .container .register-wrapper .register-group .register .text {
  font-size: 20px;
  color: #f13e44;
}
.section-container .container .register-wrapper .register-group .register .small-text {
  font-size: 14px;
  color: #f13e44;
  margin-bottom: 20px;
}
.section-container .container .register-wrapper .register-group .register button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: unset;
  z-index: 1;
  background: #f13e44;
  color: white;
  border: 1px solid whitesmoke;
  cursor: pointer;
  padding: 7px 25px;
  border-radius: 50px;
  filter: drop-shadow(0px 3px 4px black);
}
.section-container .container .register-wrapper .register-group .register button:focus {
  outline: none;
}

.card-relate-package {
  background-color: white;
  margin: 0;
  border-radius: 10px;
}
.card-relate-package .big-title {
  font-size: 20px !important;
  margin: 0px;
  padding-bottom: 20px;
  padding: 15px 10px;
}
.card-relate-package .package-list-relate .package-list:last-child {
  border-bottom: unset;
}
.card-relate-package .package-list-relate .package-list .image img {
  -o-object-fit: contain;
     object-fit: contain;
}

.card-description {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
}
.card-description .audio-group-list .progress-tracking {
  position: relative;
  padding: 10px 0;
  font-size: 24px;
  color: #231f20;
  margin-bottom: 20px;
}
.card-description .audio-group-list .progress-tracking::before, .card-description .audio-group-list .progress-tracking::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: whitesmoke;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px;
}
.card-description .audio-group-list .progress-tracking::after {
  width: 20%;
  background: #f13e44;
}
.card-description .audio-group-list .video-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-description .audio-group-list .video-list .flex {
  box-sizing: border-box;
}
.card-description .audio-group-list .video-list .v-title {
  flex: unset;
}
.card-description .audio-group-list .video-list .v-active {
  width: 15%;
  display: flex;
  justify-content: space-between;
}

.footer-wrapper {
  background: #231f20;
  padding: 20px 0;
  color: whitesmoke;
}
.footer-wrapper .footer-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-wrapper .footer-group .top-footer {
  display: flex;
  flex-wrap: wrap;
}
.footer-wrapper .footer-group .top-footer .top-list {
  margin: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: unset;
}
.footer-wrapper .footer-group .top-footer .top-list .text {
  white-space: nowrap;
  text-decoration: none;
  color: whitesmoke;
  font-weight: unset;
}
.footer-wrapper .footer-group .top-footer .top-list .text a {
  font-weight: unset;
  text-decoration: none;
  color: whitesmoke;
}
.footer-wrapper .footer-group .top-footer .top-list .link {
  white-space: nowrap;
}
.footer-wrapper .footer-group .top-footer .top-list .link a {
  font-weight: unset;
  text-decoration: none;
  color: whitesmoke;
}
.footer-wrapper .footer-group .top-footer .border-right {
  border-right: 1px solid whitesmoke;
}
.footer-wrapper .footer-group .middle-footer {
  padding: 30px 10px;
}
.footer-wrapper .footer-group .middle-footer .text {
  font-size: 14px;
  color: whitesmoke;
}
.footer-wrapper .footer-group .bottom-footer .social-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-wrapper .footer-group .bottom-footer .social-group .social-list {
  margin: 10px;
}
.footer-wrapper .footer-group .bottom-footer .social-group .social-list a {
  text-decoration: none;
  font-size: 25px;
  color: whitesmoke;
}
.footer-wrapper .footer-group .footer-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-wrapper .footer-group .footer-payment h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.footer-wrapper .footer-group .footer-payment .footer-payment-list {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.footer-wrapper .footer-group .footer-payment .footer-payment-list img {
  height: 40px;
}

.pop-up-active {
  display: none;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 10px;
  z-index: 9999;
  color: #fff;
  background-color: #f13e44d9;
  border-radius: 8px;
  padding: 5px 10px;
  max-width: 80%;
  margin: auto;
}
.pop-up-active .pop-up-content .pop-up .audio-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pop-up-active .pop-up-content .pop-up .audio-content .close-btn {
  padding-right: 20px;
}
.pop-up-active .pop-up-content .pop-up .audio-content .close-btn span {
  cursor: pointer;
  font-weight: unset;
  font-size: 20px;
}
.pop-up-active .pop-up-content .pop-up .audio-content .image {
  width: 10%;
  box-sizing: border-box;
}
.pop-up-active .pop-up-content .pop-up .audio-content .image img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pop-up-active .pop-up-content .pop-up .audio-content .description {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pop-up-active .pop-up-content .pop-up .audio-content .description audio {
  display: block;
  width: 100%;
}
.pop-up-active .pop-up-content .pop-up .audio-content .description .left h4 {
  margin: 0;
}
.pop-up-active .pop-up-content .pop-up .audio-content .description .right {
  flex: 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}
.pop-up-active .pop-up-content .pop-up .audio-content .description .right .play {
  padding-right: 10px;
}
.pop-up-active .pop-up-content .pop-up .audio-content .description .right .play span {
  cursor: pointer;
  font-weight: unset;
  font-size: 30px;
}
.pop-up-active .pop-up-content .pop-up .audio-content .description .right .play-list span {
  cursor: pointer;
  font-weight: unset;
  font-size: 30px;
}
.pop-up-active .pop-up-content .pop-up-play-list {
  height: 250px;
  overflow: auto;
}
.pop-up-active .pop-up-content .pop-up-play-list .audio-play-list-group {
  background: #e0e0e0;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
  color: black;
  cursor: pointer;
}
.pop-up-active .pop-up-content .pop-up-play-list .audio-play-list-group .auto-image-list {
  display: flex;
  align-items: center;
}
.pop-up-active .pop-up-content .pop-up-play-list .audio-play-list-group .auto-image-list img {
  background: grey;
}
.pop-up-active .pop-up-content .pop-up-play-list .audio-play-list-group .auto-image-list .icon {
  font-size: 14px;
  color: grey;
  padding: 10px;
}
.pop-up-active .pop-up-content .pop-up-play-list .audio-play-list-group .auto-image-list .title-list {
  margin-left: 0px;
}
.pop-up-active .pop-up-content .pop-up-play-list .disabled-play {
  opacity: 0.6;
  cursor: default;
}

#menu-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0px 0px 7px -3px #424141;
  z-index: 90;
  display: none;
  box-sizing: border-box;
}
#menu-mobile .menu-mobile-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  margin: 0;
  box-sizing: border-box;
}
#menu-mobile .menu-mobile-group .menu-mobile-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  list-style-type: none;
  color: gray;
}
#menu-mobile .menu-mobile-group .menu-mobile-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  list-style-type: none;
  color: gray;
}
#menu-mobile .menu-mobile-group .menu-mobile-list .icon {
  font-size: large;
}
#menu-mobile .menu-mobile-group .menu-mobile-list .active-mobile-menu {
  color: #f13e44;
}

.col-1 {
  width: 1%;
  box-sizing: border-box;
}

.col-2 {
  width: 2%;
  box-sizing: border-box;
}

.col-3 {
  width: 3%;
  box-sizing: border-box;
}

.col-4 {
  width: 4%;
  box-sizing: border-box;
}

.col-5 {
  width: 5%;
  box-sizing: border-box;
}

.col-6 {
  width: 6%;
  box-sizing: border-box;
}

.col-7 {
  width: 7%;
  box-sizing: border-box;
}

.col-8 {
  width: 8%;
  box-sizing: border-box;
}

.col-9 {
  width: 9%;
  box-sizing: border-box;
}

.col-10 {
  width: 10%;
  box-sizing: border-box;
}

.col-11 {
  width: 11%;
  box-sizing: border-box;
}

.col-12 {
  width: 12%;
  box-sizing: border-box;
}

.col-13 {
  width: 13%;
  box-sizing: border-box;
}

.col-14 {
  width: 14%;
  box-sizing: border-box;
}

.col-15 {
  width: 15%;
  box-sizing: border-box;
}

.col-16 {
  width: 16%;
  box-sizing: border-box;
}

.col-17 {
  width: 17%;
  box-sizing: border-box;
}

.col-18 {
  width: 18%;
  box-sizing: border-box;
}

.col-19 {
  width: 19%;
  box-sizing: border-box;
}

.col-20 {
  width: 20%;
  box-sizing: border-box;
}

.col-21 {
  width: 21%;
  box-sizing: border-box;
}

.col-22 {
  width: 22%;
  box-sizing: border-box;
}

.col-23 {
  width: 23%;
  box-sizing: border-box;
}

.col-24 {
  width: 24%;
  box-sizing: border-box;
}

.col-25 {
  width: 25%;
  box-sizing: border-box;
}

.col-26 {
  width: 26%;
  box-sizing: border-box;
}

.col-27 {
  width: 27%;
  box-sizing: border-box;
}

.col-28 {
  width: 28%;
  box-sizing: border-box;
}

.col-29 {
  width: 29%;
  box-sizing: border-box;
}

.col-30 {
  width: 30%;
  box-sizing: border-box;
}

.col-31 {
  width: 31%;
  box-sizing: border-box;
}

.col-32 {
  width: 32%;
  box-sizing: border-box;
}

.col-33 {
  width: 33%;
  box-sizing: border-box;
}

.col-34 {
  width: 34%;
  box-sizing: border-box;
}

.col-35 {
  width: 35%;
  box-sizing: border-box;
}

.col-36 {
  width: 36%;
  box-sizing: border-box;
}

.col-37 {
  width: 37%;
  box-sizing: border-box;
}

.col-38 {
  width: 38%;
  box-sizing: border-box;
}

.col-39 {
  width: 39%;
  box-sizing: border-box;
}

.col-40 {
  width: 40%;
  box-sizing: border-box;
}

.col-41 {
  width: 41%;
  box-sizing: border-box;
}

.col-42 {
  width: 42%;
  box-sizing: border-box;
}

.col-43 {
  width: 43%;
  box-sizing: border-box;
}

.col-44 {
  width: 44%;
  box-sizing: border-box;
}

.col-45 {
  width: 45%;
  box-sizing: border-box;
}

.col-46 {
  width: 46%;
  box-sizing: border-box;
}

.col-47 {
  width: 47%;
  box-sizing: border-box;
}

.col-48 {
  width: 48%;
  box-sizing: border-box;
}

.col-49 {
  width: 49%;
  box-sizing: border-box;
}

.col-50 {
  width: 50%;
  box-sizing: border-box;
}

.col-51 {
  width: 51%;
  box-sizing: border-box;
}

.col-52 {
  width: 52%;
  box-sizing: border-box;
}

.col-53 {
  width: 53%;
  box-sizing: border-box;
}

.col-54 {
  width: 54%;
  box-sizing: border-box;
}

.col-55 {
  width: 55%;
  box-sizing: border-box;
}

.col-56 {
  width: 56%;
  box-sizing: border-box;
}

.col-57 {
  width: 57%;
  box-sizing: border-box;
}

.col-58 {
  width: 58%;
  box-sizing: border-box;
}

.col-59 {
  width: 59%;
  box-sizing: border-box;
}

.col-60 {
  width: 60%;
  box-sizing: border-box;
}

.col-61 {
  width: 61%;
  box-sizing: border-box;
}

.col-62 {
  width: 62%;
  box-sizing: border-box;
}

.col-63 {
  width: 63%;
  box-sizing: border-box;
}

.col-64 {
  width: 64%;
  box-sizing: border-box;
}

.col-65 {
  width: 65%;
  box-sizing: border-box;
}

.col-66 {
  width: 66%;
  box-sizing: border-box;
}

.col-67 {
  width: 67%;
  box-sizing: border-box;
}

.col-68 {
  width: 68%;
  box-sizing: border-box;
}

.col-69 {
  width: 69%;
  box-sizing: border-box;
}

.col-70 {
  width: 70%;
  box-sizing: border-box;
}

.col-71 {
  width: 71%;
  box-sizing: border-box;
}

.col-72 {
  width: 72%;
  box-sizing: border-box;
}

.col-73 {
  width: 73%;
  box-sizing: border-box;
}

.col-74 {
  width: 74%;
  box-sizing: border-box;
}

.col-75 {
  width: 75%;
  box-sizing: border-box;
}

.col-76 {
  width: 76%;
  box-sizing: border-box;
}

.col-77 {
  width: 77%;
  box-sizing: border-box;
}

.col-78 {
  width: 78%;
  box-sizing: border-box;
}

.col-79 {
  width: 79%;
  box-sizing: border-box;
}

.col-80 {
  width: 80%;
  box-sizing: border-box;
}

.col-81 {
  width: 81%;
  box-sizing: border-box;
}

.col-82 {
  width: 82%;
  box-sizing: border-box;
}

.col-83 {
  width: 83%;
  box-sizing: border-box;
}

.col-84 {
  width: 84%;
  box-sizing: border-box;
}

.col-85 {
  width: 85%;
  box-sizing: border-box;
}

.col-86 {
  width: 86%;
  box-sizing: border-box;
}

.col-87 {
  width: 87%;
  box-sizing: border-box;
}

.col-88 {
  width: 88%;
  box-sizing: border-box;
}

.col-89 {
  width: 89%;
  box-sizing: border-box;
}

.col-90 {
  width: 90%;
  box-sizing: border-box;
}

.col-91 {
  width: 91%;
  box-sizing: border-box;
}

.col-92 {
  width: 92%;
  box-sizing: border-box;
}

.col-93 {
  width: 93%;
  box-sizing: border-box;
}

.col-94 {
  width: 94%;
  box-sizing: border-box;
}

.col-95 {
  width: 95%;
  box-sizing: border-box;
}

.col-96 {
  width: 96%;
  box-sizing: border-box;
}

.col-97 {
  width: 97%;
  box-sizing: border-box;
}

.col-98 {
  width: 98%;
  box-sizing: border-box;
}

.col-99 {
  width: 99%;
  box-sizing: border-box;
}

.col-100 {
  width: 100%;
  box-sizing: border-box;
}

.financial-wrapper {
  background: white;
}
.financial-wrapper .menu-finance {
  padding: 10px 0;
  margin: 0;
  display: flex;
  border-bottom: 1px solid gray;
  overflow: auto;
}
.financial-wrapper .menu-finance .menu-finance-list {
  list-style-type: none;
  margin-right: 10px;
  white-space: nowrap;
}
.financial-wrapper .menu-finance .active-finance a {
  color: #f13e44;
}
.financial-wrapper .header-title {
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  box-sizing: border-box;
}
.financial-wrapper .table-form-group {
  border: none;
  padding-bottom: 20px;
}
.financial-wrapper .table-form-group .info {
  display: flex;
  margin: 0 -10px;
}
.financial-wrapper .table-form-group .info .list {
  display: flex;
  margin: 10px;
}
.financial-wrapper .table-form-group .info .list input {
  border: none;
  border-bottom: 1px dashed gray;
  padding: 0 10px;
  text-align: center;
}
.financial-wrapper .table-form-group .text-header {
  border: 1px solid gray;
  text-align: center;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}
.financial-wrapper .table-form-group .table {
  width: 100%;
  display: block;
  margin-bottom: 0;
}
.financial-wrapper .table-form-group .table .thead-table {
  width: 100%;
  display: block;
}
.financial-wrapper .table-form-group .table .thead-table .table-header {
  width: 100%;
  display: flex;
  padding: 0;
  align-items: center;
  margin: 0px;
}
.financial-wrapper .table-form-group .table .thead-table .table-header li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: ghostwhite;
  text-align: center;
  font-size: 14px;
  list-style-type: none;
  height: 70px;
  border-bottom: 1px solid gainsboro;
  border-left: 1px solid gainsboro;
}
.financial-wrapper .table-form-group .table .thead-table .table-header li:last-child {
  border-right: 1px solid gainsboro;
}
.financial-wrapper .table-form-group .table .thead-table .table-header li .main-tab {
  text-align: center;
  border-bottom: 1px solid gainsboro;
}
.financial-wrapper .table-form-group .table .thead-table .table-header li .sub-tab {
  width: 100%;
  display: flex;
}
.financial-wrapper .table-form-group .table .thead-table .table-header li .sub-tab .list-sub-tab {
  width: 50%;
  height: 100%;
  border-right: 1px solid gainsboro;
}
.financial-wrapper .table-form-group .table .thead-table .table-header li .sub-tab .list-sub-tab:last-child {
  border-right: none;
}
.financial-wrapper .table-form-group .table .thead-table .transparent-table {
  position: relative;
}
.financial-wrapper .table-form-group .table .thead-table .transparent-table:hover .remove-btn {
  right: -35px;
  opacity: 1;
  z-index: 1;
  display: block;
}
.financial-wrapper .table-form-group .table .thead-table .transparent-table .remove-btn {
  opacity: 0;
  z-index: 0;
  position: absolute;
  right: 0px;
  display: none;
  top: 0;
  transition-delay: 0.3s;
}
.financial-wrapper .table-form-group .table .thead-table .transparent-table li {
  height: 40px;
  background: transparent;
}
.financial-wrapper .table-form-group .table .thead-table .transparent-table li .form-finance {
  border: none;
  text-align: center;
  box-sizing: border-box;
  padding: 5px 0;
}
.financial-wrapper .table-form-group .table-footer {
  padding-top: 20px;
}
.financial-wrapper .table-form-group .two-fields {
  display: flex;
}
.financial-wrapper .table-form-group .two-fields .field {
  flex: 1;
}

.pagination {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: space-between;
}
.pagination-left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 14px;
}
.pagination-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.pagination-right .pagination-wrapper {
  display: flex;
  background: #fff;
  height: 100%;
  align-items: center;
  padding: 8px 15px;
  border-radius: 8px;
  box-sizing: border-box;
}
.pagination-right .pagination-wrapper .pagination-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 30px;
  padding: 0 5px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  border-radius: 5px;
  cursor: pointer;
}
.pagination-right .pagination-wrapper .pagination-item.active {
  background: #f13e44;
  color: #fff;
  cursor: default;
}
.pagination-right .pagination-wrapper .pagination-item.disabled {
  color: #ccc;
  cursor: no-drop;
}
.pagination-right .pagination-wrapper .pagination-item:hover:not(.active) {
  background: rgba(241, 62, 68, 0.1);
}

@media screen and (max-width: 840px) {
  .on-profile-content {
    display: none;
  }

  .footer-wrapper .footer-group .top-footer {
    flex-direction: column;
  }
  .footer-wrapper .footer-group .top-footer .top-list {
    margin: 10px 0;
    display: unset;
  }
  .footer-wrapper .footer-group .top-footer .top-list .text {
    text-align: center;
  }
  .footer-wrapper .footer-group .top-footer .border-right {
    border: unset;
  }
  .footer-wrapper .footer-group .middle-footer {
    text-align: center;
    padding: 10px;
  }

  .auth-mobile-screen {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 3px solid #f13e44;
  }
  .auth-mobile-screen .login-container .login-form {
    width: unset;
    height: unset;
    padding: 10px 50px;
    margin: 0;
    border: unset;
    border-radius: unset;
  }

  .section-container .container .big-title {
    font-size: 25px;
    margin: 0 auto 20px;
    max-width: 100%;
  }
  .section-container .container .section-aside {
    flex-wrap: wrap;
  }
  .section-container .container .section-aside aside {
    width: 100%;
  }
  .section-container .container .section-aside aside .aside-content .image {
    height: 180px;
  }
  .section-container .container .section-aside aside .aside-content .image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-container .container .section-aside .row {
    width: 100vw;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -10px;
    margin-right: -10px;
  }

  .package-card .card-body .card-title {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 15px;
  }
  .package-card .card-body .cost {
    flex-wrap: wrap;
  }
  .package-card .card-body .cost .cost-group {
    width: 100%;
  }
  .package-card .card-body .cost .action {
    width: 100%;
    text-align: right;
  }

  .drop-down-account .list-menu-account .links-account {
    font-size: 14px;
  }

  .navbar-collapse {
    position: fixed;
    top: 50px;
    left: -100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    width: 75%;
    height: 100%;
    background: #231f20;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
  }

  .collapse {
    display: unset;
  }

  .navbar-collapse.show-menu {
    left: 0;
    transition: left 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
  }

  .navbar-toggle .icon-bar {
    transition: transform 300ms;
  }
  .navbar-toggle .icon-bar:nth-child(2n) {
    transform: translate(0px, 6px) rotate(-45deg);
  }
  .navbar-toggle .icon-bar:nth-child(3n) {
    transform: translate(0px, 0px) rotate(45deg);
  }
  .navbar-toggle .icon-bar:nth-child(4n) {
    display: none;
  }

  .collapsed .icon-bar:nth-child(2n) {
    transform: unset;
  }
  .collapsed .icon-bar:nth-child(3n) {
    transform: unset;
  }
  .collapsed .icon-bar:nth-child(4n) {
    display: block;
  }

  .card-description .audio-group-list .video-list .v-active {
    width: 40%;
  }

  .pop-up-active {
    max-width: 90%;
  }

  .on-profile-content {
    display: none;
  }

  .afterlog .main-menu .navbar .navbar-brand a {
    display: flex;
    justify-content: flex-end;
    width: 75%;
  }

  .card-description {
    margin-top: 10px;
    padding: 20px;
    border-radius: unset;
    border-top: 3px solid #f13e44;
  }
  .card-description .chapter .group-chapter .chapter-list .action-chapter {
    display: flex;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: flex-end;
  }
  .card-description .chapter .group-chapter .chapter-list .action-chapter .btn-company,
.card-description .chapter .group-chapter .chapter-list .action-chapter .btn-cancel {
    width: 20px;
    height: 20px;
    background: transparent;
    color: #f13e44;
    border: none;
    max-width: 20px;
    padding: 0;
  }

  .profile-content h3 {
    padding: 0 10px;
  }

  #videoModal {
    transition: all 0.5s;
  }
  #videoModal .modal-dialog {
    margin: 0;
  }
  #videoModal .modal-dialog #video-play-screen {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    align-self: flex-start;
  }

  .video-container-play-list {
    padding: 0px;
  }
  .video-container-play-list #links-current {
    padding: 0;
  }
  .video-container-play-list #video-play-screen {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 60px;
    align-self: flex-start;
    z-index: 90;
  }

  .financial-wrapper .table-form-group {
    width: 100%;
  }
  .financial-wrapper .table-form-group .table-container {
    width: 100%;
    overflow-y: auto;
  }
  .financial-wrapper .table-form-group .table-container::-webkit-scrollbar-thumb {
    background: transparent;
  }
  .financial-wrapper .table-form-group .table-container .table .thead-table .table-header {
    width: 768px;
  }

  .col-sm-40,
.col-25,
.col-sm-50 {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .member-form-create .report-info {
    flex-wrap: wrap;
  }
  .member-form-create .report-info .item {
    width: 100%;
  }
}
button.x-btn {
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: 0;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  overflow: visible;
  color: #fff;
  align-items: center;
}
button.x-btn.primary {
  background-color: #024de3;
}
button.x-btn.danger {
  background-color: #ff3838;
}
button.x-btn.dark {
  background-color: #231f20;
}
button.x-btn.success {
  background-color: #00c753;
}
button.x-btn i {
  margin-right: 5px;
}
