#preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 10000;
}
#preloader.fade {
	opacity: 0;
}
#preloader:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	background: url(../images/john-azadian-logo.png);
	background-size: 100%;
	animation: preloaderAnim 2s linear infinite;
}

@keyframes preloaderAnim {
	0% {
		opacity: .5;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: .5;
	}
}