/* Minimal animate.css subset — provides the fade animations used by Owl Carousel
   (config: animateIn:'fadeIn', animateOut:'fadeOut'). Owl adds the `animated` class
   plus the animation name class to the active/leaving items. */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.faster {
  animation-duration: 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.fadeOut {
  animation-name: fadeOut;
}
