/*===============================
=              WCAG             =
===============================*/
:root {
  --black: #000;
  --white: #fff;
  --yellow: #FCEC00;
  --magenta: #FF00FF;
}

body.contrast:not(.reader-mode) {
  background-color: var(--black);
}
body.contrast body {
  background-color: var(--black);
}
body.contrast body main,
body.contrast body section,
body.contrast body footer {
  background-color: var(--black);
}
@media screen and (min-width: 1025px) {
  body.contrast body a:hover {
    text-decoration: underline !important;
  }
}
body.underline-links a {
  text-decoration: underline;
}
body.caps {
  text-transform: uppercase;
}
body.low-contrast .header {
  filter: grayscale(1);
}
body.low-contrast main {
  filter: grayscale(1);
}
body.low-contrast .footer {
  filter: grayscale(1);
}
body.contrast.magenta {
  --yellow: var(--magenta);
}
body.contrast.white {
  --yellow: #000;
  --black: var(--white);
}
body.contrast.white .accessibility {
  --yellow: #FCEC00;
  --black: #000;
}

.accessibility {
  position: fixed;
  width: 170px;
  height: 65px;
  top: 0;
  left: 0;
  z-index: 99999;
  transition: all 0.3s ease-in-out;
}
.accessibility--visible .accessibility__items {
  opacity: 1;
  visibility: visible;
}
.accessibility__btn {
  position: relative;
  background-color: var(--black);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
body.contrast .accessibility__btn {
  background-color: var(--yellow);
}
body.contrast .accessibility__btn svg path {
  fill: var(--black);
}
.accessibility__items {
  display: flex;
  flex-direction: column;
  width: 180px;
  top: 0;
  position: absolute;
  right: -60px;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
body.contrast .accessibility__items {
  box-shadow: 0 0 0 1px var(--yellow);
}
.accessibility__item {
  border: 1px solid transparent;
  width: 180px;
  height: 45px;
  display: flex;
  align-items: center;
  background-color: var(--black);
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.accessibility__item--active {
  border-color: var(--white);
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .accessibility__item:hover {
    text-decoration: underline;
  }
}
.accessibility__label {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  font-size: 12px;
  line-height: 14px;
}
.accessibility__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accessibility-btn {
  position: relative;
  top: -25px;
  min-width: 50px;
  padding: 0 5px;
}
@media screen and (max-width: 1024px) {
  .accessibility-btn {
    width: 100%;
    right: 0;
    top: -40px;
  }
}

/*
background-color: #FFF;

@include yellow {
  background-color: var(--black);
  color: var(--yellow);
}
*/
.reader-modal-content {
  margin: 0 auto;
  max-width: 960px;
}

.reader-mode {
  max-width: 800px;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  background: #fff;
}

.reader-mode h1,
.reader-mode h2,
.reader-mode h3,
.reader-mode h4,
.reader-mode h5,
.reader-mode h6,
.reader-mode p {
  color: #000;
  background: transparent;
}

.reader-mode a {
  color: #0000EE;
  text-decoration: underline;
}

.toggle-reader-mode {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1000;
  font-size: 16px;
}

.toggle-reader-mode:hover {
  background: #0056b3;
}

.toggle-reader-mode:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.error-message {
  color: #721c24;
  background: #f8d7da;
  padding: 10px;
  margin: 10px;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

.close-reader-mode {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1000;
  font-size: 16px;
}

.reader-mode .close-reader-mode {
  display: block;
}/*# sourceMappingURL=wcag.css.map */