.surcharge-list:has(.parameter-id-28),
.surcharge-list:has(.parameter-id-31),
.surcharge-list:has(.parameter-id-34),
.surcharge-list:has(.parameter-id-37) {
    display: none !important;
}

.voucher-picker {
    max-width: 600px;
    margin-top: 30px;
}

.voucher-picker__slider {
    width: 100%;
}

.js-voucher-slider {
    width: 100%;
    height: 6px;
    appearance: none;
    -webkit-appearance: none;
    background: #e5e5e5;
    border-radius: 999px;
    cursor: pointer;
}

/* Chrome / Safari */
.js-voucher-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 22px;
    height: 22px;

    background: #fff;
    border: 2px solid #111;
    border-radius: 50%;

    cursor: grab;
}

.js-voucher-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
}

/* Firefox */
.js-voucher-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;

    background: #fff;
    border: 2px solid #111;
    border-radius: 50%;

    cursor: grab;
}

.voucher-picker__limits {
    display: flex;
    justify-content: space-between;

    margin-top: 10px;

    font-size: 13px;
    color: #777;
}

.p-final-price-wrapper:has(.voucher-picker) .price-additional{
    display: none;
}

.voucher-price-editable {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    white-space: nowrap;
}

.voucher-price-editable .js-voucher-price {
    appearance: none;
    -webkit-appearance: none;

    border: 0;
    border-bottom: 1px dashed currentColor;

    background: transparent;

    padding: 0 2px 1px;
    margin: 0;

    width: 5ch;
    min-width: 5ch;

    font: inherit;
    font-weight: inherit;
    line-height: inherit;

    color: inherit;
    text-align: right;

    outline: none;

    cursor: text;

    transition:
            background-color 0.15s ease,
            border-color 0.15s ease;
}

/*
 * Make it obvious that the price can be edited
 */
.voucher-price-editable .js-voucher-price:hover {
    border-bottom-style: solid;
    background-color: rgba(0, 0, 0, 0.035);
}

/*
 * Active editing state
 */
.voucher-price-editable .js-voucher-price:focus {
    border-bottom-style: solid;
    background-color: rgba(0, 0, 0, 0.06);
}

/*
 * Remove browser number/input decorations if any
 */
.voucher-price-editable .js-voucher-price::-webkit-outer-spin-button,
.voucher-price-editable .js-voucher-price::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.voucher-price-editable__currency {
    margin-left: 2px;
    color: inherit;
}