#accessibility_container {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #FFFFFF;
  z-index: 9999;
  border-bottom-left-radius: 10px;
  border: 1px solid #d2d2d2;
  text-align: center;
  padding: 5px 15px;
}
#accessibility_container a {
  padding: 5px;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 1024px) {
  #accessibility_container {
    top: auto;
    bottom: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
  }
}
.theme-switcher {
  background-color: #d4d8dd;
  border-radius: 10px;
  margin: auto;
  display: flex;
  padding: 0 3px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.theme-switcher .slider {
  display: block;
  position: absolute;
  z-index: 1;
  width: calc((100% - 6px) / 2);
  top: 3px;
  transform: translatex(-110%);
  bottom: 3px;
  border-radius: 6px;
  transition: 0.15s ease, transform 0.25s ease-out;
  background-color: #ffffff;
  box-shadow: inset 0 1px 1px #ddd, 0 2px 3px #ccc;
}
.theme-switcher input {
  display: none;
}
.theme-switcher input:nth-of-type(1):checked ~ .slider {
  transform: translateX(0);
}
.theme-switcher input:nth-of-type(2):checked ~ .slider {
  transform: translateX(100%);
}
.theme-switcher label {
  position: relative;
  z-index: 2;
  cursor: pointer;
  width: calc(100% / 2);
  color: #737374;
}
.theme-switcher label span {
  padding: 8px 0 2px 0;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
}
.theme-switcher label svg {
  display: inline-block;
  margin-right: 0.5rem;
  width: 20px;
}
.dark-theme {
  background-color: #323339 !important;
  color: #ffffff;
}
.dark-theme #accessibility_container {
  background-color: #5D5F65 !important;
  color: #ffffff;
}
.dark-theme #accessibility_container a {
  color: #ffffff;
}
.dark-theme .theme-switcher {
  background-color: #323339;
}
.dark-theme .theme-switcher .slider {
  background-color: #5D5F65 !important;
}
.dark-theme .theme-switcher label {
  color: #ffffff;
}
.dark-theme .bg-yellow {
  background-color: #323339 !important;
}
.dark-theme .panel-group {
  background-color: #000000 !important;
}
.dark-theme .panel {
  background-color: #000000 !important;
}
.dark-theme .panel .panel-heading,
.dark-theme .panel .panel-body {
  color: #ffffff;
  background-color: #000000 !important;
}
.dark-theme section a,
.dark-theme .section-heading,
.dark-theme .section-sub-heading,
.dark-theme .section-sub-heading-2,
.dark-theme .panel-title,
.dark-theme .tc-3,
.dark-theme .tc-5 {
  color: #ffffff;
}
.dark-theme .font-resizer button {
  background-color: #323339 !important;
}
/*# sourceMappingURL=accessibility.css.map */