.nwm-map-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	line-height: 0;
}

.nwm-svg {
	display: block;
	width: 100%;
	height: auto;
}

.nwm-marker {
	outline: none;
	transform-box: fill-box;
	transform-origin: center;
	transition: transform 160ms ease-out;
}

.nwm-marker:hover,
.nwm-marker:focus-visible,
.nwm-marker.is-active {
	transform: scale(1.18);
}

/* Pointer cursor only for markers that have a link. Set on both the <a>
 * and its inner <g> — the <g>'s painted circles are what the cursor is
 * actually over, and an explicit cursor on a descendant would otherwise
 * win over the inherited value from its <a> ancestor. */
a.nwm-marker-link,
a.nwm-marker-link .nwm-marker {
	cursor: pointer;
}

.nwm-tooltip {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, calc(-100% - 10px));
	background: #fff;
	border-radius: 6px;
	padding: 8px 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	font-size: 14px;
	line-height: 1.35;
	color: #3a3229;
	pointer-events: none;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 120ms ease-out;
	z-index: 10;
}

.nwm-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #fff;
}

.nwm-tooltip.is-visible {
	opacity: 1;
	visibility: visible;
}

.nwm-tooltip-country {
	font-weight: 600;
}

.nwm-tooltip-note {
	font-size: 12px;
	font-weight: 400;
	color: #7a7264;
	margin-top: 2px;
}
