.elementor-kit-6{--e-global-color-primary:#0D2237;--e-global-color-secondary:#C9761F;--e-global-color-text:#152433;--e-global-color-accent:#E8963C;--e-global-color-b1cbb38:#5E86A8;--e-global-color-112445b:#5C6B7A;--e-global-color-107909f:#F6F8FA;--e-global-typography-primary-font-family:"Newsreader";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Public Sans";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Public Sans";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{color:var( --e-global-color-accent );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1240px;}.e-con{--container-max-width:1240px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(min-width:2400px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1290px;}.e-con{--container-max-width:1290px;}}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */html, body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;   /* besser: 100dvh für mobile Browser */
}
main,               /* bzw. dein Content-Wrapper, z.B. #content, .site-main */
.site-content {
  flex: 1 0 auto;   /* wächst und füllt den freien Platz */
}
footer,
.site-footer {
  flex-shrink: 0;
}



/* =====================================================================
   OHNMACHTSTAGUNG 2026 – Anmeldeformular · GESAMT-CSS
   Zusammengeführt aus:
     • Ticketauswahl (Radio-Karten, v2)
     • Einwilligungsfelder (kompakt & fett) + Hinweisgruppe
     • Fokus-Farbe (Bernstein) für alle Felder + Dropdown mittig
   Getestet gegen GF 2.5+ Markup inkl. Orbital-Theme.
   ---------------------------------------------------------------------
   EINBINDEN: Elementor → Website-Einstellungen → Benutzerdefiniertes CSS
   (oder Customizer → Zusätzliches CSS).

   VORAUSSETZUNGEN Ticketfeld:
   1. Feldtyp: PRODUKTFELD → Darstellung "Radio Buttons"
   2. Preis-Spalte je Auswahl gefüllt (310 / 270 / 230)
   3. Feld-CSS-Klasse: ticket-auswahl
   ===================================================================== */

/* =====================================================================
   0) DESIGN-TOKENS (einmalig – identisch zur Landingpage)
   ===================================================================== */
:root {
  --ot-night:      #0D2237;   /* Nachtblau        */
  --ot-mist:       #5E86A8;   /* Nebelblau        */
  --ot-amber:      #E8963C;   /* Bernstein        */
  --ot-amber-dark: #C9761F;   /* Bernstein dunkel */
  --ot-ink:        #152433;   /* Textfarbe        */
  --ot-muted:      #5C6B7A;   /* Grau             */
  --ot-border:     #C7D3DE;   /* Rahmen ruhig     */
  --ot-bg:         #FBFCFE;   /* Feld-Hintergrund */
}


/* =====================================================================
   =============  A) TICKETAUSWAHL (Radio-Karten)  =====================
   ===================================================================== */

/* A1) CONTAINER – Karten untereinander, volle Formularbreite */
.gform_wrapper .gfield.ticket-auswahl .ginput_container_radio,
.gform_wrapper .gfield.ticket-auswahl .gfield_radio {
  width: 100% !important;
  max-width: 100% !important;
}
.gform_wrapper .gfield.ticket-auswahl .gfield_radio {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Legacy-Markup (ul/li) mit abdecken */
.gform_wrapper .gfield.ticket-auswahl ul.gfield_radio,
.gform_wrapper .gfield.ticket-auswahl ul.gfield_radio > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* A2) EINZELNE OPTION (.gchoice) – volle Breite */
.gform_wrapper .gfield.ticket-auswahl .gchoice {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  display: block !important;
}

/* Radio-Input unsichtbar, aber zugänglich */
.gform_wrapper .gfield.ticket-auswahl .gchoice input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  pointer-events: none;
}

/* A3) LABEL = KARTE (zentraler Breiten-Fix) */
.gform_wrapper .gfield.ticket-auswahl .gchoice label,
.gform_wrapper .gfield.ticket-auswahl .gchoice .gform-field-label {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 14px;
  width: 100% !important;
  max-width: 100% !important;      /* überschreibt GF: calc(100% - 24px) */
  box-sizing: border-box !important;
  position: relative;               /* Anker für das ✓-Badge */
  margin: 0 !important;
  padding: 25px 20px !important;
  border: 1.5px solid var(--ot-border) !important;
  border-radius: 12px !important;
  background: var(--ot-bg) !important;
  font-family: 'Public Sans', system-ui, sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--ot-ink) !important;
  line-height: 1.45 !important;
  cursor: pointer;
  transition: border-color .12s ease, box-shadow .12s ease, background .12s ease;
  overflow: visible !important;     /* Badge darf über den Rand ragen */
}
.gform_wrapper .gfield.ticket-auswahl .gchoice label:hover {
  border-color: var(--ot-mist) !important;
}

/* A4) PREIS (span.ginput_price von GF oder eigene .ticket-preis) */
.gform_wrapper .gfield.ticket-auswahl .gchoice label .ginput_price,
.gform_wrapper .gfield.ticket-auswahl .gchoice label .ticket-preis {
  flex: 0 0 auto;
  margin-left: auto !important;
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 1.45rem !important;
  font-weight: 600 !important;
  color: var(--ot-ink) !important;
  white-space: nowrap;
}

/* Optionale graue Unterzeile im Label:
   Komplette Tagung <small>Standardpreis</small> */
.gform_wrapper .gfield.ticket-auswahl .gchoice label small {
  display: block;
  font-size: .82rem;
  font-weight: 400;
  color: var(--ot-muted);
  margin-top: 2px;
}

/* A5) AUSGEWÄHLTER ZUSTAND – Bernstein-Rahmen + ✓-Badge an der Karte */
.gform_wrapper .gfield.ticket-auswahl .gchoice:has(input[type="radio"]:checked) label,
.gform_wrapper .gfield.ticket-auswahl .gchoice input[type="radio"]:checked + label {
  border-color: var(--ot-amber) !important;
  box-shadow: 0 0 0 3px rgba(232, 150, 60, .22) !important;
  background: #ffffff !important;
}
.gform_wrapper .gfield.ticket-auswahl .gchoice:has(input[type="radio"]:checked) label::after,
.gform_wrapper .gfield.ticket-auswahl .gchoice input[type="radio"]:checked + label::after {
  content: "✓";
  position: absolute;
  top: -10px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ot-amber);
  color: var(--ot-night);
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

/* A6) TASTATUR-FOKUS */
.gform_wrapper .gfield.ticket-auswahl .gchoice input[type="radio"]:focus-visible + label {
  outline: 3px solid var(--ot-mist) !important;
  outline-offset: 2px;
}

/* A7) MOBIL – Preis unter den Titel */
@media (max-width: 480px) {
  .gform_wrapper .gfield.ticket-auswahl .gchoice label {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px;
  }
  .gform_wrapper .gfield.ticket-auswahl .gchoice label .ginput_price,
  .gform_wrapper .gfield.ticket-auswahl .gchoice label .ticket-preis {
    margin-left: 0 !important;
    font-size: 1.3rem !important;
  }
}

/* A8) FELD-LABEL ("Ticket wählen") & Pflicht-Sternchen */
.gform_wrapper .gfield.ticket-auswahl > .gfield_label {
  font-family: 'Public Sans', system-ui, sans-serif !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  color: var(--ot-ink) !important;
  margin-bottom: 10px !important;
}
.gform_wrapper .gfield.ticket-auswahl .gfield_required {
  color: var(--ot-amber-dark) !important;
}


/* =====================================================================
   ==========  B) EINWILLIGUNGSFELDER (Consent) & HINWEISGRUPPE  =======
   ===================================================================== */

/* B1) Abstand zwischen zwei aufeinanderfolgenden Consent-Feldern kürzen */
.gform_wrapper .gfield--type-consent + .gfield--type-consent {
  margin-top: -14px !important;   /* bei Bedarf feinjustieren */
}

/* Eigene Innenabstände der Consent-Felder reduzieren */
.gform_wrapper .gfield--type-consent {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* B2) Checkbox und Text sauber nebeneinander */
.gform_wrapper .gfield--type-consent .ginput_container_consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* B3) Checkbox im Bernstein-Stil */
.gform_wrapper .gfield--type-consent input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  margin: 2px 0 0 0 !important;
  flex: 0 0 auto;
  accent-color: var(--ot-amber-dark);
  cursor: pointer;
}

/* B4) Text FETT */
.gform_wrapper .gfield--type-consent .gfield_consent_label {
  font-family: 'Public Sans', system-ui, sans-serif !important;
  font-size: .80rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  color: var(--ot-ink) !important;
  cursor: pointer;
}

/* AGB-Link im Consent-Text */
.gform_wrapper .gfield--type-consent .gfield_consent_label a {
  color: var(--ot-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gform_wrapper .gfield--type-consent .gfield_consent_label a:hover {
  color: var(--ot-amber-dark);
}

/* Pflicht-Sternchen in Bernstein */
.gform_wrapper .gfield--type-consent .gfield_required {
  color: var(--ot-amber-dark) !important;
}

/* GF-Beschreibungstext unter Consent-Feldern – dezent & eingerückt */
.gform_wrapper .gfield--type-consent .gfield_description:not(.validation_message) {
  margin-left: 32px;
  font-size: .8rem;
  color: var(--ot-muted);
}

/* B5) Hinweisgruppe (z. B. Rabatt-Hinweisbox) */
.gform_wrapper .hinweisgruppe {
  display: block;
  font-size: .85rem;
  border: 0 solid;
  border-radius: 8px;
  padding: .75rem;
  background-color: #dce7f0;
}


/* =====================================================================
   ============  C) FELDER ALLGEMEIN – FOKUS & DROPDOWN  ===============
   ===================================================================== */

/* C1) Grundzustand aller Felder vereinheitlichen */
.gform_wrapper .gform_fields input[type="text"],
.gform_wrapper .gform_fields input[type="email"],
.gform_wrapper .gform_fields input[type="tel"],
.gform_wrapper .gform_fields input[type="number"],
.gform_wrapper .gform_fields input[type="url"],
.gform_wrapper .gform_fields textarea,
.gform_wrapper .gform_fields select {
  border: 1.5px solid var(--ot-border) !important;
  border-radius: 10px !important;
  background: var(--ot-bg) !important;
  color: var(--ot-ink) !important;
  transition: border-color .12s ease, box-shadow .12s ease, background .12s ease;
}

/* C2) Einheitliche Fokus-Farbe (Bernstein) statt Browser-Blau */
.gform_wrapper .gform_fields input[type="text"]:focus,
.gform_wrapper .gform_fields input[type="email"]:focus,
.gform_wrapper .gform_fields input[type="tel"]:focus,
.gform_wrapper .gform_fields input[type="number"]:focus,
.gform_wrapper .gform_fields input[type="url"]:focus,
.gform_wrapper .gform_fields textarea:focus,
.gform_wrapper .gform_fields select:focus {
  border-color: var(--ot-amber) !important;
  box-shadow: 0 0 0 3px rgba(232, 150, 60, .22) !important;
  outline: none !important;
  background: #ffffff !important;
}

/* C3) DROPDOWN (select) – Inhalt vertikal mittig + eigener Pfeil */
.gform_wrapper .gform_fields select {
  height: 52px !important;
  line-height: 1.2 !important;
  padding: 0 44px 0 16px !important;
  display: flex !important;
  align-items: center !important;
  font-size: .98rem !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%235C6B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px 9px !important;
}
/* Pfeil beim Fokus in Bernstein */
.gform_wrapper .gform_fields select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23C9761F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px 9px !important;
}
/* IE/Edge-Altlast: nativen Pfeil ausblenden */
.gform_wrapper .gform_fields select::-ms-expand { display: none; }

/* C4) Einheitliche Höhe für Text-Inputs (optische Angleichung ans select)
       Bei Bedarf auskommentieren. */
.gform_wrapper .gform_fields input[type="text"],
.gform_wrapper .gform_fields input[type="email"],
.gform_wrapper .gform_fields input[type="tel"],
.gform_wrapper .gform_fields input[type="number"],
.gform_wrapper .gform_fields input[type="url"] {
  height: 52px !important;
  padding: 0 16px !important;
  font-size: .98rem !important;
}
.gform_wrapper .gform_fields textarea {
  padding: 12px 16px !important;
  font-size: .98rem !important;
}/* End custom CSS */