/* Preloader */
.preloader {
	display:block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #363435;
	z-index: 999999;
	margin: 0 auto;
}

.loader {
	width: 40px;
	height: 40px;
	animation: loader 2s infinite ease;
	position: absolute;
	justify-content: center;
	align-items: center;
	z-index:999999;
	top: 50%;
	left: 50%;
	margin: -50px 0px 0px -50px;
}

.loader-inner {
	vertical-align:top;
	display: inline-block;
	width: 100%;
	background-color: #f58634;
	animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
	0% {transform: rotate(0.5turn);}
	25% {transform: rotate(0.5turn);}
	50% {transform: rotate(2.0, 1.0, 1.0, 2.0, 1.0, 2.0);}
	75% {transform: rotate(0.5turn);}
	100% {transform: rotate(2.0, 1.0, 1.0, 2.0, 1.0, 2.0);}
}

@keyframes loader-inner {
	0% {height: 0%;}
	25% {height: 0%;}
	50% {height: 100%;}
	75% {height: 100%;}
	100% {height: 0%;}
}