/* ===================================================================
   BKK Formulare – Sidebar transition
   The sidebar fades out while a new template loads, then fades back in.
   =================================================================== */

.bkk-formulare-gf-right.bkk-formulare-info {
    transition: opacity 160ms ease;
    opacity: 1;
}

/* Loading state: semi-transparent while fetching */
.bkk-formulare-gf-right.bkk-formulare-info.bkk-sidebar-loading {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

#field_126_55 table td {
    text-align: left;
}

/* Last step (Zusammenfassung): hide sidebar so the form takes full width.
   GF renders Next as type="button", only the final Submit uses type="submit"
   with class gform_button — so this selector fires exactly on the last page. */
.bkk-formulare-gf-wrap:has(input[type="submit"].gform_button) .bkk-formulare-gf-right {
    /*display: none !important;*/
}
/* .bkk-no-sidebar is kept as JS-driven fallback */
.bkk-formulare-gf-wrap.bkk-no-sidebar .bkk-formulare-gf-right {
    /*display: none !important;*/
}