
.price-discount {

    --background-color: var(--theme-positive-color, #29aa5d) !important;;

    color: #fff;
    background-color: var(--background-color);
    display: inline-block;
    position: relative;
    padding: 12px 0 12px 12px;
    font-weight: 600;
    border-radius: 5px 0 0 5px;
    white-space: nowrap;
    min-height: 48px;
    margin-right: 32px;

    &::before,
    &::after {
        content: ' ';
        display: inline-block;
        position: absolute;
        top: 0;
        z-index: 1;
        right: -32px;
    }

    &::before {
        width: 0;
        height: 0;
        border-top: 0 solid transparent;
        border-bottom: 48px solid transparent;
        border-left: 40px solid var(--background-color);
    }

    &::after {
        width: 0;
        height: 0;
        border-bottom: 0 solid transparent;
        border-top: 48px solid transparent;
        border-left: 40px solid var(--background-color);
    }

    span {
        display: inline-block;
        position: relative;
        z-index: 20;
    }
}



.prices-wrap {

    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;

    .price-label {
        line-height: 1em;
        margin-bottom: 15px;
        font-size: 13px;
    }



}


.prices {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 5px 15px;
    margin-bottom: 5px;

    .price {
        display: inline-block;
        vertical-align: text-bottom;
        white-space: nowrap;
        line-height: 1em;
    }

    .price-current {
        font-weight: 600;
        font-size: 28px;
    }

    .price-before {
        font-weight: 200;
        font-size: 20px;
        opacity: 0.45;
    }

}