
.custom-dropdown {
    list-style: none;
    margin: 0; 
    padding: 0;
    margin: 0 auto;
    border-radius: 5px;
    width: 237px;
    height: 40px;
    margin: 5px;
    margin-top: -1px;
    color: #205B78;
    font-size: large;
    height: auto;
    min-height: 40px;
    
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.custom-dropdown li label {
    border-radius: 5px;
    margin: 5px;
    background-color: #E9E9ED;
    border: 1px solid white;
    color: #205B78;
    border: 1px solid #205B78;
    font-size: large;
    width: 90%;
    height: auto;
    min-height: 40px;
    text-align: center;
    display: inline-block; /* Asegura que se comporte como un botón */
    line-height: 40px; /* Centra el texto verticalmente */
    cursor: pointer; /* Cambia el cursor para indicar que es interactivo */
}

.custom-dropdown li label:hover {
    color:#205B78;
    background-color: #D0D0D7;
    cursor: pointer;
}


.custom-dropdown li input[type='checkbox'] {
    display: none;
}

.custom-dropdown li label {
    display: block;
    width: 237px;
    height: 40px;
}

.custom-dropdown li i {
    font-size: 18px;
    vertical-align: middle;
    width: 20px;
    display: inline-block;
}

.custom-dropdown li span {
    display: inline;
    float: right;
    background: #48515c;
    border: 1px solid #3c434c;
    border-bottom: 1px solid #707781;
    padding: 4px 6px;
    position: relative;
}

.custom-dropdown li label:hover span {
    background: #3e505e;
}

.custom-dropdown li input[type='checkbox']:checked ~ label {
    background: #F28172; /* fallback colour */
}

.custom-dropdown li input[type='checkbox']:checked ~ label span {
    background: #2173a1; /* fallback colour */
    border-top: 1px solid #1b5f85;
    border-bottom: 1px solid #4cb1e4;
}

.custom-dropdown li input[type='checkbox']:checked ~ .options {
    height: auto;
    display: block;
    min-height: 40px;
    max-height: 400px;
}

.custom-dropdown ul {
    background: #D0D0D7; 
    margin: 0; 
    padding: 0;
}

.custom-dropdown ul li a {
    display: block;
    padding: 6px 12px;
    color: #205B78;
    text-decoration: none;
}

.custom-dropdown ul li a:hover {
    color: #F28172;
}

.custom-dropdown ul li {
    border-bottom: 1px solid #205B78;
}

.custom-dropdown ul li:first-child {
    padding-top: 6px;
}

.custom-dropdown ul li:last-child {
    padding-bottom: 6px; 
    border: 0;
}

.custom-dropdown .options {
    height: 0;
    display: block;
    overflow: hidden;
}
.custom-dropdown li{
    float: inherit;
}