/*PRELOADING------------ */
#overlayer {
	width:100%;
	height:200%;  
	position:absolute;
	z-index:99999;
	background-color: #fff;
	background-image: url("../images/tile-square-v-1-small.png");
	background-repeat: repeat;
	display:flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
}
.loaderContainer {
	display:flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
}
.loader {
	display: flex;
	margin: auto;
	top: 35%;
	position: absolute;
	z-index:99999;
	animation: loader 2s infinite ease;
	align-self: center;
}

/*.loader-inner {
	vertical-align: top;
	display: inline-block;
	width: 100%;
	background-color: #00408f;
	animation: loader-inner 2s infinite ease-in;
}*/

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

/*@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}*/