.map__mapstage {
	position: relative;
}

.map__loading {
	align-items: center;
	background: var(--gg-dark-gray);
	border-radius: 8px;
	color: var(--gg-white);
	display: flex;
	flex-direction: column;
	font-family: var(--gg-font-family);
	gap: 16px;
	inset: 0;
	justify-content: center;
	min-height: 360px;
	opacity: 1;
	position: absolute;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	visibility: visible;
	z-index: 3;
}

.map__wrapper:not(.map--loading) .map__loading {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.map--loading .map__mapview {
	background: var(--gg-dark-gray);
}

.map__loadingSpinner {
	animation: gg-map-loading-spin 0.8s linear infinite;
	border: 3px solid rgb(255 255 255 / 25%);
	border-radius: 50%;
	border-top-color: var(--gg-white);
	height: 38px;
	width: 38px;
}

.map__loadingText {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.4;
}

@keyframes gg-map-loading-spin {
	to {
		transform: rotate(1turn);
	}
}

@media (min-width: 768px), print {
	.map__loading {
		min-height: 611px;
	}
}

@media (min-width: 992px), print {
	.map__loading {
		min-height: 811px;
	}
}
