/* Shared Simplewire FAQ/disclosure component. */
:root {
  --sw-faq-surface: #ffffff;
  --sw-faq-ink: #06192a;
  --sw-faq-muted: #526274;
  --sw-faq-line: #dde5ee;
  --sw-faq-line-active: #b7d4ff;
  --sw-faq-blue: #1466cc;
  --sw-faq-blue-soft: #eaf2ff;
  --sw-faq-focus: rgba(35, 130, 255, 0.46);
}

html body .sw-home-faq__list,
html body .sw-flexplus-pdp #section-faq .sw-faq,
html body .sw-embed-core #section-faq .sw-faq,
html body.sw-support-page #general-list {
  display: grid !important;
  gap: 10px !important;
  border: 0 !important;
}

html body .sw-home-faq__list > details,
html body .sw-flexplus-pdp #section-faq .sw-faq > details,
html body .sw-embed-core #section-faq .sw-faq > details,
html body.sw-support-page details.faq {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--sw-faq-surface) !important;
  border: 1px solid var(--sw-faq-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 1px 2px rgba(10, 27, 40, 0.06) !important;
  transition: border-color 180ms ease, box-shadow 180ms ease !important;
}

html body .sw-home-faq__list > details[open],
html body .sw-flexplus-pdp #section-faq .sw-faq > details[open],
html body .sw-embed-core #section-faq .sw-faq > details[open],
html body.sw-support-page details.faq[open] {
  border-color: var(--sw-faq-line-active) !important;
  box-shadow: 0 3px 12px rgba(20, 102, 204, 0.08) !important;
}

html body .sw-home-faq__list > details > summary,
html body .sw-flexplus-pdp #section-faq .sw-faq > details > summary,
html body .sw-embed-core #section-faq .sw-faq > details > summary,
html body.sw-support-page details.faq > summary {
  position: relative !important;
  display: flex !important;
  min-height: 64px !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 14px 16px 14px 18px !important;
  color: var(--sw-faq-ink) !important;
  background: transparent !important;
  font-family: "Exo", "Exo 2", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  list-style: none !important;
  cursor: pointer !important;
  touch-action: manipulation !important;
}

html body .sw-home-faq__list > details > summary::-webkit-details-marker,
html body .sw-flexplus-pdp #section-faq .sw-faq > details > summary::-webkit-details-marker,
html body .sw-embed-core #section-faq .sw-faq > details > summary::-webkit-details-marker,
html body.sw-support-page details.faq > summary::-webkit-details-marker {
  display: none !important;
}

html body .sw-home-faq__list > details > summary::marker,
html body .sw-flexplus-pdp #section-faq .sw-faq > details > summary::marker,
html body .sw-embed-core #section-faq .sw-faq > details > summary::marker,
html body.sw-support-page details.faq > summary::marker {
  content: "" !important;
}

html body .sw-home-faq__list > details > summary::before,
html body .sw-flexplus-pdp #section-faq .sw-faq > details > summary::before,
html body .sw-embed-core #section-faq .sw-faq > details > summary::before,
html body.sw-support-page details.faq > summary::before {
  content: none !important;
}

html body .sw-home-faq__list > details > summary::after,
html body .sw-flexplus-pdp #section-faq .sw-faq > details > summary::after,
html body .sw-embed-core #section-faq .sw-faq > details > summary::after,
html body.sw-support-page details.faq > summary::after {
  content: "+" !important;
  position: static !important;
  display: grid !important;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  margin: 0 0 0 auto !important;
  place-items: center !important;
  flex: 0 0 28px !important;
  border-radius: 50% !important;
  background: var(--sw-faq-blue-soft) !important;
  color: var(--sw-faq-blue) !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transform: none !important;
  transition: background-color 180ms ease, color 180ms ease !important;
}

html body .sw-home-faq__list > details[open] > summary::after,
html body .sw-flexplus-pdp #section-faq .sw-faq > details[open] > summary::after,
html body .sw-embed-core #section-faq .sw-faq > details[open] > summary::after,
html body.sw-support-page details.faq[open] > summary::after {
  content: "-" !important;
  background: var(--sw-faq-ink) !important;
  color: #ffffff !important;
}

html body .sw-home-faq__list > details > summary:focus-visible,
html body .sw-flexplus-pdp #section-faq .sw-faq > details > summary:focus-visible,
html body .sw-embed-core #section-faq .sw-faq > details > summary:focus-visible,
html body.sw-support-page details.faq > summary:focus-visible {
  border-radius: 16px !important;
  outline: 3px solid var(--sw-faq-focus) !important;
  outline-offset: -3px !important;
}

html body .sw-home-faq__list > details > :not(summary),
html body .sw-flexplus-pdp #section-faq .sw-faq > details > :not(summary),
html body .sw-embed-core #section-faq .sw-faq > details > :not(summary),
html body.sw-support-page details.faq > :not(summary) {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 18px 18px !important;
  border: 0 !important;
  color: var(--sw-faq-muted) !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

html body .sw-home-faq__list > details > :not(summary) p,
html body .sw-flexplus-pdp #section-faq .sw-faq > details > :not(summary) p,
html body .sw-embed-core #section-faq .sw-faq > details > :not(summary) p,
html body.sw-support-page details.faq > :not(summary) p {
  max-width: 68ch !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font: inherit !important;
}

html body .sw-home-faq__list > details[open] > :not(summary),
html body .sw-flexplus-pdp #section-faq .sw-faq > details[open] > :not(summary),
html body .sw-embed-core #section-faq .sw-faq > details[open] > :not(summary),
html body.sw-support-page details.faq[open] > :not(summary) {
  animation: sw-faq-reveal 180ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@media (hover: hover) and (pointer: fine) {
  html body .sw-home-faq__list > details:hover,
  html body .sw-flexplus-pdp #section-faq .sw-faq > details:hover,
  html body .sw-embed-core #section-faq .sw-faq > details:hover,
  html body.sw-support-page details.faq:hover {
    border-color: var(--sw-faq-line-active) !important;
  }
}

@keyframes sw-faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  html body .sw-home-faq__list > details > summary,
  html body .sw-flexplus-pdp #section-faq .sw-faq > details > summary,
  html body .sw-embed-core #section-faq .sw-faq > details > summary,
  html body.sw-support-page details.faq > summary {
    min-height: 64px !important;
    padding: 13px 14px 13px 16px !important;
    font-size: 17px !important;
    line-height: 1.28 !important;
  }

  html body .sw-home-faq__list > details > :not(summary),
  html body .sw-flexplus-pdp #section-faq .sw-faq > details > :not(summary),
  html body .sw-embed-core #section-faq .sw-faq > details > :not(summary),
  html body.sw-support-page details.faq > :not(summary) {
    padding: 0 16px 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .sw-home-faq__list > details,
  html body .sw-flexplus-pdp #section-faq .sw-faq > details,
  html body .sw-embed-core #section-faq .sw-faq > details,
  html body.sw-support-page details.faq,
  html body .sw-home-faq__list > details > summary::after,
  html body .sw-flexplus-pdp #section-faq .sw-faq > details > summary::after,
  html body .sw-embed-core #section-faq .sw-faq > details > summary::after,
  html body.sw-support-page details.faq > summary::after,
  html body .sw-home-faq__list > details[open] > :not(summary),
  html body .sw-flexplus-pdp #section-faq .sw-faq > details[open] > :not(summary),
  html body .sw-embed-core #section-faq .sw-faq > details[open] > :not(summary),
  html body.sw-support-page details.faq[open] > :not(summary) {
    animation: none !important;
    transition: none !important;
  }
}
