/* (AJUSTES MEMO) SE MODIFICARON ESILOS PARA LOS TÍTULOS DISTINTIVOS 
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/
#bg-titDistintivo-azul {
    background-color: #0868ac;
    color: white;
    border-radius: 3px;
    z-index: 2;
    margin: -10px;
    margin-bottom: 5px;
    text-align: center;
    padding: 10px;
}
/* CIERRA AJUSTE
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/

/* (AJUSTES MEMO) SE MODIFICARON ESILOS PARA LOADING MESSAGE 
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/
#bg-loadingMesagell {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    padding: 80px;
}

@media only screen and (max-width: 767px) {
	#bg-loadingMesage {
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    background: #FFFFFF;
	    padding: 20px;
	    width: 90%;
	}
}
/* CIERRA AJUSTE
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/



#cuadroTitulo {
    background-color: #0868ac;
    color: white;
    padding: 10px;
    border-radius: 3px;
    margin: 10px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 10px;
    width: 280px;
    z-index: 2;
}

#cuadroTitulo h1 {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
}

#cuadroTitulo h1 i {
    margin-right: 10px;
}

/* Resto de tu CSS existente */
/* Aquí asegúrate de que no haya estilos que sobrescriban los del cuadro de título */

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

/* Alinea el texto del encabezado al centro. */
.titulos {
    padding: 5px 5px;
    text-align: left;
    font-size: 10px;
    font-weight: bold;
    color: #4D4D4D;
}

.titulos-blanco {
	color: #FFFFFF !important;
}

.titulos2 {
    padding: 5px 5px;
    text-align: left;
    font-size: 10px;
    font-weight: bold;
    color: #FFFFFF;
}

.acordeoncontenido {
    background: #fff;
    position: absolute;
    z-index: 1;
    top: 175px;
    left: 10px;
    border-radius: 3px;
    width: 280px;
    height: 162px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-family: 'Open Sans', sans-serif;
    overflow-y: auto;
}

.cabeceraEstatico {
    background: #fff;
    position: absolute;
    z-index: 1;
    top: 100px;
    left: 10px;
    border-radius: 3px;
    width: 280px;
    height: 110px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

.cabeceraEstatico .encabezado {
    background: #0868ac;
}
.cabeceraEstatico .encabezado2 {
    background: #339335;
}


.contenedorBotonesCabecera {
    position: absolute;
    z-index: 1;
    margin-top: -28px;
    margin-left: 210px;
}

.cabeceraEstatico .subencabezado {
    background: #FFFFFF;
    margin-top: -10px;
    font-size: 15px;
}

.cabeceraEstatico .busqueda {
    margin-top: -7px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: -20px;
}

.cabeceraEstatico .busqueda input {
    font-size: 10px;
}

.accordion-item {
    font-size: 15px;
    margin-left: -10px;
}

.cabeceraEstatico .btn-close {
    position: absolute;
    top: 5px;
    right: 33px;
    font-size: 10px;
}

.accordion-button {
    background-color: #aaceec;
    font-size: 12px;
    height: 20px;
    color: #4D4D4D;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    color: #4D4D4D;
    background-color: #aaceec;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

#divLoading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(254, 254, 255, .65);
    z-index: 9999;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#divLoading .loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#loadingMessage {
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
}

#divLoading p {
    font-size: 16px;
    margin-bottom: 10px;
}

#divLoading progress {
    width: 100px;
    height: 20px;
}

.progress-bar {
    width: 300px;
    height: 30px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    position: relative;
    background-color: #f3f3f3;
}

.progress-bar-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #4D4D4D;
}

.progress-bar-fill {
    height: 100%;
    background-color: #007BFF;
    width: 0;
    border-radius: 5px 0 0 5px;
    transition: width 0.25s;
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    /* Asegúrate de que está por encima de todos los demás elementos */
}

.loading-overlay img {
    width: 100px;
    height: 100px;
}

#prevDiv {
    position: absolute;
    border: none;
    width: 50%;
    height: 50%;
    display: flex;
    background: rgba(254, 254, 255, .65);
    justify-content: center;
    align-items: center !important;
    z-index: 9999;
    display: none;
}

#prevDiv img {
    width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
}

.notblock {
    display: none !important;
}

.block {
    display: block !important;
}

.fichacabecera {
    background: #aaceec;
    position: absolute;
    z-index: 1;
    top: 347px;
    left: 10px;
    border-radius: 3px;
    width: 280px;
    height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

.fichacontenedor {
    background: #fff;
    position: absolute;
    z-index: 1;
    top: 439px;
    left: 10px;
    border-radius: 3px;
    width: 280px;
    height: 180px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    overflow-y: auto;
}

.fichacontenedor .fichaSubCabecera {
    background: #aaceec;
    color: #4D4D4D;
    padding: 1px;
}

.fichadatos {
    background-color: #fff;
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
    /*     font-size: 12px; */
    padding-left: 5px;
    padding-top: 1px;
    text-overflow: ellipsis;
}

.fichadatos p {
    margin-bottom: 0rem;
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

.fichacabecera .btn-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 10px;
}

.botonesColor {
    font-size: 12px;
    color: #FFFFFF;
    background-color: #f39200;
    margin-left: 0px;
    border-color: #f39200;
}

.colorIonos {
    color: #9F2241;
}

.botonesColor:hover {
    color: #FFFFFF;
    background-color: #f9b233;
    border-color: #f9b233;
}

.btn-success {
    color: #FFFFFF;
    background-color: #f39200;
    border-color: #f39200;
}

.btn-success:hover {
    color: #FFFFFF;
    background-color: #c2e699;
    border-color: #c2e699;
}

.btn-primary {
    color: #FFFFFF;
    background-color: #f39200;
    border-color: #f39200;
}

.btn-primary:hover {
    color: #FFFFFF;
    background-color: #9AAE88;
    border-color: #9AAE88;
}

.btn-base-estados {
	font-size: 12px;
    color: #ffffff;
    background-color: #0063af;
    border-color: #0063af;
    margin-bottom: 5px;
}

.btn-base-estados:hover {
    background-color: #057cd7;
    border-color: #057cd7;
}

.btn-base-establecimientos {
	font-size: 12px;
    color: #ffffff;
    background-color: #009b37;
    border-color: #009b37;
    margin-bottom: 5px;
}

.btn-base-establecimientos:hover {
    background-color: #05c047;
    border-color: #05c047;
}


.btn-info {
    color: #ffffff;
    background-color: #78c679;
    border-color: #78c679;
}

.btn-info:hover {
    color: #ffffff;
    background-color: #c2e699;
    border-color: #c2e699;
}

.legend {
    background-color: #fff;
    border-radius: 3px;
    bottom: 100px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
    padding: 10px;
    position: absolute;
    right: 10px;
    z-index: 1;
    width: 230px;
}

.invita-zoom {
    background-color: #fff;
    border-radius: 3px;
    bottom: 50px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
    padding: 10px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 22%;
}

@media only screen and (max-width: 767px) {
	.invita-zoom {
    background-color: #fff;
    border-radius: 3px;
    bottom: 70px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
    padding: 10px;
    position: absolute;
    left: 80px;;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 35%;
	}
}


/* (AJUSTES MEMO) SE MODIFICARON ESILOS PARA LOS TÍTULOS DISTINTIVOS 
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/
.legend h6 {
	font-family: "Montserrat", sans-serif;
    font-size: 12px;
    text-align: center;
    margin: 0;
}
/* CIERRA AJUSTE
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/

.legend .cmbPoblacion {
    margin: 0 0 10px;
    width: 100%;
}

.legend p {
    margin: 0 0 10px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    line-height: normal;
    padding: 5px;
}

.legend div span {
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    margin-right: 5px;
    width: 10px;
    border-width: 0.5px;
    border-style: solid;
    border-color: black;
}

.boton-flotante {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 10px 20px;
    background-color: #339335;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.boton-flotante:hover {
    background-color: #0056b3;
}

.boton-flotante:hover span {
    background: #c2e699;
}

.boton-flotante:hover {
    background: #c2e699;
    color: #666666;
}

.botonflotante2 {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #339335;
    right: 10px;
    bottom: 0;
    position: absolute;
    margin-right: 16px;
    margin-bottom: 16px;
    border: none;
    outline: none;
    color: #FFF;
    /*  font-size:25px; */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: .3s;
    z-index: 3;
}

.botonflotante4 {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #339335;
    left: 10px;
    bottom: 0;
    position: absolute;
    margin-left: 16px;
    margin-bottom: 16px;
    border: none;
    outline: none;
    color: #FFF;
    /*  font-size:25px; */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: .3s;
    z-index: 3;
}

span {
    transition: .5s;
}

.botonflotante3:hover span {
    transform: rotate(360deg);
    background: #225B4E;
}

.botonflotante3:hover {
    background: #225B4E;
}

.botonflotante2:hover span {
    transform: rotate(360deg);
    background: #225B4E;
}

.botonflotante2:hover {
    background: #225B4E;
}

.botonflotante4:hover span {
    transform: rotate(360deg);
    background: #225B4E;
}

.botonflotante4:hover {
    background: #225B4E;
}

#ContenedorPrincipal {
    display: block;
}

#ContenedorFiltro {
    display: none;
}

.marker {
    display: block;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}

.divtodos {
    margin-top: 10px;
    margin-left: 12px;
    color: #6C0004;
}

@media (max-width: 767px) {
    #chartContainer {
        width: 900px;
        /* Tamaño fijo del contenedor */
        height: 500px;
        /* Tamaño fijo del contenedor */
        overflow-x: scroll;
        /* Scroll horizontal si es necesario */
    }
}

.linea {
    border-top: 2px solid black;
    height: 2px;
    max-width: 100%;
    padding: 0;
    margin: 20px auto 0 auto;
}

#lblTituloGraficos {
    margin-left: 200px;
    position: relative;
    text-align: center;
}

#btnDescargarPdf {
    position: relative;
}
#btnDatosNacionales:hover {
    background-color: #f9b233;
}

/*
Full screen Modal 
*/
.fullscreen-modal .modal-dialog {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
}

@media (min-width: 768px) {
    .fullscreen-modal .modal-dialog {
        width: 90%;
    }
}

@media (min-width: 1200px) {
    .custom-modal-dialog {
        width: 100%;
    }
}

/* Estilo del botón flotante */
.botonflotante3 {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #f39200;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.botonflotante3:hover {
    background-color: #d47d00;
}

/* Estilo del filtro flotante */
.floating-filter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    z-index: 1000;
    display: none;
    width: 300px;
}

.floating-filter .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.floating-filter .filter-title {
    margin: 0;
    font-size: 16px;
}

.floating-filter .btn-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.floating-filter .filter-content {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .boton-flotante {
        top: auto;
        right: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* Ajustar el tamaño de la letra del input de búsqueda */
.buscador-municipios input {
    font-size: 11px; /* Ajusta el tamaño según tu preferencia */
}

/* Ajustar el tamaño de la letra en la lista de municipios */
.municipio-item label {
    font-size: 12px; /* Puedes cambiar el tamaño a lo que prefieras */
}

/* También puedes ajustar los checkboxes si lo deseas */
.municipio-item input {
    width: 16px; /* Ajusta el tamaño del checkbox si es necesario */
    height: 16px;
}
