/**
 * cssanimation.css
 * Current Version: 1.0.3
 * https://www.cssanimatio.io
 * Created and maintained by: Pavel
 * Find me at: https://www.linkedin.com/in/yesiamrocks/
 * Email: hello@cssanimation.io
 * Github: https://github.com/yesiamrocks/cssanimation.io
 * Title: A CSS Animation Library for Developers and Ninjas
 * Copyright (c) 2017 Pavel
 * License: cssanimation.io is licensed under the MIT license
 **/

.botNo .cssanimation {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	opacity: 0;
}

.botNo .cssanimation.delay00 {animation-delay: 0;}
.botNo .cssanimation.delay01 {animation-delay: 0.1s;}
.botNo .cssanimation.delay02 {animation-delay: 0.2s;}
.botNo .cssanimation.delay03 {animation-delay: 0.3s;}
.botNo .cssanimation.delay04 {animation-delay: 0.4s;}
.botNo .cssanimation.delay05 {animation-delay: 0.5s;}
.botNo .cssanimation.delay06 {animation-delay: 0.6s;}
.botNo .cssanimation.delay07 {animation-delay: 0.7s;}
.botNo .cssanimation.delay08 {animation-delay: 0.8s;}
.botNo .cssanimation.delay09 {animation-delay: 0.9s;}
.botNo .cssanimation.delay10 {animation-delay: 1s;}

.botNo .cssanimation.infinite {
	-webkit-animation-iteration-count: infinite !important;
	animation-iteration-count: infinite !important
}


.botNo .cssanimation.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.botNo .cssanimation.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}

	to {
		opacity: 1
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}

	to {
		opacity: 1
	}
}

.botNo .cssanimation.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}

	to {
		opacity: 1
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}

	to {
		opacity: 1
	}
}

.botNo .cssanimation.fadeInBottom {
	-webkit-animation-name: fadeInBottom;
	animation-name: fadeInBottom
}

@-webkit-keyframes fadeInBottom {
	from {
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}

	to {
		opacity: 1
	}
}

@keyframes fadeInBottom {
	from {
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}

	to {
		opacity: 1
	}
}

.botNo .cssanimation.fadeInTop { animation-name: fadeInTop }
@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to { opacity: 1 }
}