.siteContainer .topContainer .menuButtonContainer {
  position: relative;
}

.tchA11yFab {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999999;
}

@media (min-width: 768px) {
  .tchA11yFab {
    bottom: 24px;
  }
}

.tchA11yButton {
  appearance: none;
  background: rgba(20, 42, 81, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.35);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.tchA11yButton:hover {
  background: rgba(20, 42, 81, 1);
}

.tchA11yButton:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.tchA11yMenu {
  position: absolute;
  left: 0px;
  bottom: 56px;
  width: 260px;
  background: rgba(20, 42, 81, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.tchA11yGroup + .tchA11yGroup {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.tchA11yGroupTitle {
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
  letter-spacing: 0.4px;
}

.tchA11yButtons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tchA11yAction {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 16px;
}

.tchA11yAction:hover {
  background: rgba(255, 255, 255, 0.16);
}

.tchA11yAction[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Font sizing (global) */
body.tchFontNormal {
  zoom: 1;
}

body.tchFontL {
  zoom: 1.1;
}

body.tchFontXL {
  zoom: 1.22;
}

body.tchFontXXL {
  zoom: 1.3;
}

@supports not (zoom: 1) {
  body.tchFontL .siteContainer,
  body.tchFontXL .siteContainer,
  body.tchFontXXL .siteContainer {
    transform-origin: top left;
  }

  body.tchFontL .siteContainer {
    transform: scale(1.1);
    width: calc(100% / 1.1);
  }

  body.tchFontXL .siteContainer {
    transform: scale(1.22);
    width: calc(100% / 1.22);
  }

  body.tchFontXXL .siteContainer {
    transform: scale(1.3);
    width: calc(100% / 1.3);
  }
}
