#my_accessibility {
    /*position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);*/
    font-size: 18px;
    display: none;
    padding: 8px 0;
    background-color: #e7e7e7;
}
body.accessibility_on #my_accessibility {
    display: block;
}
#my_accessibility > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#my_accessibility .changes {
    display: flex;
}
#my_accessibility .changes > div {
    display: flex;
    padding: 0 9px;
    position: relative;
}
#my_accessibility .changes > div:first-child {
    padding-left: 0;
}
#my_accessibility .changes > div:first-child > div:first-child {
    margin-left: 0;
}
#my_accessibility .changes > div:not(:last-child):after {
    content: '';
    position: absolute;
    background-color: #000;
    width: 1px;
    height: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#my_accessibility .changes > div > div {
    width: 35px;
    height: 35px;
    border: 1px solid #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    cursor: pointer;
}
#my_accessibility .serif-face,  body.serif * {
    font-family: times new roman !important;
}
#my_accessibility .non-serif-face, body.non-serif * {
    font-family: arial !important;
}
#my_accessibility .black-on-white,
body.black-on-white,
body.black-on-white * {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
}
#my_accessibility .white-on-black,
body.white-on-black,
body.white-on-black * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}
#my_accessibility .yellow-on-blue,
body.yellow-on-blue,
body.yellow-on-blue * {
    background-color: #3563b1 !important;
    color: #FFD200 !important;
}
html.zoom150 {
    zoom: 150%;
}
html.zoom150 #my_accessibility {
    zoom: 66.667%;
}
html.zoom200 {
    zoom: 200%;
}
html.zoom200 #my_accessibility {
    zoom: 50%;
}
#accessibility_on {
    display: inline-block;
    background-color: #ffd232;
    border-radius: 2px;
    padding: 5px 3px;
    font-size: 14px;
    border: 2px solid #ffd232;
    cursor: pointer;
    transition: all 0.3s;
}
body.accessibility_on #accessibility_on {
    display: none;
}
#accessibility_on:hover {
    background-color: transparent;
}
div#accessibility_off {
    background-color: #c9c9c9;
    border-radius: 4px;
    padding: 8px 20px;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}
