/* Finology — Animate.css subset
 * Only the keyframes used by design pages. ~3 KB instead of full ~70 KB.
 * Honors prefers-reduced-motion.
 */
.animate__animated {
  animation-duration: 600ms;
  animation-fill-mode: both;
}

.animate__faster {
  animation-duration: 400ms;
}

.animate__slow {
  animation-duration: 1000ms;
}

.animate__delay-1 {
  animation-delay: 100ms;
}

.animate__delay-2 {
  animation-delay: 200ms;
}

.animate__delay-3 {
  animation-delay: 300ms;
}

.animate__delay-4 {
  animation-delay: 400ms;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

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

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  60% {
    opacity: 1;
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-8px);
    opacity: 0;
  }

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

.animate__fadeIn {
  animation-name: fadeIn;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

.animate__pulse {
  animation-name: pulse;
  animation-iteration-count: infinite;
  animation-duration: 2.4s;
}

.animate__bounceIn {
  animation-name: bounceIn;
}

.animate__slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation: none !important;
  }
}
