@import url('https://fonts.verwaltungsportal.de/css/?family=Comfortaa:400,400i,700,700i%7CYanone+Kaffeesatz:700,700i');

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

body {
    font-family: "Comfortaa", sans-serif;
    font-weight: 400;
    color: #514d4d;
    background: #ffffff;
    font-size: 0.9375rem;
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #b5363b;
}

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

main a,
b,
strong {
    font-weight: 700;
}

/* ------------------------------------------ topbar -------------------------------------------- */

#topbar>.row {
    font-size: 0.875rem;
}

@media (min-width: 992px) {
    #controls {
        padding-top: 19px;
        padding-bottom: 19px;
        column-gap: 25px;
    }

    #controls>*:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.12);
        padding-right: 20px;
    }
}

/* ------------------------------------------- styler ------------------------------------------- */

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

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

:is(#contrast_style, #style) button:is(:hover, :focus) {
    background: #f2e9e1;
}

#style button:is(:hover, :focus) {
    color: #1d4898;
}

:is(#contrast_style, #style) button+button {
    margin-left: -6px;
}

#contrast_style button:nth-child(3) {
    transform: scale(-1);
}

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

#contrast_style button:after {
    background: linear-gradient(45deg, #1d4898, #1d4898 50%, #ffffff 50%);
}

#contrast_style button:nth-child(4):after {
    background: #1d4898;
}

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

.search {
    width: 32px;
    height: 32px;
    text-align: center;
    padding: 7px 0 0 0;
    display: inline-block;
    flex-shrink: 0;
    line-height: 0;
}

@media (min-width: 992px) {
    .search {
        margin-left: -8px;
    }
}

.search:is(:hover, :focus) {
    background: #f2e9e1;
}

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

.logo {
    position: relative;
    z-index: 50;
    background: #ffffff;
    padding: 20px 25px;
    display: inline-block;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    #logo-mobile {
        margin-bottom: -30px;
    }
}

@media (min-width: 992px) {
    #logo {
        position: absolute;
        left: 15px;
        max-width: calc(100% - 30px);
        top: -70px;
        display: block;
        transition: all 300ms 0s linear;
    }

    .is-sticky #logo {
        top: 0;
    }
}

.logo img {
    display: block;
}

@media (max-width: 991px) {
    .logo img {
        max-width: calc(100vw - 145px);
        width: 100%;
    }
}

/* #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: #1d4898;
        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);
        padding: 15px 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: 5px;
    }

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

/* menu desktop */

@media (min-width: 992px) {
    .sticky-wrapper {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
    }

    nav.horizontally {
        transition: all 300ms 0s linear;
    }

    .is-sticky nav.horizontally {
        background: rgba(237, 205, 29, 0.8);
        padding-bottom: 30px;
    }

    nav.horizontally::after {
        content: "";
        display: block;
        pointer-events: none;
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        top: 0;
        height: 450px;
        opacity: 0;
        background: linear-gradient(to bottom, rgba(237, 205, 29, 1) 0%, rgba(237, 205, 29, 0));
        transition: opacity 300ms linear;
    }

    nav.horizontally:is(:hover, :focus-within)::after {
        opacity: 1;
    }

    nav.horizontally .navbar-nav {
        margin: 30px 0 0 0;
        display: flex;
        justify-content: space-between;
    }

    nav.horizontally .navbar-nav>li {
        flex-grow: 1;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]>ul {
        display: flex !important;
        flex-wrap: wrap;
        pointer-events: none;
        position: absolute;
        opacity: 0;
        top: calc(100% + 30px);
        left: -233px;
        right: 15px;
        border-radius: 40px;
        z-index: 1000;
        padding: 30px 40px 30px 270px;
        visibility: hidden;
        transition: top 200ms linear, opacity 200ms linear;
    }

    nav.horizontally .navbar-nav>li:is(.open, :hover)>ul,
    nav.horizontally .navbar-nav>li.open:focus-within>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
        top: 100%;
    }

    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;
    }

    nav.horizontally li[class*="secondlevel"] {
        width: 33.33%;
    }

    nav.horizontally li[class*="secondlevel"]:not(:nth-child(3n+4)) {
        border-right: 1px solid rgba(0, 0, 0, 0.12);
    }

    nav.horizontally li[class*="toplevel"]>ul::before {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        left: 0;
        width: 230px;
        height: 100%;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        background: #cfbfeb center / cover no-repeat;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        display: block !important;
        padding-bottom: 10px;
    }
}

@media (min-width: 1200px) {
    .navbar-default .navbar-nav li[class*="toplevel"]>ul {
        left: -285px;
        padding-left: 290px;
    }

    nav.horizontally li[class*="toplevel"]>ul::before {
        width: 270px;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #1d4898;
    background: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 8px 0;
    position: relative;
    font-size: 1.5rem;
    line-height: 1.2;
    text-decoration: none;
    border: 3px solid #fdd534;
    font-family: "Yanone Kaffeesatz", sans-serif;
}

@media (max-width: 991px) {
    nav.horizontally a[class*="toplevel"].dropdown-toggle {
        padding-right: 35px;
    }
}

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

    nav.horizontally a[class*="toplevel"] {
        padding: 18px 20px 13px 20px;
        text-align: center;
        display: flex;
        align-content: center;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        flex-direction: column;
        height: 100%;
        border-radius: 40px;
        min-height: 101px;
        min-width: 167px;
    }

    .is-sticky nav.horizontally a[class*="toplevel"] {
        min-height: 60px;
    }

    nav.horizontally a[class*="toplevel"].dropdown-toggle::before {
        content: "";
        opacity: 0;
        pointer-events: none;
        position: absolute;
        display: block;
        left: calc(50% - 24px);
        bottom: -60px;
        width: 48px;
        height: 20px;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        background: #ffffff;
        transition: opacity 200ms linear, bottom 200ms linear;
    }
}

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

nav.horizontally a[class*="toplevel"]::after {
    content: "";
    display: block;
    height: 4px;
    width: 0;
    max-width: 100px;
    background: #b5363b;
    margin: 2px 0 0 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms linear, width 300ms linear;
}

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"]::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::after,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"].open>a::after,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::after,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::after {
    width: 80%;
    opacity: 1;
}

@media (min-width: 992px) {

    nav.horizontally li[class*="toplevel"]:hover>a.dropdown-toggle::before,
    nav.horizontally li[class*="toplevel"].open>a.dropdown-toggle::before,
    nav.horizontally li[class*="toplevel"].open>a.dropdown-toggle:is(:hover, :focus)::before {
        bottom: -30px;
        opacity: 1;
    }
}

/* secondlevel + thirdlevel dropdown-box */

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

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

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

    nav.horizontally [class*="toplevel"]>ul::after {
        content: "";
        position: absolute;
        display: block;
        height: 40px;
        left: 0;
        right: 0;
        top: -40px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #383535;
    text-align: left;
    line-height: 1.2;
    text-decoration: none;
}

nav.horizontally a[class*="secondlevel"] {
    font-weight: 700;
    font-size: 1.25rem;
    font-family: "Yanone Kaffeesatz", sans-serif;
    padding: 8px 15px;
}

@media(min-width:992px) {
    nav.horizontally a[class*="secondlevel"] {
        text-transform: uppercase;
        padding-bottom: 4px;
    }
}

nav.horizontally a[class*="thirdlevel"] {
    font-weight: 400;
    font-size: 0.875rem;
    padding: 6px 15px 6px 30px;
}

nav.horizontally a[class*="thirdlevel"]::after {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: 20px;
    border-radius: 50%;
    width: 3px;
    height: 3px;
    border: 1px solid #514d4d;
    transition: background 300ms linear, border 300ms linear;
}

@media (max-width: 991px) {
    nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
        padding-right: 35px;
    }
}

/* secondlevel + thirdlevel dropdown-box */

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) {
    color: #1d4898;
}

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

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

/* #region ------------------------------------ banner ------------------------------------------ */

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

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

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

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

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

@media (min-width: 768px) {
    #headerpic .nivo-controlNav {
        bottom: 60px;
    }
}

@media (min-width: 1200px) {
    #headerpic .nivo-controlNav {
        bottom: 130px;
    }
}

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

.slider-mask {
    display: block;
    background: url('../img/banner-overlay.png') center bottom -72px / 100% auto no-repeat;
}

/* #endregion --------------------------------- banner ------------------------------------------ */

/* ------------------------------------------- content ------------------------------------------ */
#content {
    margin-top: 50px;
    margin-bottom: 70px;
}

#contentBG {
    text-align: left;
    position: relative;
}

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

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

h1,
.h1,
.legacy_h1 {
    font-size: clamp(2.375rem, 4vw, 2.8125rem);
    margin-bottom: clamp(15px, 2vw, 25px);
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(2.25rem, 4vw, 2.625rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: clamp(2.125rem, 4vw, 2.375rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
    font-size: clamp(2rem, 4vw, 2.1875rem);
}

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

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

/* #region ------------------------------------- tabs ------------------------------------------- */

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

#tabs>.row+.row,
#tabs {
    margin-top: 30px;
}

#tabs .tabHeadline,
#tabs .tabHeadline a {
    color: #514d4d;
}

#tabs .tabHeadline a {
    text-decoration: underline;
}

#tabs .tabHeadline :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.75rem, 4vw, 2.1875rem);
    color: #1d4898;
    margin: 0;
}

#tabs .tab {
    background: #ffffff;
    color: #514d4d;
    font-size: 1rem;
    height: 100%;
    min-height: 100%;
    word-wrap: break-word;
    word-break: break-word;
}

#tabs .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#tabs .tab img {
    display: block;
}

#tabs .tab a {
    font-weight: 700;
    font-size: 1.5rem;
    font-family: "Yanone Kaffeesatz", sans-serif;
    text-decoration: underline;
    hyphens: initial;
}

#tabs .tab a:is(:hover, :focus) {
    color: #261853;
}

#tabs .tab a::after {
    content: "\00BB";
    margin-left: 4px;
}

#tabs .row>div:nth-of-type(6) .tab img {
    margin-top: 9px;
    margin-bottom: 25px;
}

/* #endregion ---------------------------------- tabs ------------------------------------------- */

/* #region ------------------------------------- tabs2 ------------------------------------------ */

@media (max-width: 991px) {
    #tabs2 {
        margin: 40px 0;
    }
}

@media (min-width: 992px) {
    #tabs2 {
        padding-left: 30px;
        padding-right: 0;
        padding-bottom: 60px;
        position: relative;
    }

    #tabs2::before {
        content: "";
        background-color: rgb(29, 72, 152);
        opacity: 0.4;
        position: absolute;
        left: 0;
        top: -30px;
        width: 1px;
        height: 65%;
        z-index: 1;
    }
}


#tabs2 .tab {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
    position: relative;
}

#tabs2 .tabHeadline {
    font-size: 1.5rem;
    margin: 0 0 clamp(10px, 2vw, 18px) 0;
}

#tabs2 .tab2 .tabHeadline {
    color: #1d4898;
}

#tabs2 .tab_link_mandat a {
    font-weight: 400;
}

#tabs2 :is(.tab_link_title, .tab_link_mandat) a {
    color: inherit;
}

#tabs2 .tab_spacer {
    display: none;
}

#tabs2 .tab_link_entry {
    position: relative;
}

#tabs2 .tab_link_entry+.tab_link_entry {
    margin-top: 24px;
}

#tabs2 .tab_link_entry+.tab_link_entry::before {
    content: "";
    display: block;
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(29, 72, 152, 0.5) 10%, rgba(29, 72, 152, 0));
}

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

#tabs2 .tab_link_mehr a {
    display: block;
    position: absolute;
    right: 0;
    background: #b5363b;
    font-weight: 700;
    font-family: "Yanone Kaffeesatz", sans-serif;
    text-align: center;
    padding: 16px 20px 12px 20px;
    text-decoration: none;
    border-radius: 50px;
    line-height: 1.2;
    margin-top: 20px;
    font-size: 1.125rem;
    color: #ffffff;
}

#tabs2 .tab_link_mehr a:is(:hover, :focus) {
    background: #312d38;
}

#tabs2 .tab_link_mehr a::after {
    content: "\00BB";
    margin-left: 4px;
}

article+article {
    margin-top: 100px;
}

/* #endregion ---------------------------------- tabs2 ------------------------------------------ */

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

#events .tab_link_entry {
    border: none !important;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
    padding-left: 90px;
}

#events .tab_link_entry .tab_link_title a::before {
    content: "";
    background: rgba(255, 255, 255, 0.2) center / cover no-repeat;
}

#events .tab_link_entry .tab_link_title a::before,
#events .tab_link_entry .tab_preview_picture {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
    top: 50%;
    margin: -35px 0 0 0;
    left: 0;
}

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

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

#footer {
    background: #1d4898;
    color: #ffffff;
    font-size: 0.875rem;
    padding: 30px 0;
}

@media (min-width: 576px) {
    #footer {
        padding-top: 0;
    }
}

@media (min-width: 992px) {
    #footer {
        padding-bottom: 60px;
        padding-top: 60px;
    }
}

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

#footer a {
    color: #ffffff;
    text-decoration: underline;
}

#footer .footerHeadline {
    color: #fff;
    font-size: 1.5rem;
}

.footerTab :is(iframe, .iframe-wrapper-manual-enabling) {
    min-width: 100% !important;
    width: 100% !important;
    display: block;
    max-width: 470px;
    max-height: 172px;
}

/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#f5 {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #133066;
}

/* --------------------------------------------- innerfooter -------------------------------------------- */

@media (max-width: 767px) {
    #innerfooter {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

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

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

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

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

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

#vernetzt {
    text-align: right;
    font-size: 0.75rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 auto;
    text-decoration: none;
}

@media (min-width: 768px) {
    #vernetzt {
        margin: 0;
    }
}

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

#vernetzt img {
    margin-left: 12px;
}

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

:is(.contrast_dark, .contrast_dark_font) :is(main, #content),
.contrast_dark_font :is(main, #content),
:is(.contrast_dark, .contrast_dark_font) .slider-mask {
    background: none !important;
}

.contrast_dark_font #tabs2 .tab_link_mehr a::after {
    color: #000000 !important;
}

:is(.contrast_dark, .contrast_dark_font) :is(#contrast_style, #style) button+button {
    margin-left: 0 !important;
}