/*LOADER*/
.loader-body {
	width: 100%;
	height: 100%;
	background-color: #2a2a2a; /*Here you can change background color of the loader */
	position: fixed;
	z-index: 2;
	visibility: visible;
	top: 0;
	left: 0;
	text-align: center;
	justify-content: center;
	align-content: center;
	transition: 0.5s all;
}
.loader {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	border: 2px #2a2a2a solid; 				/*Here you can change color of the loader*/
	border-radius: 50%;
	position: absolute;	
	border-top-color: #dadada ; 				/*Here you can change color of the loader*/
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	-webkit-animation: 1s spin infinite linear;
	-o-animation: 1s spin infinite linear;
	animation: 1s spin infinite linear;

}
.loader-body.done {
	visibility: hidden;
	opacity: 0;
}
@keyframes spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}