 .tick{
    color: green;
    font-weight: bold;
    border:solid 1px;
}


.clear-filter-button {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #f44336;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
}

.clear-filter-button:hover {
    background-color: #d32f2f;
}



/* dropdown layer control */

.filter-dropdown {
    margin-bottom: 5px;
    border-radius: 5px;
}

.filter-title {
    background: #b48fbc; /* Color de fondo */
    color: white; /* Color del texto */
    padding: 8px;
    border: 1px solid #712782;

    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.filter-title:hover {
    background-color: #e0e0e0;
    color:#712782;
}

.checkbox-list {
    max-height: 0;
/*    overflow: hidden;*/
    overflow: scroll;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 10px;
}

.filter-dropdown .active {
    max-height: 150px; /* Adjust this based on content */
    padding: 5px 10px;
}



/* CABECERA */

#top-header {
    background-color: #712782 !important;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    font-size: 13px;
    z-index: 999;
}

#top-header .container{
    line-height: 1em;
    width: 80%;
    max-width: 1080px;
    margin: auto;
    position: relative;
    padding-top: .75em;
    font-family: OpenSans, Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    margin-right: 0.2rem
}

ul{
    list-style: none;
}
#top-header ul li{
      float: right;
      margin-left: .3em;
      margin-right: 15px;  padding-bottom: .75em;
}
#top-header  a {
    color: #ffffff;
    transition: background-color 0.4s, color 0.4sease-in-out;
    /* font-weight: 600; */
}


/*CLUSTERS */

/* Contenedor del cluster */
.custom-cluster-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilo general del cluster */
.custom-cluster {
    background: #712782; /* Color de fondo */
    color: white; /* Color del texto */
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%; /* Forma circular */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 2px solid white;
}

/* Tamaños de los clusters */
.custom-cluster.small {
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.custom-cluster.medium {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.custom-cluster.large {
    width: 50px;
    height: 50px;
    font-size: 16px;
}
