:root {
  --mvcc-a11y-base-root-size: 18pt;
  --mvcc-a11y-theme: #00703c;
  --mvcc-a11y-theme-dark: #004d2a;
  --mvcc-a11y-focus: #ffbf47;
  --mvcc-a11y-surface: #ffffff;
  --mvcc-a11y-surface-soft: #f1f5f9;
  --mvcc-a11y-border: #cbd5e1;
  --mvcc-a11y-text: #172033;
  --mvcc-a11y-muted: #526074;
}

.mvcc-a11y-widget,
.mvcc-a11y-widget *,
.mvcc-a11y-widget *::before,
.mvcc-a11y-widget *::after {
  box-sizing: border-box;
}

.mvcc-a11y-widget {
  color: var(--mvcc-a11y-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  z-index: 2147483000;
}

.mvcc-a11y-launcher {
  align-items: center;
  background: var(--mvcc-a11y-theme);
  border: 3px solid #fff;
  border-radius: 999px;
  bottom: 5rem;
  box-shadow: 0 5px 22px rgb(15 23 42 / 35%);
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 3.75rem;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 1rem;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  width: 3.75rem;
}

.mvcc-a11y-launcher:hover {
  background: var(--mvcc-a11y-theme-dark);
}

html[data-mvcc-a11y-panel-open] .mvcc-a11y-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem) scale(0.85);
  visibility: hidden;
}

.mvcc-a11y-launcher .fa-universal-access {
  color: inherit;
  font-size: 2rem;
  line-height: 1;
}

.mvcc-a11y-launcher:focus-visible,
.mvcc-a11y-shortcut:focus-visible,
.mvcc-a11y-widget button:focus-visible {
  outline: 4px solid var(--mvcc-a11y-focus);
  outline-offset: 3px;
}

.mvcc-a11y-shortcut {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.mvcc-a11y-shortcut:focus {
  background: var(--mvcc-a11y-theme) !important;
  border: 3px solid #fff !important;
  border-radius: 0.35rem;
  box-shadow: 0 3px 16px rgb(15 23 42 / 35%);
  clip: auto;
  clip-path: none;
  color: #fff !important;
  font: 700 16px/1.3 Arial, Helvetica, sans-serif;
  height: auto;
  left: 0.75rem;
  overflow: visible;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 0.75rem;
  white-space: normal;
  width: auto;
  z-index: 2147483647;
}

.mvcc-a11y-panel[hidden] {
  display: none;
}

.mvcc-a11y-panel {
  background: var(--mvcc-a11y-surface-soft);
  border: 1px solid var(--mvcc-a11y-border);
  border-radius: 1rem 0 0 1rem;
  bottom: 0;
  box-shadow: -12px 0 40px rgb(15 23 42 / 24%);
  display: flex;
  flex-direction: column;
  max-height: min(92vh, 58rem);
  max-width: calc(100vw - 1rem);
  opacity: 1;
  overflow: hidden;
  position: fixed;
  right: 0;
  transform: translateX(0);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms ease;
  visibility: visible;
  width: 25rem;
}

.mvcc-a11y-panel--closed {
  opacity: 0;
  pointer-events: none;
  transform: translateX(1rem);
  visibility: hidden;
}

.mvcc-a11y-panel__header {
  align-items: flex-start;
  background: var(--mvcc-a11y-theme);
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.25rem;
}

.mvcc-a11y-panel__title {
  color: inherit;
  font: 700 1.4rem/1.2 Arial, Helvetica, sans-serif;
  margin: 0;
}

.mvcc-a11y-panel__intro {
  color: inherit;
  font: 400 0.94rem/1.45 Arial, Helvetica, sans-serif;
  margin: 0.35rem 0 0;
}

.mvcc-a11y-panel__close {
  align-items: center;
  background: transparent;
  border: 2px solid rgb(255 255 255 / 70%);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font: 400 1.65rem/1 Arial, Helvetica, sans-serif;
  height: 2.4rem;
  justify-content: center;
  padding: 0 0 0.12rem;
  width: 2.4rem;
}

.mvcc-a11y-panel__body {
  overscroll-behavior: contain;
  overflow-y: auto;
  padding: 0.85rem;
}

.mvcc-a11y-section {
  background: var(--mvcc-a11y-surface);
  border: 1px solid var(--mvcc-a11y-border);
  border-radius: 0.75rem;
  margin: 0 0 0.85rem;
  padding: 0.9rem;
}

.mvcc-a11y-section__title {
  color: var(--mvcc-a11y-text);
  font: 700 1.05rem/1.3 Arial, Helvetica, sans-serif;
  margin: 0 0 0.8rem;
}

.mvcc-a11y-step {
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 0.85rem;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.mvcc-a11y-step:first-of-type {
  padding-top: 0;
}

.mvcc-a11y-step__text,
.mvcc-a11y-control__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mvcc-a11y-step__title,
.mvcc-a11y-control__title {
  color: var(--mvcc-a11y-text);
  font: 700 0.96rem/1.3 Arial, Helvetica, sans-serif;
}

.mvcc-a11y-step__description,
.mvcc-a11y-control__description {
  color: var(--mvcc-a11y-muted);
  font: 400 0.8rem/1.35 Arial, Helvetica, sans-serif;
  margin-top: 0.12rem;
}

.mvcc-a11y-step__controls {
  align-items: center;
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 2.35rem 4.6rem 2.35rem;
}

.mvcc-a11y-step__button {
  align-items: center;
  background: var(--mvcc-a11y-theme);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: 700 1.25rem/1 Arial, Helvetica, sans-serif;
  height: 2.35rem;
  justify-content: center;
  padding: 0;
}

.mvcc-a11y-step__button:first-child {
  border-radius: 0.45rem 0 0 0.45rem;
}

.mvcc-a11y-step__button:last-child {
  border-radius: 0 0.45rem 0.45rem 0;
}

.mvcc-a11y-step__button:disabled {
  background: #64748b;
  cursor: not-allowed;
  opacity: 0.55;
}

.mvcc-a11y-step__value {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--mvcc-a11y-border);
  border-top: 1px solid var(--mvcc-a11y-border);
  color: var(--mvcc-a11y-text);
  display: flex;
  font: 700 0.82rem/1 Arial, Helvetica, sans-serif;
  height: 2.35rem;
  justify-content: center;
  min-width: 0;
}

.mvcc-a11y-control {
  align-items: center;
  background: #fff;
  border: 1px solid var(--mvcc-a11y-border);
  border-radius: 0.55rem;
  color: var(--mvcc-a11y-text);
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 0.65rem;
  padding: 0.75rem;
  text-align: left;
  width: 100%;
}

.mvcc-a11y-control:hover {
  background: #f8fafc;
  border-color: var(--mvcc-a11y-theme);
}

.mvcc-a11y-control--active {
  background: #e4f3eb;
  border-color: var(--mvcc-a11y-theme);
}

.mvcc-a11y-control__state {
  background: #e2e8f0;
  border-radius: 999px;
  color: #334155;
  flex: 0 0 auto;
  font: 700 0.75rem/1 Arial, Helvetica, sans-serif;
  min-width: 2.7rem;
  padding: 0.45rem 0.55rem;
  text-align: center;
}

.mvcc-a11y-control--active .mvcc-a11y-control__state {
  background: var(--mvcc-a11y-theme);
  color: #fff;
}

.mvcc-a11y-choice-group {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mvcc-a11y-choice {
  align-items: center;
  background: #fff;
  border: 2px solid var(--mvcc-a11y-border);
  border-radius: 0.55rem;
  color: var(--mvcc-a11y-text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font: 700 0.8rem/1.25 Arial, Helvetica, sans-serif;
  gap: 0.35rem;
  min-height: 4.4rem;
  padding: 0.55rem;
}

.mvcc-a11y-choice:hover,
.mvcc-a11y-choice--active {
  border-color: var(--mvcc-a11y-theme);
}

.mvcc-a11y-choice--active {
  box-shadow: inset 0 0 0 1px var(--mvcc-a11y-theme);
}

.mvcc-a11y-choice__sample {
  border: 1px solid #94a3b8;
  border-radius: 0.35rem;
  display: inline-block;
  font: 700 1rem/1 Arial, Helvetica, sans-serif;
  padding: 0.32rem 0.5rem;
}

.mvcc-a11y-choice--dark .mvcc-a11y-choice__sample {
  background: #111827;
  color: #fff;
}

.mvcc-a11y-choice--light .mvcc-a11y-choice__sample {
  background: #fff;
  color: #111827;
}

.mvcc-a11y-choice--high .mvcc-a11y-choice__sample {
  background: #000;
  color: #ffeb3b;
}

.mvcc-a11y-panel__footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--mvcc-a11y-border);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 0.85rem 1rem;
}

.mvcc-a11y-reset {
  background: #fff;
  border: 2px solid var(--mvcc-a11y-theme);
  border-radius: 0.45rem;
  color: var(--mvcc-a11y-theme-dark);
  cursor: pointer;
  font: 700 0.85rem/1 Arial, Helvetica, sans-serif;
  padding: 0.65rem 0.75rem;
}

.mvcc-a11y-panel__note {
  color: var(--mvcc-a11y-muted);
  font: 400 0.72rem/1.3 Arial, Helvetica, sans-serif;
  margin: 0;
  text-align: right;
}

.mvcc-a11y-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Page preference rules. These do not cross iframe boundaries. */
html[data-mvcc-a11y-text-scale="112"] {
  font-size: 20.16pt !important;
}

html[data-mvcc-a11y-text-scale="125"] {
  font-size: 22.5pt !important;
}

html[data-mvcc-a11y-text-scale="150"] {
  font-size: 27pt !important;
}

html[data-mvcc-a11y-text-scale="175"] {
  font-size: 31.5pt !important;
}

html[data-mvcc-a11y-text-scale="200"] {
  font-size: 36pt !important;
}

html[data-mvcc-a11y-readable-font] body :where(h1, h2, h3, h4, h5, h6, p, li, dd, dt, blockquote, td, th, label, a, button, input, select, textarea) {
  font-family: Arial, Helvetica, sans-serif !important;
}

html[data-mvcc-a11y-links] body a:not(.mvcc-a11y-launcher):not([class^="mvcc-a11y-"]):not([class*=" mvcc-a11y-"]) {
  outline: 2px solid currentcolor !important;
  outline-offset: 2px !important;
  text-decoration: underline !important;
  text-decoration-thickness: 0.14em !important;
  text-underline-offset: 0.16em !important;
}

html[data-mvcc-a11y-headings] body :where(h1, h2, h3, h4, h5, h6):not([class^="mvcc-a11y-"]):not([class*=" mvcc-a11y-"]) {
  border-left: 0.35rem solid #f5a623 !important;
  padding-left: 0.55rem !important;
}

html[data-mvcc-a11y-grayscale] body > :not(.mvcc-a11y-widget):not(.mvcc-a11y-shortcut) {
  filter: grayscale(1) !important;
}

html[data-mvcc-a11y-contrast="dark"] body > :not(.mvcc-a11y-widget):not(.mvcc-a11y-shortcut),
html[data-mvcc-a11y-contrast="dark"] body > :not(.mvcc-a11y-widget):not(.mvcc-a11y-shortcut) :where(header, main, footer, section, article, aside, nav, div, h1, h2, h3, h4, h5, h6, p, li, dl, table, tr, th, td, form) {
  background-color: #10151d !important;
  background-image: none !important;
  border-color: #b8c4d1 !important;
  color: #fff !important;
}

html[data-mvcc-a11y-contrast="dark"] body > :not(.mvcc-a11y-widget) :where(a, button) {
  color: var(--limegreen, #b2d33e) !important;
}

html[data-mvcc-a11y-contrast="dark"] #header .header-logo,
html[data-mvcc-a11y-contrast="high"] #header .header-logo {
  background: #fff !important;
  border-radius: 15px;
  padding: 10px 20px;
}

html[data-mvcc-a11y-contrast="dark"] .icon-cta,
html[data-mvcc-a11y-contrast="high"] .icon-cta {
  color: #fff !important;
}

html[data-mvcc-a11y-contrast="light"] body > :not(.mvcc-a11y-widget):not(.mvcc-a11y-shortcut),
html[data-mvcc-a11y-contrast="light"] body > :not(.mvcc-a11y-widget):not(.mvcc-a11y-shortcut) :where(header, main, footer, section, article, aside, nav, div, h1, h2, h3, h4, h5, h6, p, li, dl, table, tr, th, td, form) {
  background-color: #fff !important;
  background-image: none !important;
  border-color: #384860 !important;
  color: #111827 !important;
}

html[data-mvcc-a11y-contrast="light"] body > :not(.mvcc-a11y-widget) :where(a, button) {
  color: #003f87 !important;
}

html[data-mvcc-a11y-contrast="light"] .header-top-custom .header-nav-top .nav > li a,
html[data-mvcc-a11y-contrast="light"] #footer strong {
  color: #000 !important;
}

html[data-mvcc-a11y-contrast="high"] body > :not(.mvcc-a11y-widget):not(.mvcc-a11y-shortcut),
html[data-mvcc-a11y-contrast="high"] body > :not(.mvcc-a11y-widget):not(.mvcc-a11y-shortcut) :where(header, main, footer, section, article, aside, nav, div, h1, h2, h3, h4, h5, h6, p, li, dl, table, tr, th, td, form) {
  background-color: #000 !important;
  background-image: none !important;
  border-color: #fff !important;
  box-shadow: none !important;
  color: #fff !important;
  text-shadow: none !important;
}

html[data-mvcc-a11y-contrast="high"] body > :not(.mvcc-a11y-widget) :where(a, button) {
  color: #ffeb3b !important;
  text-decoration: underline !important;
}

@media (max-width: 35rem) {
  .mvcc-a11y-panel {
    border-radius: 0;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    max-width: 100vw;
    width: 100vw;
  }

  .mvcc-a11y-panel__header {
    padding-top: max(1.25rem, env(safe-area-inset-top));
  }

  .mvcc-a11y-panel__footer {
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  }

  html[data-mvcc-a11y-panel-open] {
    overflow: hidden;
  }

  .mvcc-a11y-launcher {
    bottom: max(3rem, env(safe-area-inset-bottom));
    right: max(0.75rem, env(safe-area-inset-right));
  }
}

@media (prefers-reduced-motion: reduce) {
  .mvcc-a11y-widget *,
  .mvcc-a11y-widget *::before,
  .mvcc-a11y-widget *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .mvcc-a11y-launcher,
  .mvcc-a11y-panel {
    transition: none;
  }
}

@media print {
  .mvcc-a11y-widget {
    display: none !important;
  }
}
