/************
* Agrega scroll
* Agrega tamaño de fuente
* Estilo se rompe si se cambia .nice-select .list por una clase custom
*/
.nice-select .list{
    overflow: scroll !important;
    font-size: var(--font-size-input) !important;
    width: max-content !important;
    min-width: 200px !important;
    margin-left: -15px !important; /* Dropdow se alinea con el select*/
}

/************
* Clases para cambiar el tamaño de la lista en class de select  
*/

/** Agregar max-height-[valor] para cambiar el tamaño de la lista en class de select  */
.max-height-4 .list{
    max-height: 500px !important;
}
/** Agregar  aqui los max-height que se necesiten...*/


/************
* Media Queries 
*/
/** Iphone XR */
@media screen and (max-width: 414px) {
    .max-height-4 .list{
        max-height: 580px !important;
    }
}

/** Iphone SE */
@media screen and (max-width: 380px) {
    .max-height-4 .list{
        max-height: 400px !important;
        
    }
}

/** Agregar aqui las media queries que se necesiten... */


/* Aplica estilos similares a button Buscar */
@media screen and (max-width: 1399px) {
    .custom-button-list{
        gap: 0px 5px !important;
        background: var(--header) !important;
        width: 150px !important;
        height: 70px !important;
        border-radius: 4px !important;
        align-content: space-evenly !important;
        justify-content: center !important;
        align-items: start !important;
    }
}