@import url('https://fonts.verwaltungsportal.de/css/?family=Open+Sans:400,400i,600,600i,700,700i%7CRoboto+Condensed:700,700i');

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #faffea;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: #3c5409 #ffffff;
    scrollbar-width: thin;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #222222;
    background: #f7f7f7;
    font-size: clamp(1rem, 2vw, 1.0625rem);
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #5a7401;
}

a:is(:hover, :focus) {
    color: #5a7401;
    text-decoration: underline;
}

b,
strong {
    font-weight: 600;
}

a:focus {
    outline: 3px solid #2a4a9a !important;
}

button:focus {
    outline: 3px solid #2a4a9a !important;
}

form:focus {
    outline: 3px solid #2a4a9a !important;
}

#newsletter_input:focus,
#newsletter_submit:focus,
#search_input1:focus,
#search_submit1:focus {
    outline: 3px solid #2a4a9a !important;
}
/* ------------------------------------------- topbar ------------------------------------------- */

#topbar {
    background: #f1c40f;
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    #topbar {
        padding: 20px 0;
    }
}

#topbar>.row {
    row-gap: 15px;
}

#name {
    color: #222222;
}

#name a {
    color: inherit;
    text-decoration: underline;
}

/* --------------------------------------- contrast + styler ------------------------------------ */

#controls {
    column-gap: 30px;
}

#contrast_style,
#style {
    gap: 3px;
}

:is(#contrast_style, #style) h2 {
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
    font-style: italic;
    margin: 0 5px 0 0;
    width: unset;
}

:is(#contrast_style, #style) button {
    border: none;
    color: #222222;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    background: #fcf9f0;
    line-height: 1;
    min-width: 30px;
    min-height: 30px;
    position: relative;
    padding: 6px;
    overflow: hidden;
}

:is(#contrast_style, #style) button:is(:hover, :focus) {
    color: #222222;
    background: #f8e287;
}

#contrast_style button:nth-of-type(2) {
    transform: scaleX(-1);
}

#contrast_style button::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 1px solid #222222;
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 7px);
}

#contrast_style button:after {
    background: linear-gradient(to right, #222222, #222222 50%, #ffffff 50%);
}

#contrast_style button:nth-of-type(3):after {
    background: linear-gradient(to left, #5a7401, #5a7401 50%, #ffffff 50%);
}

/* -------------------------------------------- search ------------------------------------------ */

#search {
    background: #fcf9f0;
    display: inline-flex;
    width: 100%;
}

@media (min-width: 992px) {
    #search {
        max-width: 270px;
    }
}

#search_input {
    color: #222222;
    font-style: normal;
    background: transparent;
    padding: 7px 14px;
    border: 0;
    width: 100%;
}

#search_submit {
    width: 40px;
    flex-shrink: 0;
    background: url('../img/suche-icon.png') center no-repeat;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: 0;
    border-left: 1px solid rgba(88, 69, 58, 0.3);
    transition: background 200ms linear, top 200ms linear, bottom 200ms linear;
}

#search_submit:is(:hover, :focus) {
    background-color: #ebe4d3;
    top: 0;
    bottom: 0;
}

#search_input::placeholder {
    color: #222222 !important;
    opacity: 1 !important;
    font-style: italic !important;
}

/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background: #ffffff;
        border: none !important;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #5a7401;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        transition: transform 200ms linear, opacity 200ms linear;
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    #burgerButton[aria-expanded="true"]::before {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]:after {
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButton::before {
        top: 24px;
        content: "";
    }

    #burgerButton::after {
        top: 32px;
        content: "";
    }

    .navbar-nav {
        margin: 20px 0;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
    }

    .dropdown-toggle-button-wrapper {
        top: 7px;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 4px;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    #menu {
        background-color: #ffffff;
        padding: 27px 0;
        transition: all 150ms ease;
    }

    .is-sticky #menu {
        left: unset !important;
        padding: 0;
        box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.05);
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav.horizontally .navbar-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav li {
        position: relative;
    }

    nav.horizontally .navbar-nav li:is(.open, :hover)>ul,
    nav.horizontally .navbar-nav li.open:focus-within>ul,
    nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
    }

    nav.horizontally .navbar-nav li.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

    nav.horizontally .navbar-nav li:is(:hover, :focus)>ul {
        z-index: 1003;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #222222;
    font-weight: 700;
    text-align: left;
    padding: 12px 5px;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.2;
    text-decoration: none;
    font-family: "Roboto Condensed", sans-serif;
}

@media (max-width: 991px) {
    nav.horizontally li[class*="toplevel"]+li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    nav.horizontally a[class*="toplevel"].dropdown-toggle {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 15px;
    }

    nav.horizontally a[class*="toplevel"] {
        padding: 15px 0;
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    color: #5a7401;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #eaeaea;
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"]>ul {
        padding: 10px 0;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        padding-left: 10px;
    }
}

@media (min-width: 992px) {
    nav.horizontally [class*="toplevel"] ul {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    nav.horizontally [class*="toplevel"]>ul {
        margin-top: 10px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul::before,
    nav.horizontally [class*="toplevel"]>ul::after {
        content: "";
        position: absolute;
        display: block;
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        height: 10px;
        left: 0;
        right: 0;
        top: -10px;
    }

    nav.horizontally [class*="toplevel"]>ul::after {
        left: calc(50% - 11px);
        top: -10px;
        width: 22px;
        height: 10px;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        background: #eaeaea;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        margin-top: -16px;
        margin-left: 20px;
    }

    nav.horizontally [class*="secondlevel"]>ul::before {
        width: 20px;
        top: 0;
        bottom: 0;
        left: -20px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #222222;
    font-weight: 500;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9375rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        text-align: left;
    }

    nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
        padding-right: 35px;
    }
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus) {
    background: #5a7401;
    color: #fff;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

/* --------------------------------------------- logo ------------------------------------------- */

#logo {
    display: inline-block;
}

#logo img {
    display: inline-block;
    margin-right: 20px;
}

@media (max-width: 991px) {
    #logo img {
        max-width: calc(100vw - 120px);
    }
}

#topMobil {
    padding: 10px 0;
}

@media (max-width: 576px) {
    #logo img:first-child {
        margin: 0 0 15px 20px;
    }
} 

/* -------------------------------------------- banner ------------------------------------------ */

#slider {
    max-height: clamp(300px, 42vw, 400px);
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(400px, 82vw, 800px);
    }

    #headerpic a.nivo-prevNav {
        left: 65px;
    }

    #headerpic a.nivo-nextNav {
        right: 65px;
    }
}

#headerpic {
    padding: 0;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    #headerpic .nivo-controlNav {
        top: 1%;
        bottom: unset;
    }
}

.slider-wrapper,
#slider {
    height: 100%;
}

.slider-mask {
    display: block;
    background: linear-gradient(to top, #f7f7f7 20%, rgba(255, 255, 255, 0) 90%), url('../img/banner-bogen.png') center top / 100% auto no-repeat;
}



/* ------------------------------------------ content ------------------------------------------- */

main {
    position: relative;
    z-index: 50;
    background: url('../img/footer-bogen.png') center bottom / 100% auto no-repeat;
}

@media (min-width: 768px) {
    main {
        margin-top: calc(clamp(95px, 18vw, 235px) * -1);
    }

    body:not(.index) main {
        margin-top: -135px;
    }
}

#contentBG {
    text-align: left;
    padding: 30px clamp(15px, 2vw, 30px) clamp(30px, 4vw, 60px) clamp(15px, 2vw, 30px);
    background: #ffffff;
}

#content>.row {
    row-gap: 30px;
}

/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: #3c5409;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Roboto Condensed", sans-serif;
}

h1,
.h1,
.legacy_h1 {
    font-size: 2rem;
}

h2,
.h2,
.legacy_h2 {
    font-size: 1.7rem;

}

h3,
.h3,
.legacy_h3 {
    font-size: 1.6rem;
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
    font-size: 1.5rem;
}

h5,
.h5,
.legacy_h5 {
    font-size: 1.4rem;
}

h6,
.h6,
.legacy_h6 {
    font-size: 1.3rem;
}

/* --------------------------------------------- tabs2 ------------------------------------------ */

#tabs2 {
    position: relative;
    padding-bottom: 75px;
}

#tabs2 .tab {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#tabs2 .tab+.tab {
    margin-top: 30px;
}

#tabs2 .tab1 {
    background: #5a7401;
}

#tabs2 .tab2 {
    background: #ffffff;
}

#tabs2 .tabHeadline {
    font-size: 1.25rem;
    margin: 0;
    padding: 28px 80px 28px 30px;
    background-repeat: no-repeat;
    background-position: bottom -10px right -20px;
    hyphens: none;
}

#tabs2 .tab1 .tabHeadline {
    color: #f1c40f;
    background-color: #3c5409;
}

#tabs2 .tab2 .tabHeadline {
    color: #f1c40f;
    background-color: #3c5409;
}

#tabs2 #tab1 .tabHeadline {
    background-image: url('../img/icon-kontakt.png');
}

#tabs2 #tab2 .tabHeadline {
    background-image: url('../img/icon-sprechzeiten.png');
}

#tabs2 #tab3 {
    background: url('../img/icon-abfall.png') no-repeat, #f1c40f;
    color: #222222;
    font-size: 1.25rem;
    background-repeat: no-repeat;
    background-position: bottom -10px right 10px;
    hyphens: none;
    font-weight: 700;
    transition: transform 300ms;
}
#tabs2 #tab4 {
    background: url('../img/icon-gemeinderaeume.png') no-repeat, #f1c40f;
    color: #222222;
    font-size: 1.25rem;
    background-repeat: no-repeat;
    background-position: bottom -10px right -0px;
    hyphens: none;
    font-weight: 700;
    transition: transform 300ms;
}

#tabs2 #tab3 a, #tabs2 #tab4 a {
    color: #222222;
}

#tabs2 #tab3:hover, #tabs2 #tab4:hover {
    transform: scale(1.05);
}

#tabs2 .tabContent {
    padding: 30px;
    font-size: 0.9375rem;
}

#tabs2 .tab1 .tabContent {
    color: #ffffff;
}

#tabs2 .tab1 .tabContent a {
    color: #ffffff;
    text-decoration: underline;
}

/* -------------------------------------------- scrollTop --------------------------------------- */

#scrollTopBtn {
    position: absolute;
    left: 15px;
    bottom: 0;
    right: 15px;
    display: block;
    color: #222222;
    background: #f1c40f;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 14px 70px 14px 20px;
    text-decoration: none;
    font-family: "Roboto Condensed", sans-serif;
    margin-top: 30px;
}

#scrollTopBtn:is(:hover, :focus) {
    background: #f8e287;
}

#scrollTopBtn::before {
    content: "\00BB";
    position: absolute;
    right: 12px;
    top: 4px;
    padding: 0 10px;
    color: #222222;
    font-weight: 700;
    font-size: 30px;
    font-family: "Roboto Condensed", sans-serif;
    transform: rotate(-90deg);
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

/* ------------------------------------------- news events -------------------------------------- */

#news,
#events {
    padding: clamp(40px, 4vw, 60px) clamp(15px, 2vw, 30px);
    font-size: 0.9375rem;
}

:is(#events, #news) :is(h1, h2) {
    font-size: 2rem;
    margin: 0;
}

:is(#events, #news) :is(h1, h2) :is(i, em) {
    font-style: normal;
    font-size: 1.125rem;
    margin-bottom: 2px;
    display: block;
}

:is(#events, #news) .tab_link {
    margin-top: clamp(25px, 2vw, 35px);
}

:is(#events, #news) .tab_link_entry {
    position: relative;
}

:is(#events, #news) .tab_link_entries {
    display: grid;
    gap: 30px;
}

@media (min-width: 576px) {
    :is(#events, #news) .tab_link_entries {
        grid-template-columns: repeat(2, 1fr);
    }

    #news .tab_link_entry+.tab_link_entry:not(:nth-of-type(2))::before {
        background: rgba(255, 255, 255, 0.25);
    }

    #events .tab_link_entry+.tab_link_entry:not(:nth-of-type(2))::before {
        background: rgba(88, 96, 58, 0.2);
    }

    :is(#events, #news) .tab_link_entry+.tab_link_entry:not(:nth-of-type(2))::before {
        content: "";
        display: block;
        height: 1px;
        display: block;
        position: absolute;
        top: -31px;
        left: 0;
        right: 0;
    }

    :is(#events, #news) .tab_link_entry+.tab_link_entry:not(:nth-of-type(2n+2))::before {
        right: -15px;
    }

    :is(#events, #news) .tab_link_entry+.tab_link_entry:not(:nth-of-type(2n+3))::before {
        left: -15px;
    }

    :is(#events, #news) .tab_link_entry+.tab_link_entry:not(:nth-of-type(2)) {
        margin-top: 30px;
    }
}

:is(#events, #news) .tab_spacer {
    display: none;
}

:is(#events, #news) .tab_link_mehr {
    margin-top: 30px;
}

:is(#events, #news) .tab_link_mehr a {
    display: inline-block;
    padding: 8px 18px;
    line-height: 1.2;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Roboto Condensed", sans-serif;
}

:is(#events, #news) .tab_link_mehr a::after {
    content: "\203A";
    margin-left: 4px;
    position: relative;
    bottom: 1px;
    font-size: 0.875rem;
}

#news .tab_link_mehr a {
    border: 1px solid #fff;
    color: #fff;
}

#events .tab_link_mehr a {
    border: 1px solid #fff;
    color: #fff;
    background-color: #5a7401;
}

#news .tab_link_mehr a:is(:hover, :focus) {
    background: #3c5409;
    color: #f1c40f;
    border: 1px solid #f1c40f;
}

#events .tab_link_mehr a:is(:hover, :focus) {
    background: #3c5409;
    color: #f1c40f;
    border: 1px solid #f1c40f;
}

#events .tab_link_mehr {
    font-size: 0;
}

/* ----------------------------------------------- news ----------------------------------------- */

#news {
    background: #5a7401 url('../img/icon-news.png') top 40px right 40px no-repeat;
}

#news,
#news :is(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
}

#news .template-page a {
    color: #fff;
    text-decoration: underline;
}

#news .tab_link_entry {
    border-bottom: none !important;
}

#news .tab_link_entry:has(img) {
    padding-top: 140px;
}

#news .tab_preview_picture {
    display: block;
    height: 140px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

#news .tab_preview_picture img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#news .tab_date {
    background: #f1c40f;
    color: #222222;
    width: auto;
    display: inline-block;
    padding: 2px 8px;
    position: relative;
    z-index: 1;
    margin-right: auto;
}

#news .tab_link_entry:has(img) .tab_date {
    position: absolute;
    left: 0;
    top: 140px;
    transform: translateY(-100%);
}

#news .tab_link_title a {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.25rem;
    font-family: "Roboto Condensed", sans-serif;
    margin: 18px 0 4px 0;
    display: block;
}

#news .tab_link_entry>div:nth-last-child(2) {
    display: none;
}

/* ---------------------------------------------- events ---------------------------------------- */

#events {
    background: #ffffff url('../img/icon-events.png') top 40px right 40px no-repeat;
}

#events :is(h1, h2) :is(i, em) {
    color: #3c5409;
}

#events .template-page a {
    text-decoration: underline;
}

#events .tab_link_title a {
    color: #222222;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.25rem;
    font-family: "Roboto Condensed", sans-serif;
    display: block;
}

#events .tab_link_mandat a {
    color: inherit;
}

/* ---------------------------------------------- footer ---------------------------------------- */

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover,
footer a:focus {
    color: #fff;
    text-decoration: underline;
}

#logoFooter p+p {
    margin-top: 30px;
}

#footer {
    background: url('../img/silhouette-Familie.png') bottom left 3% no-repeat, #5a7401;
    color: rgba(255, 255, 255, 1);
    font-size: 0.9375rem;
    padding: clamp(30px, 4vw, 60px) 0;
}

#footer>.row {
    row-gap: 20px;
}

.footerHeadline {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0 0 8px 0;
}

#footerTab {
    line-height: 1.9;
}

#innerfooter {
    background: #3c5409;
    color: #ffffff;
    padding: 15px 0;
    font-size: 0.875rem;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
    color: #f1c40f;
    text-decoration: underline;
}

#innerfooter li+li::before {
    content: "·";
    margin: 0 6px;
}

@media (min-width: 992px) {
    #innerfooter li+li::before {
        margin: 0 25px;
    }
}

@media (max-width: 767px) {
    #innerfooter li {
        display: block;
        text-align: center;
        padding: 5px;
        margin: 0;
    }

    #innerfooter li+li::before {
        display: none;
    }
}

/* --------------------------------------------- vernetzt --------------------------------------- */

#vernetzt {
    gap: 12px;
    text-align: right;
    font-size: 0.8125rem;
    color: #fefefe;
    line-height: 1.3;
    text-decoration: none;
}

#vernetzt span span {
    display: block;
}

/* --------------------------------------------- contrast --------------------------------------- */

.contrast_dark form[id^="search"] {
    background: #ffffff !important;
}

.contrast_dark form [id^="search_submit"] {
    background: #ffffff url('../img/suche-icon.png') center no-repeat !important;
}

.contrast_dark #logo img {
    background: #fff !important;
}

.contrast_dark #tabs .tab img {
    border-bottom-color: #000000 !important;
}

:is(.contrast_dark, .contrast_dark_font) #tabs2 .tabHeadline {
    background-color: transparent !important;
}

:is(.contrast_dark, .contrast_dark_font) :is(#news, #events),
.contrast_dark_font main {
    background: none !important;
}

.contrast_dark_font #scrollTopBtn {
    color: #ffffff !important;
    background: #000000 !important;
}