.dorLoader{
	z-index: 10001;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 1;
	background-color: rgb(236, 73, 73);
	-o-transition: 		all 0.5s ease;
	-ms-transition: 	all 0.5s ease;
	-moz-transition: 	all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: 		all 0.5s ease;
}

.loaded .dorLoader{
	transform: translate(0, -100%);
}

.spinner {
	width: 28px;
	height: 28px;
	margin: 25% auto;
	border: 8px solid #fff;
	border-right-color: transparent;
	border-radius: 50%;
	animation: rotate 0.8s infinite linear;
}

@keyframes rotate {
	0%    { transform: rotate(0deg); }
	100%  { transform: rotate(360deg); }
}