
.slit-in-horizontal {
	-webkit-animation: slit-in-horizontal .45s ease-out both;
	animation: slit-in-horizontal .45s ease-out both;
}

@-webkit-keyframes slit-in-horizontal {
	0% {
		-webkit-transform: translateZ(-800px) rotateX(90deg);
		transform: translateZ(-800px) rotateX(90deg);
		opacity: 0;
	}
	
	54% {
		-webkit-transform: translateZ(-160px) rotateX(87deg);
		transform: translateZ(-160px) rotateX(87deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateZ(0) rotateX(0);
		transform: translateZ(0) rotateX(0);
		opacity: 1;
	}
}

@keyframes slit-in-horizontal {
	0% {
		-webkit-transform: translateZ(-800px) rotateX(90deg);
		transform: translateZ(-800px) rotateX(90deg);
		opacity: 0;
	}
	
	54% {
		-webkit-transform: translateZ(-160px) rotateX(87deg);
		transform: translateZ(-160px) rotateX(87deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateZ(0) rotateX(0);
		transform: translateZ(0) rotateX(0);
		opacity: 1;
	}
}
