.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 25px;
  float: right;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

.accessibility{
  width: 300px;
  background-color: #f1f1f1;
  padding:5px;
  border-radius: 5px;
}
.accessList{
  padding: 5px;
}

.accessList:hover{
  background-color: #ebecf0;
  border-radius: 5px;
}

.AccessDropbtn {
  position:fixed;
  width:50px;
  height:50px;
  right:5px;
  Top:90px;
  background-color: blue;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  box-shadow: 2px 2px 3px #999;
  z-index: 9989;
  cursor: pointer;
}

.AccessDropdown {
  position: relative;
  display: inline-block;
  color:black;
}

.AccessDropdown-content {
    display: none;
    position: fixed;
    left: 20px;
    z-index: 9990;
    outline: none;
    background-color: #e1e1e1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding:10px;
    border-radius: 5px;
}

.AccessDropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.AccessDropdown-content a:hover {
  background-color: #ddd;
}

.AccessDropcheck {
    display: none;
}

.AccessDropcheck:checked ~ .AccessDropdown-content {
    display: block;
    left: auto;
    right: 80px;
    top: 80px;
    margin-top: 20px;
}

.AccessDropcheck:checked + .AccessDropbtn {
  background-color: #3e8e41;
}

.AccessDropTitle{
  text-align: center;
  text-decoration: underline;
  margin-bottom: 5px;
}

.fa { 
  margin-right: 12px !important;
}

@media print{
    .AccessDropdown{ 
        display: none !important;
    }
}