/* =============================
   Global loader
   ============================= */

.aerosi-global-loader {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.42);
	backdrop-filter: blur(1px);
}

.aerosi-global-loader.is-visible {
	display: flex;
}

.aerosi-global-loader__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #07184a;
	font-size: 14px;
	font-weight: 700;
}

.aerosi-global-loader__spinner {
	width: 44px;
	height: 44px;
	border: 4px solid #dfe6f2;
	border-top-color: #0057ff;
	border-radius: 50%;
	animation: aerosi-loader-spin 700ms linear infinite;
}

@keyframes aerosi-loader-spin {
	to {
		transform: rotate(360deg);
	}
}

body.aerosi-loader-open {
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.aerosi-global-loader__spinner {
		animation: none;
	}
}
