.a11y-modal[hidden] {
    display: none;
}
.a11y-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
}
.a11y-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.a11y-modal__dialog {
    position: relative;
    width: min(92vw, 560px);
    margin: 10vh auto 0;
    background: #ffffff;
    color: #333;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    border: 1px solid #e6ddd2;
    padding: 28px 28px 20px;
    outline: 0;
}
.a11y-modal__title {
    margin: 0 44px 14px 0;
    color: #217c70;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
}
.a11y-modal__content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}
.a11y-modal__source {
    margin-top: 16px;
    text-align: right;
    color: #217c70;
    font-weight: 700;
}
.a11y-modal__actions {
    margin-top: 18px;
    text-align: right;
}
.a11y-modal__btn,
.a11y-modal__close {
    font-family: inherit;
}
.a11y-modal__btn {
    min-width: 84px;
    padding: 9px 22px;
    border: 1px solid #0a9a93;
    border-radius: 4px;
    background: #00736d;
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    cursor: pointer;
}
.a11y-modal__btn:hover,
.a11y-modal__btn:focus {
    background: #0abab1;
    border-color: #0a9a93;
}
.a11y-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #8d8d8d;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}
.a11y-modal__btn:focus,
.a11y-modal__close:focus {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
}
.a11y-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
@media (max-width: 767px) {
    .a11y-modal__dialog {
        width: min(94vw, 560px);
        margin-top: 6vh;
        padding: 22px 18px 18px;
        border-radius: 12px;
    }
    .a11y-modal__title {
        font-size: 1.5rem;
        margin-right: 40px;
    }
    .a11y-modal__content {
        font-size: 1rem;
        line-height: 1.8;
    }
}