.global-loading {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.72);
}

.global-loading.is-visible {
	display: flex;
}

.global-loading__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.global-loading__spinner {
	width: 42px;
	height: 42px;
	border: 3px solid #dfe3f5;
	border-top-color: #2D368F;
	border-radius: 50%;
	animation: global-loading-spin 0.7s linear infinite;
}

.global-loading__text {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #2D368F;
}

@keyframes global-loading-spin {
	to {
		transform: rotate(360deg);
	}
}

body.global-loading-open {
	overflow: hidden;
}
