:root {
  --animate-duration:.5s;
  --animate-delay:.1s;
  --animate-repeat:1;
}

.animated {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

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

.animated.delay-2 {
  animation-delay: var(--animate-delay);
}

.animated.delay-3 {
  animation-delay: calc(var(--animate-delay) * 2);
}

.animated.delay-4 {
  animation-delay: calc(var(--animate-delay) * 3);
}

.animated.delay-5 {
  animation-delay: calc(var(--animate-delay) * 4);
}

.animated.delay-6 {
  animation-delay: calc(var(--animate-delay) * 5);
}

.animated.delay-7 {
  animation-delay: calc(var(--animate-delay) * 6);
}

.animated.delay-8 {
  animation-delay: calc(var(--animate-delay) * 7);
}

.animated.delay-9 {
  animation-delay: calc(var(--animate-delay) * 8);
}

.animated.delay-10 {
  animation-delay: calc(var(--animate-delay) * 9);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

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