#accessibility-helper-panel {
  position: fixed;
  z-index: 9999;
	margin: 0;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
	border: solid 3px #000000;
  
}

#accessibility-helper-panel button:focus,
#accessibility-helper-panel input[type="checkbox"]:focus + .slider,
#accessibility-helper-panel select:focus,
#accessibility-helper-panel input[type="range"]:focus {
  outline: 3px solid #6671cc !important;
  outline-offset: 2px !important;
	-webkit-appearance: auto !important;
	appearance: auto !important;
}

#accessibility-helper-panel input[type="range"]{
	-webkit-appearance: auto !important;
	appearance: auto !important;
	
}
#accessibility-helper-panel button {
  padding: 6px 10px;
  border: none;
	border-radius: 8px;
  cursor: pointer;
  font-family: 'OpenDyslexic', Arial, sans-serif !important;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

#accessibility-helper-panel label, select {
  font-family: 'OpenDyslexic', Arial, sans-serif !important;
	-webkit-appearance: auto !important;
  appearance: auto !important;

}

#accessibility-controls {
  margin-top: 10px;
}

button#close-accessibility {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

body.readable-font #accessibility-page-wrapper *:not([class*="icon"]):not(i):not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not(.material-icons) {
  font-family: 'OpenDyslexic', Arial, sans-serif !important;
}


.shortcut-notification {
  position: fixed;
  bottom: 60px;
  left: 0px;
  background: #222;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  z-index: 9999;
  display: none;
}



#image-description-popup {
    position: absolute;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    max-width: 200px;
    z-index: 9999;
    pointer-events: none;
    display: none;
}



/* Positioning classes */
.pos-bottom-right {
    bottom: 10px;
    right: 10px;
}

.pos-bottom-left {
    bottom: 10px;
    left: 10px
}

.pos-top-right {
    top: 10px;
    right: 10px;
}

.pos-top-left {
    top: 10px;
    left: 10px;
}

/* The switch - the box around the slider */
#accessibility-helper-panel .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

/* Hide default HTML checkbox */
#accessibility-helper-panel .switch input {
  opacity: 0;
  width: 0;
  height: 0;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

#accessibility-helper-panel .switch-label {
    padding-right: 10px;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

/* The slider */
#accessibility-helper-panel .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

#accessibility-helper-panel .slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid black; 
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

#accessibility-helper-panel input:checked + .slider {
  background-color: #2196F3;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

#accessibility-helper-panel input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

#accessibility-helper-panel input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

/* Rounded sliders */
#accessibility-helper-panel .slider.round {
  border-radius: 34px;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

#accessibility-helper-panel .slider.round:before {
  border-radius: 50%;
	-webkit-appearance: auto !important;
  appearance: auto !important;
}

#brightness-slider, #contrast-slider, #saturation-slider, #hue-slider {
    margin-top: -20px;
}

.color-blind {
    flex-direction: column;
    display: flex;
    padding-bottom: 20px;
}

