.preloader {
	 background-color: #69C6B5;
	 width: 100%;
	 height: 100%;
	 position: fixed;
	 top: 0;
	 left: 0;
	 right: 0;
	 z-index: 99999;
}
 .spinner {
	 width: 60px;
	 height: 60px;
	 background-color: #fff;
	 border-radius: 100%;
	 -webkit-animation: sk-scaleout 1s infinite ease-in-out;
	 animation: sk-scaleout 1s infinite ease-in-out;
}
 @-webkit-keyframes sk-scaleout {
	 0% {
		 -webkit-transform: scale(0);
		 -ms-transform: scale(0);
		 transform: scale(0);
	}
	 100% {
		 -webkit-transform: scale(1);
		 -ms-transform: scale(1);
		 transform: scale(1);
		 opacity: 0;
	}
}
 @keyframes sk-scaleout {
	 0% {
		 -webkit-transform: scale(0);
		 -ms-transform: scale(0);
		 transform: scale(0);
	}
	 100% {
		 -webkit-transform: scale(1);
		 -ms-transform: scale(1);
		 transform: scale(1);
		 opacity: 0;
	}
}
 