.product-item__weight{
    flex-wrap: wrap;
    gap: 10px;
}
.product-item__weight .weight__caption{
    margin-right: 0!important;
}
.offers-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offers-tabs__item {
    width: 170px;
    height: 48px;
    line-height: 31px;
    border: 1px solid var(--success);
    background: #F6F6F6;
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2px;
    font-size: 18px;
    white-space: nowrap;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

.offers-tabs__item.active {
    background: var(--success);
    color: #fff;
}
.product__weight .weight__item.offers_sale{
    display: none;
}
.weight__value:checked + .weight__caption, .weightActive + .weight__caption{
    background: var(--success)!important;
    color: #fff;
}
@media (max-width: 767px) {
    .product-item__prices{
        margin-top: 30px;
    }
    .offers-tabs__item{
        width: 90px;
        height: 21px;
        border-radius: 5px;
        line-height: 1;
    }
    .offers-tabs{
        margin-bottom: 10px;
    }
}