/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://www.kriesi.at
Template: enfold
*/

.ab-slide-up {
	opacity: 0;
	animation: ab-slide-up 1s ease-in-out forwards;
}
.ab-grow {
	opacity: 0;
	animation: ab-grow 0.5s linear forwards !important;
}
.ab-fade-in {
	opacity: 0;
	animation: ab-fade-in 1s linear forwards;
}
.ab-delay-0 {
	animation-delay: 0s;
}
.ab-delay-1 {
	animation-delay: 0.5s;
}
.ab-delay-2 {
	animation-delay: 1s;
}
.ab-delay-3 {
	animation-delay: 1.5s;
}
.ab-delay-4 {
	animation-delay: 2s;
}
.ab-delay-5 {
	animation-delay: 2.5s;
}
.ab-delay-6 {
	animation-delay: 3s;
}
@keyframes ab-slide-up {
	0%{
		opacity: 0.1;
		transform: translateY(100px);
	}
	50% {
		opacity: 0.7;
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
@keyframes ab-grow {
	0% { opacity: 0; transform: scale(0.5); }
	100% { opacity: 1; transform: scale(1); }
}
@keyframes ab-fade-in {
	0%{
		opacity: 0.1;
	}	
	30%{
		opacity: 0.4;
	}
	70%{
		opacity:0.7
	}
	100% {
		opacity: 1;
	}
}