body{
    font-family: helvetica;
}

ul{
    list-style: none;
}

#buscador{
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 30px 0 10px 0;
}

#form-buscador{
    display: flex;
}

#form-buscador input[type="text"]{
    padding: 5px 0 5px 15px;
    border: 1px solid #980498;
    outline: none;
    border-radius: 10px 0 0 10px
}

#form-buscador .div-buscar{
    position: relative;
    border-radius: 0 10px 10px 0;
    border: 1px solid #142b85;
    border-left: none;
    background: #142b85;
    color: #fff;
}

#form-buscador .div-buscar input[type="submit"]{
    position: absolute;
    opacity: 0;
    padding: 4.5px;
    z-index: 5;
    cursor: pointer;
}

#form-buscador .div-buscar i{
    position: relative;
    top: 4px;
    padding: 0 10px;
}

.a-categoria{
    background: #112679;
    padding: 10px;
    color: #fff;

    background: #fff;
    color: #000;
    border: 1px solid #6d6d6d;

    border-radius: 5px;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 10px auto;
    transition: all 5ms;
}

.a-categoria:hover{
    background: #112679; /* #ec9d08 */
    color: #fff;
}

#productos{
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
}

#productos .aside-categorias{
    grid-row: 2;
}

#productos .productos #selected{
    color: #fff;
    background: #1335bb;
    border-radius: 10px;
}

#productos .productos .producto-ind a{
    background: none;
    color: #000;
    margin-bottom: 30px;
    box-shadow: 0px 2px 10px #cacaca;
}

#productos .productos .producto-ind a img{
    margin-bottom: 10px;
}

#productos .productos .pages a{
    background: #fff;
    color: #000;
    box-shadow: 0 0 0;
    padding: 5px;
    display: inline-block;
    width: auto;
}

#productos .productos .pages{
    padding: 10px 0 20px 0;
}

.the-products{
    margin-top: 40px;
}

#productos .productos .producto-ind h1{
    margin-bottom: 5px;
}

@media(min-width: 768px){
    .aside-categorias{
        width: 20%;
    }
    
    .aside-categorias h3{
        padding: 17px;
    }
    
    .aside-categorias hr{
        margin-bottom: 20px;
    }
    
    #productos{
        display: flex;
        width: 90%;
        margin-bottom: 0;
    }
    
    #productos .productos{
        width: 80%;
    }

    .the-products{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }

    #productos .productos img {
        height: 175px;
    }
}


@media(min-width: 960px){
    #productos .producto-ind a img {
        height: 225px;
        margin-bottom: 15px;
    }
}

@media(min-width: 1024px){
    #productos .producto-ind a img {
        margin-bottom: 15px;
    }
}

@media(min-width: 1200px){
    .the-products{
        grid-template-columns: repeat(3, 1fr);
    }

    .a-categoria{
        width: 80%;
    }
}

@media(min-width: 1400px){
    #productos{
        width: 1260px;
    }
}