.product-container.catalog_detail .custom-price-block .price-row {
    display: flex;
}

.product-container.catalog_detail .custom-price-block .price-row .old-price {
    text-decoration: line-through;
}

.product-container.catalog_detail .custom-price-block .discount-row {
    display: flex;
}


/* 28.02.25 */

.product-container.catalog_detail .custom-price-block .price-row {
    flex-direction: column;
    gap: 10px;
}

.custom-price-block .price-row+.discount-row {
    margin-top: 15px;
}

.custom-price-block .discount-row {
    gap: 5px;
}

.custom-price-block .price-row .base-price {
    font-size: 26px;
    line-height: 20px;
    font-weight: bold;
}

.custom-price-block .price-row .old-price {
    font-size: 13px;
    line-height: 15px;
    font-weight: normal;
    color: #888;
    text-decoration: line-through;
    margin: 0;
}

.custom-price-block .discount-percent {
    display: inline-block;
    background: #e32330;
    color: #fff;
    font-size: 12px;
    line-height: 21px;
    border-radius: 3px;
    padding: 0px 8px;
    margin: 0;
}

.custom-price-block .discount-saving {
    display: inline-block;
    font-size: 12px;
    background: #ffd02e;
    padding: 3px 8px 2px;
    line-height: 16px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 0;
}

.custom-price-block~.quantity_block_wrapper {
    margin-top: 10px;
}

.product-chars .char-side,
body .char-side .properties {
    margin-top: 0 !important;
}

.cheaper_form .cursor-pointer:hover {
    color: #0157a4 !important;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .custom-price-block .price-row .base-price {
        font-size: 16px;
    }

    .product-container.catalog_detail .custom-price-block .price-row {
        flex-direction: row;
        gap: 20px;
    }
}