:root{
  --ink:#0b2340; --muted:#5a6b7b;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius: 16px;
  --good:#1a7f37; --bad:#b42318;
}
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 600px at 20% 10%, #243b55 0%, #141e30 55%, #0b1020 100%);
  min-height:100vh;
}
body::before, body::after{
  content:"";
  position:fixed;
  top:0; bottom:0;
  width:18vw;
  max-width:240px;
  pointer-events:none;
  z-index:0;
  opacity:.55;
}
body::before{
  left:0;
  background: radial-gradient(closest-side at 30% 30%, rgba(255,255,255,.14), rgba(255,255,255,0));
}
body::after{
  right:0;
  background: radial-gradient(closest-side at 70% 30%, rgba(255,255,255,.10), rgba(255,255,255,0));
}
.wrap{ max-width: 980px; margin: 0 auto; padding: 28px 16px 48px; position:relative; z-index:1; }

.header{
  display:flex; gap:16px; align-items:flex-start; justify-content:space-between;
  padding:18px 18px; background: rgba(255,255,255,.92);
  border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(8px);
  flex-wrap:wrap;
}
.brand{ display:flex; gap:14px; align-items:flex-start; flex:1 1 520px; min-width: 280px; }
.logoBox{ flex: 0 0 auto; max-width: 190px; }
.logoBox svg{ width: 190px; height:auto; display:block; }
.title{ flex: 1 1 320px; min-width: 240px; }
.title h1{ margin:0; font-size: 20px; line-height: 1.2; }
.title p{ margin:6px 0 0; color:var(--muted); }
.miniLinks{ margin-top: 10px; display:flex; gap:10px; flex-wrap:wrap; }
.miniLink{ font-size: 12px; color:#0b2340; text-decoration:none; padding:6px 10px; border-radius:999px; border:1px solid #e6ebf2; background:#fff; font-weight:800; }

.langToggle{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px; border-radius: 999px; background:#fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  flex: 0 0 auto;
}
.muted{ color: var(--muted); font-size: 13px; }

.switch{ width:48px;height:28px;border-radius:20px;background:#d7dde5; position:relative; cursor:pointer; }
.knob{ width:22px;height:22px;border-radius:50%; background:#fff; position:absolute; top:3px; left:3px;
  transition: all .2s ease; box-shadow: 0 4px 10px rgba(0,0,0,.15); }
.switch.on{ background:#0b2340; } .switch.on .knob{ left:23px; }

.steps{
  margin-top:18px; background: rgba(255,255,255,.92); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px;
  position: sticky; top: 10px; z-index: 30;
}
.stepRow{ display:flex; gap:10px; flex-wrap:wrap; }
.step{
  flex:1 1 140px; padding:10px 10px; border-radius: 12px;
  background:#f2f5fa; color: var(--muted); font-size: 13px;
  border: 1px solid #e6ebf2; display:flex; gap:10px; align-items:center;
  cursor:pointer; user-select:none;
}
.step .dot{ width:10px;height:10px;border-radius:50%; background:#c5cfdb; }
.step.active{ background:#0b2340; color:#fff; border-color:#0b2340; }
.step.active .dot{ background:#fff; }

.card{
  margin-top:18px; background: rgba(255,255,255,.93); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px;
}
.section{ scroll-margin-top: 120px; }
.section h2{ margin: 6px 0 10px; font-size: 18px; }
.divider{ height:1px; background:#eef2f7; margin: 18px 0; }

.grid{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
@media(max-width:820px){ .grid{ grid-template-columns: 1fr; } }

label{ display:block; font-size: 13px; color: var(--muted); margin: 10px 0 6px; }

input, select, textarea{
  width:100%; padding: 12px 12px; border-radius: 12px; border: 1px solid #dfe6ef;
  background:#fff; outline: none; font-size: 14px;
}
textarea{ min-height: 110px; resize: vertical; }

.disclaimer{
  margin-top: 10px; padding: 12px; border-radius: 14px; background:#f6f8fc;
  border:1px solid #e7edf6; font-size: 13px; color: var(--muted);
}

.typeCards{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 6px; }
.typeCard{
  flex: 1 1 180px; border-radius: 14px; border: 1px solid #e1e8f1; background:#f7f9fd;
  padding: 12px 12px; cursor:pointer; transition: all .15s ease; user-select:none;
  display:flex; justify-content:space-between; align-items:center;
}
.typeCard.selected{ background:#0b2340; color:#fff; border-color:#0b2340; }
.pill{ font-size: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.6); color:#0b2340; }
.typeCard.selected .pill{ background: rgba(255,255,255,.2); color:#fff; }
.typeIcon{ margin-right:8px; font-size:16px; line-height:1; }

.panel{
  margin-top: 12px; border-radius: 14px; border: 1px solid #e7edf6; background:#fbfcff;
  padding: 14px; display:none;
}
.panel.show{ display:block; }

.infoWrap{ display:inline-flex; align-items:center; gap:8px; }
.infoI{
  width:18px;height:18px;border-radius:50%; display:inline-flex; align-items:center; justify-content:center;
  font-size: 12px; background:#0b2340; color:#fff; cursor:help; position:relative;
}
.tip{
  display:none; position:absolute; left: 22px; top: -6px; width: 280px;
  background:#0b2340; color:#fff; padding:10px; border-radius: 12px; font-size: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18); z-index: 50;
}
.infoI:hover .tip{ display:block; }

.drop{
  border: 2px dashed #cfd9e6; border-radius: 14px; padding: 14px; background: #fff;
}
.drop.dragover{ border-color:#0b2340; background:#f1f5ff; }
.fileList{ margin-top: 10px; font-size: 13px; color: var(--muted); }
.fileItem{ display:flex; justify-content:space-between; gap:10px; padding: 6px 0; border-bottom:1px solid #eef2f7; }
.fileItem:last-child{ border-bottom:none; }

.smallBtn{ border:1px solid #dfe6ef; background:#fff; padding: 10px 12px; border-radius: 12px; cursor:pointer; font-weight:800; }

.btn{
  border:none; padding: 12px 16px; border-radius: 14px; cursor:pointer; font-weight: 900;
  background:#0b2340; color:#fff; box-shadow: 0 10px 24px rgba(11,35,64,.18);
}

footer{ margin-top: 18px; text-align:center; color: var(--muted); font-size: 13px; }

/* Overlay + Modal */
.overlay{
  display:none; position:fixed; inset:0; background: rgba(0,0,0,.35);
  z-index: 999; align-items:center; justify-content:center;
}
.overlay.show{ display:flex; }
.modal{
  width: min(560px, 92vw);
  background:#fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  padding: 18px;
}
.modalTop{ display:flex; gap:12px; align-items:center; }
.spin{
  width:40px;height:40px; border:4px solid rgba(11,35,64,.18); border-top-color:#0b2340;
  border-radius:50%; animation: spin 1s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.modalTitle{ margin:0; font-size:16px; }
.modalMsg{ margin:10px 0 0; color:#0b2340; white-space: pre-wrap; }
.modalMsg.good{ color: var(--good); }
.modalMsg.bad{ color: var(--bad); }
.modalActions{ display:flex; justify-content:flex-end; gap:10px; margin-top: 14px; }
.modalBtn{ border:1px solid #dfe6ef; background:#fff; padding: 10px 12px; border-radius: 12px; cursor:pointer; }
.modalBtn.primary{ border:none; background:#0b2340; color:#fff; font-weight:900; }

/* Success icon (green circled checkmark) for modal */
.spin.ok{
  border:none !important;
  animation:none !important;
  background: transparent !important;
  display:flex;
  align-items:center;
  justify-content:center;
}
.spin.ok svg{ width:40px; height:40px; display:block; }


/* ---------- Revamp UX additions ---------- */

.trustStrip{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 12px;
}
.trustBadge{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #e6ebf2;
  background: rgba(255,255,255,.95);
  color: #0b2340;
  font-weight: 800;
}

.summaryBar{
  margin-top: 10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid #e6ebf2;
}
.sumItem{
  display:flex;
  gap:8px;
  align-items:center;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eef2f7;
  flex: 1 1 190px;
  min-width: 190px;
}
.sumLabel{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}
.sumValue{
  font-size: 12px;
  font-weight: 900;
  color: #0b2340;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step{
  position: relative;
}
.stepCheck{
  margin-left:auto;
  width:18px;
  height:18px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid #e6ebf2;
  background: rgba(255,255,255,.65);
  color: transparent;
  flex: 0 0 auto;
}
.step.done .stepCheck{
  background: rgba(26,127,55,.10);
  border-color: rgba(26,127,55,.35);
  color: var(--good);
}
.step.done .stepCheck::before{
  content:"✓";
  color: var(--good);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}
.step.done .dot{
  background: var(--good);
}

input:focus, select:focus, textarea:focus{
  border-color: #0b2340;
  box-shadow: 0 0 0 3px rgba(11,35,64,.12);
}

.typeCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}

.panel{
  transition: opacity .15s ease;
}
.panel.show{
  opacity: 1;
}


/* === Frank Insurance Orange + Blue Theme Override === */
:root{
  --fi-theme-blue-soft:#eaf6ff;
  --fi-theme-blue-mist:#dcefff;
  --fi-theme-orange-soft:#fff3e3;
  --fi-theme-orange-mist:#ffe6c7;
  --fi-theme-cream:#fffaf3;
  --fi-theme-navy:#0b2340;
}

body{
  background:
    radial-gradient(circle at 12% 8%, rgba(255,230,199,.78), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(220,239,255,.88), transparent 34%),
    linear-gradient(135deg, var(--fi-theme-blue-soft) 0%, var(--fi-theme-cream) 47%, var(--fi-theme-orange-soft) 100%) !important;
}

body::before{
  background:
    linear-gradient(135deg, rgba(11,35,64,.04), rgba(255,154,61,.06)),
    radial-gradient(circle at 78% 28%, rgba(255,198,128,.18), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(115,185,255,.18), transparent 30%) !important;
}

.card,
.panel,
.formCard,
.summaryBar,
.stepBar,
.trustStrip,
.modal,
.glass,
.heroCard,
.homeShell,
.hero,
.homeCard,
.productCard,
.productsCard,
.quickCard{
  background:rgba(255,255,255,.88) !important;
  border-color:rgba(11,35,64,.10) !important;
  box-shadow:0 18px 44px rgba(11,35,64,.10) !important;
}

.badge,
.trustBadge,
.pill,
.chip,
.kicker,
.miniBadge{
  background:linear-gradient(135deg, rgba(234,246,255,.94), rgba(255,243,227,.94)) !important;
  border-color:rgba(11,35,64,.10) !important;
}

button.primary,
.btn.primary,
.submitBtn,
.cta.primary,
.ctaPrimary,
.primary,
button[type="submit"]{
  background:linear-gradient(135deg, #0b2340, #225f93) !important;
}

button.secondary,
.btn.secondary,
.cta.secondary,
.ctaSecondary,
.secondary{
  background:linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,243,227,.92)) !important;
  border-color:rgba(11,35,64,.14) !important;
}

input:focus,
select:focus,
textarea:focus{
  border-color:#225f93 !important;
  box-shadow:0 0 0 4px rgba(34,95,147,.13) !important;
}


/* === Professional logo integration === */
.logoBox .professionalLogo{
  width:190px;
  height:auto;
  display:block;
  filter:drop-shadow(0 12px 24px rgba(11,35,64,.12));
}
@media(max-width:560px){
  .logoBox .professionalLogo{width:150px}
}


.leadProfileBox{
  margin-top:16px;
  padding:15px;
  border:1px solid rgba(34,95,147,.16);
  border-radius:16px;
  background:linear-gradient(135deg,#f5fbff,#fff8ee);
}

.leadProfileHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:4px;
}

.leadProfileHead strong{
  color:#0b2340;
  font-size:14px;
}

.leadProfileHead span{
  max-width:560px;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}

.consentRow{
  display:flex;
  align-items:flex-start;
  gap:9px;
  margin-top:14px;
  padding:11px 12px;
  border:1px solid #dfe6ef;
  border-radius:12px;
  background:#f9fbfd;
  color:#40556b;
  line-height:1.45;
}

.consentRow input{
  width:auto;
  flex:0 0 auto;
  margin:2px 0 0;
}

.inputError{
  border-color:#b42318!important;
  box-shadow:0 0 0 3px rgba(180,35,24,.08)!important;
}


/* Life & Travel two-stage intake */
.typeCards{grid-template-columns:repeat(5,minmax(0,1fr));}
.productIntakePanel{border-color:rgba(11,35,64,.16);background:linear-gradient(135deg,#fbfdff,#fff8ef);}
.stage2Notice{display:grid;gap:4px;margin-top:14px;padding:12px 14px;border-radius:14px;background:#eef6ff;border:1px solid #cfe1f2;color:#0b2340;}
.stage2Notice span{font-size:12px;line-height:1.5;color:#52677b;}
#panelLife.show,#panelTravel.show{display:block;}
.brandCampaignBar{display:flex;gap:10px;flex-wrap:wrap;align-items:center;padding:10px 14px;border-radius:14px;background:#0b2340;color:#fff;margin:8px 0 14px;border-left:6px solid #f28c45;}
.brandCampaignBar strong{letter-spacing:.04em}.brandCampaignBar span{color:#ffd7b8;font-size:12px;font-weight:800;}
@media(max-width:900px){.typeCards{grid-template-columns:repeat(2,minmax(0,1fr));}}


/* Consent and communications */
.consentGroup{margin-top:16px;padding:14px;border:1px solid #d8e2ee;border-radius:16px;background:#fff;}
.consentGroupHead{display:grid;gap:4px;margin-bottom:4px;}
.consentGroupHead strong{color:#0b2340;font-size:14px;}
.consentGroupHead span{font-size:12px;line-height:1.45;color:var(--muted);}
.consentRow a{color:#0b5f9e;font-weight:800;text-decoration:underline;text-underline-offset:2px;}
.consentOptional{background:#fffaf4;border-color:#f2dcc9;}
.schedulerCampaign{margin:8px 0 10px;max-width:760px;}
.schedulerCampaign #t_campaignProducts{font-size:11px;letter-spacing:.05em;color:#fff;}


/* === Scheduler mobile header containment === */
.logoHomeLink{display:block;max-width:100%;text-decoration:none}
@media(max-width:640px){
  .wrap{padding:14px 10px 36px}
  .header{
    padding:14px;
    gap:12px;
    overflow:hidden;
  }
  .brand{
    flex:1 1 100%;
    width:100%;
    min-width:0;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  .logoBox{
    width:112px;
    max-width:112px;
    align-self:center;
  }
  .logoBox .professionalLogo{
    width:112px;
    max-width:100%;
    height:auto;
  }
  .title{
    flex:1 1 auto;
    width:100%;
    min-width:0;
  }
  .title h1{
    font-size:18px;
    overflow-wrap:anywhere;
  }
  .title p{
    font-size:13px;
    line-height:1.45;
    overflow-wrap:anywhere;
  }
  .schedulerCampaign{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    width:100%;
    max-width:100%;
    min-width:0;
    gap:4px;
    padding:10px 11px;
    margin:9px 0 10px;
    border-left-width:4px;
    box-sizing:border-box;
  }
  .schedulerCampaign strong,
  .schedulerCampaign span{
    display:block;
    min-width:0;
    max-width:100%;
    white-space:normal;
    overflow-wrap:anywhere;
    word-break:normal;
    line-height:1.35;
  }
  .schedulerCampaign strong{font-size:12px}
  .schedulerCampaign #t_campaignSecondary{font-size:11px}
  .schedulerCampaign #t_campaignProducts{
    font-size:10px;
    letter-spacing:.025em;
  }
  .miniLinks{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    width:100%;
    gap:7px;
    margin-top:8px;
  }
  .miniLink{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:0;
    max-width:100%;
    padding:7px 8px;
    text-align:center;
    line-height:1.25;
    white-space:normal;
    overflow-wrap:anywhere;
    box-sizing:border-box;
  }
  .langToggle{
    margin:0 auto;
    max-width:100%;
  }
  .summaryBar{overflow:hidden}
  .sumItem{min-width:0}
  .sumValue{overflow-wrap:anywhere}
}
@media(max-width:380px){
  .miniLinks{grid-template-columns:1fr}
}


/* === Scheduler top-card alignment — isolated responsive layout === */
.schedulerPage,
.schedulerPage *{
  box-sizing:border-box;
}

.schedulerPage .schedulerHeader{
  width:100%;
  max-width:100%;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:start;
  gap:16px;
  overflow:hidden;
}

.schedulerPage .schedulerBrand{
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  align-items:start;
  gap:16px;
  width:100%;
  min-width:0;
  max-width:100%;
}

.schedulerPage .schedulerLogoBox{
  width:190px;
  max-width:100%;
  min-width:0;
}

.schedulerPage .schedulerLogoBox .logoHomeLink{
  display:block;
  width:100%;
  max-width:100%;
}

.schedulerPage .schedulerLogoBox .professionalLogo{
  display:block;
  width:100%;
  max-width:190px;
  height:auto;
  margin:0 auto;
}

.schedulerPage .schedulerTitle{
  width:100%;
  max-width:100%;
  min-width:0;
  overflow:hidden;
}

.schedulerPage .schedulerTitle h1,
.schedulerPage .schedulerTitle p{
  max-width:100%;
  overflow-wrap:break-word;
  word-break:normal;
}

.schedulerPage .schedulerCampaign{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  width:100%;
  max-width:100%;
  min-width:0;
  margin:10px 0;
  padding:11px 13px;
  gap:4px;
  overflow:hidden;
}

.schedulerPage .schedulerCampaign strong,
.schedulerPage .schedulerCampaign span{
  display:block;
  width:100%;
  max-width:100%;
  min-width:0;
  white-space:normal;
  overflow-wrap:break-word;
  word-break:normal;
  line-height:1.35;
}

.schedulerPage .schedulerCampaign #t_campaignProducts{
  letter-spacing:.035em;
}

.schedulerPage .schedulerMiniLinks{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  gap:8px;
  width:100%;
  max-width:100%;
  min-width:0;
  margin-top:9px;
}

.schedulerPage .schedulerMiniLinks .miniLink{
  flex:0 1 auto;
  min-width:0;
  max-width:100%;
  white-space:normal;
  overflow-wrap:break-word;
  text-align:center;
  line-height:1.25;
}

.schedulerPage .schedulerLangToggle{
  align-self:start;
  justify-self:end;
  max-width:100%;
}

@media(max-width:900px){
  .schedulerPage .schedulerHeader{
    grid-template-columns:minmax(0,1fr);
    gap:12px;
    padding:15px;
  }

  .schedulerPage .schedulerBrand{
    grid-template-columns:145px minmax(0,1fr);
    gap:14px;
  }

  .schedulerPage .schedulerLogoBox{
    width:145px;
  }

  .schedulerPage .schedulerLogoBox .professionalLogo{
    max-width:145px;
  }

  .schedulerPage .schedulerLangToggle{
    justify-self:start;
    margin:0;
  }
}

@media(max-width:620px){
  .schedulerPage .wrap{
    width:100%;
    max-width:100%;
    padding:12px 9px 34px;
    overflow:visible;
  }

  .schedulerPage .schedulerHeader{
    width:100%;
    max-width:100%;
    padding:13px;
    gap:10px;
    overflow:hidden;
  }

  .schedulerPage .schedulerBrand{
    grid-template-columns:minmax(0,1fr);
    width:100%;
    max-width:100%;
    gap:8px;
  }

  .schedulerPage .schedulerLogoBox{
    width:105px;
    max-width:105px;
    justify-self:center;
  }

  .schedulerPage .schedulerLogoBox .professionalLogo{
    width:105px;
    max-width:105px;
  }

  .schedulerPage .schedulerTitle{
    width:100%;
    max-width:100%;
    text-align:left;
  }

  .schedulerPage .schedulerTitle h1{
    font-size:18px;
    line-height:1.25;
  }

  .schedulerPage .schedulerTitle p{
    font-size:13px;
    line-height:1.42;
  }

  .schedulerPage .schedulerCampaign{
    width:100%;
    max-width:100%;
    padding:10px;
    border-left-width:4px;
  }

  .schedulerPage .schedulerCampaign strong{
    font-size:11.5px;
  }

  .schedulerPage .schedulerCampaign #t_campaignSecondary{
    font-size:11px;
  }

  .schedulerPage .schedulerCampaign #t_campaignProducts{
    font-size:9.5px;
    letter-spacing:.015em;
  }

  .schedulerPage .schedulerMiniLinks{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    width:100%;
    max-width:100%;
    gap:7px;
  }

  .schedulerPage .schedulerMiniLinks .miniLink{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    max-width:100%;
    padding:8px 7px;
    font-size:11px;
  }

  .schedulerPage .schedulerLangToggle{
    justify-self:center;
    margin:0;
  }
}

@media(max-width:360px){
  .schedulerPage .schedulerMiniLinks{
    grid-template-columns:minmax(0,1fr);
  }
}


/* === Scheduler mobile sticky compatibility fix === */
@media(max-width:620px){
  html,
  body.schedulerPage{
    overflow-x:clip;
  }

  .schedulerPage .steps{
    position:-webkit-sticky;
    position:sticky;
    top:10px;
    z-index:30;
  }
}


/* === Compact mobile scheduler progress tracker === */
@media(max-width:620px){
  .schedulerPage .steps{
    position:-webkit-sticky;
    position:sticky;
    top:6px;
    z-index:30;
    margin-top:10px;
    padding:6px;
    border-radius:12px;
  }

  .schedulerPage .stepRow{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:4px;
    width:100%;
    max-width:100%;
  }

  .schedulerPage .step{
    min-width:0;
    padding:6px 3px;
    gap:4px;
    justify-content:center;
    text-align:center;
    font-size:9.5px;
    line-height:1.1;
    border-radius:9px;
    flex:none;
  }

  .schedulerPage .step .dot{
    width:6px;
    height:6px;
    flex:0 0 6px;
  }

  .schedulerPage .stepCheck{
    display:none;
  }

  .schedulerPage .summaryBar{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:4px;
    margin-top:5px;
    padding:4px;
    border-radius:10px;
  }

  .schedulerPage .sumItem{
    min-width:0;
    padding:4px 3px;
    gap:1px;
    border-radius:8px;
    flex:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
  }

  .schedulerPage .sumLabel{
    width:100%;
    font-size:7.5px;
    line-height:1.05;
    text-transform:uppercase;
    letter-spacing:.02em;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .schedulerPage .sumValue{
    width:100%;
    font-size:9px;
    line-height:1.1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}

@media(max-width:380px){
  .schedulerPage .steps{
    top:4px;
    padding:5px;
  }

  .schedulerPage .step{
    padding:5px 2px;
    font-size:8.5px;
  }

  .schedulerPage .sumLabel{
    font-size:7px;
  }

  .schedulerPage .sumValue{
    font-size:8.5px;
  }
}

.sectionHint{
  margin:0 0 8px;
  line-height:1.45;
}
