@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: #851f03 #ffffff;
}

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: #974029;
}

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

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

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

header {
    position: relative;
}

@media (min-width: 1200px) {
    header::after {
        content: '';
        position: absolute;
        background: url(../img/icon-stifte.png);
        width: 162px;
        height: 186px;
        right: 10px;
        top: 0;
        z-index: 11;
    }
}

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

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

    #topbar {
        border-top: #851f03 5px solid;
    }

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

/* ----------------------------------------- top links ------------------------------------------ */

.top-links a {
    content: '';
    display: inline-block;
    padding-left: 24px;
    padding-top: 2px;
    background-image: url(../img/icon-vertretungssplan.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.top-links a[href*="tel:"] {
    background-image: url(../img/icon-telefon.png);
    padding-left: 22px;
}

.top-links a[href*="mailto:"] {
    background-image: url(../img/icon-mail.png);
    padding-left: 26px;
}

@media (max-width: 991px) {
    .top-links a {
        display: block;
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
    }

    .top-links a+a {
        margin-top: 10px;
    }
}

@media (min-width: 992px) {
    .top-links {
        height: 100%;
    }

    .top-links .row>div>.tiny_p {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

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

#search {
    height: 33px;
    background: transparent;
    display: inline-block;
    position: relative;
}

#search_input {
    color: #444;
    font-size: .875rem;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 33px;
    padding-left: 10px;
    padding-right: 43px;
    height: 33px;
    width: 100%;
}

#search_submit {
    width: 33px;
    background: transparent url('../img/lupe-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 33px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    transition: background-color 300ms linear;
}

#search_submit:hover {
    background-color: rgba(133, 31, 3, .2);
}

#search_input::-ms-input-placeholder {
    color: #444 !important;
}

#search_input::-webkit-input-placeholder {
    color: #444 !important;
}

#search_input::-moz-placeholder {
    opacity: 1;
}

#search_input:-moz-placeholder {
    opacity: 1;
}

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

.logo {
    position: relative;
    z-index: 50;
    background: #ffffff;
    /* padding: 20px; */
    display: inline-block;
    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 ---------------------------------------- */

#menu {
    position: relative;
    z-index: 100;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
}



/* --------------------------------------- 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: #6a0000;
        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;
        padding-top: 30px;
        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) {
    nav.horizontally .navbar-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
    }

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

    nav.horizontally .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 50%;
        transform: translateX(50%);
        z-index: 1000;
    }

    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: absolute;
        left: calc(50% + 20px);
        top: -40px;
    }

    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
        content: '';
        position: absolute;
        top: 0;
        right: 100%;
        bottom: 0;
        width: 20px;
    }

    nav.horizontally .navbar-nav>li,
    nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        position: relative;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: opacity 300ms linear;
        transition: opacity 300ms linear;
    }

    .navbar-default .open>.dropdown-menu,
    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .nav .open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>u {
        z-index: 1003;
    }

    .sticky-wrapper {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
    }

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

    .is-sticky nav.horizontally {
        background: rgba(133, 31, 3, .8);
        padding-bottom: 30px;
    }

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

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #444;
    background: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 8px 0;
    position: relative;
    font-size: 1.5rem;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    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: 24px 12px 20px 12px;
        text-align: center;
        display: flex;
        align-content: center;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        height: 100%;
        min-height: 101px;
    }

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

@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: #6a0000;
    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,
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: #6a0000;
}

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,
nav.horizontally [class*="secondlevel"]>ul {
    background-color: #851f03;
    padding: 36px 0 26px;
}

@media (min-width: 992px) {
    nav.horizontally [class*="toplevel"]>ul::before {
        content: '';
        position: absolute;
        display: inline-block;
        right: 50%;
        bottom: 100%;
        transform: translate(50%, 50%) rotate(45deg);
        width: 26px;
        height: 26px;
        background-color: #fff;
        z-index: 1;
    }

    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: #fff;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    padding: 14px 15px;
}

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

/* 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) {
    background-color: #6a0000;
}

/* #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(00px, 69vw, 670px);
    }

    #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 / 100% auto no-repeat;
}

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

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

main {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 991px) {
    main {
        background: transparent !important;
    }
}

#content {
    background: linear-gradient(to top, #851f03, #851f03 131px, rgba(255, 255, 255, 0) 131px), url('../img/footer-overlay.png') center bottom / 100% auto no-repeat;
}

@media (min-width: 992px) {
    #content {
        background: linear-gradient(to top, #851f03, #851f03 61px, rgba(255, 255, 255, 0) 61px), url('../img/footer-overlay.png') center bottom 60px / 100% auto no-repeat, url(../img/bg-content.png) center top / 100% auto repeat-y;
    }
}

#contentBG {
    text-align: left;
    padding: 30px clamp(15px, 2vw, 40px) clamp(40px, 4vw, 60px) clamp(15px, 2vw, 40px);
    background: #fff;
    position: relative;
    z-index: 45;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    #contentBG {
        margin-top: -50px;
    }
}

@media (min-width: 992px) {
    #contentBG {
        background: #fff url(../img/icon-muehle.png) center bottom 44px no-repeat;
        min-height: 700px;
    }
}

@media (min-width: 1200px) {
    #contentBG {
        margin-top: -120px;
    }
}

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

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

h1,
.h1,
.legacy_h1,
#gallery :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(2.375rem, 4vw, 2.8125rem);
}

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,
#tabs2 .tabHeadline {
    font-size: 1.5625rem;
}

/* #region ------------------------------------- gallery ------------------------------------------- */

#gallery {
    padding: 50px 30px;
    background-color: #851f03;
    background-image: linear-gradient(to bottom, rgba(133, 31, 3, .85), rgba(138, 37, 37, .85)), url(../img/bg-gallery.jpg);
    background-position: center center;
    background-repeat: repeat;
    color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
    z-index: 1;
    position: relative;
}

#gallery .tab {
    padding-left: 16px;
    margin-bottom: 40px;
    border-left: rgba(255, 255, 255, .6) 4px solid;
}

#gallery :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 0;
    color: #fff;
    text-transform: uppercase;
}

#gallery a {
    color: #fff;
    text-decoration: underline;
    position: relative;
    padding-right: 30px;
    font-weight: 400;
}

#gallery a::after {
    content: '→';
    position: absolute;
    right: 10px;
    transition: right 200ms linear;
}

#gallery a:is(:hover, :focus)::after {
    right: 0;
}

#gallery .banner {
    border: #fff 15px solid;
    width: 100%;
    min-height: 280px;
    background-position: center center;
    background-size: cover;
}

/* #endregion ---------------------------------- gallery ------------------------------------------- */

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

@media (min-width: 992px) {
    #tabs2 {
        margin-top: 20px;
        padding-left: 0;
        padding-bottom: 60px;
    }
}

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

@media (min-width: 992px) {
    #tabs2 .tab {
        margin-left: -15px;
    }
}

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

@media (min-width: 1200px) {
    #events .tab_link {
        padding-right: 65px;
    }
}

#tabs2 .tab1 {
    padding-bottom: 0;
}

#tabs2 .tab2 {
    background: #eaeaea;
}

#tabs2 .tabHeadline {
    margin: 0 0 clamp(10px, 2vw, 18px) 0;
}

#tabs2 .tabHeadline {
    color: #6a0000;
    text-transform: uppercase;
}

#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: -30px;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0));
}

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

#tabs2 .tab_link_mehr a {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #6a0000;
    font-weight: 700;
    font-family: "Yanone Kaffeesatz", sans-serif;
    text-align: left;
    padding: 16px 30px 12px 30px;
    text-decoration: none;
    line-height: 1.2;
    font-size: 1.125rem;
    color: #fff;
}

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

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

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

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

#news .vorschau,
#news .tab_link_entry .tab_link_mehr {
    display: none;
}

#news .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;
}

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

#news .tab_link_entry .tab_link_title a::before,
#news .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;
}

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

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

footer {
    position: relative;
    background: #851f03;
    color: #fff;
    font-size: 0.875rem;
    padding: 30px 0;
}

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

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

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

footer a {
    color: inherit;
}

#innerfooter ul {
    padding: 0;
}

@media (max-width: 767px) {
    #innerfooter ul {
        margin-top: 20px;
    }
}

@media (min-width: 576px) {
    #innerfooter li {
        display: inline-block;
    }

    #innerfooter li+li {
        margin-left: clamp(20px, 2vw, 35px);
    }
}

#innerfooter a {
    color: #fff;
}

@media (min-width: 1200px) {
    footer::before {
        content: '';
        position: absolute;
        right: calc(1240px + (100vw - 1200px) / 2);
        bottom: 4px;
        background: url(../img/kind-springt-mit-hefter-hoch.png);
        width: 253px;
        height: 558px;
    }
}

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

#vernetzt {
    display: inline-block;
    font-size: 0.75rem;
    color: #ffffff;
    line-height: 1.4;
    text-decoration: none;
    gap: 14px;
}

#vernetzt span {
    display: block;
}

#vernetzt img {
    margin-bottom: 4px;
}

#vernetzt :is(b, strong) {
    font-weight: 700;
}

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