* { 
    font-family: Montserrat;
}

#categorias-busca {
    display:block;
    position:absolute;
    top: 73px;
    left: 349px;
    background-color: lightgray;
    border: 1px solid gray;
    border-radius: 20px;
    padding: 20px;
    display:none;
    list-style-type: none;
}

#categorias-busca li:hover {
    background-color: gray;
    color:white;
}




.buscador {
    background-color: #EBEBEB;
    display: block;
    padding: 30px 0;
}

.contenedor-link-buscador {
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

.btn-buscador {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #979696;
    font-size: 11px;
    text-align: center;
    padding: 8px 0px;
    text-decoration: none;
    cursor: pointer;
}

.contenedor-link-buscador .btn-buscador {
    flex-grow: 1;
}

.contenedor-link-buscador .boton-grande {
    flex-grow: 2;
}

.input-buscador {
    width: 100%;
}
.input-buscador input {
    background-color: #FFF;
    border: 1.2px solid #D9D9D9;
    border-radius: 20px;
    height: 52px;
    font-weight: 500;
    font-size: 18px;
    width: 100%;
    padding-left: 70px;
    color: #979696;
}

.input-buscador input::placeholder {
    color: #D9D9D9;
}

.input-buscador input:focus {
    outline: none;
    box-shadow: inset 0px 0px 12px -3px rgba(0,0,0,0.1);
}

.input-buscador img {
    pointer-events: none;
    width: 32px;
    height: 34px;
    top: 15%;
    left: 5%;
}

.input-buscador ~ div a {
    margin-left: 5px;
    margin-right: 5px;
}

.boton-normal {
    display: none;
}

.contenedor-link-buscador-movil {
    display: none;
}

.contenedor-tags-buscador {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.contenedor-tags-buscador a {
    width: 20%;
}

@media(max-width: 960px) {
    .btn-buscador {
        font-size: 10px;
    }
    
    .boton-grande {
        flex-basis: 22%;
    }
}

@media(max-width: 768px) {
    .boton-grande {
        display: none;
    }
    
    .boton-normal {
        display: block;
    }
}

@media(max-width: 576px) {
    .btn-buscador {
        flex-basis: auto;
    }
    
    .input-buscador input {
        height: 41px;
        font-size: 15px;
        padding-left: 55px;
    }
    
    .input-buscador img {
        width: 24px;
        height: 22px;
        top: 24%;
        left: 5%;
    }
    
    .contenedor-link-buscador {
        display: none;
    }
    
    .contenedor-tags-buscador a {
        width: 35%;
    }
    
    .contenedor-link-buscador-movil {
        display: flex;
        flex-direction: column;
        margin-top: 15px;
        width: 100%;
    }
    
    .contenedor-link-buscador-movil .btn-buscador {
        border: none;
        border-bottom: 1px solid #FFF;
        border-radius: 0px;
        box-shadow: none;
        font-size: 12px;
        padding-left: 6%;
        width: 100%;
        text-align: left;
    }
    
    .contenedor-link-buscador-movil .btn-buscador:hover {
        color: #5643E5;;
    }
    
    .contenedor-link-buscador-movil .btn-buscador:last-child {
        border-bottom: none;
    }
}

@media(max-width: 360px) {
    /*.input-buscador input {*/
    /*    height: 41px;*/
    /*    font-size: 15px;*/
    /*    padding-left: 55px;*/
    /*}*/
    
    /*.input-buscador img {*/
    /*    width: 24px;*/
    /*    height: 22px;*/
    /*    top: 24%;*/
    /*    left: 8%;*/
    /*}*/
    
    /*.contenedor-btn-buscador {*/
    /*    display: none;*/
    /*}*/
    
    /*.contenedor-tags-buscador button {*/
    /*    width: 35%;*/
    /*}*/
    
    /*.contenedor-link-buscador-movil {*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    margin-top: 15px;*/
    /*    width: 100%;*/
    /*}*/
    
    /*.contenedor-link-buscador-movil .btn-buscador {*/
    /*    border: none;*/
    /*    border-bottom: 1px solid #FFF;*/
    /*    border-radius: 0px;*/
    /*    box-shadow: none;*/
    /*    font-size: 12px;*/
    /*    padding-left: 6%;*/
    /*    text-decoration: none;*/
    /*    width: 100%;*/
    /*}*/
}