@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

.animated {
  
          animation-duration: 1s;
  
          animation-fill-mode: both;
}

.animated.infinite {
  
          animation-iteration-count: infinite;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
   
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
   
            transform: translate3d(0,0,0);
  }

  40%, 43% {
   
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    
            transform: translate3d(0, -30px, 0);
  }

  70% {
   
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
   
            transform: translate3d(0, -15px, 0);
  }

  90% {
    
            transform: translate3d(0,-4px,0);
  }
}

.bounce {
  
          animation-name: bounce;
 
     
          transform-origin: center bottom;
}

.flash {
 
          animation-name: flash;
}







@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    
            transform: scale3d(.3, .3, .3);
  }

  20% {
    
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    
            transform: scale3d(.97, .97, .97);
  }

}

.bounceIn {
  
          animation-name: bounceIn;
  
          animation-duration: .75s;
}



@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    
            transform: translate3d(0, 25px, 0);
  }

  75% {
    
            transform: translate3d(0, -10px, 0);
  }

  90% {
    
            transform: translate3d(0, 5px, 0);
  }

  100% {
    
            transform: none;
  }
}

.bounceInDown {
  
          animation-name: bounceInDown;
}



@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    
            transform: translate3d(0, -20px, 0);
  }

  75% {
    
            transform: translate3d(0, 10px, 0);
  }

  90% {
    
            transform: translate3d(0, -5px, 0);
  }

  100% {
    
            transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  
          animation-name: bounceInUp;
}




@keyframes bounceOutDown {
  20% {
    
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    
            transform: translate3d(0, -20px, 0);
  }

  
}

.bounceOutDown {
  
          animation-name: bounceOutDown;
}





