/* Sprunglinks nur bei Tastaturfokus anzeigen */
a[href="#main-wrapper"],
a[href="#search-header"],
a[href="#mainNavigation"] {
    position: absolute !important;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
a[href="#main-wrapper"]:focus,
a[href="#search-header"]:focus,
a[href="#mainNavigation"]:focus {
    position: static !important;
    left: auto;
    width: auto;
    height: auto;
    overflow: visible;
    display: inline-block;
    padding: .5rem 1rem;
    background: #fff;
    color: #000;
    z-index: 1080;
}