/* Slim animate.css - Only used animations: fadeInUp + slideInRight */
.animated { animation-duration: 1s; animation-fill-mode: both; }
.animated.fast { animation-duration: 0.8s; }
.animated.faster { animation-duration: 0.5s; }
.animated.slow { animation-duration: 2s; }
.animated.slower { animation-duration: 3s; }

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

@keyframes slideInRight {
  from { transform: translate3d(100%, 0, 0); visibility: visible; }
  to { transform: translate3d(0, 0, 0); }
}
.slideInRight { animation-name: slideInRight; }
