#lblTitle {
    font-weight: bold;
    color: #d71a90;
    display: none;
    font-size: 25px;
    padding: 10px;
    margin-bottom: 5px;

}

.w-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20% !important;
    flex: 0 0 20% !important;
    max-width: 20%;
}

#mapam {
    /*min-height: 740px;*/
}

/**************************************************************/
/**************************************************************/
/*PAGINACION*/
/**************************************************************/
/**************************************************************/

.swiper-pagination {
    position: static;
    margin-top: 10px;
    text-align: center;
}

/* Estilos comunes para todos los bullets */
.swiper-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1; /* Opacidad del bullet no activo */
}

/* Estilos específicos para el área 'sud' */
.swiper-pagination .bullet-sud {
    background: #8fcafe;
    color: #fff;
    padding: 5px 10px;
    margin: 5px;
    font-size: 14px;
}

/* Estilos específicos para el área que no es 'sud' */
.swiper-pagination .bullet-calidad {
    background: #8fcafe;
    color: #fff;
    padding: 5px 10px;
    margin: 3px !important;
    font-size: 12px;
    width: 35px;
}

/* Estilos para el bullet activo, común para ambos */
.swiper-pagination .swiper-pagination-bullet-active {
    background: #0056b3;
    opacity: 1; /* Opacidad del bullet activo */
}

/* Estilos específicos para el bullet activo de 'bullet-otros' */
.swiper-pagination .bullet-calidad.swiper-pagination-bullet-active {
    /*width: 92px !important;*/
}

/**********************************************************/
/**********************************************************/

.range-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.range-controls .col {
    display: flex;
    align-items: center;
}

.range-controls input[type=range] {
    flex: 1;
}

.range-controls .btn-group {
    margin-left: 20px;
}

/**************************************************************/
/*TOLTIP LAT LON*/
/**************************************************************/

.swiper-slide {
    position: relative;
}

.map-image {
    cursor: crosshair;
}

/*#latLngTooltip {
    position: absolute;
    background: rgba(255, 255, 255, 0.9); !* Blanco con 90% de opacidad *!
    font-weight: bold; !* Texto en negrita *!
    color: #222; !* Color de texto más oscuro para mejor contraste *!
    padding: 8px; !* Espacio alrededor del texto *!
    border-radius: 8px; !* Bordes redondeados *!
    border: 2px solid rgba(0, 0, 0, 0.4); !* Borde gris claro *!
    display: block;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10; !* Asegúrate de que el tooltip esté encima de otros elementos *!
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); !* Sombra sutil para mayor visibilidad *!
}*/

#latLngTooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.7); /* Fondo negro con 70% de opacidad */
    color: #ddd; /* Color de texto más claro */
    padding: 8px; /* Espacio alrededor del texto */
    border-radius: 8px; /* Bordes redondeados */
    border: 1px solid rgba(0, 0, 0, 0.3); /* Borde negro claro */
    display: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1000; /* Asegúrate de que el tooltip esté encima de otros elementos */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra sutil para mayor visibilidad */
    font-weight: bold; /* Texto en negrita */
}

#customTooltip {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.75);
    color: #222425;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    z-index: 500; /* Diferente z-index */
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden; /* Ocultar por defecto */
    white-space: nowrap;
}

#customTooltip.show {
    opacity: 1;
    visibility: visible; /* Mostrar cuando se añade la clase .show */
}
