#advanced-searchform {
    display: flex;
    gap: 5px;
    justify-content: space-evenly;
    align-items: center;
    width: 95%;
}

@media (max-width: 1024px) {
    #advanced-searchform {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

}

.buscador-campo-estilo {
    flex: 1;
    height: 30px;
    font-size: 20px;
    background-color: transparent;
    border: 1px solid white !important;
    text-transform: capitalize;
    font-family: "Narin";
    font-weight: 600;
    color: white;
}

.buscador-campo-estilo[type="text"] {
    padding: 0px 8px;
}


input[type="text"].buscador-campo-estilo:focus {
    outline: 3px solid #f0910a !important;
}

.buscador-campo-estilo::placeholder,
.select2-selection__placeholder,
.select2-selection__rendered {
    color: white !important;
}


@media (max-width: 1024px) {
    .select2-container {
        width: 100% !important;
    }
}

.select2-selection {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    height: 30px;
    font-size: 20px;
    background-color: transparent !important;
    border: 1px solid white !important;
    text-transform: capitalize;
    font-family: "Narin";
    font-weight: 600;
}

.select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
    border-width: 7px 6px 0 6px !important;
    left: 35% !important;
}

.select2-search,
.select2-search__field,
.select2-dropdown {
    background-color: #222 !important;
    border: 0 !important;
    color: white !important;
}

.select2-search__field:focus {
    outline: none;
    box-shadow: none;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: #f0910a !important;
    color: #ffffff;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #f0910a !important;
    color: #ffffff;
}

.select2-container--default .select2-results__option--selected {
    background-color: #f0910a !important;
    filter: brightness(50%) !important;
}

.pagina-buscador .buscador-campo-estilo {
    border: 1px solid black !important;
    color: black;
}

.pagina-buscador .select2-selection {
    border: 1px solid black !important;
}

.pagina-buscador .select2-selection__arrow b {
    border-color: black transparent transparent transparent !important;
}

.pagina-buscador #searchsubmit:hover {
    background-color: #53b1b1;
}

#searchsubmit:active {
    background-color: #333;
    color: white;
}

#searchsubmit:focus {
    background-color: #333;
    color: white;
}

@media (max-width: 1024px) {

    #searchsubmit {
        padding: 5px 8px;
    }

}

.pagina-buscador .buscador-campo-estilo::placeholder,
.pagina-buscador .select2-selection__placeholder,
.pagina-buscador .select2-selection__rendered {
    color: black !important;
}