@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2022 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 0.4s;
  --animate-repeat: 1;
}

[class*="delay"] {
  animation-delay: .8s !important;
}
[class*="delay"] > .wrap {
  animation-delay: .6s !important;
}

[class*="anim-showed"],
[class*="anim-showed"] .wrap,
[class*="-order"][class*="anim-showed"] > * {
  animation-duration: 3s;
  animation-duration: var(--animate-duration);
  animation-delay: var(--animate-delay);
  animation-fill-mode: both;
}
[class*="-order"] > *:nth-of-type(1) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 0);
}
[class*="-order"] > *:nth-of-type(2) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 1);
}
[class*="-order"] > *:nth-of-type(3) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 2);
}
[class*="-order"] > *:nth-of-type(4) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 3);
}
[class*="-order"] > *:nth-of-type(5) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 4);
}
[class*="-order"] > *:nth-of-type(6) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 5);
}
[class*="-order"] > *:nth-of-type(7) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 6);
}
[class*="-order"] > *:nth-of-type(8) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 7);
}
[class*="-order"] > *:nth-of-type(9) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 8);
}
[class*="-order"] > *:nth-of-type(10) {
  animation-delay: calc(var(--animate-delay) + 0.1s * 9);
}
[class*="anim-showed"][class*="infinite"],
[class*="anim-showed"][class*="infinite"] .wap {
  animation-iteration-count: infinite;
}
[class*="anim-showed"][class*="repeat-1"] {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
[class*="anim-showed"][class*="repeat-2"] {
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
[class*="anim-showed"][class*="repeat-3"] {
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
[class*="anim-showed"][class*="delay-1s"] {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
[class*="anim-showed"][class*="delay-2s"] {
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
[class*="anim-showed"][class*="delay-3s"] {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
[class*="anim-showed"][class*="delay-4s"] {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
[class*="anim-showed"][class*="delay-5s"] {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
[class*="anim-showed"][class*="faster"] {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
[class*="anim-showed"][class*="fast"] {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
[class*="anim-showed"][class*="slow"] {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
[class*="anim-showed"][class*="slower"] {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  [class*="anim-showed"] {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  [class*="anim-showed"][class*='-out']"] {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

  25%,
  75% {
    opacity: 0;
  }
}
[class*="animate__flash"] {
  animation-name: flash;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

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

  to {
    transform: scale3d(1, 1, 1);
  }
}
[class*="animate__pulse"] {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubber-band {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}
[class*="animate__rubber-band"] {
  animation-name: rubber-band;
}
@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
[class*="animate__shakeX"] {
  animation-name: shakeX;
}
@keyframes shakeY {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
[class*="animate__shakeY"] {
  animation-name: shakeY;
}

@keyframes head-shake {
  0% {
    transform: translateX(0);
  }

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

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

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

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

  50% {
    transform: translateX(0);
  }
}
[class*="animate__head-shake"] {
  animation-timing-function: ease-in-out;
  animation-name: head-shake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
[class*="animate__swing"] {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}
[class*="animate__tada"] {
  animation-name: tada;
}
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__wobble"] {
  animation-name: wobble;
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
[class*="animate__jello"] {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}
[class*="animate__heartBeat"] {
  animation-name: heartBeat;
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes back-in-down {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

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

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
[class*="animate__back-in-down"] {
  animation-name: back-in-down;
}
@keyframes back-in-left {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

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

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
[class*="animate__back-in-left"] {
  animation-name: back-in-left;
}
@keyframes back-in-right {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

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

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
[class*="animate__back-in-right"] {
  animation-name: back-in-right;
}
@keyframes back-in-up {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

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

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
[class*="animate__back-in-up"] {
  animation-name: back-in-up;
}
@keyframes back-out-down {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
[class*="animate__back-out-down"] {
  animation-name: back-out-down;
}
@keyframes back-out-left {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
[class*="animate__back-out-left"] {
  animation-name: back-out-left;
}
@keyframes back-out-right {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
[class*="animate__back-out-right"] {
  animation-name: back-out-right;
}
@keyframes back-out-up {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
[class*="animate__back-out-up"] {
  animation-name: back-out-up;
}
@keyframes bounce-in {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
[class*="animate__bounce-in"] {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounce-in;
}
@keyframes bounce-in-down {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__bounce-in-down"] {
  animation-name: bounce-in-down;
}
@keyframes bounce-in-left {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__bounce-in-left"] {
  animation-name: bounce-in-left;
}
@keyframes bounce-in-right {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__bounce-in-right"] {
  animation-name: bounce-in-right;
}
@keyframes bounce-in-up {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__bounce-in-up"] {
  animation-name: bounce-in-up;
}
@keyframes bounce-out {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
[class*="animate__bounce-out"] {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounce-out;
}
@keyframes bounce-out-down {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
[class*="animate__bounce-out-down"] {
  animation-name: bounce-out-down;
}
@keyframes bounce-out-left {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
[class*="animate__bounce-out-left"] {
  animation-name: bounce-out-left;
}
@keyframes bounce-out-right {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
[class*="animate__bounce-out-right"] {
  animation-name: bounce-out-right;
}
@keyframes bounce-out-up {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
[class*="animate__bounce-out-up"] {
  animation-name: bounce-out-up;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
[class*="animate__fade-in"] {
  animation-name: fade-in;
}
[class*="animate__fade-in-order"] {
  animation-name: none;
}
[class*="animate__fade-in-order"] > * {
  animation-name: fade-in;
}
.screen [class*="animate__fade-in-order"] > a {
  display: block;
}
@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-in-down"] {
  animation-name: fade-in-down;
}
@keyframes fade-in-downBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-in-downBig"] {
  animation-name: fade-in-downBig;
}
@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-in-left"] {
  animation-name: fade-in-left;
}
@keyframes fade-in-leftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-in-leftBig"] {
  animation-name: fade-in-leftBig;
}
@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-in-right"] {
  animation-name: fade-in-right;
}
@keyframes fade-in-rightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-in-rightBig"] {
  animation-name: fade-in-rightBig;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-in-up"] {
  animation-name: fade-in-up;
}
[class*="animate__fade-in-up-order"] {
  animation-name: none;
}
[class*="animate__fade-in-up-order"] > * {
  animation-name: fade-in-up;
}
@keyframes fade-in-upBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-in-upBig"] {
  animation-name: fade-in-upBig;
}
@keyframes fade-inTop-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-inTop-left"] {
  animation-name: fade-inTop-left;
}
@keyframes fade-inTop-right {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-inTop-right"] {
  animation-name: fade-inTop-right;
}
@keyframes fade-inBottom-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-inBottom-left"] {
  animation-name: fade-inBottom-left;
}
@keyframes fade-inBottom-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__fade-inBottom-right"] {
  animation-name: fade-inBottom-right;
}
@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
[class*="animate__fade-out"] {
  animation-name: fade-out;
}
@keyframes fade-out-down {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
[class*="animate__fade-out-down"] {
  animation-name: fade-out-down;
}
@keyframes fade-out-downBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
[class*="animate__fade-out-downBig"] {
  animation-name: fade-out-downBig;
}
@keyframes fade-out-left {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
[class*="animate__fade-out-left"] {
  animation-name: fade-out-left;
}
@keyframes fade-out-leftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
[class*="animate__fade-out-leftBig"] {
  animation-name: fade-out-leftBig;
}
@keyframes fade-out-right {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
[class*="animate__fade-out-right"] {
  animation-name: fade-out-right;
}
@keyframes fade-out-rightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
[class*="animate__fade-out-rightBig"] {
  animation-name: fade-out-rightBig;
}
@keyframes fade-out-up {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
[class*="animate__fade-out-up"] {
  animation-name: fade-out-up;
}
@keyframes fade-out-upBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
[class*="animate__fade-out-upBig"] {
  animation-name: fade-out-upBig;
}
@keyframes fade-outTop-left {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
[class*="animate__fade-outTop-left"] {
  animation-name: fade-outTop-left;
}
@keyframes fade-outTop-right {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
[class*="animate__fade-outTop-right"] {
  animation-name: fade-outTop-right;
}
@keyframes fade-outBottom-right {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
[class*="animate__fade-outBottom-right"] {
  animation-name: fade-outBottom-right;
}
@keyframes fade-outBottom-left {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
[class*="animate__fade-outBottom-left"] {
  animation-name: fade-outBottom-left;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

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

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

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

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
[class*="animate__animated"][class*="animate__flip"] {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flip-in-x {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

  to {
    transform: perspective(400px);
  }
}
[class*="animate__flip-in-x"] {
  backface-visibility: visible !important;
  animation-name: flip-in-x;
}
@keyframes flip-in-y {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

  to {
    transform: perspective(400px);
  }
}
[class*="animate__flip-in-y"] {
  backface-visibility: visible !important;
  animation-name: flip-in-y;
}
@keyframes flip-out-x {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
[class*="animate__flip-out-x"] {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flip-out-x;
  backface-visibility: visible !important;
}
@keyframes flip-out-y {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
[class*="animate__flip-out-y"] {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flip-out-y;
}
@keyframes light-speed-in-right {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__light-speed-in-right"] {
  animation-name: light-speed-in-right;
  animation-timing-function: ease-out;
}
@keyframes light-speed-in-left {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__light-speed-in-left"] {
  animation-name: light-speed-in-left;
  animation-timing-function: ease-out;
}
@keyframes light-speed-out-right {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
[class*="animate__light-speed-out-right"] {
  animation-name: light-speed-out-right;
  animation-timing-function: ease-in;
}
@keyframes light-speed-out-left {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
[class*="animate__light-speed-out-left"] {
  animation-name: light-speed-out-left;
  animation-timing-function: ease-in;
}
@keyframes rotate-in {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
[class*="animate__rotate-in"] {
  animation-name: rotate-in;
  transform-origin: center;
}
@keyframes rotate-in-down-left {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
[class*="animate__rotate-in-down-left"] {
  animation-name: rotate-in-down-left;
  transform-origin: left bottom;
}
@keyframes rotate-in-down-right {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
[class*="animate__rotate-in-down-right"] {
  animation-name: rotate-in-down-right;
  transform-origin: right bottom;
}
@keyframes rotate-in-up-left {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
[class*="animate__rotate-in-up-left"] {
  animation-name: rotate-in-up-left;
  transform-origin: left bottom;
}
@keyframes rotate-in-up-right {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
[class*="animate__rotate-in-up-right"] {
  animation-name: rotate-in-up-right;
  transform-origin: right bottom;
}
@keyframes rotate-out {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
[class*="animate__rotate-out"] {
  animation-name: rotate-out;
  transform-origin: center;
}
@keyframes rotate-out-down-left {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
[class*="animate__rotate-out-down-left"] {
  animation-name: rotate-out-down-left;
  transform-origin: left bottom;
}
@keyframes rotate-out-down-right {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
[class*="animate__rotate-out-down-right"] {
  animation-name: rotate-out-down-right;
  transform-origin: right bottom;
}
@keyframes rotate-out-up-left {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
[class*="animate__rotate-out-up-left"] {
  animation-name: rotate-out-up-left;
  transform-origin: left bottom;
}
@keyframes rotate-out-up-right {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
[class*="animate__rotate-out-up-right"] {
  animation-name: rotate-out-up-right;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
[class*="animate__hinge"] {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jack-in-the-box {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

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

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

  to {
    opacity: 1;
    transform: scale(1);
  }
}
[class*="animate__jack-in-the-box"] {
  animation-name: jack-in-the-box;
}
[class*="animate__jack-in-the-box-order"] {
  animation-name: none;
}
[class*="animate__jack-in-the-box-order"] > * {
  animation-name: jack-in-the-box;
}
@keyframes roll-in {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__roll-in"] {
  animation-name: roll-in;
}
@keyframes roll-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
[class*="animate__roll-out"] {
  animation-name: roll-out;
}
@keyframes zoom-in {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
[class*="animate__zoom-in"] {
  animation-name: zoom-in;
}
@keyframes zoom-in-down {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
[class*="animate__zoom-in-down"] {
  animation-name: zoom-in-down;
}
@keyframes zoom-in-left {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
[class*="animate__zoom-in-left"] {
  animation-name: zoom-in-left;
}
@keyframes zoom-in-right {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
[class*="animate__zoom-in-right"] {
  animation-name: zoom-in-right;
}
@keyframes zoom-in-up {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
[class*="animate__zoom-in-up"] {
  animation-name: zoom-in-up;
}
@keyframes zoom-out {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
[class*="animate__zoom-out"] {
  animation-name: zoom-out;
}
@keyframes zoom-out-down {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
[class*="animate__zoom-out-down"] {
  animation-name: zoom-out-down;
  transform-origin: center bottom;
}
@keyframes zoom-out-left {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
[class*="animate__zoom-out-left"] {
  animation-name: zoom-out-left;
  transform-origin: left center;
}
@keyframes zoom-out-right {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
[class*="animate__zoom-out-right"] {
  animation-name: zoom-out-right;
  transform-origin: right center;
}
@keyframes zoom-out-up {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
[class*="animate__zoom-out-up"] {
  animation-name: zoom-out-up;
  transform-origin: center bottom;
}
@keyframes slide-in-down {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__slide-in-down"] {
  animation-name: slide-in-down;
}
@keyframes slide-in-left {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__slide-in-left"] {
  animation-name: slide-in-left;
}
@keyframes slide-in-right {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__slide-in-right"] {
  animation-name: slide-in-right;
}
@keyframes slide-in-up {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
[class*="animate__slide-in-up"] {
  animation-name: slide-in-up;
}
@keyframes slide-out-down {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
[class*="animate__slide-out-down"] {
  animation-name: slide-out-down;
}
@keyframes slide-out-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
[class*="animate__slide-out-left"] {
  animation-name: slide-out-left;
}
@keyframes slide-out-right {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
[class*="animate__slide-out-right"] {
  animation-name: slide-out-right;
}
@keyframes slide-out-up {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
[class*="animate__slide-out-up"] {
  animation-name: slide-out-up;
}
@keyframes wipe-in-right {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}
[class*="animate__wipe-in-right"] {
}
[class*="animate__wipe-in-right"] .wrap {
  animation-name: wipe-in-right;
  width: 0%;
  height: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}
body [class*="animate__wipe-in-right"] .wrap *{
  left: 0;
}
@keyframes wipe-out-right {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}
[class*="animate__wipe-out-right"] {
}
[class*="animate__wipe-out-right"] .wrap {
  animation-name: wipe-out-right;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  position: absolute;
  right: 0;
}
body [class*="animate__wipe-out-right"] .wrap *{
  right: 0;
  left: auto;
}


@keyframes wipe-in-out-down {
  from {
    top: 0;
    bottom: auto;
    height: 0%;
  }

  39% {
    top: 0;
    bottom: auto;
    height: 100%;
  }

  40% {
    top: auto;
    bottom: 0;
    height: 100%;
  }

  80% {
    top: auto;
    bottom: 0;
    height: 0%;
  }
  100% {
    top: auto;
    bottom: 0;
    height: 0%;
  }
}
[class*="animate__wipe-in-out-down"] {
  position: absolute !important;
}
[class*="animate__wipe-in-out-down"] .wrap {
  animation-name: wipe-in-out-down;
  animation-iteration-count: infinite;
  height: 0%;
  width: 100%;
  overflow: hidden;
  display: block;
  position: absolute !important;
  top: 0;
}


@keyframes blur-in {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: none;
  }
}
[class*="animate__blur-in"] {
  animation-name: blur-in;
  opacity: 0;
  filter: blur(10px);
  will-change: filter /* or transform */
}
