@charset "utf-8";
/* CSS Preloader */	
#preloader {position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #35392a;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 99999;}
.preloader-logo {width: 180px;
	max-width: 40%;
	animation: pulse 3s ease-in-out infinite;}
@keyframes pulse {0%, 100% {opacity: 1;
transform: scale(1);}
50% {opacity: 0.5;
transform: scale(0.9);}
}
.preloader-spinner {width: 50px;
	height: 50px;
	border: 6px solid #afbdad;
	border-top-color: #d29661;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;}
@keyframes spin {to {transform: rotate(360deg);}
}
