/* body .accessibility-trigger button {
    left: unset !important;
    right: 20px !important;
} */
.accessibility-modal-body {
    padding: 0 !important;
    max-height: 100% !important;
}
.accessibility-modal-footer {
    display: none !important;
}

/* Position accessibility loader in lower left corner */
.aioa_loader {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 9999 !important;
    width: 60px !important;
    height: 60px !important;
}

.aioa_loader .circle-border {
    position: relative;
    width: 100%;
    height: 100%;
    border: 3px solid #ccc;
    border-radius: 50%;
    border-top: 3px solid #007acc;
    animation: spin 1s linear infinite;
}

.aioa_loader .circle-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #007acc;
    border-radius: 50%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (min-width: 768px) {
    /* body .accessibility-trigger button {
        left: 20px !important;
        right: unset !important;
    } */
    .accessibility-settings-modal {
        height: 80vh !important;
    }
}