/* Gemeinsame Sticky-Runtime fuer alle Sticky-Varianten. */

body[data-sticky-mode="css"] #header2 {
    position: -webkit-sticky;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
    display: block;
    background: #f4f0e3;
}

/* JS-Varianten setzen fixed. */
#header2.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #f4f0e3;
    border-bottom: 1px solid #999999;
}

/* Platzhalter verhindert Sprung. */
#header2-placeholder {
    display: block;
    height: 0;
    overflow: hidden;
}
