.dlcart__list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.dlcart__item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;

}

.dlcart__item-hero {
    width: 60px;
}

.dlcart__item-hero img {
    width: 100%;
}

.dlcart__item-body {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 90px);
}

.dlcart__cell {
    width: 220px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.dlcart__cell-discount {
    width: 100px
}

.dlcart__cell-price {
    width: 170px
}

.dlcart__cell-buy {
    width: 150px;
}

.dlcart__cell-name {
    width: calc(100% - 400px);
    min-width: 330px;

}

.dlcart__item--header .dlcart__item-body,
.dlcart__item--header .dlcart__item-hero {
    padding: 12px 10px;
    background-color: #efeded;
    color: #7b7979;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .dlcart__item--header {
        display: none;
    }

    .dlcart__item-hero {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .dlcart__item-body {
        width: 100%;

    }

}

@media screen and (max-width: 998px) {
    .dlcart__item--header {
        display: none;
    }

    .dlcart__cell-buy {
        width: 100%;
    }

    .dlcart__item--header .dlcart__cell-buy {
        display: none;
    }

}