/* ========= FusionTherapie Design System ========= */
:root{
  --text:rgba(0, 0, 0, 0.8);   /* Schwarz 80% für Text */
  --muted:rgba(0, 0, 0, 0.6);  /* Schwarz 60% für Nebentext */
  --panel:#ecf0f1;             /* Helles Panel-Grau */
  --line:#bdc3c7;              /* Linie-Grau */
  --tile:rgba(0, 0, 0, 0.8);   /* Schwarz 80% für Kacheln */
  --tileBand:#ffcc00;          /* Gelb für Buttons */
  --tileText:rgba(0, 0, 0, 0.8); /* Schwarz 80% für Text auf Gelb */
  --accent:#ffcc00;            /* Gelb als Akzent */
  --accent-pressed:#e6b800;    /* Dunkleres Gelb beim Klicken */
  --accent-light:#fff566;      /* Helleres Gelb als sekundärer Akzent */
  --bg:#ffffff;                /* Weißer Hintergrund */
  --bg-gradient:linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --radius:16px;               /* Größere Rundungen für modernen Look */
  --radius-sm:12px;
  --shadow:0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover:0 12px 48px rgba(0, 0, 0, 0.15);
  --maxw:900px;                /* Etwas breiter für bessere Nutzung */
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:var(--bg-gradient);
  color:var(--text);
  font:16px/1.4 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
.wrap{
  max-width:var(--maxw);
  margin:32px auto;
  padding:0 20px;
}

/* ========= Header/Brand ========= */
.site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 24px;
  background:rgba(248,249,250,0.95);
  backdrop-filter:blur(10px);
  border-radius:var(--radius);
  margin-bottom:24px;
  box-shadow:var(--shadow);
  position:relative;
}
.backlink{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  visibility:hidden;
  padding:8px 16px;
  border-radius:var(--radius-sm);
  transition:background 0.2s ease;
  flex:0 0 auto;
}
.backlink.enabled{visibility:visible}
.backlink:hover{background:rgba(255,204,0,0.1)}
.brand{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-logo{
  height:40px;
  width:auto;
  object-fit:contain;
}
.header-next{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  visibility:hidden;
  padding:8px 16px;
  border-radius:var(--radius-sm);
  transition:background 0.2s ease;
  flex:0 0 auto;
  background:transparent;
  border:none;
  cursor:pointer;
  font-size:16px;
}
.header-next.enabled{
  visibility:visible;
}
.header-next:hover{
  background:rgba(255,204,0,0.1);
}
.header-next:disabled{
  opacity:0.5;
  cursor:not-allowed;
}

/* ========= Titel/Absätze ========= */
.page-title{
  margin:8px 0 24px 0;
  text-align:center;
  font-weight:800;
  font-size:42px;
  color:var(--text);
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
h2.step-title{
  margin:0 0 16px 0;
  text-align:center;
  font-weight:800;
  font-size:32px;
  color:var(--text);
  line-height:1.2;
}
p.sub{
  margin:0 0 24px 0;
  text-align:center;
  color:var(--muted);
  max-width:720px;
  margin-inline:auto;
  font-size:16px;
  line-height:1.5;
}

/* ========= Choice-Kacheln (wie 1.png / 2.png / manuell.png / gesetzlich.png) ========= */
.choices{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(16px,3vw,24px);place-items:stretch;margin-top:clamp(12px,2vw,16px)}
@media (max-width:720px){.choices{grid-template-columns:1fr}}

.choice{
  width:100%;
  min-width:0;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--bg);
  border:2px solid var(--line);
  box-shadow:var(--shadow);
  cursor:pointer;
  user-select:none;
  transition: all 0.3s ease;
}
.choice:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color:var(--accent);
}
.choice-top{
  background:linear-gradient(135deg, var(--tile) 0%, rgba(0, 0, 0, 0.9) 100%);
  height: clamp(120px, 22vw, 160px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  font-size:48px;
  position:relative;
}
.choice-top.absagen-icon{
  font-size:64px
}
.choice-top.icon-x{
  font-size:64px;
  font-weight:300
}
.choice-band{
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-pressed) 100%);
  color:var(--tileText);
  padding:clamp(14px,2.5vw,18px) clamp(16px,3vw,24px);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  text-align:center;
  font-size:clamp(13px,2.8vw,14px);
}
.choice:active{transform:translateY(2px)}

/* Icon circle for choice buttons */
.icon-circle{
  width:clamp(64px,12vw,88px);height:clamp(64px,12vw,88px);border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background: radial-gradient(120% 120% at 30% 30%, #ffffff 0%, #f6f7f9 65%, #eef1f5 100%);
  color:#111;
  font-size:clamp(32px,5.5vw,44px); line-height:1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22), inset 0 1px 2px rgba(255,255,255,0.85);
  border:2px solid rgba(255,255,255,0.9);
  transition: transform .2s ease;
}
.choice:hover .icon-circle{ transform: translateY(-1px) scale(1.02); }
.choice:active .icon-circle{ transform: translateY(1px) scale(0.98); }

/* Keyboard focus ring for full card */
.choice:focus-visible{
  outline:none;
  box-shadow: var(--shadow-hover), 0 0 0 3px rgba(255,204,0,0.35);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.choice-wrap{position:relative}

/* ========= Formular-Elemente ========= */
.form{
  display:grid;gap:14px;max-width:620px;margin:0 auto 6px auto
}
.field{display:grid;gap:6px}
label{font-weight:700;font-size:14px;color:var(--text)}
input[type="text"],input[type="email"],input[type="tel"],input[type="date"],select,textarea{
  width:100%;padding:12px 12px;border-radius:10px;border:1px solid var(--line);background:#fff;outline:none
}
textarea{min-height:112px;resize:vertical}

/* Datei-Upload (neu.png) */
.dropzone{
  border:2px dashed var(--line);padding:14px;border-radius:10px;background:#fff;color:#6f747a;cursor:pointer;text-align:center
}
.dropzone:hover{background:rgba(0,0,0,0.02)}
.dropzone:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(255,204,0,0.25)}
.dropzone.dragover{border-color:var(--accent);background:rgba(255,204,0,0.06)}
.btn-row{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:6px}

/* ========= Segmented Controls (Ja/Nein) ========= */
.segment{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  max-width:620px;
  margin:0 auto 24px auto;
}
.segment .seg{
  background:rgba(255,255,255,0.9);
  border:2px solid var(--line);
  border-radius:var(--radius);
  padding:16px 24px;
  text-align:center;
  cursor:pointer;
  font-weight:700;
  color:var(--text);
  transition: all 0.3s ease;
  backdrop-filter:blur(10px);
}
.segment .seg:hover {
  background:rgba(255,255,255,1);
  border-color:var(--accent);
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}
.segment .seg.active{
  border-color:var(--accent);
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-pressed) 100%);
  color:var(--tileText);
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
}

/* ========= Primäre Buttons („Weiter“ / „Absenden“) ========= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 32px;
  border-radius:var(--radius);
  border:2px solid transparent;
  cursor:pointer;
  font-weight:800;
  letter-spacing:.02em;
  user-select:none;
  transition: all 0.3s ease;
  font-size:16px;
}
.btn-primary{
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-pressed) 100%);
  color:#fff;
  box-shadow:var(--shadow);
  border-color: var(--accent);
}
.btn-primary:disabled{
  opacity:.5;
  cursor:not-allowed;
  transform:none;
}
.btn-primary:not(:disabled):active{
  transform:translateY(2px);
  box-shadow:0 4px 16px rgba(255,204,0,0.3);
}
.btn-primary:not(:disabled):hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
}
.btn-ghost{
  background:rgba(255,255,255,0.9);
  color:var(--text);
  border:2px solid var(--line);
  backdrop-filter:blur(10px);
}
.btn-ghost:hover{
  background:rgba(255,255,255,1);
  border-color:var(--accent);
  transform:translateY(-2px);
}
.btn-dark{
  background:linear-gradient(135deg, var(--tile) 0%, #2c3e50 100%);
  color:#fff;
  border:2px solid var(--tile);
}
.btn-dark:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}

/* ========= CTA-Zeile (nur wenn nötig sichtbar) ========= */
.cta-row{display:flex;justify-content:center;margin:18px 0 8px 0}
.hidden{display:none!important}

/* ========= Extra-Abschnitte (terminauswahl: Hinweis + Öffnungszeiten) ========= */
.extra-below{max-width:720px;margin:18px auto 0 auto}
.notice{
  display:flex;align-items:flex-start;gap:8px;color:#bb3a3a;font-weight:700;margin-bottom:10px
}
.opening-grid{
  margin-top:16px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px
}
@media (max-width:720px){.opening-grid{grid-template-columns:1fr}}
.card{
  background:#fff;border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);padding:14px
}
.card .title{font-weight:900;margin-bottom:8px}
.card dl{margin:0}
.card dt{font-weight:800;color:#3a3f46}
.card dd{margin:0 0 6px 0;color:#6b6f76}

/* ========= Fußzeile ========= */
.legal{
  display:flex;gap:8px;justify-content:center;align-items:center;margin:24px 0;color:var(--muted)
}
.legal a{color:var(--muted);text-decoration:none}
.legal .dot{opacity:.6}

/* ========= Utilities ========= */
.hidden{display:none}
.visually-hidden{ position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(0 0 0 0); clip-path: inset(50%); white-space:nowrap; margin:-1px; padding:0; border:0 }
.spacer{height:20px}
.subtle{color:var(--muted);font-size:13px;text-align:center;line-height:1.3}

/* ========= Reference Images ========= */
.refshot{
  max-width:100%;margin:16px auto;text-align:center;order:10
}
.refshot img{
  max-width:60%;height:auto;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,0.1);
  border:1px solid var(--line)
}
.refshot .subtle{
  margin-top:8px;font-size:12px
}
/* fusiontherapie theme overrides for termin2 flow */

/* Base */
html, body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.wrap { max-width: 860px; margin: 24px auto; padding: 0 16px; }

/* Header to match fusiontherapie */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
header .logo-text { font-size: 24px; font-weight: 300; letter-spacing: 2px; color: #666; }

/* Card -> white panel like fusiontherapie content */
.card {
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Titles */
.title {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 24px 0;
  color: #333;
}

/* Topbar and crumbs */
.topbar { margin-bottom: 12px; }
.crumbs { font-size: 12px; color: #666; gap: 8px; display: flex; align-items: center; flex-wrap: wrap; }
.crumbs .active { color: #8b9dc3; font-weight: 600; }
.crumbs .dot { width: 6px; height: 6px; border-radius: 50%; background: #cbd3dc; }

/* Footer */
.footer { margin-top: 14px; display: flex; gap: 10px; justify-content: space-between; align-items: center; }
.footer .note { font-size: 12px; color: #666; }
.footer .right { display: flex; gap: 10px; }

/* Buttons -> map to fusiontherapie style */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 8px; border: 1px solid #e1e5e9;
  background: #f8f9fa; color: #333; cursor: pointer; text-decoration: none;
  user-select: none; gap: 8px; font-weight: 500;
  transition: background .2s ease, transform .05s ease;
}
.btn:hover { background: #e9ecef; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: #8b9dc3; color: #fff; border-color: #8b9dc3; }
.btn-primary:hover { background: #7a8bb0; }
.btn-ghost { background: transparent; border-color: transparent; color: #666; }
.btn-danger { background: #fff0f0; border-color: #ffd6d6; color: #b13636; }
.btn-small { padding: 8px 12px; font-size: 14px; }

/* Inputs */
.field { display: grid; gap: 6px; }
label { font-weight: 600; font-size: 14px; color: #333; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%; padding: 12px; border-radius: 8px; border: 1px solid #e1e5e9;
  background: #fff; color: #333; outline: none; font-size: 14px;
}
input:focus, select:focus, textarea:focus { border-color: #8b9dc3; box-shadow: 0 0 0 3px rgba(139, 157, 195, 0.12); }
textarea { min-height: 100px; resize: vertical; }

/* ========= Custom Selects (Unified) ========= */
select{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  background-color:#fff;
  background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23909db8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:16px 16px;
  padding:12px 44px 12px 12px; /* ensure space for arrow */
  min-height:44px;
  cursor:pointer;
  background-clip: padding-box;
}
select:hover{ border-color:#8b9dc3; }
select:focus{ border-color:#8b9dc3; box-shadow:0 0 0 3px rgba(139,157,195,0.12); }
select:disabled{ background-color:#f7f8fa; color:#9aa2ad; cursor:not-allowed; }
select[multiple]{ background-image:none; padding:12px; min-height:auto; }
/* Hide default arrow in old IE */
select::-ms-expand{ display:none; }
/* Firefox dotted text focus artifact fix */
select:-moz-focusring { color: transparent; text-shadow: 0 0 0 #333; }

/* Wrapper-based custom arrow for robust rendering (iOS/Safari etc.) */
.select-wrap{ position: relative; }
.select-wrap::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23909db8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
/* Disable background-image arrow on selects inside wrapper to avoid double arrow */
.select-wrap select{
  background-image: none !important;
  padding-right: 44px; /* keep space for wrapper arrow */
}

/* Rows and grids */
.row { display: flex; flex-wrap: wrap; gap: 12px; }
.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }

/* Choice buttons as cards */
.row .btn[data-choice], .grid .btn[data-choice] {
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 20px 18px;
  min-width: 260px;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.row .btn[data-choice]:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }

/* Info/warning blocks */
.muted { color: #666; }
.pill { background: #fff; color: #666; padding: 6px 10px; border-radius: 999px; font-size: 12px; border: 1px solid #e1e5e9; }

/* Switch row */
.switch-row { display: flex; align-items: center; gap: 12px; }
.switch-row input { transform: scale(1.1); }

/* Utility */
.hidden { display: none !important; }

/* ========= Modal Overlay ========= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1000;
}
.overlay.show { display: flex; }

.modal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.modal-title { font-weight: 800; font-size: 18px; }
.modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.modal-content { padding: 16px; }
.modal-actions {
  padding: 12px 16px 16px 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
}
.phone {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 6px 0 14px 0;
}

/* ========= Icons in Eingabefeldern ========= */
.input-icon{ position: relative; display: flex; align-items: center; }
.input-icon .icon{ position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 16px; }
.input-icon input, .input-icon select, .input-icon textarea{ padding-left: 40px; }
.input-icon:focus-within .icon{ color: var(--accent); }

/* ========= Floating Labels ========= */
.field.floating{ position: relative; }
.field.floating > label{
  position: absolute; left: 40px; right: 12px; top: 14px;
  background: #fff; padding: 0 6px; border-radius: 4px;
  color: var(--muted); font-weight: 600; font-size: 14px;
  transform-origin: left top; transition: transform .15s ease, color .15s ease, top .15s ease;
  z-index: 1;
}
.field.floating:focus-within > label,
.field.floating.filled > label{
  top: -8px; transform: scale(0.9);
  color: var(--accent);
}

/* ========= iOS/WebKit Date-Inputs angleichen ========= */
input[type="date"]{ -webkit-appearance: none; appearance: none; }
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button{ display: none; }
input[type="date"]::-webkit-calendar-picker-indicator{ opacity: 0; }

/* ========= Flatpickr Theme (Fusion) ========= */
.flatpickr-calendar{ border-radius: 12px; box-shadow: var(--shadow-hover); border: 1px solid var(--line); }
.flatpickr-months .flatpickr-month{ color: var(--text); font-weight: 800; }
.flatpickr-weekday{ color: var(--muted); font-weight: 600; }
.flatpickr-day:hover{ background: rgba(255,204,0,0.12); }
.flatpickr-day.today{ border-color: var(--accent); }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange{
  background: var(--accent); border-color: var(--accent); color: var(--tileText);
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year{ font-weight: 800; }

/* Bold placeholder for Geburtsdatum (fallback + flatpickr altInput) */
#geb::placeholder,
#geb_visible::placeholder{
  font-weight:700;
  color:var(--text);
  opacity:1; /* Safari/WebKit */
}
/* WebKit prefix fallback */
#geb::-webkit-input-placeholder,
#geb_visible::-webkit-input-placeholder{
  font-weight:700;
  color:var(--text);
  opacity:1;
}

/* ======= Fake Select (vanilla) ======= */
.select-wrap--fake{ position: relative; }
.select-wrap--fake::after{ display:none; }

.fake-select{ position: relative; }
.fake-select .fs-button{
  width:100%;
  text-align:left;
  padding:12px 44px 12px 12px;
  min-height:44px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  color:#333;
  font-size:14px;
  cursor:pointer;
}
.fake-select .fs-button:focus{
  border-color:#8b9dc3;
  box-shadow:0 0 0 3px rgba(139,157,195,0.12);
  outline:none;
}
.fake-select .fs-button::after{
  content:"";
  position:absolute;
  top:50%;
  right:12px;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23909db8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:16px 16px;
  transition: transform .15s ease;
}
.fake-select.open .fs-button{ border-color:#8b9dc3; box-shadow:0 0 0 3px rgba(139,157,195,0.12); }
.fake-select.open .fs-button::after{ transform:translateY(-50%) rotate(180deg); }

.fs-menu{
  display:none;
  position:absolute;
  left:0; right:0; top:calc(100% + 6px);
  z-index:2000;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:var(--shadow-hover);
  max-height:none;
  overflow:visible;
  margin:0;
  padding:6px 0;
  list-style:none;
}
.fake-select.open .fs-menu{ display:block; }

.fs-option{
  display:block;
  padding:10px 12px;
  cursor:pointer;
  line-height:1.2;
  color:var(--text);
  border:1px solid var(--line);
  border-radius:8px;
  margin:4px 8px;
  background:#fff;
  transition: background-color .15s ease, border-color .15s ease;
}
.fs-option:hover, .fs-option.active{ background: rgba(139,157,195,0.12); border-color:#8b9dc3; }
.fs-option.selected{ font-weight:700; border-color:#8b9dc3; }
.fs-option[aria-disabled="true"]{ color:#9aa2ad; cursor:not-allowed; pointer-events:none; }
