:root {
  --focus-color: #097efb;
  --focus-color-dark-bg: #3b99fc;
}
@media (prefers-color-scheme: dark) {
  :root {
    --focus-color: #3b99fc;
    --focus-color-dark-bg: #097efb;
  }
}
/*
 * This CSS from http://gdkraus.github.io/accessible-modal-dialog/
 */
.a11y-modal {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  border: thin #000 solid;
  background-color: #fff;
  z-index: 3;
  /* places the modal dialog on top of everything else */
  position: fixed;
  top: 25%;
  left: 25%;
  display: none;
}
.enable__is-dark-mode .a11y-modal {
  background-color: #121212;
}
.a11y-modal.visible {
  display: block;
}
.a11y-modal h1 {
  text-align: center;
}
.a11y-modal__button--close {
  position: absolute;
  top: -20px;
  right: -20px;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  display: inline;
}
.a11y-modal__button--close img {
  border: 0;
  width: 38px;
  height: 38px;
}
#a11y-modal__overlay {
  width: 100%;
  height: 100%;
  z-index: 2;
  /* places the modal overlay between the main page and the modal dialog*/
  background-color: #000;
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  margin: 0;
  padding: 0;
}
.enable__is-dark-mode #a11y-modal__overlay {
  background-color: #ededed;
}
#a11y-modal__overlay.visible {
  display: block;
}
/*# sourceMappingURL=dialog.css.map */