@keyframes lf-spin {
	to { transform: rotate(360deg); }
}

.lf-loader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(13, 27, 42, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lf-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.lf-loader__spinner {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid rgba(76, 246, 149, 0.15);
	border-top-color: #4CF695;
	animation: lf-spin 0.8s linear infinite;
}
