.hm-a11y-toolbar,
.hm-a11y-toolbar * {
  box-sizing: border-box;
}

.hm-a11y-toolbar {
  --hm-a11y-bg: #fff;
  --hm-a11y-text: #111;
  --hm-a11y-border: #111;
  --hm-a11y-accent: #005fcc;
  --hm-a11y-shadow: 0 18px 46px rgba(0, 0, 0, .22);
  position: fixed;
  z-index: 2147483000;
  width: min(420px, calc(100vw - 24px));
  color: var(--hm-a11y-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
  pointer-events: none;
}

.hm-a11y-toolbar--bottom-right {
  right: 18px;
  bottom: 18px;
}

.hm-a11y-toolbar--bottom-left {
  left: 18px;
  bottom: 18px;
}

.hm-a11y-toolbar--top-right {
  right: 18px;
  top: 18px;
}

.hm-a11y-toolbar--top-left {
  left: 18px;
  top: 18px;
}

.hm-a11y-toggle,
.hm-a11y-panel,
.hm-a11y-skip {
  --hm-a11y-bg: var(--hm-a11y-surface, #fff);
  --hm-a11y-text: var(--hm-a11y-page-text, #111);
  --hm-a11y-border: var(--hm-a11y-page-border, #111);
  --hm-a11y-accent: var(--hm-a11y-page-accent, #005fcc);
  pointer-events: auto;
}

.hm-a11y-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  max-width: 100%;
  padding: 10px 16px;
  border: 2px solid var(--hm-a11y-border);
  border-radius: 999px;
  color: var(--hm-a11y-text);
  background: var(--hm-a11y-bg);
  box-shadow: var(--hm-a11y-shadow);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.hm-a11y-toggle__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--hm-a11y-accent);
  font-size: 17px;
  font-weight: 900;
}

.hm-a11y-toggle__text {
  overflow-wrap: anywhere;
}

.hm-a11y-panel {
  margin-top: 10px;
  padding: 16px;
  border: 2px solid var(--hm-a11y-border);
  border-radius: 16px;
  color: var(--hm-a11y-text);
  background: var(--hm-a11y-bg);
  box-shadow: var(--hm-a11y-shadow);
}

.hm-a11y-panel[hidden] {
  display: none !important;
}

.hm-a11y-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hm-a11y-panel__title,
.hm-a11y-group__label {
  margin: 0;
  color: inherit;
  font-weight: 800;
}

.hm-a11y-panel__close {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 2px solid var(--hm-a11y-border);
  border-radius: 8px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.hm-a11y-group {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.hm-a11y-group__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hm-a11y-choice,
.hm-a11y-command {
  min-height: 40px;
  padding: 8px 12px;
  border: 2px solid var(--hm-a11y-border);
  border-radius: 10px;
  color: var(--hm-a11y-text);
  background: var(--hm-a11y-bg);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hm-a11y-choice[aria-pressed="true"] {
  color: #fff;
  background: var(--hm-a11y-accent);
  border-color: var(--hm-a11y-accent);
}

.hm-a11y-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px solid var(--hm-a11y-border);
}

.hm-a11y-command {
  flex: 1 1 150px;
}

.hm-a11y-skip {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 2147483001;
  max-width: calc(100vw - 36px);
  padding: 10px 14px;
  border: 2px solid #111;
  border-radius: 10px;
  color: #111;
  background: #fff;
  box-shadow: var(--hm-a11y-shadow);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform .12s ease;
}

.hm-a11y-skip:focus {
  transform: translateY(0);
}

.hm-a11y-toggle:focus-visible,
.hm-a11y-panel button:focus-visible,
.hm-a11y-skip:focus-visible {
  outline: 4px solid #ffbf00;
  outline-offset: 3px;
}

html.hm-a11y-active {
  --hm-a11y-page-bg: #fff;
  --hm-a11y-surface: #fff;
  --hm-a11y-page-text: #000;
  --hm-a11y-page-muted: #222;
  --hm-a11y-page-link: #0033cc;
  --hm-a11y-page-border: #000;
  --hm-a11y-page-accent: #005fcc;
  --hm-a11y-page-focus: #ffbf00;
  color-scheme: light;
  scroll-behavior: auto !important;
}

html.hm-a11y-theme-dark {
  --hm-a11y-page-bg: #000;
  --hm-a11y-surface: #000;
  --hm-a11y-page-text: #fff;
  --hm-a11y-page-muted: #fff;
  --hm-a11y-page-link: #ffff00;
  --hm-a11y-page-border: #fff;
  --hm-a11y-page-accent: #ffff00;
  --hm-a11y-page-focus: #00e5ff;
  color-scheme: dark;
}

html.hm-a11y-theme-blue {
  --hm-a11y-page-bg: #dff3ff;
  --hm-a11y-surface: #dff3ff;
  --hm-a11y-page-text: #063462;
  --hm-a11y-page-muted: #063462;
  --hm-a11y-page-link: #0033aa;
  --hm-a11y-page-border: #063462;
  --hm-a11y-page-accent: #063462;
  --hm-a11y-page-focus: #ffbf00;
  color-scheme: light;
}

html.hm-a11y-theme-sepia {
  --hm-a11y-page-bg: #f7f0d4;
  --hm-a11y-surface: #f7f0d4;
  --hm-a11y-page-text: #3b2712;
  --hm-a11y-page-muted: #3b2712;
  --hm-a11y-page-link: #5b2500;
  --hm-a11y-page-border: #3b2712;
  --hm-a11y-page-accent: #5b2500;
  --hm-a11y-page-focus: #005fcc;
  color-scheme: light;
}

html.hm-a11y-active body {
  color: var(--hm-a11y-page-text) !important;
  background: var(--hm-a11y-page-bg) !important;
  font-size: var(--hm-a11y-page-font-size, 18px) !important;
}

html.hm-a11y-active body,
html.hm-a11y-active body :where(p, li, dt, dd, td, th, label, input, select, textarea, button, a, span, div, article, section, aside, nav, header, footer, h1, h2, h3, h4, h5, h6, small, strong, b, em, i, summary, legend) {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: var(--hm-a11y-letter-spacing, 0) !important;
  line-height: var(--hm-a11y-line-height, 1.6) !important;
}

html.hm-a11y-active body :where(h1, h2, h3, h4, h5, h6, p, li, dt, dd, td, th, label, span, div, article, section, aside, nav, header, footer, summary, legend, small, strong, b, em, i) {
  color: var(--hm-a11y-page-text) !important;
  text-shadow: none !important;
}

html.hm-a11y-active body :where(main, article, section, aside, nav, header, footer, table, thead, tbody, tfoot, tr, td, th, form, fieldset, details, summary, .card, [class*="card"], [class*="panel"], [class*="box"], [class*="item"], [class*="addon"], [class*="module"]) {
  background-color: var(--hm-a11y-surface) !important;
  background-image: none !important;
  border-color: var(--hm-a11y-page-border) !important;
  box-shadow: none !important;
}

html.hm-a11y-active body :where(input, textarea, select, button, .btn, .sppb-btn) {
  color: var(--hm-a11y-page-text) !important;
  background-color: var(--hm-a11y-surface) !important;
  background-image: none !important;
  border-color: var(--hm-a11y-page-border) !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

html.hm-a11y-active body :where(input, textarea, select) {
  border-width: 2px !important;
}

html.hm-a11y-active body :where(input, textarea)::placeholder {
  color: var(--hm-a11y-page-muted) !important;
  opacity: 1 !important;
}

html.hm-a11y-active body :where(table, th, td) {
  border: 2px solid var(--hm-a11y-page-border) !important;
  border-collapse: collapse !important;
}

html.hm-a11y-active body :where(th, td) {
  padding: .65em !important;
}

html.hm-a11y-active body :where(hr) {
  border-color: var(--hm-a11y-page-border) !important;
  opacity: 1 !important;
}

html.hm-a11y-size-large {
  --hm-a11y-page-font-size: 20px;
}

html.hm-a11y-size-xlarge {
  --hm-a11y-page-font-size: 23px;
}

html.hm-a11y-spacing-wide {
  --hm-a11y-letter-spacing: .04em;
  --hm-a11y-line-height: 1.85;
}

html.hm-a11y-active :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 4px solid var(--hm-a11y-page-focus) !important;
  outline-offset: 4px !important;
}

html.hm-a11y-active *,
html.hm-a11y-active *::before,
html.hm-a11y-active *::after {
  animation-duration: .001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: .001ms !important;
}

html.hm-a11y-active a {
  color: var(--hm-a11y-page-link) !important;
  text-decoration: underline !important;
  text-underline-offset: .18em !important;
}

html.hm-a11y-active .hm-a11y-toolbar,
html.hm-a11y-active .hm-a11y-toolbar * {
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
}

html.hm-a11y-active .hm-a11y-toolbar,
html.hm-a11y-active .hm-a11y-toggle,
html.hm-a11y-active .hm-a11y-panel,
html.hm-a11y-active .hm-a11y-skip {
  --hm-a11y-bg: var(--hm-a11y-surface);
  --hm-a11y-text: var(--hm-a11y-page-text);
  --hm-a11y-border: var(--hm-a11y-page-border);
  --hm-a11y-accent: var(--hm-a11y-page-accent);
}

html.hm-a11y-images-mono body :where(img, picture, svg, video, canvas) {
  filter: grayscale(1) contrast(1.2) !important;
}

html.hm-a11y-images-off body :where(img, picture, svg, video, canvas) {
  visibility: hidden !important;
}

html.hm-a11y-images-off body * {
  background-image: none !important;
}

html.hm-a11y-images-off .hm-a11y-toolbar,
html.hm-a11y-images-off .hm-a11y-toolbar * {
  visibility: visible !important;
}

@media (max-width: 575.98px) {
  .hm-a11y-toolbar {
    right: 12px;
    left: 12px;
    bottom: 12px;
    top: auto;
    width: auto;
  }

  .hm-a11y-toolbar:not([data-button-mounted="1"]) .hm-a11y-toggle {
    width: 100%;
    justify-content: center;
  }

  .hm-a11y-panel {
    max-height: min(72vh, 620px);
    overflow: auto;
  }
}

@media print {
  .hm-a11y-toolbar {
    display: none !important;
  }
}
