.mapa-container {
    margin-bottom: 1rem;
    padding: 10px;
    display: none;
    transition: all 0.6s ease-out;
}
.mapa-container.--open {
    display: block;
}
.mapa-container .tipos {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.6rem;
}
@media (min-width: 768px) {
    .mapa-container {
        padding: 0;
    }
    .mapa-container .tipos {
        font-size: 0.8rem;
    }
}
#resultadosMapa {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    z-index: 999;
    font-size: 0.7rem;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
#resultadosMapa .cuadro {
    position: relative;
    display: inline-block;
    text-align: center;
    max-width: 100%;
    min-width: 2.5rem;
    padding: 10px;
    background: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
#resultadosMapa.--cargando {
    bottom: 50%;
}
#resultadosMapa.--cargando .cuadro {
    transform: scale(1.6);
}
#mapaWrapper {
    position: relative;
    height: 450px;
    margin-bottom: 1rem;
    z-index: 0;
}
.cargando-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}
.cargando-spinner img {
    height: auto;
    width: 5rem;
}
.cargando-spinner p {
    color: white;
    margin-bottom: 0;
}
#mapaCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
}
#mapaCanvas .leaflet-popup.custom {
    border-radius: 0;
}
#mapaCanvas .leaflet-marker-icon:hover {
    z-index: 100000 !important;
}
#mapaCanvas .map-marker,
#mapaCanvas .map-marker2 {
    position: relative;
    padding: 4px;
    text-align: center;
    border-radius: 3px;
    font-size: 11pt;
    background: var(--c-burbuja);
    color: var(--c-burbuja-texto);
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
#mapaCanvas .map-marker:after,
#mapaCanvas .map-marker2:after {
    display: block;
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 0;
    margin-left: -7px;
    height: 0;
    width: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid var(--c-burbuja);
    z-index: 1;
}

#mapaCanvas .map-marker {
    width: 70px;
    margin-top: -26px;
    margin-left: -30px;
}
#mapaCanvas .map-marker2 {
    width: 85px;
    margin-top: -26px;
    margin-left: -38px;
}

.leaflet-popup-content {
    margin: 0 !important;
    line-height: initial !important;
}
.leaflet-popup-content p {
    margin: 0 !important;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: initial !important;
    box-shadow: initial !important;
}

.leaflet-container a {
    color: inherit !important;
}