/*!
 * 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 {
	-webkit-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;

	-webkit-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animated-quick {
	-webkit-animation-duration: 0.5s;
	-o-animation-duration: 0.5s;
	animation-duration: 0.5s;

	-webkit-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
	 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
	 opacity: 0;
	 -webkit-transform: translate3d(0, 3000px, 0);
	 transform: translate3d(0, 3000px, 0);
  }

  60% {
	 opacity: 1;
	 -webkit-transform: translate3d(0, -20px, 0);
	 transform: translate3d(0, -20px, 0);
  }

  75% {
	 -webkit-transform: translate3d(0, 10px, 0);
	 transform: translate3d(0, 10px, 0);
  }

  90% {
	 -webkit-transform: translate3d(0, -5px, 0);
	 transform: translate3d(0, -5px, 0);
  }

  to {
	 -webkit-transform: translate3d(0, 0, 0);
	 transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
	 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
	 opacity: 0;
	 -webkit-transform: translate3d(0, 3000px, 0);
	 transform: translate3d(0, 3000px, 0);
  }

  60% {
	 opacity: 1;
	 -webkit-transform: translate3d(0, -20px, 0);
	 transform: translate3d(0, -20px, 0);
  }

  75% {
	 -webkit-transform: translate3d(0, 10px, 0);
	 transform: translate3d(0, 10px, 0);
  }

  90% {
	 -webkit-transform: translate3d(0, -5px, 0);
	 transform: translate3d(0, -5px, 0);
  }

  to {
	 -webkit-transform: translate3d(0, 0, 0);
	 transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}