@keyframes on-active-animation {
  0%, 100% {
    transform: scale(1);
  }
  33.33% {
    transform: scale(0.95);
  }
  66.66% {
    transform: scale(1.05);
  }
}
.zoomIn {
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeOut {
  animation-name: fadeOut;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.delay-0 {
  animation-delay: 0s;
}

.delay-1 {
  animation-delay: 0.25s;
}

.delay-2 {
  animation-delay: 0.5s;
}

.delay-3 {
  animation-delay: 0.75s;
}

.delay-4 {
  animation-delay: 1s;
}

.delay-5 {
  animation-delay: 1.25s;
}

.delay-6 {
  animation-delay: 1.5s;
}

.delay-7 {
  animation-delay: 1.75s;
}

.delay-8 {
  animation-delay: 2s;
}

.delay-9 {
  animation-delay: 2.25s;
}

.delay-10 {
  animation-delay: 2.5s;
}

.delay-11 {
  animation-delay: 2.75s;
}

.delay-12 {
  animation-delay: 3s;
}

.duration-1 {
  animation-duration: 2s;
}

.duration-2 {
  animation-duration: 3s;
}

.infinite {
  animation-iteration-count: infinite;
}/*# sourceMappingURL=animations.css.map */