.preloader{
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 10000;
	background: silver;
	position: fixed;
	display: flex;
	overflow: hidden;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.loading{
	height: 50px;
	width: 50px;
	border: 4px solid crimson;
	border-radius: 50%;
	border-right-color: transparent;
	animation: animate linear infinite 2s;
}
.preloader hr{
	width: 200px;
	border-color: #999;
}
.preloader p{
	color:  #00264d;
	font-size: 20px;
	font-weight: bold;
	font-family: sans-serif;
}
@keyframes animate{
	100%{
		transform: rotateZ(360deg);
	}
}