.gs-search-filter {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
/* titulo */

.gs-search-filter-title{
    font-weight:600;
    font-size:16px;
    color:#333;
}

/* contenedor de controles */

.gs-search-filter-controls{
    display:flex;
    gap:15px;
    align-items:center;
}
/* SELECT */

.gs-search-filter select{
    -webkit-appearance:none;
    -moz-appearance:none;
    padding:14px 45px 14px 16px;
    border-radius:8px;
    border:1px solid #ddd;
    min-width:220px;

}

.gs-search-filter select:disabled{
    opacity:.6;
    cursor:not-allowed;
}

/* BOTON */

.gs-search-filter button{
    background:#4a6fb3;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

/* =========================
   MOBILE
========================= */

@media (max-width:767px){

    .gs-search-filter{
        width:100%;
    }

    .gs-search-filter__controls{
        flex-direction:column;
        width:100%;
        align-items:stretch;
    }

    .gs-search-filter select,
    .gs-search-filter button{
        width:100%;
        min-width:0;
        box-sizing:border-box;
    }

}