/**
 * MS Map Modal — style modala.
 */

.ms-map-dialog {
	width: min( 92vw, 1000px );
	max-width: 1000px;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: transparent;
	overflow: visible;
}

.ms-map-dialog::backdrop {
	background: rgba( 0, 0, 0, 0.8 );
}

.ms-map-frame {
	position: relative;
	width: 100%;
	height: min( 80vh, 600px );
	background: #e5e3df;
	border-radius: 8px;
	overflow: hidden;
}

.ms-map-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.ms-map-close {
	position: absolute;
	top: -2.5rem;
	right: 0;
	width: 2rem;
	height: 2rem;
	padding: 0;
	font-size: 1.75rem;
	line-height: 1;
	color: #fff;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.ms-map-close:hover {
	opacity: 0.7;
}
