.plan-item.is-disabled .plan-item-booking-list {
    opacity: 0.4;
}
.plan-item-booking-item {
    position: relative;
    width: 100%;
    /* display: flex; */
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 100px) minmax(0, 90px);
    align-items: center;
    padding: 5px 0;
    border-radius: 5px;
    gap: 10px;
}
.plan-item-booking-item + .plan-item-booking-item {
    padding-top: 12px;
    margin-top: 12px;
}
.plan-item-booking-item + .plan-item-booking-item::before {
    content: '';
    position: absolute;
    background-color: #0001;
    width: 100%;
    height: 1px;
    left: 0;
    top: -5px;
}
.booking-item-title {
    flex-grow: 1;
}
.booking-item-title-1 {
    font-weight: 600;
    font-size: 1.2rem;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.booking-item-title-2 {
    font-size: 80%;
    color: var(--color-5);
}
.booking-item-price {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    font-weight: 600;
    font-size: 14px;
}
.booking-item-price-1::before,
.booking-item-price-2::before {
    content: '€ ';
}
.booking-item-price-2 {
    opacity: 0.6;
    font-size: 80%;
    font-weight: 400;
    text-decoration: line-through;
}
/* .booking-item-option ------------------ */
.booking-item-option {
    display: flex;
    align-items: center;
    width: 90px;
}
.booking-item-option-sub,
.booking-item-option-add {
    width: 30px;
    height: 30px;
    line-height: 1;
    background-color: #f5f5f5;
    color: #000;
    padding: 0;
}
.booking-item-option-sub.disabled,
.booking-item-option-add.disabled {
    color: #0005;
    cursor: not-allowed;
    pointer-events: unset !important;
}
.booking-item-option-qty {
    flex-grow: 1;
    text-align: center;
}
.booking-item-option-add {

}