

.Map-Ruta {
	height: calc(90dvh - 108px);
	width: 100%;
	border-radius: 10px;
	z-index: 1;
}

/* Custom Popup Styles */
.custom-popup .leaflet-popup-content-wrapper {
	background: var(--theme-white);
	border-radius: 5px;
	box-shadow: 0px 4px 53.3px 0px #0000001A;
	padding: 0;
	overflow: hidden;
}

.custom-popup .leaflet-popup-content {
	margin: 0;
	width: 282px !important;
}

.custom-popup .leaflet-popup-tip {
	background: var(--theme-white);
}

.custom-popup .leaflet-popup-close-button {
	top: -8px !important;
	right: -9px !important;
	color: #333;
	font: unset !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	line-height: 24px !important;
	z-index: 10;
	padding: 8px;
    background: var(--theme-base) !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	width: 27px !important;
	height: 27px !important;
}

.custom-popup .leaflet-popup-close-button span {
	color: var(--theme-azul) !important;
	line-height: 14px !important;
}



.custom-popup-content {
	padding: 20px;
}

.popup-image {
	width: 100%;
	height: 160px;
	background-size: cover;
	background-position: center;
	border-radius: 12px 12px 0 0;
	display: block;
}

.popup-image img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 5px;
}

.popup-content {
	text-align: left;
}

.popup-category {
	color: #d69d28; /* Gold color from the icon in screenshot */
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.popup-category svg {
	margin-top: 2px;
}

.popup-title {
	color: var(--theme-azul);
	font-family: var(--theme-font);
	font-weight: 700;
	font-size: 19.78px;
	line-height: 24.73px;
	letter-spacing: 0px;
	width: calc(100% - 21px);
	text-transform: none;
}

.popup-excerpt {
	font-family: var(--theme-font);
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0px;
	color: var(--theme-azul);
}

.popup-link {
	font-family: var(--theme-font);
	font-weight: 700;
	font-size: 16px;
	line-height: 12px;
	letter-spacing: 0px;
	color: var(--theme-base) !important;
	text-decoration: none;
	transition: all 0.3s ease;
}

.popup-link svg {
	margin-left: 5px;
	transition: all 0.3s ease;
}

.popup-link:hover {
	text-decoration: none;
}

.popup-link:hover svg{
	margin-left: 10px;
}

.leaflet-popup-tip-container {
	display: none;
}