/*!
 * animate.min.css - Custom subset for Crypto AirDrop Premium
 * Only includes: fadeIn, fadeInUp, fadeInLeft, fadeInRight, zoomIn, bounceInLeft, bounceInRight
 * Based on animate.css v3.7.0 by Daniel Eden - https://animate.style
 * Licensed under MIT
 */
.animated{animation-duration:1s;animation-fill-mode:both}
.animated.infinite{animation-iteration-count:infinite}
.animated.delay-1s{animation-delay:1s}
.animated.delay-2s{animation-delay:2s}
.animated.delay-3s{animation-delay:3s}
.animated.delay-4s{animation-delay:4s}
.animated.delay-5s{animation-delay:5s}
.animated.faster{animation-duration:.5s}
.animated.fast{animation-duration:.8s}
.animated.slow{animation-duration:2s}
.animated.slower{animation-duration:3s}

/* fadeIn */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.fadeIn{animation-name:fadeIn}

/* fadeInUp */
@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translate3d(0,0,0)}}
.fadeInUp{animation-name:fadeInUp}

/* fadeInLeft */
@keyframes fadeInLeft{from{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translate3d(0,0,0)}}
.fadeInLeft{animation-name:fadeInLeft}

/* fadeInRight */
@keyframes fadeInRight{from{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translate3d(0,0,0)}}
.fadeInRight{animation-name:fadeInRight}

/* zoomIn */
@keyframes zoomIn{from{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}
.zoomIn{animation-name:zoomIn}

/* bounceInLeft */
@keyframes bounceInLeft{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:translate3d(0,0,0)}}
.bounceInLeft{animation-name:bounceInLeft}

/* bounceInRight */
@keyframes bounceInRight{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:translate3d(0,0,0)}}
.bounceInRight{animation-name:bounceInRight}
