/* AJAX LOADER
 -------------------------------------------------- */
#ajaxOverlay {
	opacity: 0.5;
	position: fixed;
	z-index: 10000;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	text-align: center;
	vertical-align: middle;
	position: fixed;
}

#ajaxLoaderWrapper, .ajaxLoaderWrapper {
	position: absolute; top: 50%; left: 50%;
}

#ajaxLoader, .ajaxLoader {
	background-image: url('https://ocmlive01.blob.core.windows.net/resources/img/ajax_loader_sprites.png?revision=c3517c5ccc9cb72ce4c8e77d91934c0c9c188dc1&locale=en');
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -16px; /* -1 * image width / 2 */
	margin-top: -16px; /* -1 * image height / 2 */
	display: block;
	width: 32px;
	height: 32px;
	-webkit-animation: play .6s steps(8) infinite;
	animation: play .6s steps(8) infinite;
}

@-webkit-keyframes play {
	from { 
		background-position:0;
	} to {
		background-position: -256px; /* the width of the image */
	}
}

@keyframes play {
	from { 
		background-position:0;
	} to {
		background-position: -256px;
	} /* the width of the image */
}

.lazyImageWrapper {
	position: relative;
}

.lazyImage[data-src] {
	opacity: 0.3;
	background-color: #f0f0f0;
	display: block; 
}

.lazyImage {
	opacity: 1;
	transition: opacity 0.5s;
}