/*!
 * Famurgentcare Leads – Frontend Form Styles v1.1.0
 * All rules are scoped inside #fcl-wrap to avoid bleeding into or from the theme.
 * Where themes use !important we match with !important to win specificity wars.
 */

/* ══════════════════════════════════════════════
   1. SCOPED CSS VARIABLES
══════════════════════════════════════════════ */
#fcl-wrap {
  --fcl-blue:      #0055a5;
  --fcl-blue-dk:   #003d7a;
  --fcl-accent:    #e8f0fb;
  --fcl-green:     #1a9e5c;
  --fcl-red:       #dc2626;
  --fcl-text:      #111827;
  --fcl-muted:     #6b7280;
  --fcl-border:    #d1d5db;
  --fcl-bg:        #ffffff;
  --fcl-font:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ══════════════════════════════════════════════
   2. WRAPPER — the outermost shell
══════════════════════════════════════════════ */
#fcl-wrap {
  all: initial !important;           /* nuclear reset — clears inherited theme styles */
  display: block !important;
  font-family: var(--fcl-font) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: var(--fcl-text) !important;
  background: var(--fcl-bg) !important;
  max-width: 780px !important;
  width: 100% !important;
  margin: 0 auto !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 28px rgba(0,0,0,.09) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
  position: relative !important;
}

/* ══════════════════════════════════════════════
   3. ELEMENT RESETS inside the wrapper
   Using high-specificity selectors so themes can't override
══════════════════════════════════════════════ */
#fcl-wrap *,
#fcl-wrap *::before,
#fcl-wrap *::after {
  box-sizing: border-box !important;
  font-family: var(--fcl-font) !important;
  -webkit-font-smoothing: antialiased !important;
}

#fcl-wrap div,
#fcl-wrap section,
#fcl-wrap article,
#fcl-wrap header,
#fcl-wrap footer,
#fcl-wrap nav,
#fcl-wrap p,
#fcl-wrap span,
#fcl-wrap strong,
#fcl-wrap em,
#fcl-wrap b,
#fcl-wrap i,
#fcl-wrap h1,
#fcl-wrap h2,
#fcl-wrap h3,
#fcl-wrap h4,
#fcl-wrap ul,
#fcl-wrap ol,
#fcl-wrap li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  float: none !important;
  clear: none !important;
  list-style: none !important;
  text-decoration: none !important;
  vertical-align: baseline !important;
  letter-spacing: normal !important;
}

/* Links inside the wrap */
#fcl-wrap a {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  float: none !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* ── All form controls: stripped to zero, then restyled per-class below ── */
#fcl-wrap input,
#fcl-wrap input[type],
#fcl-wrap select,
#fcl-wrap textarea,
#fcl-wrap button {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  box-sizing: border-box !important;
  font-family: var(--fcl-font) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
  color: var(--fcl-text) !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: none !important;
  vertical-align: baseline !important;
  float: none !important;
  display: inline-block !important;
  text-transform: none !important;
}

/* ══════════════════════════════════════════════
   4. STEP INDICATOR
══════════════════════════════════════════════ */
#fcl-wrap .fcl-steps {
  display: flex !important;
  background: var(--fcl-blue) !important;
  padding: 0 !important;
  margin: 0 !important;
}

#fcl-wrap .fcl-step {
  flex: 1 1 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 6px !important;
  gap: 6px !important;
  color: rgba(255,255,255,.5) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  cursor: default !important;
  transition: color .2s, background .2s !important;
}

#fcl-wrap .fcl-step.active {
  color: #fff !important;
  background: rgba(255,255,255,.13) !important;
}

#fcl-wrap .fcl-step.done {
  color: rgba(255,255,255,.7) !important;
}

#fcl-wrap .fcl-step__num {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  border: 2px solid currentColor !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: background .2s, border-color .2s !important;
}

#fcl-wrap .fcl-step.active .fcl-step__num {
  background: #fff !important;
  color: var(--fcl-blue) !important;
  border-color: #fff !important;
}

#fcl-wrap .fcl-step.done .fcl-step__num {
  background: rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.5) !important;
  font-size: 0 !important;
  color: transparent !important;
}

/* CSS-only checkmark — no emoji, no icon font */
#fcl-wrap .fcl-step.done .fcl-step__num::after {
  content: '' !important;
  position: absolute !important;
  display: block !important;
  width: 8px !important;
  height: 5px !important;
  border-left: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  transform: rotate(-45deg) translateY(-1px) !important;
  top: 50% !important;
  left: 50% !important;
  margin-top: -3px !important;
  margin-left: -4px !important;
}

#fcl-wrap .fcl-step__label {
  display: block !important;
  font-size: 10px !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════════
   5. PANELS
══════════════════════════════════════════════ */
#fcl-wrap .fcl-panel {
  display: none !important;
  padding: 28px 32px 26px !important;
}

#fcl-wrap .fcl-panel.active {
  display: block !important;
  animation: fclSlideIn .28s ease !important;
}

@keyframes fclSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

#fcl-wrap .fcl-panel__header {
  margin-bottom: 20px !important;
}

#fcl-wrap .fcl-panel__header h2 {
  display: block !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: var(--fcl-text) !important;
  margin: 0 0 6px !important;
}

#fcl-wrap .fcl-panel__header p {
  display: block !important;
  font-size: 13px !important;
  color: var(--fcl-muted) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

#fcl-wrap .fcl-note {
  display: block !important;
  background: #fffbeb !important;
  border-left: 3px solid #f59e0b !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  color: #78350f !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

#fcl-wrap .fcl-note strong {
  font-weight: 700 !important;
  color: #78350f !important;
}

/* ══════════════════════════════════════════════
   6. VISIT REASON CARDS
══════════════════════════════════════════════ */
#fcl-wrap .fcl-reasons {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)) !important;
  gap: 9px !important;
  margin-bottom: 22px !important;
}

#fcl-wrap .fcl-reason-card {
  display: block !important;
  padding: 11px 14px !important;
  border: 2px solid var(--fcl-border) !important;
  border-radius: 8px !important;
  background: #fff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--fcl-text) !important;
  line-height: 1.4 !important;
  cursor: pointer !important;
  user-select: none !important;
  transition: border-color .15s, background .15s, color .15s !important;
}

#fcl-wrap .fcl-reason-card:hover {
  border-color: var(--fcl-blue) !important;
  background: var(--fcl-accent) !important;
  color: var(--fcl-blue) !important;
}

#fcl-wrap .fcl-reason-card.selected {
  border-color: var(--fcl-blue) !important;
  background: var(--fcl-blue) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════
   7. CALENDAR
══════════════════════════════════════════════ */
#fcl-wrap .fcl-calendar-wrap {
  display: block !important;
  border: 1px solid var(--fcl-border) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
  max-width: 320px !important;
  background: #fff !important;
}

#fcl-wrap .fcl-cal-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: var(--fcl-blue) !important;
  color: #fff !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

#fcl-wrap .fcl-cal-nav span {
  color: #fff !important;
  font-weight: 600 !important;
}

#fcl-wrap .fcl-cal-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.15) !important;
  border: none !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  width: 28px !important;
  height: 28px !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background .15s !important;
}

#fcl-wrap .fcl-cal-arrow:hover {
  background: rgba(255,255,255,.28) !important;
}

#fcl-wrap .fcl-cal-grid {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  background: var(--fcl-accent) !important;
}

#fcl-wrap .fcl-cal-dow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 0 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  color: var(--fcl-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: .04em !important;
}

#fcl-wrap .fcl-cal-days {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  background: #fff !important;
  padding: 6px !important;
  gap: 2px !important;
}

#fcl-wrap .fcl-cal-day {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--fcl-text) !important;
  cursor: pointer !important;
  border-radius: 6px !important;
  transition: background .12s, color .12s !important;
  user-select: none !important;
  background: transparent !important;
}

#fcl-wrap .fcl-cal-day:hover:not(.past):not(.empty) {
  background: var(--fcl-accent) !important;
  color: var(--fcl-blue) !important;
}

#fcl-wrap .fcl-cal-day.today {
  font-weight: 800 !important;
  color: var(--fcl-blue) !important;
}

#fcl-wrap .fcl-cal-day.selected {
  background: var(--fcl-blue) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

#fcl-wrap .fcl-cal-day.past,
#fcl-wrap .fcl-cal-day.empty {
  color: #d1d5db !important;
  cursor: default !important;
  pointer-events: none !important;
  background: transparent !important;
}

/* ══════════════════════════════════════════════
   8. TIME SLOTS
══════════════════════════════════════════════ */
#fcl-wrap .fcl-time-wrap {
  display: block !important;
  margin-bottom: 22px !important;
}

#fcl-wrap .fcl-time-group {
  display: block !important;
  margin-bottom: 18px !important;
}

#fcl-wrap .fcl-time-label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--fcl-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: .07em !important;
  margin-bottom: 8px !important;
}

#fcl-wrap .fcl-slots {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}

#fcl-wrap .fcl-slot {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 7px 13px !important;
  border: 1.5px solid var(--fcl-border) !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: var(--fcl-text) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: border-color .12s, background .12s, color .12s !important;
}

#fcl-wrap .fcl-slot:hover {
  border-color: var(--fcl-blue) !important;
  background: var(--fcl-accent) !important;
  color: var(--fcl-blue) !important;
}

#fcl-wrap .fcl-slot.selected {
  border-color: var(--fcl-blue) !important;
  background: var(--fcl-blue) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════
   9. FORM GRID (Step 3 — Patient Info)
══════════════════════════════════════════════ */
#fcl-wrap .fcl-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px 20px !important;
  margin-bottom: 22px !important;
}

#fcl-wrap .fcl-field--full {
  grid-column: 1 / -1 !important;
}

#fcl-wrap .fcl-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}

#fcl-wrap .fcl-field label {
  display: block !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--fcl-text) !important;
  line-height: 1.4 !important;
  letter-spacing: .02em !important;
}

#fcl-wrap .fcl-field label span {
  color: var(--fcl-red) !important;
  margin-left: 1px !important;
}

/* ── THE KEY RULE: inputs styled explicitly after the strip-reset above ── */
#fcl-wrap .fcl-field input[type="text"],
#fcl-wrap .fcl-field input[type="email"],
#fcl-wrap .fcl-field input[type="tel"],
#fcl-wrap .fcl-field input[type="date"],
#fcl-wrap .fcl-field input[type="number"],
#fcl-wrap .fcl-field input[type="password"],
#fcl-wrap .fcl-field textarea,
#fcl-wrap .fcl-field select {
  display: block !important;
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1.5px solid var(--fcl-border) !important;
  border-radius: 7px !important;
  background: #ffffff !important;
  color: var(--fcl-text) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  transition: border-color .18s, box-shadow .18s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  outline: none !important;
  min-height: 0 !important;
  height: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
}

#fcl-wrap .fcl-field input:focus,
#fcl-wrap .fcl-field textarea:focus,
#fcl-wrap .fcl-field select:focus {
  border-color: var(--fcl-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 85, 165, .12) !important;
  outline: none !important;
}

#fcl-wrap .fcl-field input::placeholder,
#fcl-wrap .fcl-field textarea::placeholder {
  color: #9ca3af !important;
  opacity: 1 !important;
}

/* Dropdown arrow */
#fcl-wrap .fcl-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px !important;
  padding-right: 36px !important;
  cursor: pointer !important;
}

#fcl-wrap .fcl-field textarea {
  resize: vertical !important;
  min-height: 88px !important;
}

/* Checkbox field layout */
#fcl-wrap .fcl-field--checkbox {
  flex-direction: row !important;
  align-items: center !important;
  gap: 9px !important;
  grid-column: 1 / -1 !important;
}

#fcl-wrap .fcl-field--checkbox input[type="checkbox"] {
  width: 17px !important;
  height: 17px !important;
  flex-shrink: 0 !important;
  border: 1.5px solid var(--fcl-border) !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  accent-color: var(--fcl-blue) !important;
  padding: 0 !important;
  display: inline-block !important;
}

/* ══════════════════════════════════════════════
   10. ERROR MESSAGES
══════════════════════════════════════════════ */
#fcl-wrap .fcl-err {
  display: block !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: var(--fcl-red) !important;
  line-height: 1.3 !important;
  min-height: 14px !important;
}

#fcl-wrap .fcl-err--submit {
  text-align: center !important;
  margin-top: 10px !important;
  font-size: 13px !important;
}

/* ══════════════════════════════════════════════
   11. SUMMARY (Step 4)
══════════════════════════════════════════════ */
#fcl-wrap .fcl-summary {
  display: block !important;
  border: 1px solid var(--fcl-border) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
  background: #fff !important;
}

#fcl-wrap .fcl-summary__row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  padding: 11px 16px !important;
  font-size: 13px !important;
  border-bottom: 1px solid #f3f4f6 !important;
  gap: 12px !important;
  background: transparent !important;
}

#fcl-wrap .fcl-summary__row:last-child {
  border-bottom: none !important;
}

#fcl-wrap .fcl-summary__row span {
  color: var(--fcl-muted) !important;
  font-weight: 500 !important;
  flex-shrink: 0 !important;
  display: inline !important;
}

#fcl-wrap .fcl-summary__row strong {
  color: var(--fcl-text) !important;
  font-weight: 600 !important;
  text-align: right !important;
  display: inline !important;
}

/* ══════════════════════════════════════════════
   12. PANEL FOOTER / BUTTONS
══════════════════════════════════════════════ */
#fcl-wrap .fcl-panel__footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 4px !important;
}

#fcl-wrap .fcl-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 11px 26px !important;
  border-radius: 8px !important;
  border: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: var(--fcl-font) !important;
  line-height: 1 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  user-select: none !important;
  transition: background .17s, opacity .17s, transform .1s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  outline: none !important;
}

#fcl-wrap .fcl-btn:active {
  transform: scale(.98) !important;
}

#fcl-wrap .fcl-btn--next,
#fcl-wrap .fcl-btn--submit,
#fcl-wrap .fcl-btn--primary {
  background: var(--fcl-blue) !important;
  color: #ffffff !important;
}

#fcl-wrap .fcl-btn--next:hover,
#fcl-wrap .fcl-btn--submit:hover,
#fcl-wrap .fcl-btn--primary:hover {
  background: var(--fcl-blue-dk) !important;
  color: #ffffff !important;
}

#fcl-wrap .fcl-btn--next:disabled,
#fcl-wrap .fcl-btn--submit:disabled {
  background: #d1d5db !important;
  color: #9ca3af !important;
  cursor: not-allowed !important;
  transform: none !important;
}

#fcl-wrap .fcl-btn--back {
  background: #f3f4f6 !important;
  color: var(--fcl-text) !important;
}

#fcl-wrap .fcl-btn--back:hover {
  background: #e5e7eb !important;
  color: var(--fcl-text) !important;
}

/* Loading spinner */
#fcl-wrap .fcl-btn__spinner {
  display: none !important;
  width: 15px !important;
  height: 15px !important;
  border: 2px solid rgba(255,255,255,.3) !important;
  border-top-color: #fff !important;
  border-radius: 50% !important;
  animation: fclSpin .55s linear infinite !important;
  flex-shrink: 0 !important;
}

#fcl-wrap .fcl-btn.loading .fcl-btn__spinner {
  display: block !important;
}

#fcl-wrap .fcl-btn.loading .fcl-btn__text {
  opacity: .65 !important;
}

@keyframes fclSpin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════
   13. SUCCESS SCREEN
══════════════════════════════════════════════ */
#fcl-wrap .fcl-success {
  display: none !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 44px 32px 40px !important;
  text-align: center !important;
}

#fcl-wrap .fcl-success.active {
  display: flex !important;
}

#fcl-wrap .fcl-success__checkmark {
  display: block !important;
  width: 68px !important;
  height: 68px !important;
  flex-shrink: 0 !important;
}

#fcl-wrap .fcl-success__checkmark svg {
  display: block !important;
  width: 68px !important;
  height: 68px !important;
}

#fcl-wrap .fcl-success__checkmark circle {
  stroke: var(--fcl-green) !important;
  stroke-width: 2 !important;
  stroke-dasharray: 166 !important;
  stroke-dashoffset: 166 !important;
  fill: var(--fcl-green) !important;
  animation: fclCircle .55s cubic-bezier(.65, 0, .45, 1) forwards !important;
}

#fcl-wrap .fcl-success__checkmark path {
  stroke: #ffffff !important;
  stroke-width: 3 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-dasharray: 48 !important;
  stroke-dashoffset: 48 !important;
  animation: fclCheck .3s .55s ease forwards !important;
}

@keyframes fclCircle { to { stroke-dashoffset: 0; } }
@keyframes fclCheck  { to { stroke-dashoffset: 0; } }

#fcl-wrap .fcl-success h2 {
  display: block !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--fcl-text) !important;
  margin: 0 !important;
}

#fcl-wrap .fcl-success > p {
  display: block !important;
  font-size: 14px !important;
  color: var(--fcl-muted) !important;
  max-width: 400px !important;
  margin: 0 !important;
}

#fcl-wrap .fcl-success__details {
  display: block !important;
  background: var(--fcl-accent) !important;
  border-radius: 8px !important;
  padding: 14px 20px !important;
  text-align: left !important;
  width: 100% !important;
  max-width: 420px !important;
}

#fcl-wrap .fcl-success__details p {
  display: flex !important;
  gap: 6px !important;
  font-size: 13px !important;
  color: var(--fcl-text) !important;
  margin: 0 0 5px !important;
  line-height: 1.4 !important;
}

#fcl-wrap .fcl-success__details p:last-child {
  margin-bottom: 0 !important;
}

#fcl-wrap .fcl-success__details strong {
  color: var(--fcl-blue) !important;
  font-weight: 600 !important;
  display: inline !important;
}

#fcl-wrap .fcl-success__note {
  display: block !important;
  font-size: 11px !important;
  color: #9ca3af !important;
  margin: 0 !important;
}

/* ══════════════════════════════════════════════
   14. RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 620px) {
  #fcl-wrap {
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  #fcl-wrap .fcl-panel {
    padding: 20px 16px 18px !important;
  }

  #fcl-wrap .fcl-success {
    padding: 32px 16px 28px !important;
  }

  #fcl-wrap .fcl-form-grid {
    grid-template-columns: 1fr !important;
  }

  #fcl-wrap .fcl-field--full {
    grid-column: 1 !important;
  }

  #fcl-wrap .fcl-reasons {
    grid-template-columns: 1fr 1fr !important;
  }

  #fcl-wrap .fcl-step__label {
    display: none !important;
  }

  #fcl-wrap .fcl-calendar-wrap {
    max-width: 100% !important;
  }

  #fcl-wrap .fcl-summary__row {
    flex-direction: column !important;
    gap: 2px !important;
  }

  #fcl-wrap .fcl-summary__row strong {
    text-align: left !important;
  }

  #fcl-wrap .fcl-btn {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 380px) {
  #fcl-wrap .fcl-reasons {
    grid-template-columns: 1fr !important;
  }
  #fcl-wrap .fcl-step {
    padding: 10px 4px !important;
  }
}
