/* PRELOADER CSS */
.page-loader{
	width: 100%;
	z-index: 3000;
	background: #FFF;
	max-width: 1240px;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	min-height:  2000px;
}
.page-loader-metro{
  width: 100%;
  max-width: 100%;
}
/* SPINNER */
.spinner {
  position: relative;
  top: 28%;
  width: 70px;
  height: 70px;
  margin: 300px auto;
  background-color: #1a3a58;
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}