.offer-prices {
    margin-bottom: 80px;
}
.offer-prices__list {
    margin-bottom: 30px;
}
.offer-prices__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 18px;
    line-height: 24px;
}
.offer-prices__item-price {
    margin-left: auto;
    margin-right: 10px;
    white-space: nowrap;
    color: #646565;
}
.offer-prices__item-old-price {
    margin-left: auto;
    margin-right: 10px;
    white-space: nowrap;
    color: #c0c0c0;
    font-size: 14px;
    text-decoration: line-through;
}
.offer-prices__item__btn._hide {
    pointer-events: none;
    opacity: 0;
}
.offer-prices__item__btn:first-of-type {
    margin-right: 10px;
}
.offer-prices__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offer-prices__item__mobile {
    display: flex;
    align-items: center;
}
.offer-prices .option._hidden {
    display: none;
}
.offer-prices .show-more {
    width: 210px;
    display: block;
    background-color: white;
    border: 1px solid #8AB446;
    border-radius: 24px;
    color: #8AB446;
    padding: 8px 60px 8px 30px;
    position: relative;
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    cursor: pointer;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}
.offer-prices .show-more::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 37px;
    height: 37px;
    background-image: url("images/icon-arrow-2.svg");
    transform: translateY(-50%) rotate(0deg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 800px) {
    .page-title {
        margin-bottom: 15px;
    }
    .offer-prices {
        margin-bottom: 40px;
    }
    .offer-prices__item__mobile {
        flex-direction: column;
        align-items: center;
    }
    .offer-prices__item-price {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .offer-prices__item__btn:first-of-type {
        margin-right: 0;
        margin-bottom: 5px;
    }
}
.offer-prices__item {
    border-bottom: 1px solid #91B130;
}
.offer-prices__item-price {
    color: #91B130;
}