@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

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

.animated.infinite {
  animation-iteration-count: infinite;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 47.9375em) {
@keyframes fadeIn {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}
}
.show {
  animation-name: fadeIn;
}


@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.75);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media only screen and (max-width: 47.9375em) {
@keyframes fadeZoom {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}
}
.show-zoom {
  animation-name: fadeZoom;
}