.elementor-762 .elementor-element.elementor-element-efb7c5b:not(.elementor-motion-effects-element-type-background), .elementor-762 .elementor-element.elementor-element-efb7c5b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-4921f04 );}.elementor-762 .elementor-element.elementor-element-efb7c5b > .elementor-container{max-width:1200px;}.elementor-762 .elementor-element.elementor-element-efb7c5b{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:0px 0px 0px 0px;}.elementor-762 .elementor-element.elementor-element-efb7c5b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-762 .elementor-element.elementor-element-7e5f3cde > .elementor-element-populated{padding:24px 24px 24px 24px;}.elementor-762 .elementor-element.elementor-element-23613ef6{text-align:center;}.elementor-762 .elementor-element.elementor-element-23613ef6 img{border-radius:0px 0px 0px 0px;}.elementor-762 .elementor-element.elementor-element-3fc31886 > .elementor-widget-container{margin:-15px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-762 .elementor-element.elementor-element-3fc31886{text-align:center;}.elementor-762 .elementor-element.elementor-element-37947fd9 > .elementor-widget-container{margin:-12px 15px 0px 15px;padding:0px 0px 0px 0px;}.elementor-762 .elementor-element.elementor-element-37947fd9{text-align:center;}.elementor-762 .elementor-element.elementor-element-4b28443{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:1024px){.elementor-762 .elementor-element.elementor-element-efb7c5b > .elementor-container{max-width:1170px;}.elementor-762 .elementor-element.elementor-element-efb7c5b{padding:0px 10px 60px 10px;}}/* Start custom CSS for html, class: .elementor-element-c7901a6 *//* =========================
DMFHC Web-to-Case Form CSS – Updated
Changes:
- Reduce border-radius on inputs
- Apply same “pill” style to selects (custom arrow)
- Make checkbox groups nicer with spacing + wrap
- Keep WP-safe overrides inside .sf-w2c
========================= */

.sf-w2c {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
}

.sf-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.sf-section {
  padding: 18px 0;
  border-bottom: 1px solid #eef2f7;
}
.sf-section:last-of-type { border-bottom: none; }

.sf-section__title {
  font-size: 14px !important;
  margin: 0 0 14px;
  font-weight: 700;
  color: #111827;
  letter-spacing: .2px;
}

/* Grid */
.sf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.sf-grid--one { grid-template-columns: 1fr; }
.sf-field--full { grid-column: 1 / -1; }

.sf-field { display: flex; flex-direction: column; gap: 8px; }

.sf-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.sf-help {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

/* =========================
Unified Input/Select Style
- Reduced radius (was 999px)
- Select styled to match inputs
========================= */

:root {
  --sf-border: #cfd6e0;
  --sf-focus: #2563eb;
  --sf-radius: 14px; /* reduced radius */
}

.sf-w2c input[type="text"],
.sf-w2c input[type="email"],
.sf-w2c input[type="tel"],
.sf-w2c input[type="number"],
.sf-w2c input[type="date"],
.sf-w2c textarea,
.sf-w2c select,
.sf-w2c .sf-input,
.sf-w2c .sf-textarea,
.sf-w2c .sf-select {
  width: 100% !important;
  box-sizing: border-box !important;
  background: #ffffff !important;

  border: 1px solid var(--sf-border) !important;
  border-radius: var(--sf-radius) !important;

  padding: 14px 16px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;

  outline: none !important;
  box-shadow: none !important;

  transition: border-color .15s ease, box-shadow .15s ease !important;
}

/* textarea should be slightly less rounded */
.sf-w2c textarea,
.sf-w2c .sf-textarea {
  border-radius: 12px !important;
  min-height: 120px !important;
  resize: vertical !important;
}

/* focus */
.sf-w2c input:focus,
.sf-w2c textarea:focus,
.sf-w2c select:focus {
  border-color: var(--sf-focus) !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15) !important;
}

/* placeholders */
.sf-w2c input::placeholder,
.sf-w2c textarea::placeholder {
  color: #9ca3af !important;
}

/* ===== Select: match input style with a consistent arrow ===== */
.sf-w2c select,
.sf-w2c .sf-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;

  padding-right: 44px !important;

  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* =========================
Toggle rows (switch)
========================= */
.sf-toggle__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #fafafa;
}

.sf-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.sf-switch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.sf-slider {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
  transition: background .2s ease;
}

.sf-slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform .2s ease;
}

.sf-switch input:checked + .sf-slider {
  background: var(--sf-focus);
}

.sf-switch input:checked + .sf-slider::after {
  transform: translateX(22px);
}

/* =========================
Checkbox groups (Race, Disability Type)
Fix:
- Make spacing nice
- Wrap into multiple lines
- Better chip padding
========================= */
.sf-checkwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;                  /* more breathing room */
  padding: 12px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #fafafa;
}

.sf-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  cursor: pointer;
  user-select: none;

  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.sf-chip:hover {
  border-color: #cbd5e1;
  background: #f9fafb;
}

.sf-chip input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--sf-focus);
}

.sf-chip span {
  font-size: 14px;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap; /* keeps each chip clean */
}

/* Actions */
.sf-actions {
  margin-top: 18px;
}

.sf-button {
  appearance: none;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: #111827;
  color: #ffffff;
  transition: transform .05s ease, opacity .2s ease;
}

.sf-button:hover { opacity: 0.92; }
.sf-button:active { transform: translateY(1px); }

/* Responsive */
@media (max-width: 760px) {
  .sf-w2c { padding: 16px; }
  .sf-card { padding: 18px; border-radius: 14px; }
  .sf-grid { grid-template-columns: 1fr; }
  .sf-toggle__row { flex-direction: column; align-items: flex-start; }
  .sf-chip span { white-space: normal; } /* allow wrapping on small screens */
}/* End custom CSS */