/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================
www.justinaguilar.com/animations/
==============================================
*/

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

.animated-fast {
  -webkit-animation-duration: .5s;
  animation-duration:.5s1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


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


.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;

  animation-timing-function: ease-in-out;	
  -webkit-animation-timing-function: ease-in-out;		
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
