@charset "UTF-8";

/* CSS Document */
.productos-vistos {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.productos-vistos li {
    width: 20%;
    text-align: center;
}
.productos-vistos img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile */
@media only screen and (min-width: 320px) and (max-width: 932px) {

}