.buy_one {
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 20px;
}

.buy_one-title{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center
}

.buy_one-list {
    display: flex;
}

.buy_one-list del+span {
    display: none;
}

.buy_one-main {
    width: 25%;
}

.buy_one-slider {
    width: 75%;
}

.buy_one-slider {
    display: flex;
}

.buy_one-slider .buy_one-box {
    width: 33.333% !important;
    padding: 0;
}

.buy_one-box {
    position: relative;
}

.buy_one-box .icon-plus {
    font-size: 14px;
    color: #000;
    position: absolute;
    right: -9px;
    top: 80px;
}

.buy_one-box .icon-checkmark {
    font-size: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #1c7176;
    border-radius: 4px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 3;
}

.buy_one-main .buy_one-box .icon-checkmark {
    user-select: none;
    pointer-events: none;
    display: none;
}

.buy_one-box .icon-checkmark.active {
    background-color: #1c7176;
}

.buy_one-slider .buy_one-box:last-child .icon-plus {
    display: none;
}

.buy_one-box img {
    height: 150px;
    width: 100%;
    padding: 10px;
    object-fit: contain;
}

.buy_one-box-title {
    font-size: 14px;
	font-weight: 700;
    padding-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;

}

.buy_one-slider h3 {
    color: #1c7176;
}

.buy_one del,
.buy_one span.amount {
    font-size: 12px;
}

.buy_one-bottom {
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
}

.buy_one-bottom strong {
    font-size: 18px;
}

.buy_one-bottom .price_1 {
    font-size: 24px;
    color: red;
}

.buy_one-bottom .price_2 {
    font-size: 14px;
    text-decoration: line-through;
}

.buy_one-btn {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 5px 20px;
    border-radius: 30px;
    color: #fff;
    background-color: red;
    text-transform: uppercase;
    display: block;
}

.buy_one-btn:hover {
    background-color: #000;
    color: #fff;
}

.block_html {
    border: 1px solid var(--primary-color);
    background: #efefef;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.block_html>*:last-child {
    margin: 0
}

@media screen and (max-width: 550px) {
    .buy_one-main {
        width: 33.33%;
    }

    .buy_one-slider {
        width: 66.67%;
    }

    .buy_one-slider .buy_one-box {
        width: 50% !important;
    }

    .buy_one-box img {
        height: 100px;
    }

    .buy_one {
        padding: 20px 0;
        border-radius: 0;
        border: 0;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }

    .buy_one-box .icon-plus {
        top: 40px;
    }

    .buy_one-bottom strong {
        width: 100%;
        display: block;
    }

    .block_html {
        margin-top: 15px;
    }

    .buy_one-box .price {
        font-size: 12px !important;
    }
}