    :root {
        --muted: #6e7280;
    }
    
    .anyavailableprovider {
        background: none !important;
        padding: 0 !important;
        border: none !important;
    }
    .bf-booking-page > .desc-body {
        display: none !important;
    }
    .bf-session-card,
    .bf-stepper-card,
    .bf-summary-strip,
    .bf-flow-panel {
        background: var(--bf-surface);
        border: 1px solid var(--bf-border);
        border-radius: 14px;
        box-shadow: var(--bf-shadow);
        overflow: hidden;
    }
    .bf-session-card {
        display: grid;
        grid-template-columns: 200px minmax(0, 1fr) 120px;
        gap: 24px;
        align-items: stretch;
        min-height: 116px;
        margin-bottom: 18px;
    }
    .bf-session-image {
        background: var(--bf-surface2);
        border-right: 1px solid var(--bf-border);
        min-height: 116px;
        position: relative;
    }
    .bf-session-image img {
        width: 100%;
        height: 100%;
        min-height: 116px;
        object-fit: cover;
        display: block;
    }
    .bf-session-image.is-empty:before,
    .bf-image-fallback:before {
        content: "image";
        font-family: "Material Icons";
        color: #8d92a0;
        font-size: 34px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .bf-image-fallback {
        background: var(--bf-surface2);
        border-radius: 8px;
        min-height: 180px;
        position: relative;
    }
    .bf-session-main {
        padding: 12px 0;
    }
    .bf-session-title {
        color: var(--bf-text);
        font-size: 18px;
        font-weight: 800;
        margin: 0 0 4px;
    }
    .bf-session-subtitle {
        color: var(--bf-muted);
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    .bf-session-details-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        justify-content: center;
        background: #eef1f6;
        border: 1px solid var(--bf-border);
        color: var(--bf-muted);
        border-radius: 7px;
        padding: 5px 13px;
        font-size: 11px;
        font-weight: 800;
        text-decoration: none;
    }
    .bf-duration-pill {
        justify-self: center;
        align-self: center;
        border: 1px solid var(--bf-border);
        color: var(--bf-muted);
        font-weight: 600;
        padding: 2px;
        font-size: 12px;
        min-width: 80px;
        text-align: center;
        background: #fafafa;
    }
    .bf-stepper-card {
        padding: 12px 12px;
        margin-bottom: 18px;
    }
    .bf-stepper {
        display: grid;
        grid-template-columns: repeat(4, minmax(88px, 1fr));
        align-items: start;
        position: relative;
    }
    .bf-stepper:before {
        display: none;
    }
    .bf-step {
        position: relative;
        z-index: 1;
        text-align: center;
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .02em;
    }
    .bf-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 17px;
        left: calc(50% + 19px);
        right: calc(-50% + 19px);
        height: 2px;
        background: var(--bf-border);
        z-index: -1;
    }
    .bf-step.completed:not(:last-child)::after {
        background: var(--bf-accent);
    }
    .bf-step-number {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid var(--bf-border);
        background: #f3f4f7;
        color: var(--bf-muted);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    .bf-step.active,
    .bf-step.active .bf-step-number {
        color: var(--bf-accent);
    }
    .bf-step.active .bf-step-number {
        background: var(--bf-accent);
        border-color: var(--bf-accent);
        color: #fff;
    }
    .bf-step.completed {
        color: green;
    }
    .bf-step.completed .bf-step-number {
        background: green;
        border-color: green;
        color: #fff;
        font-size: 0;
    }
    .bf-step.completed .bf-step-number:before {
        content: "\2713";
        font-size: 18px;
        font-weight: 900;
    }
    .bf-step.dotted .bf-step-number {
        border-style: dashed;
    }
    .bf-step.dotted.active .bf-step-number,
    .bf-step.dotted.completed .bf-step-number {
        border-style: solid;
    }
    .bf-summary-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 18px;
    }
    .bf-summary-strip.bf-summary-strip-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .bf-summary-item {
        position: relative;
        /* min-height: 70px; */
        padding: 8px 14px;
        border-right: 1px solid var(--bf-border);
    }
    .bf-summary-item.done {
        cursor: pointer;
    }
    .bf-summary-item:last-child {
        border-right: 0;
    }
    .bf-summary-item.active {
        background: #e8e6f0;
    }
    .bf-summary-item.done::after {
        content: "\2713";
        position: absolute;
        top: 0px;
        right: 5px;
        color: green;
        font-size: 18px;
        font-weight: 900;
    }
    .bf-summary-label {
        color: var(--bf-muted);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 4px;
    }
    .bf-summary-value {
        color: var(--bf-accent);
        font-size: 13px;
        font-weight: 600;
    }
    .bf-summary-value.muted {
        color: var(--bf-muted);
        font-style: italic;
        font-weight: 500;
    }
    .bf-booking-page #accordion-demo {
        margin: 0;
    }
    .bf-booking-page #accordion-demo > .panel {
        border-radius: 14px;
        box-shadow: var(--bf-shadow);
        border: 1px solid var(--bf-border);
        overflow: hidden;
    }
    .bf-booking-page #accordion-demo > .panel:not(.bf-flow-current) {
        display: none;
    }
    .bf-booking-page #providerStepActions,
    .bf-booking-page #locationStepActions,
    .bf-booking-page #additionalPersonStepActions,
    .bf-booking-page #addonStepActions,
    .bf-booking-page #slotStepActions {
        display: none;
    }
    .bf-booking-page #providerStep.bf-flow-current + #providerStepActions,
    .bf-booking-page #locationStep.bf-flow-current + #locationStepActions,
    .bf-booking-page #additionalPersonStep.bf-flow-current + #additionalPersonStepActions,
    .bf-booking-page #addonStep.bf-flow-current + #addonStepActions,
    .bf-booking-page #slotStep.bf-flow-current + #slotStepActions {
        display: flex;
    }
    .bf-booking-page #accordion-demo > .panel:first-child > .panel-heading {
        display: none;
    }
    .bf-booking-page #providerStep > .panel-heading {
        display: none;
    }
    .bf-booking-page #slotStep > .panel-heading,
    .bf-booking-page #additionalPersonStep > .panel-heading,
    .bf-booking-page #addonStep > .panel-heading,
    .bf-booking-page #paymentStep > .panel-heading {
        display: none;
    }
    .bf-booking-page #checkoutStep {
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        overflow: visible !important;
    }
    .bf-booking-page #checkoutStep > .panel-heading {
        display: none;
    }
    .bf-booking-page #checkoutStep .panel-body {
        border: 1px solid var(--bf-border);
        padding: 0 !important;
        background: transparent;
    }
    .bf-booking-page #accordion-demo > .panel:first-child .panel-body {
        border: 1px solid var(--bf-border);
        border-radius: 14px !important;
        padding: 0 !important;
    }
    .bf-booking-page #providerStep .panel-body {
        border: 1px solid var(--bf-border);
        border-radius: 14px !important;
        padding: 0 !important;
    }
    .bf-booking-page #slotStep .panel-body,
    .bf-booking-page #additionalPersonStep .panel-body,
    .bf-booking-page #addonStep .panel-body,
    .bf-booking-page #paymentStep .panel-body {
        border: 1px solid var(--bf-border);
        border-radius: 14px;
        padding: 0 !important;
        overflow: hidden;
    }
    .bf-booking-page .bf-flow-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding-top: 5px;
    }
    .bf-booking-page #providerStepActions .btn,
    .bf-booking-page #additionalPersonStepActions .btn,
    .bf-booking-page #addonStepActions .btn,
    .bf-booking-page #slotStepActions .btn,
    .bf-booking-page #paymentStep .bf-flow-actions .btn,
    .bf-booking-page #memberStep .bf-flow-actions .btn,
    .bf-booking-page #formsAgreementsStep .bf-flow-actions .btn,
    .bf-booking-page #bfCheckoutStepNav .bf-flow-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        line-height: 1.2;
    }
    .bf-booking-page .btn.disabled,
    .bf-booking-page .btn:disabled,
    .bf-confirm-actions .btn.disabled,
    .bf-confirm-actions .btn:disabled {
        cursor: not-allowed !important;
        pointer-events: auto !important;
        opacity: .62;
    }
    .bf-booking-page #providerStepActions .material-icons,
    .bf-booking-page #additionalPersonStepActions .material-icons,
    .bf-booking-page #addonStepActions .material-icons,
    .bf-booking-page #slotStepActions .material-icons,
    .bf-booking-page #paymentStep .bf-flow-actions .material-icons,
    .bf-booking-page #memberStep .bf-flow-actions .material-icons,
    .bf-booking-page #formsAgreementsStep .bf-flow-actions .material-icons,
    .bf-booking-page #bfCheckoutStepNav .bf-flow-actions .material-icons {
        line-height: 1;
    }
    .bf-booking-page #locationStepActions {
        justify-content: flex-end;
    }
    .bf-flow-panel-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
        padding: 18px 26px;
        border-bottom: 1px solid var(--bf-border);
        border-radius: 14px 14px 0 0;
        background: #fff;
    }
    .bf-new-slot-head {
        display: none;
    }
    .bf-booking-page .bf-new-slot-head {
        display: flex;
    }
    .bf-flow-panel-head h2 {
        margin: 0;
        color: var(--bf-text);
        font-size: 18px;
        font-weight: 800;
    }
    .bf-flow-panel-count {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        color: var(--bf-muted);
        font-size: 14px;
        font-weight: 500;
    }
    .bf-additional-person-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
    }
    .bf-additional-person-card .bf-flow-panel-head {
        padding: 18px 26px;
        min-height: 60px;
    }
    .bf-additional-person-body {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 34px 26px;
        min-height: 98px;
        color: var(--bf-text);
        font-size: 14px;
    }
    .bf-additional-person-body label {
        margin: 0;
        font-weight: 500;
    }
    .bf-additional-person-max {
        font-weight: 800;
        white-space: nowrap;
    }
    .bf-additional-person-select {
        width: 52px;
        height: 34px;
        border: 1px solid var(--bf-border);
        border-radius: 6px;
        background-color: #f3f5f8;
        color: var(--bf-text);
        padding: 4px 10px;
    }
    .bf-addon-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
    }
    .bf-addon-card .bf-flow-panel-count {
        color: #078b08;
        font-weight: 600;
    }
    .bf-addon-note {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 24px 26px 20px;
        padding: 12px 16px;
        border: 1px solid var(--bf-border);
        border-radius: 8px;
        background: #eef1f6;
        color: var(--bf-muted);
        font-size: 13px;
    }
    .bf-addon-note-badge {
        width: 16px;
        height: 16px;
        border: 1px solid #9aa3b4;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 10px;
        color: #6d7483;
    }
    .bf-addon-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
        gap: 12px;
        padding: 0 26px 24px;
    }
    .bf-addon-row {
        position: relative;
        min-height: 174px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 18px 18px;
        border: 2px solid var(--bf-border);
        border-radius: 8px;
        background: #eef0f4;
        cursor: pointer;
        transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    }
    .bf-addon-row:hover,
    .bf-addon-row.selected {
        border-color: var(--bf-accent);
        background: #f1eef7;
        box-shadow: 0 4px 12px rgba(188, 89, 33, .12);
    }
    .bf-addon-row.selected .bf-location-check {
        display: block;
    }
    .bf-addon-main {
        min-width: 0;
        flex: 1;
    }
    .bf-addon-icon {
        color: var(--bf-accent);
        font-size: 28px;
        line-height: 1;
        margin-bottom: 8px;
    }
    .bf-addon-name {
        display: block;
        gap: 7px;
        color: var(--bf-text);
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 8px;
    }
    .bf-addon-desc {
        color: var(--bf-muted);
        font-size: 12px;
        line-height: 1.45;
        min-height: 34px;
    }
    .bf-addon-meta {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--bf-border);
        color: var(--bf-muted);
        font-size: 13px;
    }
    .bf-addon-price {
        color: var(--bf-accent);
        font-weight: 800;
    }
    .bf-addon-quantity {
        color: var(--bf-text);
    }
    .bf-addon-qty-picker {
        display: none;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        margin: 0 0 0 auto;
        padding: 0;
        border: 0;
        background: transparent;
    }
    .bf-addon-row.quantity-open {
        border-color: var(--bf-accent);
        background: #f1eef7;
        box-shadow: 0 4px 12px rgba(188, 89, 33, .12);
    }
    .bf-addon-qty-picker label {
        display: none !important;
        margin: 0;
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 800;
    }
    .bf-addon-stepper {
        display: inline-flex;
        align-items: center;
        height: 28px;
        border: 0;
        border-radius: 7px;
        overflow: visible;
        background: transparent;
        gap: 10px;
    }
    .bf-addon-stepper button {
        width: 28px;
        height: 28px;
        border: 0;
        border-radius: 6px;
        background: #fff;
        color: var(--bf-text);
        font-size: 16px;
        font-weight: 900;
        line-height: 1;
        box-shadow: inset 0 0 0 1px #d5dbe5;
    }
    .bf-addon-stepper button:disabled {
        color: #aeb4bf;
        cursor: not-allowed;
        opacity: .62;
    }
    .bf-addon-stepper[data-tooltip] {
        position: relative;
    }
    .bf-addon-stepper[data-tooltip]:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: calc(100% + 7px);
        left: 50%;
        transform: translateX(-50%);
        background: #2c3140;
        color: #fff;
        font-size: 11px;
        font-weight: 500;
        padding: 5px 10px;
        border-radius: 6px;
        white-space: nowrap;
        pointer-events: none;
        z-index: 20;
        box-shadow: 0 2px 8px rgba(0,0,0,.18);
    }
    .bf-addon-stepper[data-tooltip]:hover::before {
        content: '';
        position: absolute;
        bottom: calc(100% + 3px);
        left: 50%;
        transform: translateX(-50%);
        border: 4px solid transparent;
        border-top-color: #2c3140;
        pointer-events: none;
        z-index: 20;
    }
    .bf-addon-stepper input {
        width: 22px;
        height: 28px;
        border: 0;
        background: transparent;
        color: var(--bf-text);
        text-align: center;
        font-size: 13px;
        font-weight: 900;
    }
    .bf-addon-stepper input::-webkit-outer-spin-button,
    .bf-addon-stepper input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    .bf-addon-stepper input[type=number] {
        -moz-appearance: textfield;
    }
    .bf-addon-actions {
        display: none;
    }
    .bf-addon-selection-box {
        margin: 0 26px 24px;
        padding: 16px;
        border: 1px solid var(--bf-border);
        border-radius: 8px;
        background: #fff;
    }
    .bf-addon-selection-title {
        color: var(--bf-muted);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    .bf-addon-selection-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        min-height: 24px;
    }
    .bf-addon-selection-empty {
        color: var(--bf-muted);
        font-size: 12px;
        font-style: italic;
    }
    .bf-addon-pill {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        max-width: 100%;
        padding: 4px 9px;
        border: 1px solid #bdd5ee;
        border-radius: 999px;
        background: #e8f3ff;
        color: var(--bf-accent);
        font-size: 11px;
        line-height: 1.2;
    }
    .bf-addon-pill button {
        border: 0;
        background: transparent;
        color: var(--bf-accent);
        font-size: 12px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
    }
    .bf-addon-total-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--bf-border);
        color: var(--bf-text);
        font-size: 14px;
        font-weight: 800;
    }
    .bf-addon-total-row span:last-child {
        color: var(--bf-accent);
    }
    .bf-payment-card {
        background: transparent;
        border-radius: 14px;
        overflow: hidden;
    }
    .bf-payment-card .bf-flow-panel-head {
        padding: 18px 26px;
        min-height: 60px;
        background: transparent;
    }
    .bf-payment-options {
        display: grid;
        gap: 12px;
        padding: 18px 20px 16px;
    }
    .bf-payment-option {
        position: relative;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto 24px;
        align-items: center;
        gap: 14px;
        width: 100%;
        min-height: 82px;
        padding: 16px;
        border: 1.5px solid #e8ebf2;
        border-radius: 10px;
        background: transparent;
        color: var(--bf-text);
        text-align: left;
        cursor: pointer;
        transition: border-color .18s, box-shadow .18s, background .18s, transform .18s;
    }
    .bf-payment-option:hover,
    .bf-payment-option:focus {
        border-color: var(--bf-accent);
        background: transparent;
        box-shadow: 0 8px 22px rgba(17, 24, 39, .08);
        outline: none;
        transform: translateY(-1px);
    }
    .bf-payment-option.selected {
        border-color: var(--bf-accent);
        background: transparent;
        box-shadow: 0 0 0 3px rgba(197,85,27,.08);
    }
    .bf-payment-option-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(197,85,27,.10);
        color: var(--bf-accent);
        font-size: 22px;
    }
    .bf-payment-option-copy {
        display: flex;
        flex-direction: column;
        min-width: 0;
        gap: 4px;
    }
    .bf-payment-option-title {
        color: var(--bf-text);
        font-size: 15px;
        font-weight: 800;
    }
    .bf-payment-option-subtitle {
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 500;
        line-height: 1.35;
    }
    .bf-payment-option-price {
        color: var(--bf-accent);
        font-size: 16px;
        font-weight: 900;
        white-space: nowrap;
    }
    .bf-payment-option.selected .bf-location-check {
        display: block;
    }
    .bf-payment-actions {
        padding: 0 20px 20px;
    }
    @media (max-width: 575px) {
        .bf-payment-option {
            grid-template-columns: 40px minmax(0, 1fr) 24px;
            gap: 12px;
            padding: 14px;
        }
        .bf-payment-option-price {
            grid-column: 2 / 3;
            justify-self: start;
            font-size: 15px;
        }
    }
    .bf-member-step-card {
        background: #fff;
        border: 1px solid var(--bf-border);
        border-radius: 14px;
        box-shadow: var(--bf-shadow);
        overflow: hidden;
    }
    .bf-member-step-card1 {
        width: 100%;
        background: #fff;
        border: 1px solid var(--bf-border);
        border-radius: 14px;
        box-shadow: var(--bf-shadow);
        overflow: hidden;
    }
    .bf-booking-page #memberStep .bf-flow-panel-head {
        padding: 20px 26px;
        border: 0;
        border-bottom: 1px solid var(--bf-border);
        border-radius: 0;
        background: transparent;
    }
    .bf-member-step-loading {
        padding: 24px 26px;
        color: var(--bf-muted);
        font-size: 14px;
        font-weight: 600;
    }
    .bf-member-step-content {
        padding: 0;
    }
    /* ── Who is this appointment for? ── */
    #bfMemberChoiceList {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 20px 16px;
    }
    .bf-member-choice {
        position: relative;
        border-radius: 10px;
        background: #f9fafc;
        border: 1.5px solid #e8ebf2;
        transition: border-color .18s, box-shadow .18s, background .18s;
        overflow: hidden;
    }
    .bf-member-choice:not(.bf-member-choice-family) {
        padding-bottom: 0;
        border-bottom: 1.5px solid #e8ebf2;
    }
    .bf-member-choice:has(input[type="radio"]:checked) {
        border-color: var(--bf-accent);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(197,85,27,.08);
    }
    .bf-member-choice label {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0;
        cursor: pointer;
        padding: 14px 16px;
        width: 100%;
        font-size: 14px;
        font-weight: 600;
        color: var(--bf-text);
    }
    .bf-member-choice input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #c8cdd8;
        border-radius: 50%;
        flex-shrink: 0;
        cursor: pointer;
        transition: border-color .15s, background .15s;
        position: relative;
    }
    .bf-member-choice input[type="radio"]:checked {
        border-color: var(--bf-accent);
        background: var(--bf-accent);
        box-shadow: inset 0 0 0 3px #fff;
    }
    .bf-booking-page .bf-member-choice-family {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding-top: 0px !important;
    }
    .bf-family-member-sub {
        padding: 0 16px 16px 46px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .bf-family-member-label {
        font-size: 10px;
        font-weight: 800;
        color: var(--bf-muted);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 0 0 2px;
    }
    .bf-family-member-row {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }
    .bf-family-member-hint {
        font-size: 12px;
        color: var(--bf-muted);
    }
    .bf-booking-page .bf-family-select {
        flex: 0 0 auto;
        width: 400px;
        min-height: 36px;
        border-radius: 7px !important;
        border: 1.5px solid #dde1ea !important;
        background: #fff !important;
        font-size: 13.5px;
        color: var(--bf-text);
    }
    .bf-booking-page .bf-add-family-btn {
        min-height: 36px;
        white-space: nowrap;
        border-radius: 7px !important;
        padding: 7px 16px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    /* ── Additional Person(s) — unified with Who is this for? ── */
    .bf-member-additional-details {
        padding: 0 20px 20px;
    }
    .bf-member-section-head {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        padding-top: 6px;
        color: var(--bf-text);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .4px;
        text-transform: uppercase;
    }
    .bf-member-section-head::before,
    .bf-member-section-head::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e8ebf2;
    }
    .bf-member-note {
        text-align: center;
        padding: 0 0 12px;
        color: var(--bf-muted);
        font-size: 12.5px;
    }
    .bf-booking-page #additioanlPersonsListDiv {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        border: none;
    }
    .bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] > .col-12 {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px !important;
        background: #f9fafc;
        border: 1.5px solid #e8ebf2;
        border-radius: 10px;
        min-height: 52px;
        color: var(--bf-muted);
        font-size: 13px;
        font-weight: 700;
        transition: border-color .15s, background .15s;
    }
    .bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] > .col-12:hover {
        border-color: #c8cdd8;
        background: #f4f6fb;
    }
    .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-btns-"] {
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-btns-"] .btn {
        margin-left: 0 !important;
        min-width: 138px;
        min-height: 34px;
        padding: 6px 14px !important;
        font-size: 12.5px !important;
        font-weight: 600 !important;
        border-radius: 7px !important;
        transition: box-shadow .15s, transform .1s;
    }
    .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-btns-"] .btn:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,.14);
        transform: translateY(-1px);
    }
    .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-details-"] {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
    }
    .bf-booking-page #additioanlPersonsListDiv .additional-customer-details {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-left: 0 !important;
        min-height: 32px;
        max-width: 100%;
        padding: 5px 12px;
        border: 1.5px solid #dde1ea;
        border-radius: 7px;
        background: #fff;
        color: var(--bf-text);
        font-weight: 700;
        font-size: 13px;
        line-height: 1.25;
    }
    .bf-booking-page #additioanlPersonsListDiv .additional-customer-details .badge {
        margin-left: 0 !important;
        border-radius: 999px;
        background: #e7ecf3 !important;
        color: #3f4858 !important;
        font-size: 11px !important;
        font-weight: 700;
        line-height: 1;
        padding: 4px 8px;
    }
    .bf-booking-page #additioanlPersonsListDiv .bf-remove-additional-person {
        width: 30px;
        height: 30px;
        margin-left: 4px;
        border: 1.5px solid #f0c6cd;
        border-radius: 7px;
        background: #fff4f6;
        color: #bd2039 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .15s, border-color .15s;
    }
    .bf-booking-page #additioanlPersonsListDiv .bf-remove-additional-person:hover,
    .bf-booking-page #additioanlPersonsListDiv .bf-remove-additional-person:focus {
        background: #ffe8ed;
        border-color: #df8d9a;
        color: #a9162d !important;
    }
    .bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] > hr {
        display: none;
    }
    .bf-booking-page .bf-additional-person-note {
        margin-top: 10px;
        padding: 11px 14px;
        background: #f7f9fc;
        border-radius: 8px;
        border: 1px solid #e8ebf2;
        color: var(--bf-muted);
        font-size: 12px;
        line-height: 1.65;
    }
    .bf-booking-page .bf-additional-person-note strong {
        color: var(--bf-text);
        font-weight: 700;
    }
    .bf-member-additional-details .row {
        margin-left: 0;
        margin-right: 0;
    }
    .bf-member-forms {
        width: 100%;
        min-height: 118px;
        padding: 0;
        background: #fff;
    }
    .bf-booking-page #formsAgreementsStep .bf-member-step-card1 {
        margin-top: 0;
        background: #fff;
    }
    .bf-booking-page #formsAgreementsStep #dyn-forms-div > .panel {
        margin-bottom: 14px;
        border: 1px solid var(--bf-border);
        border-radius: 8px;
        background: #fff;
        box-shadow: none;
        overflow: hidden;
    }
    .bf-booking-page #formsAgreementsStep #dyn-forms-div > .panel > .panel-heading {
        display: block;
        border-radius: 0 !important;
        background: #f6f8fb !important;
        border-bottom: 1px solid var(--bf-border);
        padding: 16px 20px;
    }
    .bf-booking-page #formsAgreementsStep #dyn-forms-div > .panel > .panel-heading .panel-heading-text {
        color: var(--bf-text) !important;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }
    .bf-booking-page #formsAgreementsStep #dyn-forms-div .step-circle {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--bf-accent);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800;
        flex-shrink: 0;
    }
    .bf-booking-page #formsAgreementsStep #dyn-forms-div .panel-body {
        border: 0;
        border-radius: 0;
        padding: 18px 20px;
        background: #fff;
    }
    .bf-booking-page #formsAgreementsStep #dyn-forms-div .acc-wizard-step {
        display: flex;
        justify-content: flex-end;
        padding: 14px 20px;
        border-top: 1px solid var(--bf-border);
        background: #fff;
    }
    .bf-fa-shell {
        width: 100%;
        padding: 22px 26px 24px;
        background: #fff;
    }
    .bf-fa-section {
        margin-bottom: 26px;
    }
    .bf-fa-section:last-child {
        margin-bottom: 0;
    }
    .bf-fa-section-title {
        margin: 0 0 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--bf-border);
        color: var(--bf-text);
        font-size: 13px;
        font-weight: 800;
    }
    .bf-fa-list {
        display: grid;
        gap: 0;
    }
    .bf-fa-item {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid #eef0f4;
    }
    .bf-fa-item:last-child {
        border-bottom: 0;
    }
    .bf-fa-index {
        color: var(--bf-muted);
        font-size: 13px;
        font-weight: 800;
    }
    .bf-fa-item-name {
        color: var(--bf-text);
        font-size: 13px;
        font-weight: 800;
        line-height: 1.35;
    }
    .bf-fa-status {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        margin-top: 5px;
        padding: 3px 8px;
        border-radius: 999px;
        background: #e8f3ff;
        color: var(--bf-accent);
        font-size: 10px;
        font-weight: 800;
    }
    .bf-fa-action {
        min-width: 110px;
        min-height: 32px;
        border: 1px solid var(--bf-accent);
        border-radius: 7px;
        background: var(--bf-accent);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
    }
    .bf-fa-action:hover,
    .bf-fa-action:focus {
        filter: brightness(0.9);
        color: #fff;
    }
    .bf-fa-skip-action {
        min-width: 64px;
        min-height: 32px;
        margin-left: 8px;
        border: 1px solid #d1d7e0;
        border-radius: 7px;
        background: #fff;
        color: #6e7280;
        font-size: 12px;
        font-weight: 800;
    }
    .bf-fa-skip-action:hover,
    .bf-fa-skip-action:focus {
        border-color: #6e7280;
        color: var(--bf-text);
    }
    .bf-fa-signed-actions {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        white-space: nowrap;
    }
    .bf-fa-signed-label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #078300;
        font-size: 12px;
        font-weight: 800;
    }
    .bf-fa-signed-label .fa {
        font-size: 13px;
    }
    .bf-fa-view {
        border: 0;
        background: transparent;
        color: #bd3f13;
        font-size: 12px;
        font-weight: 800;
        padding: 0;
        text-decoration: underline;
    }
    .bf-fa-view:hover,
    .bf-fa-view:focus {
        color: #8f2c0b;
        background: transparent;
        text-decoration: underline;
    }
    .bf-fa-progress-message {
        margin-top: 20px;
        padding: 13px 16px;
        border: 1px solid #d2d8e4;
        border-radius: 8px;
        background: #eef1f6;
        color: var(--bf-muted);
        font-size: 13px;
    }
    .bf-fa-empty {
        padding: 18px 0;
        color: var(--bf-muted);
        font-size: 13px;
    }
    .bf-fa-hidden-panels {
        display: none;
    }
    .bf-booking-page #afterMemberSelectionDiv {
        display: flex;
        flex: 1 1 auto;
        justify-content: flex-end;
    }
    .bf-booking-page #afterMemberSelectionDiv .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: auto;
        min-width: 132px;
        min-height: 38px;
        border-radius: 7px !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
    }
    #productOptionsModel .modal-dialog {
        width: 700px !important;
        max-width: calc(100vw - 32px) !important;
    }
    #productOptionsModel .bf-option-body {
        padding: 0 16px 24px !important;
        background: #efefef !important;
    }
    #productOptionsModel .bf-option-drawer-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 8px 18px;
    }
    #productOptionsModel .bf-option-eyebrow {
        color: #004fc4;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .09em;
        text-transform: uppercase;
        line-height: 1.2;
        margin-bottom: 5px;
    }
    #productOptionsModel .bf-option-title {
        color: var(--bf-text);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
    }
    #productOptionsModel .bf-option-panel {
        padding: 24px 28px;
        border: 0;
        border-radius: 8px !important;
        background: #fff !important;
        overflow: hidden;
    }
    #productOptionsModel .bf-option-image {
        height: 158px;
        border-radius: 8px;
        background: #efefef;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #bfc0c3;
        margin-bottom: 17px;
        overflow: hidden;
    }
    #productOptionsModel .bf-option-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
    #productOptionsModel .bf-option-image .material-icons {
        font-size: 60px;
    }
    #productOptionsModel .bf-option-desc {
        color: var(--bf-muted);
        font-size: 13px;
        font-weight: 500;
        line-height: 1.55;
        margin-bottom: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    #productOptionsModel .bf-option-section-title {
        color: var(--bf-muted);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .08em;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    #productOptionsModel .bf-option-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    #productOptionsModel .bf-option-choice {
        position: relative;
        min-height: 84px;
        padding: 13px 15px 12px;
        border: 1px solid #cfd5df;
        border-radius: 8px;
        background: #fff;
        color: var(--bf-text);
        cursor: pointer;
        transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    }
    #productOptionsModel .bf-option-choice:hover,
    #productOptionsModel .bf-option-choice.selected {
        border-color: var(--bf-accent);
        background: #f1eef7;
        box-shadow: 0 4px 12px rgba(188, 89, 33, .12);
    }
    #productOptionsModel .bf-option-check {
        display: none;
        position: absolute;
        top: 8px;
        right: 10px;
        color: green;
        font-size: 14px;
        font-weight: 900;
    }
    #productOptionsModel .bf-option-choice.selected .bf-option-check {
        display: block;
    }
    #productOptionsModel .bf-option-name {
        padding-right: 18px;
        color: var(--bf-text);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
    }
    #productOptionsModel .bf-option-lines {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-top: 9px;
    }
    #productOptionsModel .bf-option-lines span {
        position: relative;
        display: block;
        max-width: 100%;
        min-height: 42px;
        padding: 8px 9px 8px 11px;
        border: 1px solid #e3e8f0;
        border-radius: 7px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        color: var(--bf-text);
        box-shadow: 0 1px 2px rgba(21, 27, 38, .04);
    }
    #productOptionsModel .bf-option-lines span:before {
        content: "";
        position: absolute;
        top: 8px;
        bottom: 8px;
        left: 0;
        width: 3px;
        border-radius: 0 4px 4px 0;
        background: #d76d2e;
    }
    #productOptionsModel .bf-option-lines small {
        display: block;
        color: #6e7280;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .08em;
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 4px;
    }
    #productOptionsModel .bf-option-lines b {
        display: block;
        color: var(--bf-text);
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
    #productOptionsModel .bf-option-money {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-top: 9px;
    }
    #productOptionsModel .bf-option-price {
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        padding: 3px 8px;
        border-radius: 999px;
        background: #edf4ff;
        color: #244a73;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
    }
    #productOptionsModel .bf-option-surcharge {
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        padding: 3px 8px;
        border-radius: 999px;
        background: #fff1e8;
        color: var(--bf-accent);
        font-size: 11px;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
    }
    #productOptionsModel .bf-option-stepper {
        display: none;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #d9dee7;
    }
    #productOptionsModel .bf-option-choice.selected .bf-option-stepper {
        display: flex;
    }
    #productOptionsModel .bf-option-stepper button {
        width: 26px;
        height: 26px;
        border: 0 !important;
        border-radius: 6px;
        background: #fff;
        color: var(--bf-text);
        font-size: 15px;
        font-weight: 900;
        box-shadow: inset 0 0 0 1px #d5dbe5;
    }
    #productOptionsModel .bf-option-stepper button:disabled {
        color: #aeb4bf;
        cursor: not-allowed;
        opacity: .62;
    }
    #productOptionsModel .bf-option-stepper[data-tooltip] {
        position: relative;
    }
    #productOptionsModel .bf-option-stepper[data-tooltip]:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: calc(100% + 7px);
        left: 50%;
        transform: translateX(-50%);
        background: #2c3140;
        color: #fff;
        font-size: 11px;
        font-weight: 500;
        padding: 5px 10px;
        border-radius: 6px;
        white-space: nowrap;
        pointer-events: none;
        z-index: 20;
        box-shadow: 0 2px 8px rgba(0,0,0,.18);
    }
    #productOptionsModel .bf-option-stepper[data-tooltip]:hover::before {
        content: '';
        position: absolute;
        bottom: calc(100% + 3px);
        left: 50%;
        transform: translateX(-50%);
        border: 4px solid transparent;
        border-top-color: #2c3140;
        pointer-events: none;
        z-index: 20;
    }
    #productOptionsModel .bf-option-stepper span {
        min-width: 18px;
        text-align: center;
        color: var(--bf-text);
        font-size: 13px;
        font-weight: 500;
    }
    #productOptionsModel .bf-option-hidden {
        display: none !important;
    }
    #productOptionsModel .bf-option-footer {
        padding: 24px 8px 0;
    }
    #productOptionsModel .bf-option-confirm {
        width: 100%;
        min-height: 38px;
        border: 0 !important;
        border-radius: 7px !important;
        background: #c65a1f !important;
        color: #fff !important;
        padding: 9px 14px !important;
        font-size: 14px !important;
        font-weight: 900 !important;
        line-height: 1.2 !important;
    }
    .bf-addon-stock-message {
        color: #bd2039;
        font-size: 12px;
        font-weight: 900;
    }
    #productOptionsModel #stockSpan {
        display: block;
        margin-bottom: 8px;
        color: #bd2039 !important;
        font-size: 13px;
        font-weight: 700;
    }
    .bf-booking-page #memberStep .bf-flow-actions,
    .bf-booking-page #formsAgreementsStep .bf-flow-actions {
        margin-top: 10px !important;
    }
    .bf-booking-page #formsAgreementsStep .bf-flow-actions > .btn-default {
        flex: 0 0 132px;
    }
    .bf-member-actions {
        padding: 18px 26px 24px;
        justify-content: flex-end;
    }
    .bf-booking-page #memberStep #accordion-demo > .panel {
        display: block !important;
    }
    #bfFormDrawerModal .modal-dialog {
        max-width: 1040px !important;
        width: calc(100vw - 84px) !important;
    }
    #bfFormDrawerModal .modal-content {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible;
    }
    #bfFormDrawerModal .modal-body {
        height: auto !important;
        min-height: 0 !important;
        max-height: calc(100vh - 52px);
        overflow: hidden;
        padding: 12px 14px 14px !important;
        display: flex;
        flex-direction: column;
    }
    #bfFormDrawerModal .bf-document-header {
        display: flex;
        align-items: center;
        gap: 14px;
        min-height: 48px;
        padding: 4px 0;
    }
    #bfFormDrawerModal .bf-document-logo {
        flex: 0 0 auto;
        max-width: 100px;
        max-height: 40px;
    }
    #bfFormDrawerModal .bf-document-logo img {
        display: block;
        max-width: 100px;
        max-height: 40px;
        object-fit: contain;
    }
    #bfFormDrawerModal .bf-document-logo-fallback {
        color: var(--bf-accent);
        font-size: 16px;
        font-weight: 900;
        line-height: 1.05;
        text-transform: uppercase;
    }
    #bfFormDrawerModal .bf-document-heading {
        min-width: 0;
        flex: 1;
    }
    #bfFormDrawerModal #bf-drawer-type {
        color: var(--bf-accent);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .10em;
        line-height: 1;
        text-transform: uppercase;
        margin-bottom: 4px;
    }
    #bfFormDrawerModal #bf-drawer-title {
        color: var(--bf-text);
        font-size: 15px;
        font-weight: 800;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }
    .bf-drawer-content-wrap {
        flex: 0 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: visible;
    }
    #bfFormDrawerModal #bf-drawer-body {
        max-width: 100%;
        flex: 0 1 auto;
        min-height: 0;
        max-height: calc(100vh - 230px);
        overflow-y: auto;
        padding: 20px 20px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--bf-text);
        font-size: 14px;
        line-height: 1.7;
    }
    #bfFormDrawerModal #bf-drawer-body [id^="formDynamicSelect"],
    #bfFormDrawerModal #bf-drawer-body #DynamicFormStep,
    #bfFormDrawerModal #bf-drawer-body .panel,
    #bfFormDrawerModal #bf-drawer-body .panel-default,
    #bfFormDrawerModal #bf-drawer-body .panel-body,
    #bfFormDrawerModal #bf-drawer-body .acc-wizard-step,
    #bfFormDrawerModal #bf-drawer-body form,
    #bfFormDrawerModal #bf-drawer-body .row,
    #bfFormDrawerModal #bf-drawer-body .col-xs-12,
    #bfFormDrawerModal #bf-drawer-body .col-sm-12,
    #bfFormDrawerModal #bf-drawer-body .col-12 {
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body #DynamicFormStep,
    #bfFormDrawerModal #bf-drawer-body .panel,
    #bfFormDrawerModal #bf-drawer-body .panel-default,
    #bfFormDrawerModal #bf-drawer-body .panel-body,
    #bfFormDrawerModal #bf-drawer-body .form-group,
    #bfFormDrawerModal #bf-drawer-body .form-horizontal,
    #bfFormDrawerModal #bf-drawer-body .form-content,
    #bfFormDrawerModal #bf-drawer-body .well,
    #bfFormDrawerModal #bf-drawer-body fieldset,
    #bfFormDrawerModal #bf-drawer-body legend,
    #bfFormDrawerModal #bf-drawer-body table,
    #bfFormDrawerModal #bf-drawer-body th,
    #bfFormDrawerModal #bf-drawer-body td {
        border: 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body [id^="page-content"].form-content {
        padding: 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body [id^="formDynamicSelect"],
    #bfFormDrawerModal #bf-drawer-body #DynamicFormStep,
    #bfFormDrawerModal #bf-drawer-body .form-content,
    #bfFormDrawerModal #bf-drawer-body .panel-body {
        min-height: 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body *:not(input):not(textarea):not(select):not(button):not(.btn) {
        background: transparent !important;
        background-color: transparent !important;
    }
    #bfFormDrawerModal #bf-drawer-body .acc-wizard-step,
    #bfFormDrawerModal #bf-drawer-body .page-header,
    #bfFormDrawerModal #bf-drawer-body button[onclick^="backToForms"],
    #bfFormDrawerModal #bf-drawer-body .btn[onclick^="backToForms"] {
        display: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body input[type="text"],
    #bfFormDrawerModal #bf-drawer-body input[type="email"],
    #bfFormDrawerModal #bf-drawer-body input[type="tel"],
    #bfFormDrawerModal #bf-drawer-body input[type="date"],
    #bfFormDrawerModal #bf-drawer-body input[type="number"],
    #bfFormDrawerModal #bf-drawer-body input[type="password"],
    #bfFormDrawerModal #bf-drawer-body select,
    #bfFormDrawerModal #bf-drawer-body textarea,
    #bfFormDrawerModal #bf-drawer-body .form-control {
        min-height: 46px;
        border: 1px solid #d0d5dd;
        border-radius: 8px;
        background: #fff !important;
        background-color: #fff !important;
        box-shadow: none;
        font-size: 14px;
        color: var(--bf-text);
        padding: 10px 14px;
    }
    #bfFormDrawerModal #bf-drawer-body textarea.form-control {
        min-height: 100px;
    }
    #bfFormDrawerModal #bf-drawer-body input[type="text"]:focus,
    #bfFormDrawerModal #bf-drawer-body input[type="email"]:focus,
    #bfFormDrawerModal #bf-drawer-body input[type="tel"]:focus,
    #bfFormDrawerModal #bf-drawer-body input[type="date"]:focus,
    #bfFormDrawerModal #bf-drawer-body input[type="number"]:focus,
    #bfFormDrawerModal #bf-drawer-body select:focus,
    #bfFormDrawerModal #bf-drawer-body textarea:focus,
    #bfFormDrawerModal #bf-drawer-body .form-control:focus {
        border-color: var(--bf-accent) !important;
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(197, 85, 27, .10) !important;
    }
    #bfFormDrawerModal #bf-drawer-body label[for] {
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: .07em !important;
        color: var(--muted) !important;
        text-transform: uppercase !important;
        display: block !important;
        margin-bottom: 6px !important;
    }
    #bfFormDrawerModal #bf-drawer-body label {
        letter-spacing: .07em !important;
        color: var(--muted) !important;
        margin-bottom: 6px !important;
    }
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> .radio) {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 16px !important;
        align-items: stretch !important;
    }
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> .checkbox) {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 16px !important;
        row-gap: 8px !important;
        align-items: stretch !important;
    }
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> label > input[type="checkbox"]) {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 16px !important;
        row-gap: 8px !important;
        align-items: stretch !important;
    }
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> .radio) > label:first-child,
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> .radio) > legend,
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> .radio) > p:first-child,
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> .checkbox) > label:first-child,
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> .checkbox) > legend,
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> .checkbox) > p:first-child,
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> label > input[type="checkbox"]) > label:first-child:not(:has(input[type="checkbox"])),
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> label > input[type="checkbox"]) > legend,
    #bfFormDrawerModal #bf-drawer-body .form-group:has(> label > input[type="checkbox"]) > p:first-child {
        grid-column: 1 / -1 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .radio,
    #bfFormDrawerModal #bf-drawer-body .checkbox {
        height: 100% !important;
        padding: 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .radio {
        margin: 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .checkbox {
        margin: 0 0 12px !important;
    }
    #bfFormDrawerModal #bf-drawer-body [class^="checkbox"],
    #bfFormDrawerModal #bf-drawer-body [class*=" checkbox"] {
        margin-bottom: 12px !important;
    }
    #bfFormDrawerModal #bf-drawer-body .radio label,
    #bfFormDrawerModal #bf-drawer-body label.radio {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        margin-bottom: 8px !important;
        padding: 10px 13px !important;
        border: 1px solid var(--border, #d0d5dd) !important;
        border-radius: 6px !important;
        background: #fff !important;
        color: #1e2028 !important;
        font-size: 13.5px !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
        line-height: 1.35 !important;
        text-transform: none !important;
        box-shadow: none !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
        transition: border-color .12s !important;
    }
    #bfFormDrawerModal #bf-drawer-body .checkbox label,
    #bfFormDrawerModal #bf-drawer-body label.checkbox,
    #bfFormDrawerModal #bf-drawer-body label:has(> input[type="checkbox"]) {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 10px 13px !important;
        border: 1px solid var(--border, #d0d5dd) !important;
        border-radius: 6px !important;
        background: #fff !important;
        color: #1e2028 !important;
        font-size: 13.5px !important;
        font-weight: 400 !important;
        line-height: 1.35 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        box-shadow: none !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
        transition: border-color .12s !important;
    }
    #bfFormDrawerModal #bf-drawer-body .radio label:hover,
    #bfFormDrawerModal #bf-drawer-body label.radio:hover {
        border-color: var(--bf-accent) !important;
    }
    #bfFormDrawerModal #bf-drawer-body .checkbox label:hover,
    #bfFormDrawerModal #bf-drawer-body label.checkbox:hover,
    #bfFormDrawerModal #bf-drawer-body label:has(> input[type="checkbox"]):hover {
        border-color: var(--bf-accent) !important;
    }
    #bfFormDrawerModal #bf-drawer-body input[type="radio"],
    #bfFormDrawerModal #bf-drawer-body input[type="checkbox"] {
        -webkit-appearance: none !important;
        appearance: none !important;
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        border: 2px solid #7c818a !important;
        border-radius: 50% !important;
        background: #fff !important;
        background-color: #fff !important;
        box-shadow: none !important;
        cursor: pointer !important;
        vertical-align: middle !important;
    }
    #bfFormDrawerModal #bf-drawer-body input[type="radio"] {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;
    }
    #bfFormDrawerModal #bf-drawer-body input[type="checkbox"] {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;
        border-radius: 4px !important;
    }
    #bfFormDrawerModal #bf-drawer-body input[type="radio"]:checked {
        border-color: var(--bf-accent) !important;
        background-color: #fff !important;
        background-image: radial-gradient(circle, var(--bf-accent) 0 42%, transparent 45%) !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    #bfFormDrawerModal #bf-drawer-body input[type="checkbox"]:checked {
        border-color: #fff !important;
        background-color: #fff !important;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 4.5L6.6 10.9L3 7.3' stroke='%231e2028' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-size: 16px 16px !important;
    }
    #bfFormDrawerModal #bf-drawer-body .checkbox:has(input[type="checkbox"]:checked) label,
    #bfFormDrawerModal #bf-drawer-body .checkbox label:has(input[type="checkbox"]:checked),
    #bfFormDrawerModal #bf-drawer-body label.checkbox:has(input[type="checkbox"]:checked),
    #bfFormDrawerModal #bf-drawer-body label:has(> input[type="checkbox"]:checked),
    #bfFormDrawerModal #bf-drawer-body .checkbox label.bf-choice-checked,
    #bfFormDrawerModal #bf-drawer-body label.checkbox.bf-choice-checked {
        border-color: var(--bf-accent) !important;
        box-shadow: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .radio:has(input[type="radio"]:checked) label,
    #bfFormDrawerModal #bf-drawer-body label.radio:has(input[type="radio"]:checked) {
        border-color: var(--bf-accent) !important;
        box-shadow: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .checkbox:has(input[type="checkbox"]:checked) label,
    #bfFormDrawerModal #bf-drawer-body .checkbox label:has(input[type="checkbox"]:checked),
    #bfFormDrawerModal #bf-drawer-body label.checkbox:has(input[type="checkbox"]:checked),
    #bfFormDrawerModal #bf-drawer-body label:has(> input[type="checkbox"]:checked),
    #bfFormDrawerModal #bf-drawer-body .checkbox label.bf-choice-checked,
    #bfFormDrawerModal #bf-drawer-body label.checkbox.bf-choice-checked {
        background: var(--bf-accent) !important;
        color: #fff !important;
        font-weight: 800 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-fields {
        display: block !important;
        width: 100% !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-fields:has(> .bf-inline-field > input[type="checkbox"]) {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 16px !important;
        row-gap: 8px !important;
        align-items: stretch !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field {
        display: inline-flex !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 6px !important;
        margin: 0 18px 12px 0 !important;
        max-width: calc(100% - 18px) !important;
        vertical-align: middle !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field:has(> input[type="checkbox"]) {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        min-height: 0 !important;
        margin: 0 0 12px !important;
        padding: 10px 13px !important;
        border: 1px solid var(--border, #d0d5dd) !important;
        border-radius: 6px !important;
        background: #fff !important;
        color: #1e2028 !important;
        font-size: 13.5px !important;
        font-weight: 400 !important;
        line-height: 1.35 !important;
        box-shadow: none !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
        transition: border-color .12s !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field:has(> input[type="checkbox"]):hover {
        border-color: var(--bf-accent) !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field:has(> input[type="checkbox"]:checked),
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field.bf-choice-checked {
        border-color: var(--bf-accent) !important;
        background: var(--bf-accent) !important;
        color: #fff !important;
        font-weight: 800 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field-title {
        color: var(--muted) !important;
        display: inline-block !important;
        font-weight: 700 !important;
        letter-spacing: .06em !important;
        line-height: 1.35 !important;
        margin: 0 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field > input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field > select,
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field > textarea {
        width: auto !important;
        min-width: 150px !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field > label {
        display: inline-flex !important;
        align-items: center !important;
        color: var(--bf-text) !important;
        letter-spacing: 0 !important;
        line-height: 1.45 !important;
        margin: 0 10px 0 0 !important;
        text-transform: none !important;
        white-space: nowrap !important;
    }
    #bfFormDrawerModal #bf-drawer-body .bf-inline-field:has(> input[type="checkbox"]) > label {
        color: inherit !important;
        display: inline-flex !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
        margin: 0 !important;
        white-space: normal !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group {
        display: flex !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 680px;
        border-collapse: separate !important;
        border-radius: 8px !important;
        overflow: visible !important;
        transition: box-shadow .12s, border-color .12s !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group > .form-control,
    #bfFormDrawerModal #bf-drawer-body .input-group > input,
    #bfFormDrawerModal #bf-drawer-body .input-group > select {
        flex: 1 1 auto !important;
        width: 1% !important;
        min-width: 0 !important;
        height: 44px !important;
        min-height: 44px !important;
        border-right: 0 !important;
        border-radius: 8px 0 0 8px !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group-addon,
    #bfFormDrawerModal #bf-drawer-body .input-group-text {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 52px !important;
        min-width: 52px !important;
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 !important;
        border: 1px solid #d0d5dd !important;
        border-left: 0 !important;
        border-radius: 0 8px 8px 0 !important;
        background: #fff !important;
        color: #1e2028 !important;
        box-shadow: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group-addon i,
    #bfFormDrawerModal #bf-drawer-body .input-group-text i,
    #bfFormDrawerModal #bf-drawer-body .input-group-addon .fa,
    #bfFormDrawerModal #bf-drawer-body .input-group-text .fa {
        margin: 0 !important;
        color: inherit !important;
        font-size: 18px !important;
        line-height: 1 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-focused > .form-control,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-focused > input,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-focused > select,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-focused > .input-group-addon,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-focused > .input-group-text {
        border-color: var(--bf-accent) !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-focused,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete {
        box-shadow: 0 0 0 3px rgba(20, 83, 148, .14) !important;
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--bf-accent) 18%, transparent) !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group > .form-control:focus,
    #bfFormDrawerModal #bf-drawer-body .input-group > input:focus,
    #bfFormDrawerModal #bf-drawer-body .input-group > select:focus {
        box-shadow: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-focused > .input-group-addon,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-focused > .input-group-text {
        box-shadow: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .form-control,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > input,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > select {
        border-color: var(--bf-accent) !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .input-group-addon,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .input-group-text {
        position: relative !important;
        border-color: var(--bf-accent) !important;
        background: var(--bf-accent) !important;
        color: #fff !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .input-group-addon i,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .input-group-text i,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .input-group-addon .fa,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .input-group-text .fa {
        display: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .input-group-addon:after,
    #bfFormDrawerModal #bf-drawer-body .input-group.bf-input-complete > .input-group-text:after {
        content: "\2713";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-weight: 900;
        line-height: 1;
    }
    .datepicker,
    .datepicker-dropdown,
    .bootstrap-datetimepicker-widget,
    .tempus-dominus-widget,
    .bootstrap-timepicker-widget,
    .ui-datepicker,
    .xdsoft_datetimepicker {
        z-index: 100000 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigPad {
        margin: 22px 0 18px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigPad .typeItDesc,
    #bfFormDrawerModal #bf-drawer-body .sigPad .drawItDesc,
    #bfFormDrawerModal #bf-drawer-body .sigPad > p.typeItDesc,
    #bfFormDrawerModal #bf-drawer-body .sigPad > p.drawItDesc {
        display: block !important;
        margin: 14px 0 10px !important;
        color: var(--muted) !important;
        font-size: 13px !important;
        font-family: inherit !important;
        font-style: normal !important;
        font-weight: 600 !important;
        letter-spacing: .09em !important;
        line-height: 1.3 !important;
        text-transform: uppercase !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigPad label[for="name"],
    #bfFormDrawerModal #bf-drawer-body .sigPad label[for^="name"],
    #bfFormDrawerModal #bf-drawer-body .sigPad > label:first-child {
        font-family: inherit !important;
        font-style: normal !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: .07em !important;
        line-height: 1.35 !important;
        text-transform: uppercase !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigPad .drawItDesc,
    #bfFormDrawerModal #bf-drawer-body .sigPad > p.drawItDesc {
        display: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigPad .typeItDesc,
    #bfFormDrawerModal #bf-drawer-body .sigPad > p.typeItDesc {
        border: 0 !important;
        box-shadow: none !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigPad hr,
    #bfFormDrawerModal #bf-drawer-body .sigPad .typeItDesc:before,
    #bfFormDrawerModal #bf-drawer-body .sigPad .typeItDesc:after,
    #bfFormDrawerModal #bf-drawer-body .sigPad > p.typeItDesc:before,
    #bfFormDrawerModal #bf-drawer-body .sigPad > p.typeItDesc:after {
        display: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav {
        display: inline-flex !important;
        align-items: stretch !important;
        position: relative !important;
        gap: 0 !important;
        min-height: 30px !important;
        margin: 0 0 18px !important;
        padding: 0 !important;
        border: 1px solid var(--border, #d0d5dd) !important;
        border-radius: 7px !important;
        overflow: visible !important;
        background: #fff !important;
        list-style: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav li {
        display: flex !important;
        align-items: stretch !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: 30px !important;
        list-style: none !important;
        border: 0 !important;
        background: transparent !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav li.clearButton {
        display: none;
        position: static !important;
        min-height: 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav li.typeIt,
    #bfFormDrawerModal #bf-drawer-body .sigNav li.drawIt {
        position: static !important;
        overflow: visible !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 78px !important;
        height: 30px !important;
        min-height: 30px !important;
        padding: 0 16px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #fff !important;
        color: var(--muted) !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        letter-spacing: 0 !important;
        line-height: 30px !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav li.typeIt a {
        border-radius: 6px 0 0 6px !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav li.drawIt a {
        border-radius: 0 6px 6px 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav li.typeIt a.current {
        border-radius: 6px 0 0 6px !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav li.drawIt a.current {
        border-radius: 0 6px 6px 0 !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav li.clearButton a {
        min-width: 0 !important;
        height: 30px !important;
        min-height: 30px !important;
        padding: 0 12px !important;
        background: #fff !important;
        color: var(--bf-accent) !important;
        border: 1px solid var(--border, #d0d5dd) !important;
        border-radius: 6px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 30px !important;
        text-decoration: none !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigPad > li.clearButton,
    #bfFormDrawerModal #bf-drawer-body .sigPad > .clearButton {
        clear: both !important;
        list-style: none !important;
        margin: 8px 0 0 !important;
        padding: 0 !important;
        text-align: right !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sigNav a.current,
    #bfFormDrawerModal #bf-drawer-body .sigNav .typeIt a.current,
    #bfFormDrawerModal #bf-drawer-body .sigNav .drawIt a.current {
        background: var(--bf-accent) !important;
        color: #fff !important;
    }
    #bfFormDrawerModal #bf-drawer-body .sig,
    #bfFormDrawerModal #bf-drawer-body .sigWrapper {
        display: block !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid var(--border, #d0d5dd) !important;
        border-radius: 8px !important;
        background: #fff !important;
        overflow: hidden !important;
        box-shadow: none !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    #bfFormDrawerModal #bf-drawer-body .sigWrapper canvas.pad {
        border: 0 !important;
        background: transparent !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    #bfFormDrawerModal #bf-drawer-body .sigWrapper .typed {
        top: 0 !important;
        left: 0 !important;
        max-width: 100% !important;
        padding: 18px 22px !important;
        color: var(--bf-accent) !important;
        background: transparent !important;
        box-sizing: border-box !important;
        line-height: 50px !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
    #bfFormDrawerModal #bf-drawer-body hr {
        border: 0 !important;
        margin: 24px 0;
    }
    #bfFormDrawerModal #bf-drawer-body h1,
    #bfFormDrawerModal #bf-drawer-body h2 {
        color: var(--bf-text);
        font-weight: 900;
        font-size: 14px;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin: 0 0 4px;
        padding-bottom: 0;
    }
    #bfFormDrawerModal #bf-drawer-body h3,
    #bfFormDrawerModal #bf-drawer-body h4,
    #bfFormDrawerModal #bf-drawer-body h5 {
        color: var(--bf-text);
        font-weight: 800;
        font-size: 13px;
        letter-spacing: .05em;
        text-transform: uppercase;
        margin: 0 0 4px;
    }
    #bfFormDrawerModal #bf-drawer-body h1 + p,
    #bfFormDrawerModal #bf-drawer-body h2 + p,
    #bfFormDrawerModal #bf-drawer-body h3 + p {
        color: var(--bf-muted);
        font-size: 13px;
        font-weight: 400;
        margin-bottom: 18px;
    }
    #bfFormDrawerModal #bf-drawer-body .form-group {
        margin-bottom: 20px !important;
    }
    .bf-drawer-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        min-height: auto;
        padding: 12px 20px;
        background: transparent;
        border-top: 1px solid #e8ebf2;
        box-shadow: none;
        border-radius: 0 0 10px 10px;
        margin: 0;
    }
    .bf-drawer-secondary-actions {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    #bfFormDrawerModal .bf-drawer-cancel,
    #bfFormDrawerModal .bf-drawer-reset,
    #bfFormDrawerModal .bf-drawer-sign {
        min-height: 44px !important;
        border-radius: 8px !important;
        padding: 0 22px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        cursor: pointer !important;
        box-shadow: none !important;
        appearance: none !important;
        -webkit-appearance: none !important;
    }
    #bfFormDrawerModal .bf-drawer-cancel {
        border: 1px solid #d2d6df !important;
        background: #fff !important;
        color: var(--bf-text) !important;
    }
    #bfFormDrawerModal .bf-drawer-cancel:hover,
    #bfFormDrawerModal .bf-drawer-cancel:focus {
        border-color: #98a2b3 !important;
        background: #f9fafb !important;
    }
    #bfFormDrawerModal .bf-drawer-reset {
        border: 1px solid #f2b8a2 !important;
        background: #fff7ed !important;
        color: #c2410c !important;
    }
    #bfFormDrawerModal .bf-drawer-reset .material-icons {
        color: #c2410c !important;
    }
    #bfFormDrawerModal .bf-drawer-reset:hover,
    #bfFormDrawerModal .bf-drawer-reset:focus {
        border-color: #ea580c !important;
        background: #ffedd5 !important;
        color: #9a3412 !important;
    }
    #bfFormDrawerModal .bf-drawer-reset:hover .material-icons,
    #bfFormDrawerModal .bf-drawer-reset:focus .material-icons {
        color: #9a3412 !important;
    }
    #bfFormDrawerModal .bf-drawer-sign {
        border: 0 !important;
        background: #15803d !important;
        color: #fff !important;
        min-width: 160px !important;
        font-weight: 800 !important;
    }
    #bfFormDrawerModal .bf-drawer-sign:hover,
    #bfFormDrawerModal .bf-drawer-sign:focus {
        background: #166534 !important;
    }
    .bf-location-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(252px, 252px));
        gap: 18px;
        justify-content: flex-start;
        padding: 24px 24px 24px;
        
    }
    .bf-location-card,
    .bf-franchise-location-card {
        position: relative;
        min-height: 132px;
        border: 2px solid var(--bf-border);
        background: #eff0f4;
        border-radius: 10px;
        padding: 18px;
        width: 100%;
        max-width: 320px;
        cursor: pointer;
        transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    }
    .bf-location-card:hover,
    .bf-location-card.selected,
    .bf-franchise-location-card:hover,
    .bf-franchise-location-card.selected {
        border-color: var(--bf-accent);
        background: #e8e6f0;
        box-shadow: 0 4px 12px rgba(188, 89, 33, .12);
    }
    .bf-location-check {
        display: none;
        position: absolute;
        top: 18px;
        right: 20px;
        color: green;
        font-size: 18px;
        font-weight: 900;
    }
    .bf-location-card.selected .bf-location-check,
    .bf-franchise-location-card.selected .bf-location-check {
        display: block;
    }
    .bf-location-name {
        color: var(--bf-text);
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 9px;
        padding-right: 24px;
    }
    .bf-location-provider {
        color: var(--bf-accent);
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
    }
    .bf-location-address {
        color: var(--bf-muted);
        font-size: 12px;
        line-height: 1.45;
        /* min-height: 40px; */
    }
    .bf-booking-page #form-locationSelect {
        display: none;
    }
    .bf-provider-list {
        padding: 24px 24px 10px;
    }
    .bf-provider-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
        /* min-height: 92px; */
        border: 2px solid var(--bf-border);
        background: #eff0f4;
        border-radius: 10px;
        padding: 12px;
        margin-bottom: 14px;
        cursor: pointer;
        transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    }
    .bf-provider-card:hover,
    .bf-provider-card.selected {
        border-color: var(--bf-accent);
        background: #e8e6f0;
        box-shadow: 0 4px 12px rgba(188, 89, 33, .12);
    }
    .bf-provider-avatar {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        border: 2px solid var(--bf-border);
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 58px;
        overflow: hidden;
        color: #8d92a0;
    }
    .bf-provider-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .bf-provider-name {
        color: var(--bf-text);
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 4px;
    }
    .bf-provider-meta {
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 500;
    }
    .bf-provider-card.selected:after {
        content: "\2713";
        position: absolute;
        right: 14px;
        color: green;
        font-size: 18px;
        font-weight: 900;
        line-height: 1;
    }
    .bf-provider-source,
    .bf-provider-hidden {
        display: none !important;
    }
    .bf-slot-layout #schedule-details > .row {
        display: grid;
        grid-template-columns: 380px minmax(0, 1fr);
        gap: 28px;
        align-items: stretch;
        padding: 26px !important;
        margin: 0;
    }
    .bf-slot-layout #schedule-details > .row > .col-sm-3,
    .bf-slot-layout #schedule-details > .row > .col-sm-9 {
        width: auto;
        max-width: none;
        padding: 0 !important;
    }
    .bf-slot-layout #schedule-details > .row > .col-sm-9 > .col-xs-12.row.mb-3 {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 12px 0 !important;
        padding: 0;
    }
    .bf-slot-layout #schedule-details > .row > .col-sm-9 > .col-xs-12.row.mb-3 .text-center {
        flex: 0 0 auto;
        width: auto;
        padding: 0 !important;
        text-align: left !important;
        font-size: 14px;
        color: var(--bf-muted);
        white-space: nowrap;
    }
    .bf-slot-layout #schedule-details > .row > .col-sm-9 > .col-xs-12.row.mb-3 .col-sm-9 {
        flex: 1 1 auto;
        width: auto;
        padding: 0 !important;
    }
    .bf-slot-layout #timezoneId {
        min-height: 38px;
        border: 1px solid var(--bf-border);
        border-radius: 8px;
        font-size: 14px;
    }
    .bf-slot-layout #schedule-details > .row > .col-sm-3 {
        border: 1px solid var(--bf-border);
        border-radius: 14px;
        overflow: hidden;
        align-self: stretch;
        height: var(--bf-picker-height);
        min-height: var(--bf-picker-height);
    }
    .bf-slot-layout #schedule-details > .row > .col-sm-3:before {
        content: none;
    }
    .bf-slot-layout #schedule-details > .row > .col-sm-3:after {
        content: none;
    }
    .bf-slot-layout #datepicker {
        display: none;
    }
    .bf-calendar-service {
        height: 100%;
        padding: 16px;
        display: flex;
        flex-direction: column;
    }
    .bf-slot-restriction-note {
        display: none;
        margin: 0px 26px 26px 26px;
        padding: 12px 16px;
        background: #f7f9fc;
        border-radius: 8px;
        border: 1px solid #e8ebf2;
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 600;
        line-height: 1.65;
        box-shadow: none;
        box-sizing: border-box;
        width: auto;
        clear: both;
    }
    .bf-slot-restriction-note:empty {
        display: none;
    }
    .bf-slot-restriction-note strong {
        color: var(--bf-text);
        font-weight: 700;
    }
    .bf-calendar-top {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 0 10px;
    }
    .bf-calendar-title {
        margin-right: auto;
        color: var(--bf-text);
        font-size: 18px;
        font-weight: 800;
        line-height: 1.1;
    }
    .bf-calendar-live {
        margin-left: auto;
        color: green;
        font-size: 14px;
        font-weight: 800;
        white-space: nowrap;
    }
    .bf-calendar-break {
        /* flex-basis: 100%;
        height: 4px; */
    }
    .bf-calendar-live:before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        margin-right: 10px;
        border-radius: 50%;
        background: green;
    }
    .bf-calendar-select,
    .bf-calendar-nav {
        height: 36px;
        border: 2px solid var(--bf-border);
        border-radius: 8px;
        background: #eef1f6;
        color: var(--bf-text);
        font-size: 14px;
        font-weight: 500;
    }
    .bf-calendar-select {
        min-width: 75px;
        padding: 0 10px;
    }
    .bf-calendar-nav {
        width: 36px;
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 800;
        line-height: 1;
    }
    .bf-calendar-nav + .bf-calendar-nav {
        margin-left: 0;
    }
    .bf-calendar-legend,
    .bf-calendar-week,
    .bf-calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }
    .bf-calendar-legend {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 0px 12px;
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 500;
    }
    .bf-calendar-key {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        flex: 1 1 0;
        justify-content: center;
    }
    .bf-calendar-key:before {
        content: "";
        width: 14px;
        height: 14px;
        border-radius: 4px;
        border: 2px solid transparent;
    }
    .bf-calendar-key.available:before {
        background: green;
    }
    .bf-calendar-key.selected:before {
        background: var(--bf-accent);
    }
    .bf-calendar-key.unavailable:before {
        background: #eef1f6;
        border-color: var(--bf-border);
    }
    .bf-calendar-key.holiday:before {
        background: #fde8e8;
        border-color: #f5a4a4;
    }
    .bf-calendar-week {
        margin: 0 0 10px;
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 600;
        text-align: center;
    }
    .bf-calendar-day {
        min-height: 42px;
        border: 1px solid transparent;
        border-radius: 8px;
        background: #eef1f6;
        color: var(--bf-muted);
        font-size: 14px;
        font-weight: 800;
    }
    .bf-calendar-day.outside {
        opacity: .45;
    }
    .bf-calendar-day.available {
        background: green;
        color: #fff;
        cursor: pointer;
    }
    .bf-calendar-day.holiday {
        background: #fde8e8;
        color: #ef4444;
    }
    .bf-calendar-day.booked {
        background: #eef1f6;
        color: var(--bf-muted);
        text-decoration: line-through;
    }
    .bf-calendar-day.selected {
        background: var(--bf-accent);
        color: #fff;
        border-color: var(--bf-accent);
    }
    .bf-calendar-note {
        margin: 10px -20px 0;
        padding: 14px 20px 6px;
        border-top: 1px solid var(--bf-border);
        color: var(--bf-accent);
        font-size: 14px;
        font-weight: 800;
    }
    .bf-slot-layout #slotsDiv > .row {
        display: grid;
        grid-template-columns: repeat(3, minmax(190px, 1fr));
        gap: 18px;
        margin: 0;
    }
    .bf-slot-range-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin: 0 0 14px;
    }
    .bf-slot-range-btn {
        min-height: 34px;
        padding: 0 14px;
        border: 1px solid var(--bf-border);
        border-radius: 8px;
        background: #fff;
        color: var(--bf-muted);
        font-size: 13px;
        font-weight: 700;
    }
    .bf-slot-range-btn:hover,
    .bf-slot-range-btn:focus {
        border-color: var(--bf-accent);
        color: var(--bf-accent);
    }
    .bf-slot-layout #slotsDiv .app-col {
        width: auto;
        max-width: none;
        height: var(--bf-slot-height);
        min-height: var(--bf-slot-height);
        padding: 0 0 0px !important;
        border: 1px solid var(--bf-border);
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #fff;
        box-shadow: var(--bf-shadow);
    }
    .bf-slot-layout #slotsDiv .app-col.hidden-xs,
    .bf-slot-layout #slotsDiv .app-col.bf-slot-day-hidden,
    .bf-slot-layout #slotsDiv .visible-xs {
        display: none !important;
    }
    .bf-slot-layout #slotsDiv .app-col h4 {
        margin: 0px !important;
        padding: 12px 12px !important;
        border-bottom: 1px solid var(--bf-border) !important;
        background: #eff0f4;
        color: var(--bf-text);
        font-size: 14px !important;
        font-weight: 800 !important;
        text-transform: uppercase;
        flex: 0 0 auto;
    }
    .bf-slot-scroll-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 18px;
        padding-top: 5px;
    }
    .bf-slot-layout .slot-buttons {
        width: calc(33.333% - 17px);
        min-width: 80px;
        margin: 0 0 10px 10px !important;
        padding: 8px 2px !important;
        border: 1px solid var(--bf-border) !important;
        border-radius: 8px !important;
        background: #eef1f6 !important;
        color: var(--bf-text) !important;
        font-size: 11px !important;
        font-weight: 500 !important;
    }
    .bf-slot-layout .slot-buttons:hover,
    .bf-slot-layout .slot-buttons:focus {
        border-color: var(--bf-accent) !important;
        color: var(--bf-accent) !important;
        font-weight: 800 !important;
        box-shadow: 0 0 0 1px var(--bf-accent);
    }
    .bf-slot-layout .slot-buttons.btn-success {
        background: var(--bf-accent) !important;
        border-color: var(--bf-accent) !important;
        color: #fff !important;
    }
    .bf-slot-layout .slot-buttons.bf-slot-booked,
    .bf-slot-layout .slot-buttons.bf-slot-booked:disabled {
        background: #fbfbfc !important;
        border-color: #edf0f4 !important;
        color: #b5b5b5 !important;
        text-decoration: line-through !important;
        opacity: 1 !important;
        cursor: not-allowed !important;
        box-shadow: none !important;
    }
    .bf-slot-layout .slot-buttons.bf-slot-booked:hover,
    .bf-slot-layout .slot-buttons.bf-slot-booked:focus {
        color: #b5b5b5 !important;
        border-color: #edf0f4 !important;
        font-weight: 500 !important;
    }
    .bf-slot-layout .slot-buttons.bf-slot-extra {
        display: none;
    }
    .bf-slot-more-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin: 4px 12px 0;
        clear: both;
    }
    .bf-slot-more-link {
        border: 0;
        background: transparent;
        color: green;
        font-size: 11px;
        font-weight: 700;
        padding: 0;
    }
    .bf-slot-more-link:hover,
    .bf-slot-more-link:focus {
        color: var(--bf-accent);
        text-decoration: underline;
    }
    .bf-slot-period {
        margin: 5px 12px 10px;
        color: var(--bf-muted);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .07em;
        text-transform: uppercase;
    }
    .bf-slot-layout .not-available {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100%;
        height: 100%;
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 500;
        line-height: 1.4;
        text-transform: none;
        text-align: center;
    }
    .bf-empty-calendar-icon {
        display: inline-block;
        /* width: 64px; */
        height: 56px;
        /* margin-bottom: 18px; */
        color: #b7b7b7;
        font-size: 32px;
        line-height: 1;
    }
    .fa-stack-2x {
        font-size: 40px;
    }
    .bf-empty-calendar-icon .fa-times {
        font-size: 18px;
        line-height: 2.8;
    }
    .bf-slot-layout #slotsDiv .bf-holiday-panel {
        grid-column: 1 / -1;
        min-height: 445px;
        border: 1px solid var(--bf-border);
        border-radius: 8px;
        background: #eef0f4;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 8px 24px rgba(32, 38, 55, .04);
    }
    .bf-holiday-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: min(480px, 90%);
        color: var(--bf-muted);
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }
    .bf-holiday-icon {
        color: #078b08;
        font-size: 42px;
        line-height: 1;
        margin-bottom: 20px;
    }
    .bf-holiday-title {
        color: var(--bf-text);
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 14px;
    }
    .bf-holiday-copy {
        margin: 0 auto 26px;
        max-width: 360px;
        font-weight: 500;
    }
    .bf-holiday-next {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 42px;
        padding: 0 28px;
        border: 0;
        border-radius: 4px;
        background: var(--bf-accent);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .04em;
        box-shadow: 4px 6px 0 rgba(32, 38, 55, .18);
    }
    .bf-holiday-next:hover,
    .bf-holiday-next:focus {
        background: #aa4f19;
        color: #fff;
    }
    .bf-day-holiday {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1 1 auto;
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 24px;
        color: var(--bf-muted);
        text-align: center;
    }
    .bf-slot-scroll-body .bf-day-holiday {
        min-height: 100%;
    }
    .bf-day-holiday .bf-holiday-icon {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .bf-day-holiday .bf-holiday-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .bf-day-holiday .bf-holiday-copy {
        max-width: 220px;
        margin: 0;
        font-size: 12px;
    }
    .bf-confirm-card {
        background: #fff;
        border: 1px solid var(--bf-border);
        border-radius: 14px;
        box-shadow: var(--bf-shadow);
        overflow: hidden;
    }
    .bf-confirm-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 18px 26px;
        border-bottom: 1px solid var(--bf-border);
    }
    .bf-confirm-head h2 {
        margin: 0;
        color: var(--bf-text);
        font-size: 14px;
        font-weight: 800;
    }
    .bf-confirm-head span {
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 500;
    }
    .bf-confirm-body {
        padding: 18px;
    }
    .bf-confirm-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        /* min-height: 72px; */
        padding: 5px 0;
        border-bottom: 1px solid var(--bf-border);
    }
    .bf-confirm-row > div {
        min-width: 0;
    }
    .bf-confirm-row:first-child {
        padding-top: 0;
    }
    .bf-confirm-row:nth-last-child(2) {
        border-bottom: 0;
    }
    .bf-confirm-label {
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 6px;
    }
    .bf-confirm-value {
        color: var(--bf-text);
        font-size: 14px;
        font-weight: 800;
        overflow-wrap: anywhere;
    }
    .bf-confirm-value.muted {
        color: var(--bf-muted);
        font-style: italic;
        font-weight: 500;
    }
    .bf-confirm-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .bf-confirm-chip {
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        padding: 2px 10px;
        border: 1px solid #b8d8ef;
        border-radius: 999px;
        background: #e8f1fb;
        color: var(--bf-accent);
        font-size: 12px;
        font-weight: 600;
    }
    .bf-confirm-chip-price {
        margin-left: 4px;
        color: #d36b3d;
        font-weight: 500;
    }
    .bf-confirm-change {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex: 0 0 auto;
        min-width: 0;
        min-height: 0;
        padding: 7px 12px !important;
        border: 1px solid var(--bf-border);
        border-radius: 10px !important;
        background: #eef1f6;
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 800;
    }
    .bf-confirm-change:hover,
    .bf-confirm-change:focus {
        border-color: var(--bf-accent);
        color: var(--bf-accent);
    }
    .bf-confirm-success {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 5px;
        padding: 12px 18px;
        border: 1px solid #bdebd0;
        border-radius: 12px;
        background: #f1fcf6;
    }
    .bf-cal-icon {
        flex-shrink: 0;
        width: 60px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0,0,0,.10);
        text-align: center;
        border: 1px solid #d0e8ff;
    }
    .bf-cal-month {
        background: var(--bf-accent, #1a73e8);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: 3px 0;
    }
    .bf-cal-day {
        background: #fff;
        color: #1a1a1a;
        font-size: 20px;
        font-weight: 800;
        line-height: 1.1;
        padding: 3px 0 1px;
    }
    .bf-cal-weekday {
        background: #fff;
        color: var(--bf-muted, #6b7280);
        font-size: 8px;
        font-weight: 600;
        padding-bottom: 4px;
    }
    .bf-confirm-success strong {
        display: block;
        color: green;
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 6px;
    }
    .bf-confirm-success p {
        margin: 0;
        color: var(--bf-muted);
        font-size: 12px;
        font-weight: 500;
    }
    .bf-confirm-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding-top: 18px;
    }
    .bf-confirm-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 0;
        border-radius: 10px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }
    .bf-confirm-actions .btn-default {
        width: auto;
        min-width: 140px;
        margin-left: 0;
        padding: 12px 22px !important;
        border: 1px solid var(--bf-border) !important;
        color: var(--bf-muted) !important;
        background: #f7f8fb !important;
        font-weight: 800 !important;
    }
    .bf-confirm-actions .btn-success {
        width: auto;
        min-width: 170px;
        margin-right: 0;
        padding: 12px 28px !important;
        border-color: green !important;
        background: green !important;
        color: #fff !important;
    }
    .bf-slot-layout #moreSlotsDiv,
    .bf-slot-layout [id^="moreSlotsDiv"] {
        padding: 0 12px;
    }
    .bf-slot-layout #slotCountDiv,
    .bf-slot-layout #selectedSlotDiv {
        padding: 0 18px;
    }
    .bf-booking-alert {
        position: fixed;
        inset: 0;
        z-index: 10050;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 24px;
        background: rgba(0, 0, 0, .42);
    }
    .bf-booking-alert.is-visible {
        display: flex;
    }
    .bf-booking-alert-box {
        width: min(420px, 100%);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
        padding: 34px 24px 28px;
        text-align: center;
        transform: translateY(-38px);
    }
    .bf-booking-alert-icon {
        width: 46px;
        height: 46px;
        margin: 0 auto 22px;
        border-radius: 50%;
        background: #e77b34;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: 800;
        line-height: 1;
    }
    .bf-booking-alert-message {
        margin: 0 0 26px;
        color: #3f3f43;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.35;
    }
    .bf-booking-alert-ok {
        min-width: 100px;
        min-height: 42px;
        border: 0;
        border-radius: 10px;
        background: #e77b34;
        color: #fff;
        font-size: 14px;
        font-weight: 800;
    }
    .bf-booking-change-box {
        width: min(560px, 100%);
        padding: 42px 38px 34px;
    }
    .bf-booking-warning-icon {
        margin: 0 auto 24px;
        color: #e77b34;
        line-height: 1;
    }
    .bf-booking-warning-icon .material-icons {
        font-size: 58px;
        line-height: 1;
    }
    .bf-booking-change-title {
        margin: 0 0 22px;
        color: var(--bf-text);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.25;
    }
    .bf-booking-change-message,
    .bf-booking-change-note {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.45;
    }
    .bf-booking-change-message strong {
        color: #555;
        font-weight: 600;
    }
    .bf-booking-change-note {
        margin-top: 24px;
        font-size: 14px;
    }
    .bf-booking-change-actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 34px;
    }
    .bf-booking-change-actions .btn {
        min-width: 150px;
        padding: 12px 20px !important;
        border-radius: 10px !important;
        font-size: 12px !important;
        font-weight: 800 !important;
    }
    .bf-booking-change-stay {
        border: 1px solid #cfcfcf !important;
        background: #fff !important;
        color: #444 !important;
    }
    .bf-booking-change-go {
        border-color: #e77b34 !important;
        background: #e77b34 !important;
        color: #fff !important;
    }
    .bf-booking-page #locationSelect .acc-wizard-step,
    .bf-booking-page #providerSelect .acc-wizard-step {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 12px 0 28px;
        text-align: right;
    }
    .bf-booking-page #providerSelect .acc-wizard-step {
        padding: 0;
        justify-content: space-between;
    }
    .bf-booking-page #locationSelect .acc-wizard-step {
        justify-content: flex-end;
    }
    .bf-booking-page #locationSelect .acc-wizard-step .btn-primary,
    .bf-booking-page #providerSelect .acc-wizard-step .btn-primary,
    .bf-booking-page .bf-flow-actions .btn-primary {
        width: auto;
        min-width: 170px;
        margin-right: 0;
        background: var(--bf-accent) !important;
        border-radius: 10px !important;
        padding: 12px 28px !important;
        font-size: 15px !important;
    }
    .bf-booking-page #providerSelect .acc-wizard-step .btn-default,
    .bf-booking-page .bf-flow-actions .btn-default {
        width: auto;
        min-width: 140px;
        margin-left: 0;
        border: 1px solid var(--bf-border) !important;
        color: var(--bf-muted) !important;
        background: #f7f8fb !important;
        border-radius: 10px !important;
        padding: 12px 22px !important;
        font-size: 15px !important;
        font-weight: 800 !important;
    }
    .bf-booking-page .desc-body {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 22px;
        align-items: start;
    }
    .bf-booking-page .desc-body > .col-sm-3 {
        width: auto;
        max-width: none;
        padding: 0 !important;
        order: 2;
    }
    .bf-booking-page .desc-body > .col-sm-9 {
        width: auto;
        max-width: none;
        padding: 0 !important;
        order: 1;
    }
    .bf-booking-page .desc-body > .col-sm-9 > .row,
    .bf-booking-page .desc-body > .col-sm-9 .pe-3 {
        margin: 0;
        padding: 0 !important;
    }
    .bf-booking-page .desc-main-card,
    .bf-booking-page .desc-book-card,
    .bf-booking-page .panel {
        background: var(--bf-surface);
        border: 1px solid var(--bf-border);
        border-radius: 10px;
        box-shadow: var(--bf-shadow);
        overflow: hidden;
    }
    .bf-booking-page .desc-hero {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 8px;
        background: var(--bf-surface2);
    }
    .bf-booking-page .desc-title {
        font-size: 26px;
        font-weight: 700;
        color: var(--bf-text);
        letter-spacing: -.02em;
        margin: 0;
    }
    .bf-booking-page .desc-tagline {
        margin-top: 6px;
        color: var(--bf-muted);
        font-size: 14px;
        font-weight: 500;
    }
    .bf-booking-page .desc-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 16px 0;
    }
    .bf-booking-page .desc-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        border: 1px solid var(--bf-border);
        color: var(--bf-muted);
        background: var(--bf-surface2);
    }
    .bf-booking-page .desc-badge.green {
        color: var(--bf-green);
        background: rgba(42, 157, 111, .1);
        border-color: rgba(42, 157, 111, .22);
    }
    .bf-booking-page .desc-badge.accent {
        color: var(--bf-accent);
        background: rgba(188, 89, 33, .09);
        border-color: rgba(188, 89, 33, .24);
    }
    .bf-booking-page .desc-section-title {
        font-size: 12px;
        font-weight: 800;
        color: var(--bf-text);
        text-transform: uppercase;
        letter-spacing: .08em;
        border-bottom: 1px solid var(--bf-border);
        padding-bottom: 8px;
        margin-bottom: 12px;
    }
    .bf-booking-page .desc-para {
        color: var(--bf-muted);
        line-height: 1.75;
        font-size: 14px;
    }
    .bf-booking-page .desc-book-card {
        position: sticky;
        top: 16px;
        padding: 18px;
    }
    .bf-booking-page .desc-side-card {
        position: sticky;
        top: 16px;
        padding: 16px;
    }
    .bf-booking-page .book-card-title {
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 2px;
    }
    .bf-booking-page .book-card-sub {
        font-size: 12px;
        color: var(--bf-muted);
        margin-bottom: 14px;
    }
    .bf-booking-page .book-info-row {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid var(--bf-border);
    }
    .bf-booking-page .book-info-label {
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--bf-muted);
        letter-spacing: .07em;
    }
    .bf-booking-page .book-info-val {
        font-size: 14px;
        font-weight: 700;
        color: var(--bf-text);
        text-align: right;
    }
    .bf-booking-page .book-cta,
    .bf-booking-page .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: none !important;
        background: var(--bf-accent) !important;
        color: #fff !important;
        border-radius: 7px !important;
        padding: 10px 18px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        width: 100%;
        text-decoration: none;
    }
    .bf-booking-page .panel-heading,
    .bf-booking-page .additional-address-bg {
        background: #3d4555 !important;
        border-radius: 10px 10px 0 0 !important;
    }
    .bf-booking-page .panel-heading-text,
    .bf-booking-page .panel-title a {
        color: #fff !important;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }
    .bf-booking-page .panel-body {
        background: var(--bf-surface);
        border: 1px solid var(--bf-border);
        border-top: 0;
        border-radius: 0 0 10px 10px;
    }
    .bf-booking-page .location-buttons {
        border-radius: 7px !important;
        padding: 8px 14px !important;
        font-weight: 700;
    }
    @media (max-width: 767px) {
        /* ── page wrapper ── */
        .bf-booking-page {
            padding: 10px;
        }

        /* ── service card: hide image, pill on right vertically centered ── */
        .bf-session-card {
            grid-template-columns: minmax(0, 1fr) auto;
            grid-template-rows: auto;
            gap: 0;
        }
        .bf-session-image {
            display: none;
        }
        .bf-session-main {
            grid-column: 1;
            grid-row: 1;
            padding: 14px 16px;
        }
        .bf-session-title {
            font-size: 18px;
        }
        .bf-duration-pill {
            grid-column: 2;
            grid-row: 1;
            align-self: center;
            justify-self: end;
            margin: 0 16px;
        }

        /* ── stepper: circles only, active label below ── */
        .bf-stepper-card {
            padding: 10px 14px;
        }
        .bf-stepper {
            min-width: 0;
            grid-template-columns: repeat(4, 1fr);
        }
        .bf-step {
            font-size: 10px;
        }
        .bf-step > div:not(.bf-step-number) {
            display: none;
        }
        .bf-step.active > div:not(.bf-step-number) {
            display: block;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .04em;
            margin-top: 5px;
        }
        .bf-step-number {
            width: 30px;
            height: 30px;
            font-size: 13px;
            margin-bottom: 0;
        }
        .bf-step:not(:last-child)::after {
            top: 14px;
            left: calc(50% + 21px);
            right: calc(-50% + 21px);
        }

        /* ── summary strip: horizontal scroll row ── */
        .bf-summary-strip {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 12px;
            border: 1px solid var(--bf-border);
            border-radius: 10px;
            background: var(--bf-surface);
        }
        .bf-summary-item {
            flex: 0 0 auto;
            min-width: 100px;
            padding: 8px 12px;
            border-right: 1px solid var(--bf-border);
            border-bottom: none;
        }
        .bf-summary-item.done {
            padding-right: 26px;
        }
        .bf-summary-item.done::after {
            top: 8px;
            right: 8px;
            font-size: 13px;
            line-height: 1;
        }
        .bf-summary-item:last-child {
            border-right: none;
        }
        .bf-summary-label {
            font-size: 9px;
            white-space: nowrap;
        }
        .bf-summary-value {
            font-size: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 90px;
        }
        .bf-family-member-row {
            flex-direction: column;
            align-items: stretch;
        }
        .bf-booking-page .bf-family-select {
            min-width: 0;
        }
        .bf-booking-page .bf-add-family-btn {
            width: 100%;
            justify-content: center;
        }
        .bf-booking-page .bf-additional-person-note {
            margin-top: 8px;
            font-size: 12px;
            line-height: 1.55;
        }

        /* ── two-column layout → single column ── */
        .bf-booking-page .desc-body {
            grid-template-columns: 1fr;
        }
        .bf-booking-page .desc-body > .col-sm-3,
        .bf-booking-page .desc-body > .col-sm-9 {
            order: initial;
        }
        .bf-booking-page .desc-book-card,
        .bf-booking-page .desc-side-card {
            position: static;
        }
        .bf-additional-person-body {
            flex-wrap: wrap;
            align-items: flex-start;
            padding: 24px 20px;
        }
        .bf-addon-row {
            min-height: 148px;
            padding: 20px;
        }
        .bf-addon-list {
            grid-template-columns: 1fr;
            padding: 0 20px 22px;
        }
        .bf-addon-note {
            margin: 20px;
        }
        .bf-fa-shell {
            padding: 20px;
        }
        .bf-fa-item {
            grid-template-columns: 22px minmax(0, 1fr);
            align-items: flex-start;
        }
        .bf-fa-action {
            grid-column: 2;
            width: fit-content;
            margin-top: 4px;
        }
        .bf-fa-skip-action {
            margin-top: 4px;
        }
        .bf-fa-signed-actions {
            grid-column: 2;
            margin-top: 4px;
        }
        .bf-booking-page #additioanlPersonsListDiv {
            padding: 0 20px;
        }
        .bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] > .col-12 {
            align-items: flex-start;
            gap: 10px;
        }
        .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-btns-"] {
            flex: 1;
            gap: 10px;
        }
        .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-btns-"] .btn {
            min-width: 0;
        }
        .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-details-"] {
            flex-wrap: wrap;
        }
        .bf-booking-page #additioanlPersonsListDiv .additional-customer-details {
            flex: 1;
            min-width: 0;
        }
        #productOptionsModel .modal-dialog {
            width: calc(100vw - 24px) !important;
            max-width: calc(100vw - 24px);
            margin: 12px auto;
        }
        #productOptionsModel .bf-option-body {
            padding: 0 14px 16px !important;
        }
        #productOptionsModel .bf-option-panel {
            padding: 18px;
        }
        #productOptionsModel .bf-option-image {
            height: 118px;
        }
        #productOptionsModel .bf-option-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        #productOptionsModel .bf-option-footer {
            padding: 16px 0 0;
        }
        #bfFormDrawerModal .modal-dialog {
            width: calc(100vw - 24px) !important;
            max-width: calc(100vw - 24px) !important;
            margin: 12px auto;
        }
        #bfFormDrawerModal .modal-body {
            max-height: calc(100vh - 24px);
            padding: 10px 10px 0 !important;
        }
        #bfFormDrawerModal .bf-document-header {
            align-items: flex-start;
            flex-direction: column;
            gap: 10px;
            padding: 12px;
        }
        #bfFormDrawerModal .bf-document-logo,
        #bfFormDrawerModal .bf-document-logo img {
            max-width: 150px;
            max-height: 44px;
        }
        #bfFormDrawerModal #bf-drawer-body {
            max-height: calc(100vh - 282px);
            padding: 0 8px 0;
        }
        .bf-drawer-footer {
            margin: 0 -10px;
            padding: 10px;
        }

        /* ── panel flow actions ── */
        .bf-booking-page .bf-flow-actions {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            flex-direction: row;
            align-items: stretch;
            gap: 10px;
            padding: 16px 20px;
            background: #fff;
            box-shadow: 0 -2px 12px rgba(0,0,0,.10);
        }
        .bf-booking-page .bf-flow-actions .btn {
            flex: 1;
            justify-content: center;
        }
        .bf-booking-page .bf-flow-actions .btn-default {
            min-width: 100px;
        }
        .bf-booking-page .bf-flow-actions .btn-primary {
            flex: 7;
        }
        /* add bottom padding so content isn't hidden under the sticky bar */
        .bf-booking-page #accordion-demo {
            padding-bottom: 80px;
        }
        #bfFormDrawerModal #bf-drawer-title {
            padding-right: 0;
        }
        #bfFormDrawerModal #bf-drawer-body {
            padding: 14px 14px 0;
        }
        #bfFormDrawerModal #bf-drawer-body .form-group:has(> .radio) {
            grid-template-columns: 1fr !important;
        }
        #bfFormDrawerModal #bf-drawer-body .form-group:has(> .checkbox) {
            grid-template-columns: 1fr !important;
        }
        #bfFormDrawerModal #bf-drawer-body .radio label,
        #bfFormDrawerModal #bf-drawer-body label.radio {
            padding: 10px 13px !important;
            font-size: 13.5px !important;
        }
        #bfFormDrawerModal #bf-drawer-body .checkbox label,
        #bfFormDrawerModal #bf-drawer-body label.checkbox {
            padding: 10px 13px !important;
            font-size: 13.5px !important;
        }
        #bfFormDrawerModal #bf-drawer-body .sigNav a {
            padding: 0 12px !important;
        }
        #bfFormDrawerModal .bf-drawer-footer {
            padding: 12px 14px;
            border-radius: 0 0 10px 10px;
        }
        #bfFormDrawerModal .bf-drawer-secondary-actions {
            flex: 1;
        }
        #bfFormDrawerModal .bf-drawer-cancel,
        #bfFormDrawerModal .bf-drawer-reset,
        #bfFormDrawerModal .bf-drawer-sign {
            flex: 1;
            min-width: 0;
            padding: 0 12px !important;
        }
        .bf-drawer-title-card {
            align-items: flex-start;
            flex-direction: column;
            gap: 8px;
            padding: 16px;
        }
        .bf-drawer-brand {
            font-size: 20px;
            white-space: normal;
        }
        /* ── flow panel head ── */
        .bf-flow-panel-head {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
            padding: 14px 16px;
        }

        /* ── location grid ── */
        .bf-location-grid {
            grid-template-columns: 1fr;
            padding: 14px 16px;
        }
        .bf-location-card {
            width: 100%;
        }

        /* ── provider list ── */
        .bf-provider-list {
            padding: 14px 16px 6px;
        }
        .bf-provider-card {
            gap: 12px;
        }

        /* ── slot layout: stack calendar above slots ── */
        .bf-slot-layout #schedule-details > .row,
        .bf-slot-layout #slotsDiv > .row {
            grid-template-columns: 1fr;
            padding: 12px !important;
            gap: 16px;
        }
        .bf-slot-restriction-note {
            margin: 12px 12px 0;
            width: auto;
        }
        .bf-slot-layout #slotsDiv > .row {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        .bf-slot-layout #schedule-details > .row > .col-sm-3 {
            height: auto;
            min-height: 0;
        }
        .bf-slot-layout #slotsDiv .app-col {
            height: auto;
            min-height: 0;
        }
        .bf-slot-layout #slotCountDiv,
        .bf-slot-layout #selectedSlotDiv {
            display: none !important;
        }
        .bf-booking-alert-box {
            border-radius: 16px;
            padding: 30px 20px 24px;
            transform: translateY(-28px);
        }
        .bf-booking-alert-icon {
            width: 42px;
            height: 42px;
            margin-bottom: 20px;
            font-size: 30px;
        }
        .bf-booking-alert-message {
            margin-bottom: 24px;
            font-size: 16px;
        }
        .bf-booking-alert-ok {
            min-width: 96px;
            min-height: 40px;
            font-size: 14px;
        }
        .bf-booking-change-box {
            padding: 32px 20px 26px;
        }
        .bf-booking-warning-icon {
            margin-bottom: 18px;
        }
        .bf-booking-warning-icon .material-icons {
            font-size: 46px;
        }
        .bf-booking-change-title {
            font-size: 14px;
            margin-bottom: 16px;
        }
        .bf-booking-change-message,
        .bf-booking-change-note {
            font-size: 14px;
        }
        .bf-booking-change-note {
            margin-top: 18px;
            font-size: 12px;
        }
        .bf-booking-change-actions {
            gap: 10px;
            margin-top: 24px;
        }
        .bf-booking-change-actions .btn {
            min-width: 0;
            flex: 1;
            padding: 10px 12px !important;
        }

        /* ── calendar ── */
        .bf-calendar-service {
            height: auto;
            padding: 12px;
        }
        .bf-calendar-day {
            min-height: 40px;
            font-size: 12px;
        }
        .bf-calendar-grid,
        .bf-calendar-week {
            gap: 3px;
        }
        .bf-calendar-legend {
            gap: 4px;
        }
        .bf-calendar-key {
            font-size: 10px;
        }

        /* ── confirm card ── */
        .bf-booking-page #checkoutStep .panel-body {
            border-radius: 14px;
        }
        .bf-confirm-card {
            padding: 0;
            border-radius: 14px;
        }
        .bf-confirm-head {
            flex-direction: row;
            align-items: center;
            gap: 12px;
            padding: 18px 18px;
        }
        .bf-confirm-head h2 {
            font-size: 14px;
            line-height: 1.2;
            white-space: nowrap;
        }
        .bf-confirm-head span {
            font-size: 13px;
            line-height: 1.35;
            text-align: right;
        }
        .bf-confirm-body {
            padding: 18px;
        }
        .bf-confirm-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 0;
        }
        .bf-confirm-row > div {
            flex: 1 1 auto;
        }
        .bf-confirm-row > .btn {
            flex: 0 0 112px;
            min-width: 112px !important;
            max-width: 112px;
            padding: 9px 10px !important;
            white-space: nowrap;
        }
        .bf-confirm-change {
            width: auto;
            min-width: 0;
            min-height: 0;
            margin-top: 0;
            font-size: 12px;
        }
        .bf-confirm-label {
            font-size: 12px;
        }
        .bf-confirm-value {
            font-size: 14px;
            line-height: 1.35;
        }
        .bf-confirm-success {
            flex-direction: column;
            align-items: center;
            gap: 14px;
            margin-top: 5px;
            padding: 28px 16px;
            text-align: center;
        }
        .bf-cal-icon {
            width: 34px;
            border-radius: 4px;
            box-shadow: none;
        }
        .bf-cal-month {
            font-size: 6px;
            padding: 2px 0;
        }
        .bf-cal-day {
            font-size: 16px;
            padding: 1px 0 0;
        }
        .bf-cal-weekday {
            display: none;
        }
        .bf-confirm-success strong {
            font-size: 14px;
            line-height: 1.35;
        }
        .bf-confirm-success p {
            font-size: 12px;
            line-height: 1.45;
        }
        .bf-confirm-actions {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            flex-direction: row;
            align-items: stretch;
            gap: 10px;
            padding: 16px 20px;
            background: #fff;
            box-shadow: 0 -2px 12px rgba(0,0,0,.10);
        }
        .bf-confirm-actions .btn {
            flex: 1;
            min-width: 0;
            min-height: 0;
            justify-content: center;
            font-size: 14px !important;
        }
        .bf-confirm-actions .btn-default {
            flex: 1;
            min-width: 100px;
        }
        .bf-confirm-actions .btn-success {
            flex: 7;
        }
    }

    @media (max-width: 479px) {
        /* ── hide sidebar on tiny phones ── */
        .bf-booking-page .desc-body > .col-sm-3 {
            display: none;
        }
        .bf-confirm-head {
            gap: 8px;
        }
        .bf-confirm-head h2 {
            font-size: 14px;
        }
        .bf-confirm-head span {
            font-size: 12px;
        }
        .bf-confirm-body {
            padding: 18px;
        }
        .bf-confirm-row {
            gap: 10px;
        }
        .bf-confirm-row > .btn {
            flex-basis: 96px;
            min-width: 96px !important;
            max-width: 96px;
            padding: 8px 8px !important;
        }
        .bf-confirm-change {
            width: auto;
        }
    }
    p{
        color:#8a8a8a;
    }
    .acc-wizard-step{
        text-align: right;
    }
    .step-circle { 
        width:40px;
        height:40px;
        border-radius:150px;
        font-size:25px;
        color:#fff;
        line-height:35px;
        text-align:center;
        background:#e6e6e6;
        border:2px solid #4da46f;
        color: #4da46f;
        display:none;
    }
    .panel-heading-text{
        font-size: 16px;color: #fff;font-weight: bold;
    }
    
    #testUl li{
        background-color: #eee; 
        padding: 12px; 
        font-weight: bold;
    }
    .btn-cancel{
        background-color: #da332b !important;
        color: #fff !important;
    }
    .profilePicImg:hover {
        float:left; /* must be floated for same cross browser position of larger image */
	position:relative;
	margin:3px;
        right: 0px;
        top: 0px;
        width:100px;
        height:auto;
        display:block;
        z-index:999;
        max-height: 120px;
    }

    @media (max-width: 767px) {
        html,
        body {
            overflow-x: hidden;
        }
        .bf-booking-page {
            width: 100%;
            max-width: 100%;
            padding: 10px 10px 92px !important;
        }
        .bf-booking-page .bf-session-card,
        .bf-booking-page .bf-stepper-card,
        .bf-booking-page .bf-summary-strip,
        .bf-booking-page #accordion-demo > .panel,
        .bf-booking-page .panel-body,
        .bf-booking-page .bf-member-step-card,
        .bf-booking-page .bf-member-step-card1,
        .bf-booking-page .bf-confirm-card {
            width: 100%;
            max-width: 100%;
            border-radius: 10px !important;
        }
        .bf-session-card {
            display: block;
            min-height: 0;
            margin-bottom: 12px;
        }
        .bf-session-main {
            padding: 14px !important;
        }
        .bf-session-title {
            overflow-wrap: anywhere;
            line-height: 1.25;
        }
        .bf-session-subtitle {
            font-size: 13px;
            line-height: 1.35;
            margin-bottom: 8px;
        }
        .bf-duration-pill {
            display: inline-flex;
            width: auto;
            min-width: 0;
            margin: 0 14px 14px !important;
            padding: 4px 8px;
        }
        .bf-stepper-card {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .bf-stepper {
            min-width: 280px;
        }
        .bf-summary-strip {
            scrollbar-width: none;
        }
        .bf-summary-strip::-webkit-scrollbar {
            display: none;
        }
        .bf-flow-panel-head {
            padding: 14px !important;
        }
        .bf-flow-panel-head h2 {
            width: 100%;
            font-size: 15px;
            line-height: 1.25;
        }
        .bf-flow-panel-count {
            max-width: 100%;
            white-space: normal;
            line-height: 1.35;
        }
        .bf-location-grid,
        .bf-provider-list,
        .bf-addon-list,
        .bf-booking-page #additioanlPersonsListDiv {
            padding-left: 14px !important;
            padding-right: 14px !important;
        }
        .bf-addon-selection-box {
            margin: 0 14px 18px;
        }
        .bf-location-card,
        .bf-provider-card,
        .bf-addon-row {
            min-width: 0;
            max-width: 100%;
        }
        .bf-addon-row {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .bf-addon-actions,
        .bf-addon-actions .btn {
            width: 100%;
        }
        .bf-addon-product-controls {
            align-items: stretch;
            width: 100%;
        }
        .bf-addon-stepper {
            justify-content: space-between;
            width: 100%;
        }
        .bf-slot-layout #schedule-details,
        .bf-slot-layout #slotsDiv,
        .bf-slot-layout #schedule-details > .row,
        .bf-slot-layout #slotsDiv > .row {
            width: 100%;
            max-width: 100%;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .bf-slot-layout #schedule-details > .row > .col-sm-3,
        .bf-slot-layout #schedule-details > .row > .col-sm-9,
        .bf-slot-layout #slotsDiv .app-col {
            width: 100% !important;
            max-width: 100% !important;
            flex: 0 0 100%;
        }
        .bf-slot-layout #slotsDiv .app-col {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        .bf-slot-layout .slot-buttons {
            width: auto;
            min-width: 86px;
            max-width: 100%;
            min-height: 42px;
            margin-right: 8px;
            margin-bottom: 8px;
            white-space: normal;
        }
        .bf-fa-shell {
            padding: 14px !important;
        }
        .bf-fa-section-title {
            line-height: 1.35;
        }
        .bf-fa-item {
            grid-template-columns: 20px minmax(0, 1fr);
            gap: 10px;
            padding: 14px 0;
        }
        .bf-fa-row-action {
            grid-column: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }
        .bf-fa-action,
        .bf-fa-skip-action {
            flex: 1 1 120px;
            width: auto;
            margin: 0;
        }
        .bf-booking-page .bf-flow-actions,
        .bf-confirm-actions {
            padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px)) !important;
        }
        .bf-booking-page .bf-flow-actions .btn,
        .bf-confirm-actions .btn {
            min-height: 44px;
            padding: 9px 12px !important;
            white-space: nowrap;
        }
        .bf-booking-page #formsAgreementsStep .bf-flow-actions {
            display: flex !important;
            flex-wrap: nowrap;
            align-items: stretch !important;
            gap: 10px;
        }
        .bf-booking-page #formsAgreementsStep .bf-flow-actions > .btn-default {
            flex: 0 0 104px;
            min-width: 104px;
            max-width: 104px;
        }
        .bf-booking-page #formsAgreementsStep #afterMemberSelectionDiv {
            flex: 1 1 auto;
            min-width: 0;
        }
        .bf-booking-page #formsAgreementsStep #afterMemberSelectionDiv .btn {
            width: 100%;
            min-width: 0;
            min-height: 44px;
        }
        .bf-booking-page #slotStepActions {
            flex-wrap: wrap;
        }
        .bf-booking-page #slotStepActions > span,
        .bf-booking-page #slotStepActions > .text-primary {
            flex: 0 0 100%;
            order: -1;
            padding: 0 !important;
            text-align: left;
            line-height: 1.35;
        }
        .bf-confirm-head {
            flex-direction: column !important;
            align-items: flex-start !important;
        }
        .bf-confirm-head h2,
        .bf-confirm-head span {
            white-space: normal !important;
            text-align: left !important;
        }
        .bf-confirm-row {
            align-items: flex-start !important;
        }
        .bf-confirm-row > .btn {
            flex-basis: 96px !important;
            min-width: 96px !important;
            max-width: 96px !important;
        }
        #bfFormDrawerModal .modal-dialog {
            width: 100vw !important;
            max-width: 100vw !important;
            min-height: 100vh;
            margin: 0 !important;
        }
        #bfFormDrawerModal .modal-content,
        #bfFormDrawerModal .modal-body {
            min-height: 100vh;
            border-radius: 0 !important;
        }
    }
    

/* ── Inline style extractions ── */
#alertMessage4 .modal-dialog {
    max-width: 700px !important;
    width: 90%;
}
#alertMessage4 .modal-body .rounded-10 {
    background-color: #fff;
}
#classSessionsModal .modal-dialog {
    width: 800px;
}
#myModalAbout .modal-dialog {
    max-width: 700px;
}
#myAccessCode label {
    font-weight: normal;
}
#myAccessCode .modal-footer label {
    color: red;
}
#myAccessCode .col-xs-12 > label:last-of-type {
    color: #aaaaaa;
}
.show-more-label {
    color: #337AB7;
}
.widget-main.img-size-height-256 {
    min-height: 245px;
}
.acc-wizard-step.bf-flow-actions {
    margin-top: 12px;
    justify-content: space-between;
    align-items: center;
}

/* ── Material icon size helpers ── */
.mi-15 { font-size: 15px; }
.mi-16 { font-size: 16px; }
.mi-17 { font-size: 17px; }
.mi-18 { font-size: 18px; }
.mi-18-va { font-size: 18px; vertical-align: -4px; }
.mi-30 { font-size: 30px; }

/* ── Options modal: hide image, section-title row with toggle ── */
#productOptionsModel .bf-option-image {
    display: none !important;
}
#productOptionsModel .bf-option-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
#productOptionsModel .bf-option-section-header .bf-option-section-title {
    margin-bottom: 0;
}
/* ── Options modal grid / list toggle ── */
#productOptionsModel .bf-view-toggle {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}
#productOptionsModel .bf-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #e3e8f0;
    border-radius: 7px;
    background: #fff;
    color: #8a90a0;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
}
#productOptionsModel .bf-view-btn:hover {
    border-color: var(--bf-accent);
    color: var(--bf-accent);
}
#productOptionsModel .bf-view-btn.active {
    background: var(--bf-accent);
    border-color: var(--bf-accent);
    color: #fff;
}
#productOptionsModel .bf-view-btn .material-icons {
    font-size: 18px;
    line-height: 1;
}
/* List view overrides */
#productOptionsModel .bf-option-grid.bf-list-view {
    grid-template-columns: 1fr;
    gap: 6px;
}
#productOptionsModel .bf-option-grid.bf-list-view .bf-option-choice {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 0;
    padding: 10px 14px;
}
#productOptionsModel .bf-option-grid.bf-list-view .bf-option-check {
    position: static;
    display: block;
    flex-shrink: 0;
    order: -1;
    color: #cfd5df;
    font-size: 15px;
    font-weight: 900;
    width: 18px;
    text-align: center;
}
#productOptionsModel .bf-option-grid.bf-list-view .bf-option-choice.selected .bf-option-check {
    color: green;
}
#productOptionsModel .bf-option-grid.bf-list-view .bf-option-name {
    padding-right: 0;
    flex-shrink: 0;
}
#productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
    flex: 1;
    min-width: 0;
}
#productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines span {
    flex: 0 1 auto;
    min-width: 108px;
    min-height: 0;
    padding: 4px 9px 4px 11px;
}
#productOptionsModel .bf-option-grid.bf-list-view .bf-option-money {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-top: 0;
    flex-shrink: 0;
    margin-left: auto;
}
#productOptionsModel .bf-option-grid.bf-list-view .bf-option-stepper {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    padding-left: 12px;
    border-left: 1px solid #d9dee7;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    #productOptionsModel .modal-dialog {
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        margin: 8px auto;
    }
    #productOptionsModel .bf-option-body {
        padding: 0 8px 14px !important;
    }
    #productOptionsModel .bf-option-drawer-head {
        padding: 10px 8px 8px;
    }
    #productOptionsModel .bf-option-title {
        font-size: 15px;
        line-height: 1.25;
    }
    #productOptionsModel .bf-option-panel {
        padding: 14px 12px 16px;
    }
    #productOptionsModel .bf-option-section-header {
        align-items: flex-start;
        gap: 10px;
    }
    #productOptionsModel .bf-view-btn {
        width: 26px;
        height: 26px;
    }
    #productOptionsModel .bf-option-grid,
    #productOptionsModel .bf-option-grid.bf-list-view {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-choice {
        display: grid;
        grid-template-columns: 26px minmax(0, 1fr);
        align-items: center;
        gap: 8px 10px;
        padding: 12px 12px;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-check {
        grid-column: 1;
        align-self: center;
        width: 20px;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-name,
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines,
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-money,
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-stepper {
        grid-column: 2;
        min-width: 0;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines span {
        flex: 1 1 108px;
        min-width: 108px;
        max-width: 100%;
        padding: 6px 9px 6px 11px;
    }
    #productOptionsModel .bf-option-lines b {
        word-break: normal;
        overflow-wrap: break-word;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-money {
        margin-left: 0;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    #productOptionsModel .bf-option-price,
    #productOptionsModel .bf-option-surcharge {
        white-space: normal;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-stepper {
        border-left: 0;
        border-top: 1px solid #d9dee7;
        padding-left: 0;
        padding-top: 10px;
        margin-top: 2px;
    }
}

/* ── Addon pill: hide cancel button ── */
.bf-addon-pill button {
    display: none;
}

/* ── Options modal confirm button accent color ── */
#productOptionsModel .bf-option-confirm {
    background: var(--bf-accent) !important;
}

/* ── Options modal spacing (image removed) ── */
#productOptionsModel .bf-option-body {
    padding: 0 10px 16px !important;
}
#productOptionsModel .bf-option-drawer-head {
    padding: 12px 8px 10px;
}
#productOptionsModel .bf-option-panel {
    padding: 14px 18px 18px;
}
#productOptionsModel .bf-option-desc {
    margin-bottom: 10px;
}
#productOptionsModel .bf-option-footer {
    padding: 14px 8px 0;
}
@media (max-width: 767px) {
    #productOptionsModel.modal.right {
        align-items: flex-end !important;
        overflow: visible !important;
    }
    #productOptionsModel.modal.right .modal-dialog,
    #productOptionsModel.modal.right.fade .modal-dialog,
    #productOptionsModel.modal.right.show .modal-dialog {
        position: fixed !important;
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: calc(100vw - 0px) !important;
        margin: 0 !important;
        transform: none !important;
        overflow: visible !important;
    }
    #productOptionsModel .modal-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10006;
        min-height: 0;
        height: 0;
        border: 0;
        padding: 0 !important;
        overflow: visible !important;
        pointer-events: none;
    }
    #productOptionsModel .modal-header .close {
        position: absolute !important;
        top: -42px !important;
        left: 50% !important;
        right: auto !important;
        inset-inline-end: auto !important;
        float: none !important;
        transform: translateX(-50%) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 68px;
        height: 42px;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0;
        background: transparent !important;
        opacity: 1;
        box-shadow: none;
        z-index: 10007;
        pointer-events: auto;
        text-shadow: none !important;
    }
    #productOptionsModel .modal-header .close:before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -1px;
        width: 68px;
        height: 34px;
        transform: translateX(-50%);
        border: 1px solid rgba(255,255,255,.88);
        border-bottom: 0;
        border-radius: 40px 40px 0 0;
        background: rgba(255,255,255,.96);
        box-shadow: 0 -1px 0 rgba(255,255,255,.95) inset, 0 8px 22px rgba(15,23,42,.18);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1;
    }
    #productOptionsModel .modal-header .close:after {
        content: "\00d7";
        position: absolute;
        left: 50%;
        top: 11px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        background: #ff626b;
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        line-height: 22px;
        box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 5px 12px rgba(239,79,88,.30);
        z-index: 2;
    }
    #productOptionsModel .modal-header .close img {
        display: none;
    }
    #productOptionsModel .modal-content {
        position: relative;
        width: 100%;
        max-height: 88vh;
        overflow: visible !important;
        border-radius: 14px 14px 0 0 !important;
        box-sizing: border-box;
    }
    #productOptionsModel .bf-option-body {
        width: 100%;
        padding: 0 8px 14px !important;
        max-height: 88vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        border-radius: 14px 14px 0 0;
        box-sizing: border-box;
    }
    #productOptionsModel .bf-option-drawer-head {
        padding: 18px 8px 10px;
    }
    #productOptionsModel .bf-option-title {
        overflow-wrap: anywhere;
        word-break: normal;
    }
    #productOptionsModel .bf-option-panel {
        width: 100%;
        padding: 14px 12px 16px;
        box-sizing: border-box;
    }
    #productOptionsModel .bf-option-grid,
    #productOptionsModel .bf-option-grid.bf-list-view {
        width: 100%;
        grid-template-columns: 1fr;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-choice {
        position: relative;
        display: grid !important;
        grid-template-columns: 22px minmax(0, 1fr);
        grid-template-areas:
            "check lines"
            ". money"
            ". stepper";
        align-items: start;
        gap: 8px 10px;
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-check {
        position: static;
        grid-area: check;
        align-self: center;
        transform: none;
        width: 18px;
        margin-top: 2px;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-name,
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines,
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-money,
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-stepper {
        width: 100%;
        min-width: 0;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines {
        grid-area: lines;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 0;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines span {
        min-width: 0;
        width: 100%;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-money {
        grid-area: money;
        margin: 10px 0 0;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }
    #productOptionsModel .bf-option-price,
    #productOptionsModel .bf-option-surcharge {
        max-width: 100%;
        white-space: normal;
    }
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-stepper {
        grid-area: stepper;
        margin-top: 10px;
    }
}

@media (max-width: 420px) {
    #productOptionsModel .bf-option-grid.bf-list-view .bf-option-lines {
        grid-template-columns: 1fr;
    }
}

/* ── Additional Persons: row redesign ── */
/* Person rows — no box, clean list with left-accent strip */
.bf-booking-page #additioanlPersonsListDiv {
    gap: 0;
}
.bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-left: 3px solid #e8ebf2 !important;
    border-radius: 0 !important;
    padding-left: 10px !important;
    transition: border-color .2s;
}
.bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"]:hover {
    border-left-color: var(--bf-accent) !important;
}
.bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] > .col-12 {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 0 10px 8px !important;
    min-height: 0 !important;
    font-size: 13px;
    font-weight: 800;
    color: var(--bf-accent);
    border-bottom: 1px dashed #edf0f5 !important;
}
.bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"]:last-child > .col-12 {
    border-bottom: none !important;
}
.bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] > .col-12:hover {
    background: transparent !important;
    border-color: #edf0f5 !important;
}

/* ── Mobile: Who is this for? + Additional Persons ── */
@media (max-width: 767px) {
    /* Who is this for card */
    .bf-booking-page #memberStep .bf-flow-panel-head {
        padding: 14px 16px;
    }
    #bfMemberChoiceList {
        padding: 12px 14px 12px;
        gap: 8px;
    }
    .bf-member-choice label {
        padding: 12px 12px;
        font-size: 13px;
    }
    .bf-family-member-sub {
        padding: 0 12px 12px 38px;
    }
    .bf-booking-page .bf-family-select {
        width: 100%;
    }

    /* Additional Persons section — match screenshot layout */
    .bf-member-additional-details {
        padding: 0 16px 16px;
    }
    .bf-member-section-head {
        display: block;
        font-size: 15px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: 0;
        color: var(--bf-text);
        padding-top: 16px;
        margin-bottom: 6px;
    }
    .bf-member-section-head::before,
    .bf-member-section-head::after {
        display: none;
    }
    .bf-member-note {
        text-align: left;
        font-size: 12.5px;
        padding-bottom: 12px;
    }
    .bf-booking-page #additioanlPersonsListDiv {
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: 0;
    }
    .bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] {
        border-left: none !important;
        padding-left: 0 !important;
        border-bottom: 1px solid #edf0f5;
    }
    .bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"]:last-child {
        border-bottom: none;
    }
    .bf-booking-page #additioanlPersonsListDiv .row[id^="additionalPersonMainDiv-"] > .col-12 {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        padding: 10px 0 !important;
        gap: 8px;
        border-bottom: none !important;
        font-size: 14px;
        font-weight: 700;
        color: var(--bf-text);
        min-height: 0 !important;
    }
    .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-btns-"] {
        display: flex;
        flex: 3;
        gap: 6px;
    }
    .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-btns-"] .btn {
        font-size: 12px !important;
        padding: 9px 10px !important;
        text-align: center;
        white-space: nowrap;
        margin-left: 0 !important;
        margin-inline-start: 0 !important;
    }
    .bf-booking-page #additioanlPersonsListDiv span[id^="add-additionalPersons-btns-"] .btn:last-child {
        background-color: #e07b39 !important;
        border-color: #e07b39 !important;
        color: #fff !important;
    }
    .bf-additional-person-note {
        margin-top: 14px;
        font-size: 12px;
        padding: 10px 12px;
        border: none;
        background: transparent;
        color: var(--bf-muted);
        line-height: 1.6;
    }
}
