.v2-prices-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
}

.v2-final-price {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.v2-final-price__xs {
    font-size: 16px;
}

@media (max-width: 400px) {
    .v2-final-price__xs {
        font-size: 14px;
    }
}

.v2-discount-info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
}

.v2-discount-info__center {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 400px) {
    .v2-discount-info__center {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5px;
    }
}
.v2-old-price__wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}
.v2-old-price {
    font-size: 16px;
    color: #a1a4a8;
    text-decoration: line-through;
}

.v2-old-price__xs {
    font-size: 12px;
}

.v2-discounted-price {
    font-size: 18px;
    color: #696969;
    text-decoration: line-through;
}

.v2-discounted-price__xs {
    font-size: 14px;
}

@media (max-width: 400px) {
    .v2-discounted-price__xs {
        font-size: 12px;
    }

}

.v2-discount-percent {
    color: #ed0000;
    font-size: 20px;
}

.v2-discount-percent__xs {
    font-size: 14px;
}

@media (max-width: 400px) {
    .v2-discount-percent__xs {
        font-size: 12px;
    }
}

.v2-final-price__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 15px
}

@media (max-width: 400px) {
    .v2-final-price__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5px;
    }
}

.v2-final-price__wrapper.is-center {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.v2-discount-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid;
    font-size: 14px;
    /*background-color: rgba(254, 158, 111, 0.3);*/
    border-radius: 4px;
    padding: 3px 5px;
}

.v2-discount-label__xs {
    font-size: 12px;
    gap: 5px;
}

@media (max-width: 400px) {
    .v2-discount-label {
        font-size: 10px;
        gap: 5px;
        padding: 2px 3px;
    }
}

.v2-discount-label__name, .v2-discount-label__value {
    font-weight: bold;
}