.mapa-ivv {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	align-items: flex-start;
	font-family: inherit;
}

.mapa-ivv__map-column {
	flex: 0 0 auto;
	max-width: 100%;
}

.mapa-ivv__grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 2rem;
}

.mapa-ivv__islands-column {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex: 0 0 auto;
	gap: 1.5rem;
}

.mapa-ivv__section--mainland {
	flex: 0 0 auto;
}

@media (max-width: 560px) {
	.mapa-ivv__map-column {
		width: 100%;
	}

	.mapa-ivv__grid {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		gap: 3.5rem;
	}

	.mapa-ivv__section--mainland {
		order: -1;
	}

	.mapa-ivv__islands-column {
		align-items: center;
		gap: 3.5rem;
	}

	.mapa-ivv__heading {
		text-align: center;
	}
}

.mapa-ivv__heading {
	font-size: 1.25rem!important;
	font-weight: 700;
	margin: 0 0 1.75rem;
}

.mapa-ivv__svg-wrap {
	max-width: 220px;
}

.mapa-ivv__svg-wrap--islands {
	max-width: 200px;
}

.mapa-ivv__section--madeira .mapa-ivv__svg-wrap {
	max-width: 110px;
}

.mapa-ivv__svg-wrap svg {
	width: 100%;
	height: auto;
	display: block;
}

.places__regions__svg__path {
	fill: #ffffff;
	stroke: #9E9E9E;
	cursor: pointer;
	transition: fill 0.15s ease;
	outline: none;
}

.places__regions__svg__path:hover {
	fill: #C6133D;
}

.places__regions__svg__path:focus-visible {
	stroke: #000000;
	stroke-width: 1.5;
}

.mapa-ivv__tooltip {
	position: fixed;
	z-index: 1000;
	transform: translate(-50%, calc(-100% - 10px));
	background: #000000;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.4rem 0.65rem;
	border-radius: 4px;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.1s ease;
}

.mapa-ivv__tooltip.is-visible {
	opacity: 1;
	visibility: visible;
}
