/* ------------------------------------------------------------------
Preloader
------------------------------------------------------------------- */

.page-loader {
	background: #fff;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 9998;
}

.loader {
	background: #486B91;
	position: absolute;
	display: inline-block;
	height: 40px;
	width: 40px;
	left: 50%;
	top: 50%;
	margin: -20px 0 0 -20px;
	text-indent: -9999em;
	border-radius: 100%;
	-webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	-webkit-animation: ball-scale 1s 0s ease-in-out infinite;
			  animation: ball-scale 1s 0s ease-in-out infinite;
}


@-webkit-keyframes ball-scale {

	0% {
		-webkit-transform: scale(0);
				  transform: scale(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
				  transform: scale(1);
	}

}

@keyframes ball-scale {

	0% {
		-webkit-transform: scale(0);
				  transform: scale(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
				  transform: scale(1);
	}

}
