/* https://css-loaders.com/ */
/* HTML: <div class="loader"></div> */


#preloader {
	background: var(--preloader-bg);
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	display: flex;
	justify-content: center;
	align-items: center;
}

#preloader.fade-out {
	transition: all 0.25s ease-in-out;
}


.loader {
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 8px solid #0000;
	border-right-color: #c16b57cf;
	position: relative;
	animation: l24 1s infinite linear;
}
.loader:before,
.loader:after {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: inherit;
	animation: inherit;
	animation-duration: 2s;
}
.loader:after {
	animation-duration: 4s;
}
@keyframes l24 {
	100% {transform: rotate(1turn)}
}