.cont-prevendedor {
    width: 98%;
    max-width: 1000px;
    margin: 20px auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);
    grid-template-areas: "widget-1"
}

.cont-prevendedor>div {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
}

.cont-prevendedor .card {
    border: none;
}

.cont-prevendedor .widget-1 {
    background: white;
    color: black;
    text-align: justify;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    margin: auto;
    width: 100%;
}

.cont-prevendedor .widget-1 {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.cont-prevendedor .widget-1 {
    grid-area: widget-1;
}

@media screen and (max-width:992px) {
    .cont-prevendedor {
        grid-template-areas: "widget-1";
    }

    .cont-prevendedor .widget-1 {
        min-width: 280px;
    }
}

.cont-prevendedor .lista-preseller {
    text-align: center;
}

.cont-prevendedor .lista-preseller button {
    background-color: var(--nav-cadetblue);
    color: white;
    border: none;
}

.cont-prevendedor .lista-preseller button:hover {
    background-color: chocolate;
}

.cont-prevendedor #lista-aparece {
    display: none;
}