﻿.scroll_effect{
	left: 200% ;
	opacity: 0 ;
}

.animateLeft{
	animation: appearLeft 0.5s ease-in ;
	left: 0% ;
	opacity: 1 ;
}

.animateRight{
	animation: appearRight 0.5s ease-in ;
	left: 0% ;
	opacity: 1 ;
}

@keyframes appearLeft{
	from{ left: 200% ; opacity: 0 }
	to{ left: 0% ; opacity: 1 }
}

@keyframes appearRight{
	from{ left: -200% ; opacity: 0 }
	to{ left: 0% ; opacity: 1 }
}