.price-list-wrapper {
    padding: 80px 0;
}

.price-list__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    border-radius: 12px;
    padding: 28px;
}

.price-list__row {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.counter_wrapp.price-list__cart .button_block.wide {
    margin: 0;
    padding: 0;
}

.counter_wrapp.list.price-list__cart {
    margin: 0;
    padding: 0;
}

.counter_wrapp.price-list__cart .button_block.wide .btn-default {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 6px !important;
    background: #3B61B9;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 140px;
    min-width: 140px;
    text-transform: unset;
}

.counter_wrapp.list.price-list__cart.unavailable .button_block.wide .btn-default {
    pointer-events: none;
    background-color: grey;
    border-color: grey;
}

.counter_wrapp.price-list__cart .button_block.wide .btn-default svg {
    display: none;
}

.counter_wrapp.price-list__cart .button_block.wide .btn-default.btn.in-cart .svg.svg-inline-fw {
    display: none;
}


.price-list__title {
    margin: 0;
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: rgba(10, 10, 10, 1);
}

.price-list__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.price-list__top-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-list__all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background-color: rgba(59, 97, 185, 1);
    border-radius: 10px;
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    transition: background-color .3s ease-in-out;
    min-width: fit-content;
}

.price-list__descr {
    margin: 0;
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: rgba(90, 97, 108, 1);
}

.price-list__all-btn:hover {
    color: #fff;
    background-color: #34549E;
}

.price-list__name {
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(90, 97, 108, 1);
}

.price-list__right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-list__price {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(90, 97, 108, 1);
    text-wrap: nowrap;
}
.price-list__price-old {
    font-size: 12px;
    text-decoration: line-through;
    color: gray;
}

.price-list__price-badge-wrapper {
    display: flex;
    gap: 12px;
}

.price-list__price-eco {
    font-size: 12px;
}
.price-list__price-block {
    text-wrap: nowrap;
}

@media (max-width: 768px) {
    .price-list__top {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .price-list__row,
    .price-list__right {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .price-list__title {
        font-size: 28px;
        line-height: 32px;
    }
}