#loader {
	z-index: 10000;
	opacity: 1;
	width: 40px;
	height: 40px;
	border: 2px solid #cccccc;
	border-top: 3px solid #05938b;
	border-radius: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	animation: spin 1s infinite linear;
}

@
keyframes spin {from { transform:rotate(0deg);
	
}

to {
	transform: rotate(360deg);
}

}
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	background: #848383a6;
	z-index: 1001;
}