
.accessible_navigation_wrapper {
    position: absolute; z-index: 99999;
    top: 0; left: -100%; width: 100%; height: auto;
    padding: 1rem 2rem; text-align: center;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; 
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}

.accessible_navigation_wrapper:focus-within {
    left: 0;
}

.accessibility_item {
    padding: 0.25rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
}
.accessibility_item a {
    padding: 0.25rem 0.5rem;
    display: inline-block;
    text-transform: uppercase;
    line-height: 1.2; font-size: 0.875rem;
    font-weight: 700;
}
.accessibility_item a span {
    display: block;
    font-weight: 400;
}
