.vision-bar {
  background: #111;
  color: #fff;
  border-top: 1px solid #fff;
}
.vision-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 16px;
  padding-bottom: 16px;
}
.vision-bar__label {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.vision-bar__control {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vision-bar__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.vision-bar__toggle {
  position: relative;
  width: 56px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 32px;
  cursor: pointer;
  display: block;
  transition: background-color 0.2s ease;
}
.vision-bar__toggle:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.vision-bar__status {
  min-width: 44px;
  font-size: 16px;
  font-weight: 700;
}
.vision-bar__status:before {
  content: attr(data-off);
}
.vision-bar__checkbox:checked + .vision-bar__toggle {
  background: #fff;
}
.vision-bar__checkbox:checked + .vision-bar__toggle:before {
  transform: translateX(24px);
  background: #111;
}
.vision-bar__checkbox:checked ~ .vision-bar__status:before {
  content: attr(data-on);
}
@media (max-width: 767px) {
  .vision-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

body:has(#vi-mode-toggle:checked) {
  background: #fff;
  color: #000;
}

body:has(#vi-mode-toggle:checked) .app {
  --color1: #000;
  --color2: #000;
  --color3: #000;
  --color4: #000;
  --color5: #fff;
  --color6: #fff;
  --color7: #fff;
  --color8: #fff;
  --color9: #fff;
  --color10: #fff;
  --color11: #fff;
  --color12: #fff;
  --color13: #fff;
  --color14: #000;
  --gradient: none;
  background: #fff !important;
  color: #000 !important;
  line-height: 1.6;
}

body:has(#vi-mode-toggle:checked) .app * {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}

body:has(#vi-mode-toggle:checked) .app a {
  color: #000 !important;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

body:has(#vi-mode-toggle:checked) .app .btn {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}

body:has(#vi-mode-toggle:checked) .app .header:after {
  background: #fff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:has(#vi-mode-toggle:checked) .app .footer {
  background: #fff !important;
  border-top: 2px solid #000;
}

body:has(#vi-mode-toggle:checked) .vision-bar {
  background: #000;
  color: #fff;
  border-top-color: #000;
}

body:has(#vi-mode-toggle:checked) a:focus-visible,
body:has(#vi-mode-toggle:checked) button:focus-visible,
body:has(#vi-mode-toggle:checked) input:focus-visible,
body:has(#vi-mode-toggle:checked) label:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

/*# sourceMappingURL=visually-impaired.css.map */
