:root {
    color-scheme: light;
	--rou-blue: #0d6efd;
	--rou-indigo: #6610f2;
	--rou-purple: #6f42c1;
	--rou-pink: #d63384;
	--rou-red: #dc3545;
	--rou-orange: #fd7e14;
	--rou-yellow: #ffc107;
	--rou-green: #198754;
	--rou-teal: #20c997;
	--rou-cyan: #0dcaf0;
	--rou-black: #000;
	--rou-white: #fff;
	--rou-gray: #6c757d;
	--rou-gray-dark: #343a40;
	--rou-gray-100: #f8f9fa;
	--rou-gray-200: #e9ecef;
	--rou-gray-300: #dee2e6;
	--rou-gray-400: #ced4da;
	--rou-gray-500: #adb5bd;
	--rou-gray-600: #6c757d;
	--rou-gray-700: #495057;
	--rou-gray-800: #343a40;
	--rou-gray-900: #212529;
	--rou-primary: #ffd300;
    --rou-primary-100: #fef6cc;
	--rou-primary-200: #ffed99;
	--rou-primary-300: #ffe466;
	--rou-primary-400: #ffdb33;
	--rou-primary-500: #ffd300;
	--rou-primary-600: #cca800;
	--rou-primary-700: #997300;
    --rou-primary-800: #665400;
    --rou-complementary: #0a00ff;
	--rou-secondary: #d30400;
	--rou-third: #aa9739;
    --rou-third-2: #40807F;
	--rou-sidebar: #7d9ea7;
	--rou-success: #198754;
	--rou-background: #ffffcc;
	--rou-info: #0dcaf0;
	--rou-warning: #ffc107;
	--rou-danger: #dc3545;
	--rou-inaktiv: #6c757d;
	--rou-light: #f8f9fa;
	--rou-dark: #212529;
	--rou-font-sans-serif: "Open Sans", "Helvetica Neue", Arial, sans-serif;
	--rou-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--rou-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--rou-body-font-family: var(--rou-font-sans-serif);
	--rou-body-font-size: 1rem;
	--rou-body-font-weight: 400;
	--rou-body-line-height: 1.5;
	--rou-body-color: var(--rou-gray-800);
	--rou-body-bg: var(--rou-background);
	--rou-border-width: 1px;
	--rou-border-style: solid;
	--rou-border-color: #dee2e6;
	--rou-border-color-translucent: rgba(0, 0, 0, 0.175);
	--rou-border-radius: 0.375rem;
	--rou-border-radius-sm: 0.25rem;
	--rou-border-radius-lg: 0.5rem;
	--rou-border-radius-xl: 1rem;
	--rou-border-radius-2xl: 2rem;
	--rou-border-radius-pill: 50rem;
	--rou-heading-color: var(--rou-gray-800);
	--rou-link-color: var(--rou-gray-800);
	--rou-link-hover-color: #08a332;
	--rou-code-color: #d63384;
	--rou-highlight-bg: #fff3cd;
	--rou-header-bg-color: #ffc279;
	--rou-footer-bg-color: #244d59;
    --rou-table-header-color: #4b403f;
    --rou-table-border-color: #c3b5b4;
    --rou-title: #903;
}


* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}
body {
    width: 100%;
    background-color: var(--rou-body-bg);
    font-family: var(--rou-body-font-family);
    font-size: var(--rou-body-font-size);
    font-weight: var(--rou-body-font-weight);
    line-height: var(--rou-body-line-height);
    color: var(--rou-body-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: var(--rou-link-color);
}
a:hover {
    color: var(--rou-link-hover-color);
}
hr {
    height: 1px;
    background: #101010;
    border: none;
    outline: none;
    position: relative;
}
ol, ul {
    list-style: none;
}
/** Title **/
h1, h2, h3, h4, h5, h6 {
    color: var(--rou-title);
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
}
h1, h2 {
    margin: 50px 0 8px 0;
    padding: 0;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
}
h3 {
    font-size: 18px;
    line-height: 22px;
}
h3,h4,h5 {
	margin:10px 0px 8px 0px;
	padding:0px;
	}
h4,h5 {
	margin:3px 0 1px 0;
	}
h4 {
    background-color: #ffde00;
    padding: 2px 6px;
    font-weight: bold;
	font-family:'Open Sans', Arial, Helvetica, sans-serif;
    color: #000;
}
main h2 {
    display: inline-table;
    font-size: 26px;
    line-height: 28px;
    letter-spacing: 1px;
    position: relative;
    z-index: 0;
}
aside h2 {
    letter-spacing: 1px;
    margin-top: 35px;
}
main > div:first-of-type h2,
aside > div:first-of-type h2,
div.frame-borderyellow h2,
div.frame-bordergrey h2 {
    margin-top: 0;
}
.hide-element {
    display:none !important;
}
.btn {
    text-decoration: none;
    cursor: pointer;
    text-align:center;
    background: var(--rou-primary);
    color: var(--rou-body-color);
    font-weight: bold;
    padding: 9px 15px 9px 15px;
    border-radius: 4px;
    border: thin solid var(--rou-table-border-color);
    line-height: 21px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition-property: background, color;
    -webkit-transition-duration: 0.2s;
    -webkit-transition-timing-function: ease;
    -moz-transition-property: background, color;
    -moz-transition-duration: 0.2s;
    -moz-transition-timing-function: ease;
    -o-transition-property: background, color;
    -o-transition-duration: 0.2s;
    -o-transition-timing-function: ease;
    -ms-transition-property: background, color;
    -ms-transition-duration: 0.2s;
    -ms-transition-timing-function: ease;
    transition-property: background, color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}
.btn:hover {
    background: var(--rou-secondary);
    color: white;
}
.btn-blue {
    background-color: #3498db;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}
.btn-blue:hover {
    background-color: #2980b9;
    color: #fff;
}
.btn-green {
    background-color: #2ecc71;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}
.btn-green:hover {
    background-color: #27ae60;
    color: #fff;
}
.btn-red {
    background-color: #e74c3c;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}
.btn-orange {
    background-color: #f1c40f;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}
.btn-orange:hover {
    background-color: #f39c12;
    color: #fff;
}
.btn-red:hover {
    background-color: #c0392b;
    color: #fff;
}
.btn-purple {
    background-color: #9b59b6;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}
.btn-purple:hover {
    background-color: #8e44ad;
    color: #fff;
}
.nav-tabs {
    --bs-nav-tabs-border-width: 1px;
    --bs-nav-tabs-border-color: #dee2e6;
    --bs-nav-tabs-border-radius: 0.375rem;
    --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
    --bs-nav-tabs-link-active-color: #000;
    --bs-nav-tabs-link-active-bg: #fff;
    --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: 1px solid #dee2e6;
}
#header {
    height: 100%;
    width: 100%;
    position: relative;
}
#header > #top, #navi_main, #content > div, #footer, #headerimage {
    width: 100%;
    padding: 0;
    /*position: relative;*/
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
}
#top {
    height: 40px;
    padding: 0 12px;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
}
#homelink {
    position: absolute;
    top: 5px;
    left: 12px;
    z-index: 100;
}
#homelink a {
    display: block;
    background-image: url(/img/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
}
#wimpel_verband {
    position: absolute;
    top: 52px;
    right: 5px;
    z-index: 100;
}
#wimpel_verband a {
    display: block;
    background-image: url(/img/routiers-wimpel.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 41px;
}
#wimpel_sektion {
    position: absolute;
    top: 82px;
    right: 5px;
    z-index: 100;
}
#wimpel_sektion a {
    display: block;
    background-image: url(/img/sektion-wimpel.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 41px;
}

#metanavi {
    position: relative;
    display: flex;
    justify-content: end;
    top: 5px;
    padding-right: 40px;
    text-align: right;
}
#navi_top {
    color: #666;
    display: inline-block;
    text-align: left;
}
#navi_top a {
    color: #ccc;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}
a.navi_top_breit {
    display: none;
}
/*#search {
    position:relative;
    width: auto;
    min-width: 30px;
    text-align: right;
    height: 20px;
    display: inline-block;
}
#search input[type=text] {
    width: 0px;
    height: 20px;
    border-radius: 10px;
    background: #444;
    box-shadow: 0 0 4px rgba(255,255,255,0.5) inset;
    color: white;
    font-size: 15px;
    padding: 0 5px;
    line-height: 20px;
    top: 0;
    right: 25px;
    outline: none;
    transition: 0.5s;
    transform: scale(0,1);
    transform-origin: right center;
}
input#searchformsubmit {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}
input#searchformsubmit:hover #search input[type=text] {
    width: 200px;
}*/
.kslider-wrapper {
    /*width: 100%;
    padding: 0;*/
    position: relative;
    height: fit-content;
    max-height: 420px;
    top: 0;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.kslider-wrapper .slider {
    height: fit-content;
    width: 100%;
}
.kslider-wrapper .slider .imageWrapper {
    width: 100%;
    height: auto;
    max-height: 420px;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    
}
.kslider-wrapper .slider .imageWrapper img {
    max-height: 420px;
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.slider img:first-child {
    z-index: 1;
}
.slider img:nth-child(2) {
    z-index: 0;
}
.hamburger {
    display: none;
    margin-top: 20px;
    text-align: center;
}
.hamburger #bar1, .hamburger #bar2 {
    display: block;
    width: 35px;
    height: 3px;
    margin: 6px auto;
    background-color: #101010;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hamburger #bar3 {
    position: relative;
    font-size: 12px;
    font-weight: bold;
    top: -8px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    position: absolute;
    top: 10px;
    right: 40px;
    z-index: 500;
}
.hamburger.active span:nth-child(3) {
    opacity: 0;
}
.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translateX(-6px) translateY(5px);
    position: absolute;
    top: 10px;
    right: 40px;
    z-index: 500;
}
.desktop {
    width: 100%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
}
#navi_main {
    width: 100%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
    height: 60px;
    z-index: 100;
    /*-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -ms-touch-action: none;
    touch-action: none;*/
}
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
.sticky-down {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
}
#navi_main .title-menu {
    display: none;
    background-color: #ffaba9fc;
}
#navi_main ul {
    margin: 0;
    padding: 4px 0 8px 0;
    background-color: var(--rou-primary);
}
#navi_main ul, #navi_main li {
    text-indent: 0;
    padding: 0;
    list-style: none;
}
#navi_main > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    z-index: 4;
    width: 100%;
}
#navi_main li {
    margin: 0;
    padding: 0;
    list-style: none;
}
#navi_main > ul > li {
    z-index: 4;
    position: relative;
    width: calc(100% / 6);
    padding: 0;
    background-color: var(--rou-primary);
    border-right: 1px solid var(--rou-background);
    border-left: 1px solid var(--rou-background);
}
#navi_main > ul > li.active {
    background-color: var(--rou-secondary);
}
#navi_main > ul > li:last-of-type {
    border-right: none;
}
#navi_main > ul > li:first-of-type > ul {
    border-left: none;
}
#navi_main > ul > li > a {
	font-size: 18px;
    font-weight: bold;
	color: #101010;
	padding-top: 14px;
    height: 60px;
    display:block;
    width: 100%;
    text-align: center;
}
#navi_main > ul > li.active > a {
    color: white;
}

#navi_main a {
    transition: background 0.3s;
}
#navi_main a:hover {
    transition: background 0s;
}
#navi_main  ul > li > a:hover,
#navi_main  ul > li:hover > a {
	color: #fff !important;
	background-color: var(--rou-secondary);
}
/*#navi_main  ul > li:hover {
}*/
/* sub */
#navi_main > ul > li > ul {
    position: absolute;
    width: 100%;
    left: 0;
    text-align: left;
    opacity: 0;
    transform: scale(1,0);
    transform-origin: top center;
    transition: opacity 0.3s linear 0.3s, transform 0s linear 0.3s;
    border: 1px solid var(--rou-background);
}
/* last sub right-aligned */
#navi_main > ul > li:last-of-type > ul {
	left: auto;
	right: 0;
}

#navi_main > ul > li:hover > ul {
    opacity: 1;
    transform: scale(1,1);
    /*
	transition: opacity 0.6s;
    transition-duration: 0.6s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.3,0,0.1,1);
    */
    transition: opacity 0.2s linear 0s, transform 0s linear 0s;
	}
	
/*#navi_main li > ul > li {
	}*/
	
		
#navi_main li li a, #navi_main li li li a, #navi_main li li li li a, #navi_main li li li {
    font-size: 15px;
    line-height: 34px;
    font-weight: 300;
    display: block;
	padding: 0 12px;
    padding-left: 20px;
	color: #101010;
	white-space: nowrap;
}
/*
#navi_main li li > a:hover {
    color: #ffde00;
    background-color: transparent;
}
*/
#navi_main  li  li.act > a {
    color: #000;
}

/* sub sub */
#navi_main li li ul {
    position: absolute;
    padding: 0;
    width: 100%;
    left: 100%;
    margin-top: -62px;
    text-align: left;
    opacity: 0;
    transform: scale(1,0);
    transform-origin: top center;
    transition: opacity 0.3s linear 0.3s, transform 0s linear 0.3s;
    /*box-shadow: 0 0 100px rgba(0,0,0,0.4);*/
}
#navi_main >ul > li > ul > li > ul {
    width: 250px;
    border: 1px solid var(--rou-background);
}
#navi_main >ul > li > ul > li > ul > li > ul {
    width: 200px;
    border: 1px solid var(--rou-background);
}
#navi_main >ul > li > ul > li > ul > li, #navi_main >ul > li > ul > li > ul > li > ul > li {
    padding-left: 0;
    padding-right: 0;
}

/*#navi_main li > ul > li > ul > li {
	}*/
#navi_main > ul > li > ul > li:hover > ul {
    opacity: 1;
    transform: scale(1,1);
}
/*#navi_main li li li a {
	font-size: 13px;
	line-height: 24px;
    padding: 0 12px 0 24px;
    padding-left: 20px;
}*/
#navi_main > ul > li > ul > li > ul > li:hover > ul {
    opacity: 1;
    transform: scale(1,1);
}
/*#navi_main li li li li a {
    padding-left: 20px;
    font-size: 12px;
}*/
#navi_main li.more i {
    font-size: 22px;
    margin-left: 10px;
    position: relative;
    top: -3px;
}

.ui-to-top.active {
	transform: translateY(0);
}
.ui-to-top.active:hover {
  background-color: darkgreen;
}
.ui-to-top {
	display: none;
	right: 5px;
	bottom: 80px;
	border: none;
	cursor: pointer;
	outline: none;
	width: 50px;
	height: 50px;
	font-size: 24px;
	line-height: 46px;
	color: #ffffff;
	background: #84bc0f;   /*#5bc0de; blau*/
	border-radius: 50%;
	position: fixed;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	z-index: 11120;
	transition: 0.3s all ease;
}


#content {
    background-color: #ffc;
}
@media only screen and (max-width: 767px) {
    #content {
        margin-top: 40px;
    }
}
#content .content-wrapper {
    display: flex;
    flex-direction: row;
}
main.einspaltig {
    width: 100%;
    padding: 50px 20px 30px;
    display: block;
    margin: 0 40px;
}
main.zweispaltig {
    width: 65%;
    padding: 50px 20px 30px 0;
    display: block;
    margin-left: 40px;
}
#kurse main.zweispaltig {
    width: 75%;
}
main .bodytext {
    margin-top: 20px;
    line-height: 23px;
}
#hr-main {
    display: none;
}
aside {
    width: 35%;
    padding: 50px 0 30px 40px;
    margin-right: 40px;
    display: block;
}
#kurse aside {
    width: 25%;
}
@media only screen and (max-width: 993px) {
    #kurse #content .content-wrapper {
        flex-direction: column;
    }
    #kurse main.zweispaltig {
        width: 100%;
        margin-right: 0px;
        margin-left: 0;
        padding: 60px 40px;
    }
    #kurse aside {
        width: 100%;
        margin-left: 0px;
        margin-right: 0;
        padding: 0 40px;
    }
}

#footer {
    text-align: center;
    margin-top: 50px;
}

/* .header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .4s linear;
    z-index: 99
} */
.header {
    position: relative;
    transition: all .4s linear;
    z-index: 199;
}

.header .desktop,.header .desktop .brand svg .dark,.header .mobile,.header .mobile .brand svg .dark {
    transition: all .2s linear;
}

.header.scrolled .desktop {
    background: var(--rou-primary);
}

.header.scrolled .desktop .banner .nav-primary ul li.menu-item-has-children:after,.header.scrolled .desktop .banner .nav-primary ul li.menu-item-has-children:before {
    background-color: #161616
}

.header.scrolled .desktop .banner .nav-primary ul li.menu-item-has-children:hover:after,.header.scrolled .desktop .banner .nav-primary ul li.menu-item-has-children:hover:before {
    background-color: #cd1619
}

.header.scrolled .desktop .banner .nav-primary ul li a {
    color: #161616
}

.header.scrolled .desktop .banner .nav-primary ul li a:hover {
    border-bottom-color: #161616
}

.header.scrolled .desktop .external-primary-nav,.header.scrolled .desktop .external-primary-nav ul li a {
    border-left-color: #161616
}

.header.scrolled .desktop .external-primary-nav ul li a svg path {
    fill: #161616
}

.header.scrolled .mobile {
    background-color: #161616
}

.top-menu {
    border-bottom: 1px solid #fff3;
    padding: 1.2rem 0
}

.top-menu .nav-additional {
    display: flex;
    justify-content: flex-end
}

.top-menu .nav-additional ul {
    display: flex
}

.top-menu .nav-additional ul li {
    border-left: 1px solid #fff3;
    margin-left: 1.6rem;
    padding-left: 1.6rem
}

.top-menu .nav-additional ul li:first-child {
    border-left: 0
}

.top-menu .nav-additional ul li a {
    color: #ffffff80;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    transition: all .2s linear
}

.top-menu .nav-additional ul li a:hover {
    color: #cd1619
}

.banner {
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0
}

.banner,.banner .nav-primary,.banner .nav-primary ul {
    display: flex
}

.banner .nav-primary ul li {
    margin: 0 2rem;
    padding-bottom: 2rem;
    padding-top: 2rem
}

.banner .nav-primary ul li a {
    border-bottom: 1px solid #0000;
    color: #fff;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.92rem;
    padding-bottom: .7rem;
    transition: all .2s linear
}

.banner .nav-primary ul li.menu-item-has-children {
    padding-right: 2rem;
    position: relative
}

.banner .nav-primary ul li.menu-item-has-children ul li {
    padding-bottom: 0;
    padding-top: 0
}

.banner .nav-primary .external-primary-nav {
    display: flex
}

.banner .nav-primary .external-primary-nav ul li {
    margin-left: 0
}

.banner .nav-primary .external-primary-nav ul li a {
    border-left: 1px solid #ffffff80;
    display: flex;
    padding-bottom: 0;
    padding-left: 2rem
}

.banner .nav-primary .menu-primary-navigation-container ul li a:hover {
    border-bottom: 1px solid #fff
}

@media screen and (max-width: 1024px) {
    .header .desktop {
        display:none
    }
}

.header .mobile {
    display: none
}

@media screen and (max-width: 1024px) {
    .header .mobile {
        display:flex;
    }
}
.header .mobile-header.opened  {
    background-color: #161616;
    align-items: center;
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: fixed;
    top: 0;
    padding: 1.2rem 2.4rem;
    width: 100%;
}

.header .mobile-header .brand {
    display: none;
    max-width: 5.9rem;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 9;
}
.header .mobile-header .brand.opened {
    display: flex;
}

.header .mobile-header .brand img {
    width: 100px;
}

.header .mobile-header .right {
    align-items: center;
    display: flex;
    padding: 10px;
    background: var(--rou-background);
    position: absolute;
    top: 10px;
    width: 50px;
    height: 50px;
    right: 30px;
}

.header .mobile-header .right .external-primary-nav ul {
    border-right: 1px solid #fff3;
    display: flex;
    padding-right: 2rem
}

.header .mobile-header .burger {
    display: flex;
    flex-direction: column;
    height: 1.4rem;
    justify-content: space-between;
    margin-left: 2rem;
    position: relative;
    width: 30px;
    left: -35px;
    z-index: 9;
    cursor: pointer;
    background-image: url('../img/hamburger_icon.png');
    min-height: 100%;
    min-width: 100%;
    background-repeat: no-repeat;
}
.header .mobile-header .burger.open {
    background-image: url('../img/close-navigation.png');
}

.header .mobile-menu {
    background-color: #161616;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 100%;
    padding: 8.4rem 2.4rem 2.4rem;
    position: fixed;
    top: 0;
    transition: all .4s linear;
    width: 100%
}

.header .mobile-menu .seperator {
    background-color: #fff3;
    height: 1px;
    position: fixed;
    bottom: 70px;
    width: 100%
}

.header .mobile-menu .nav-primary ul li {
    margin-top: 20px;
}

.header .mobile-menu .nav-primary ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.92rem
}

@media screen and (max-width: 1024px) {
    .header .mobile-menu .nav-primary {
        display:flex;
        flex-direction: column;
        height: calc(100% - 70px);
        overflow: auto;
        width: 100%
    }
    .header .mobile-menu .nav-primary ul {
        flex-direction: column;
    }
}

.header .mobile-menu .nav-additional ul li {
    margin-top: 1.6rem
}

.header .mobile-menu .nav-additional ul li a {
    color: #ffffff80;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.68rem
}

.header .mobile-menu .socials {
    position: fixed;
    bottom: 20px;
}

.header .mobile-menu .socials a {
    margin: 0 1.6rem
}

.header .mobile-menu .socials a:first-child {
    margin-left: 0
}

.header .mobile-menu.open {
    left: 0
}

.menu-item-has-children, .menu-item-has-children-children {
    padding-right: 2rem;
    position: relative
}

.menu-item-has-children:after, .menu-item-has-children-children:after {
    background-color: #fff;
    content: "";
    display: flex;
    height: 2px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: rotate(45deg);
    transition: all .2s linear;
    width: 8px
}
.desktop .menu-item-has-children:after {
    background-color: #131313;
    right: 20px;
}

@media screen and (max-width: 1024px) {
    .menu-item-has-children:after, .menu-item-has-children-children::after {
        top:.8rem
    }
}

.menu-item-has-children:before, .menu-item-has-children-children::before {
    background-color: #fff;
    content: "";
    display: flex;
    height: 2px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: rotate(-45deg);
    transition: all .2s linear;
    width: 8px
}
.desktop .menu-item-has-children:before {
    background-color: #131313;
    right: 15px;
}
@media screen and (max-width: 1024px) {
    .menu-item-has-children:before, .menu-item-has-children-children::before {
        top:.8rem
    }
}

@media screen and (min-width: 769px) {
    .menu-item-has-children:hover:after, .menu-item-has-children:hover:after {
        background-color:#cd1619;
        transform: rotate(-45deg)
    }
    .desktop .menu-item-has-children:hover:after {
        background-color: white;
    }

    .menu-item-has-children:hover:before, .menu-item-has-children-children.menu-item-has-children:hover:before  {
        background-color: #cd1619;
        transform: rotate(45deg)
    }
    .desktop .menu-item-has-children:hover:before {
        background-color: white;
    }
}

.menu-item-has-children.open:after, .menu-item-has-children-children.open:after {
    background-color: #fff;
    transform: rotate(-45deg)
}

.menu-item-has-children.open:before, .menu-item-has-children-children.open:before {
    background-color: #fff;
    transform: rotate(45deg)
}

.menu-item-has-children .sub-menu, .menu-item-has-children-children .sub-sub-menu {
    background-color: #161616;
    flex-wrap: wrap;
    left: 50%;
    opacity: 0;
    padding: 3rem 2rem;
    position: absolute;
    top: 5.9rem;
    transform: translateX(-50%);
    visibility: hidden;
    width: 100%
}
.desktop .menu-item-has-children .sub-menu {
    top: 60px;
}
.menu-item-has-children-children .sub-sub-menu {
    background-color: #37383d;
}

.menu-item-has-children .sub-menu li, .menu-item-has-children-children.sub-sub-menu li {
    line-height: 1.92rem;
    margin-left: 0!important;
    margin-right: 0!important;
    width: 100%
}

.menu-item-has-children .sub-menu li a, .menu-item-has-children-children .sub-sub-menu li a {
    color: #fff!important
}
.desktop .menu-item-has-children .sub-menu li a {
    color: #131313 !important;
    font-weight: bold !important
}

/*.menu-item-has-children .sub-menu:after, .menu-item-has-children-children .sub-sub-menu:after {
    border-color: #0000 #0000 #161616;
    border-style: solid;
    border-width: 0 7px 7px;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: -7px;
    transform: rotate(0deg);
    width: 0
}*/

@media screen and (max-width: 1024px) {
    .menu-item-has-children .sub-menu, .menu-item-has-children-children .sub-sub-menu {
        background-color:#212225;
        display: none;
        left: 0;
        margin-top: 1.6rem;
        opacity: 1;
        padding-bottom: 4px;
        padding-top: 4px;
        position: relative;
        top: 0;
        transform: translateX(0);
        visibility: visible;
        width: calc(100% + 2rem)
    }

}

.menu-item-has-children.single-column .sub-menu, .menu-item-has-children-children.single-column .sub-sub-menu {
    flex-direction: column;
    width: 25rem
}

@media screen and (max-width: 1024px) {
    .menu-item-has-children.single-column .sub-menu, .menu-item-has-children-children.single-column .sub-sub-menu {
        width:calc(100% + 2rem)
    }
}

.menu-item-has-children.two-column .sub-menu, .menu-item-has-children-children.two-column .sub-sub-menu {
    flex-direction: column;
    flex-direction: row;
    width: 60rem
}

.menu-item-has-children.two-column .sub-menu li, .menu-item-has-children-children.two-column .sub-sub-menu li {
    max-width: 50%
}
.desktop .menu-item-has-children.two-column .sub-menu li {
    max-width: 100%;
}
@media screen and (max-width: 1024px) {
    .menu-item-has-children.two-column .sub-menu, .menu-item-has-children-children.two-column .sub-sub-menu {
        width:calc(100% + 2rem)
    }

    .menu-item-has-children.two-column .sub-menu li, .menu-item-has-children-children.two-column .sub-sub-menu li {
        max-width: 100%
    }
}

.menu-item-has-children.multi-column .sub-menu, .menu-item-has-children-children.multi-column .sub-sub-menu {
    flex-direction: column;
    flex-direction: row;
    width: 80rem
}

.menu-item-has-children.multi-column .sub-menu li, .menu-item-has-children-children.multi-column .sub-sub-menu li {
    max-width: 25%
}

@media screen and (max-width: 1024px) {
    .menu-item-has-children.multi-column .sub-menu, .menu-item-has-children-children.multi-column .sub-sub-menu {
        width:calc(100% + 2rem)
    }

    .menu-item-has-children.multi-column .sub-menu li, .menu-item-has-children-children.multi-column .sub-sub-menu li {
        max-width: 100%
    }
}

.menu-item-has-children:hover .sub-menu, .menu-item-has-children-children:hover .sub-sub-menu {
    opacity: 1;
    visibility: visible
}
#footer {
    display: flex;
    background-color: var(--rou-primary);
    height: 100%;
    min-height: 40px;
}
.footer-left, .footer-right {
    width: 25%;
    display: flex;
}
.footer-right {
    justify-content: center;
    flex-direction: column;
}
.footer-left p, .footer-right div, .footer-right a {
    color: var(--rou-body-color);
    font-size: 13px;
    display: flex;
    align-items: center;
    line-height: 16px;
}
.footer-left p {
    text-align: left;
    padding-left: 20px;
}
.footer-right div {
    width: 100%;
    padding-right: 20px;
}
.footer-right a {
    display: inline-block;
    width: 100%;
    right: 20px;
    text-align: right;
}
.footer-right .footer-datenschutz {
    display: none;
}
.footer-middle {
    width: 50%;
}
.footer-middle img {
    width: 100%;
}
@media screen and (max-width: 576px) {
    .footer-left, .footer-right {
        width: 50%;
    }
    .footer-left p {
        margin-top: 15px;
    }
    .footer-right .footer-datenschutz {
        display:block;
    }
    .footer-middle {
        display: none;
    }
}
.truckerplatz-link-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
}
.truckerplatz-link-wrapper .truckerplatz-link {
    text-align: center;
    width: 48%;
}
.truckerplatz-link-wrapper .truckerplatz-link a {
    display: inline-block;
    width: 100%;
}
.truckerplatz-link-wrapper .truckerplatz-link a img {
    width: 100%;
}
@media screen and (max-width: 450px) {
    .truckerplatz-link-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .truckerplatz-link-wrapper .truckerplatz-link {
        width: 100%;
        margin-bottom: 20px;
    }
    .truckerplatz-link-wrapper .truckerplatz-link a {
        width: 70%;
    }
}
[role="table"], [role="row-group"], [role="row"], [role="subheader"] {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -webkit-flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    line-height: 1 !important;
}
[role="table"] [role="row-group"] {
    
    border-radius: 4px 4px 0 0;
    padding-right: 1px;
    border-color: var(--rou-table-border-color);
}
[role="table"] [role="row-group"].title {
    background: var(--rou-table-header-color);
}
[role="table"] [role="row-group"].data {
    background: white;
}
[role="table"] [role="row"] {
    align-items: stretch;
    margin: 0 !important;
}
[role="table"] [role="column-header"] {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /*flex: 1 1 calc(5% - 20px - 2px);
    -webkit-flex: calc(5% - 20px - 2px);*/
    padding: 10px 10px;
    line-height: 21px;
    color: var(--rou-body-color);
}
[role="table"] [role="row"] [role="column-header"] {
    color: white;
    padding-left: 11px;
    border: thin solid var(--rou-table-border-color);
    display: inline-block;
}
[role="table"] [role="column-header"].wide {
    flex-grow: 2;
    -webkit-flex-grow: 2;
}
[role="table"] [role="column-header"].wider {
    flex-grow: 10;
    -webkit-flex-grow: 10;
}
[role="table"] [role="column-header"].narrow {
    flex-grow: 0.5;
    -webkit-flex-grow: 0.5;
}
[role="table"] [role="column-header"].narrower {
    flex-grow: 0;
    -webkit-flex-grow: 0;
}
[role="table"] [role="row-group"]+[role="row-group"]>[role="row"] {
	border-right: 1px solid var(--rou-table-border-color);
}
[role="table"]>[role="row-group"]:last-child {
    border-bottom: 1px solid var(--rou-table-border-color);
}
[role="table"] .row-group.data:nth-child(odd) {
	background: #FFF;
}
	
[role="table"] .row-group.data:nth-child(even) {
	background: #ebeef0;
}
[role="table"] [role="row"] [role="cell"] {
	border: 1px solid #d9d9d9;
    padding: 10px;
	
	-webkit-transition-property: background, color;
	-webkit-transition-duration: 0.2s;
	-webkit-transition-timing-function: ease;
	
	-moz-transition-property: background, color;
	-moz-transition-duration: 0.2s;
	-moz-transition-timing-function: ease;
	
	-o-transition-property: background, color;
	-o-transition-duration: 0.2s;
	-o-transition-timing-function: ease;
	
	-ms-transition-property: background, color;
	-ms-transition-duration: 0.2s;
	-ms-transition-timing-function: ease;
	
	transition-property: background, color;
	transition-duration: 0.2s;
	transition-timing-function: ease;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
[role="table"] [role="cell"] .check::before,
[role="table"] [role="cell"] .cross::before
    {
    display: inline-block;
    width: 21px;
    height: 21px;
    border-radius: 999px;
    margin: -10px 10px -10px 0;
    background: #DDE5F0;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    color: #1D5FD1;
    /*float: initial;*/
    
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    }
    
[role="table"] [role="cell"] .check::before
    {
    content: "âœ“";
    }
    
[role="table"] [role="cell"] .cross::before
    {
    content: "âœ•";
    }
    [role="table"] [role="cell"].button
    {
    display: flex;
    align-items: center;
    position: relative;
    }

[role="table"] [role="cell"] a.button
    {
    margin-top: 10px;
    line-height: 21px;
    height: 40px;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    -webkit-transition-property: background, color;
    -webkit-transition-duration: 0.2s;
    -webkit-transition-timing-function: ease;
    
    -moz-transition-property: background, color;
    -moz-transition-duration: 0.2s;
    -moz-transition-timing-function: ease;
    
    -o-transition-property: background, color;
    -o-transition-duration: 0.2s;
    -o-transition-timing-function: ease;
    
    -ms-transition-property: background, color;
    -ms-transition-duration: 0.2s;
    -ms-transition-timing-function: ease;
    
    transition-property: background, color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    }
    
[role="table"] [role="cell"] a.button:last-child
    {
    margin-right: 0;
    }

[role="table"] [role="cell"] a.button:hover
    {
    background: var(--rou-secondary);
    color: #FFF;
    }
    
[role="table"] [role="row"] div.expandable a.button
    {
    margin-top: 20px;
    margin-bottom: 5px;
    }

.table-agenda .spalte-icon {
    width: 5%;
    display: flex;
    justify-content: center;
}
.table-agenda .spalte-firma {
    width: 30%;
    display: flex;
    justify-content: left;
    word-wrap: break-word;
    white-space: unset !important;
}
.table-agenda .spalte-nummer, .table-agenda .spalte-bis, .table-agenda .spalte-am, .table-agenda .spalte-betrag {
    width: 10%;
}
.table-agenda .spalte-bemerkung {
    width: 25%;
}
.table-agenda .spalte-ort, .table-kurse .spalte-ort {
    width: 15%;
}
.table-agenda .spalte-flyer {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-agenda .spalte-flyer img {
    height: 80px;
    border: thin solid var(--rou-table-border-color);
    padding: 5px;
    border-radius: 8px;
}
.table-agenda .spalte-anmeldung {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*.spalte-abstand {
    height: 0;
    padding: 0;
    border: none;
    background-color: var(--rou-body-bg);
}*/
.table-vorstand .table-cell, .table-relais .table-cell, .table-presse .table-cell, .table-sektion .table-cell {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--rou-table-border-color);
    padding-left: 10px;
}
.table-vorstand .spalte-titel, .table-relais .spalte-titel {
    width: 20%;
    font-weight: bold;
    border-left: none;
}
.table-relais .spalte-titel {
    line-height: 22px;
}
.table-vorstand .spalte-image, .table-relais .spalte-image {
    width: 20%;
    justify-content: center;
}
.table-vorstand .spalte-adresse, .table-relais .spalte-adresse {
    width: 30%;
    line-height: 20px;
}
.table-relais .spalte-adresse {
    flex-direction: column;
    justify-content: center;
}
.table-vorstand .spalte-mail, .table-relais .spalte-mail {
    width: 30%;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.table-vorstand .cell-text, .table-relais .cell-text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.table-relais .cell-text-link {
    width: 100%;
}
.table-relais [role="cell"], .table-relais .cell-text-natel, .table-relais .cell-text-link, .table-relais .cell-text-natel {
    text-overflow: clip !important;
    white-space: normal !important;
}
.table-presse .spalte-jahr {
    width: 100%;
    font-weight: bold;
}
.table-presse .spalte-datum {
    width: 20%;
}
.table-presse .spalte-zeitung {
    width: 30%;
    text-overflow: clip !important;
    white-space: normal !important;
    line-height: 20px;
}
.table-presse .spalte-titel {
    width: 40%;
    text-overflow: clip !important;
    white-space: normal !important;
    line-height: 20px;
}
.table-presse .spalte-link {
    width: 10%;
    text-align: center;
}
.table-presse .spalte-link a {
    width: 100%;
}
.table-sektion .spalte-sektion {
    width: 40%;
}
.table-sektion .spalte-link {
    width: 60%;
}

@media only screen and (max-width: 768px) {
    .row-group .row { /*[role="table"] [role="row"] {*/
        border: 1px solid #494949;
    }
    [role="table"] [role="column-header"],
    [role="table"] [role="cell"]
        {
        /* Minimum single cell width (cell padding and border deducted) */
        /* 100% means that only one column is displayed in a row (100% / 1 = 100%) */
        flex: 1 1 100%;
        -webkit-flex: 1 1 100%;
        padding: 8px 10px;
        }
    [role="table"] [role="cell"]
        {
        border-bottom: 0;
        }
        
    [role="table"] [role="row"]>[role="cell"]:last-of-type
        {
        padding-bottom: 15px;
        }
        
    [role="table"] [role="row"]>[role="cell"]:not(.expandable):first-of-type
        {
        padding-top: 14px;
        }
        
    [role="table"] [role="cell"] a.button
        {
        padding: 6px 12px 7px 12px;	
        }
        
    [role="table"] [role="cell"],
    [role="table"] [role="cell"] span
        {
        text-align: right;
        justify-content: space-between;
        display: initial;
        }
        
    [role="table"] [role="row"] label
        {
        float: right;
        width: 32px;
        min-width: 32px;
        margin: -4px 0px -8px 10px;
        line-height: 32px;
        height: 32px;
        }
        
    [role="table"] [role="row-group"]+[role="row-group"].accordion [role="row"] label
        {
        margin: -9px 0;	
        }
                
    [role="table"] [role="cell"]::before
        {
        content: attr(data-header);
        float: left;
        text-align: left;
        font-weight: 700;
        margin-right: 20px;
        }
        
    [role="table"] [role="cell"] [status-bar]::before
        {
        right: 10px;
        }
        
    /* New */
    /* Confirmed */
    [role="table"] [role="cell"] [status-bar="id-1"]::before,
    [role="table"] [role="cell"] [status-bar="id-2"]::before
        {
        width: 10%;
        }
        
    /* In Progress */
    [role="table"] [role="cell"] [status-bar="id-3"]::before
        {
        width: 25%;
        }
        
    /* Completed */
    /* Cancelled */
    [role="table"] [role="cell"] [status-bar="id-4"]::before,
    [role="table"] [role="cell"] [status-bar="id-5"]::before
        {
        width: calc(50% - 20px);
        }
        
    [role="table"] div.table-desc+[role="row-group"]
        {
        display: none;
        }
        
    [role="table"] div.table-desc~[role="row-group"]
        {
        border-top: 1px solid var(--rou-table-border-color);
        }
        
    [role="table"] [role="subheader"]:first-child
        {
        border-radius: 4px 4px 0 0;
        }
        
    [role="table"] div.table-desc
        {
        flex-direction: column;
        }
        
    [role="table"] div.table-desc>span
        {
        width: 100%;
        margin-bottom: 30px;
        font-size: 14px;
        }
        
    [role="table"] div.filter-panel label[for="wrap-text"]
        {
        float: left;
        }
        
    [role="table"] [role="row-group"]+[role="row-group"]:not(.accordion)>[role="row"]
        {
        border-top: 1px solid var(--rou-table-border-color);
        border-bottom: 4px solid var(--rou-table-border-color);
        margin-bottom: 20px;
        }
        
    [role="table"] [role="row-group"]+[role="row-group"].accordion [role="row"]
        {
        border-top: 0;
        border-bottom: 1px solid var(--rou-table-border-color);
        margin-bottom: 0;
        }
        
    [role="table"] [role="row-group"]+[role="row-group"]>[role="row"]:first-child
        {
        border-top: 0;
        border-top: 1px solid var(--rou-table-border-color);
        }
        
    [role="table"]>[role="row-group"]:last-child,
    [role="table"] [role="row-group"]:last-child [role="row"] div.expandable:not([role="cell"]) [role="row"]:last-child,
    [role="table"] [role="row-group"]:last-child [role="row"] [role="cell"].expandable
        {
        border-bottom: 0;
        background-color: transparent;
        }
        
    [role="table"] div.expandable [role="row"]
        {
        border-top: 1px solid var(--rou-table-border-color);
        }
        
    [role="table"] [role="row-group"]:last-child [role="row"]:last-child [role="cell"].expandable
        {
        border-bottom: 0;
        }
        
    [role="table"] [role="row"] div.expandable [role="row"] div.column-20,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-25,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-33,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-50,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-66,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-75,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-80,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-20:first-of-type,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-25:first-of-type,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-33:first-of-type,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-50:first-of-type,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-66:first-of-type,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-75:first-of-type,
    [role="table"] [role="row"] div.expandable [role="row"] div.column-80:first-of-type
        {
        width: 100%;
        margin-left: 0;
        }
        
    [role="table"] [role="row"] div.expandable img
        {
        min-width: 100%;
        margin-bottom: 15px;
        }

    .row-group.title {
        display: none;
    }  
    .table-agenda .spalte-icon, .table-kurse .spalte-icon {
        display: none;
    }

}
.jconfirm.jconfirm-light .jconfirm-bg {
    opacity: 0.9 !important;
}
.jconfirm .jconfirm-box div.jconfirm-title-c {
    display: flex !important;
    justify-content: center !important;
}
.jconfirm-title {
    font-size: 26px;
    line-height: 28px;
    letter-spacing: 1px;
    color: var(--rou-title);
    font-weight: bold;
    margin: 20px;
    margin-left: 40px;
    margin-right: 40px;
}
.jconfirm .jconfirm-box .jconfirm-buttons button {
    padding: 12px;
}
.jconfirm-form {
    margin-left: 20px;
    display: flex;
    justify-content: center;
}
.form-wrapper {
    width: 70%;
    padding: 20px;
    border: 2px solid var(--rou-table-border-color);
    border-radius: 8px;
}
.form-group {
    position: relative;
    margin: 45px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.form-icon {
    position: relative;
    top: 4px;
    font-size: 20px;
    width: 5%;
    min-width: 30px;
}
.form-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}
.form-item-100 {
    width: 100%;
}
.form-item-70 {
    width: 70%;
}

.form-item-50 {
    width: 50%;
}
.form-item-30 {
    width: 30%;
}

.form-label {
    color: var(--rou-body-color);
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 300ms ease all;
}
.form-hint, .form-error {
    position: absolute;
    font-size: 12px;
    top: 55px;
    line-height: 12px;
}
.form-hint {
    display: block;
}
.form-hint.hint-auswahl, .form-hint.hint-teilen, .form-hint.hint-allergie, .form-hint.hint-menu {
    display: none;
    left: 34px;
    top: 45px;
}
.form-error {
    display: none;
}
.form-textarea {
    resize: none;
}
.form-input, .form-textarea, .form-select {
    background: none;
    color: var(--rou-body-color);
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--rou-table-border-color);
    &:placeholder-shown ~ .form-label {
        top: 10px;
        font-size: 16px;
        color: var(--rou-body-color);
    }
    &:focus {
        outline: none;
    }
    &:valid:not(:placeholder-shown) {
        border-bottom: 2px solid var(--rou-success);
    }
    &:focus ~ .form-label {
        top: -14px;
        font-size: 12px;
        color: var(--rou-body-color);
    }
    &:valid:not(:placeholder-shown) ~ .form-label {
        top: -14px;
        font-size: 12px;
        color: var(--rou-success);

    }
    &:not(:placeholder-shown):invalid {
        border-bottom: 2px solid var(--rou-danger);
    }
    &:not(:placeholder-shown):invalid ~ .form-label {
        top: -14px;
        font-size: 12px;
        color: var(--rou-danger);
    }
    &:not(:placeholder-shown):invalid ~ .form-hint {
        display: none;
    }
    &:not(:placeholder-shown):invalid ~ .form-error {
        display: block;
    }
    &:valid ~ .form-hint {
        display: none;
    }
}
.form-control.form-select {
    -webkit-appearance: menulist!important;
    -moz-appearance: menulist!important;
    -ms-appearance: menulist!important;
    -o-appearance: menulist!important;
    appearance: menulist!important;
}
.form-label.checkbox {
    font-size: 12px;
    top: -16px;
    left: 37px;
}
.form-input.required, .form-textarea.required, .form-select.required {
    border-bottom: 2px solid var(--rou-danger);
}
.form-input.required:not(:placeholder-shown):invalid ~ .form-label, .form-textarea.required:not(:placeholder-shown):invalid ~ .form-label, .form-select.required:not(:placeholder-shown):invalid ~ .form-label {
    top: -14px;
    font-size: 12px;
    color: var(--rou-danger);
}

input[type="password"] {
    letter-spacing: 0.3em;
}
.form-group.group-allergiewas {
    display: none;
}

.invalid_mail input, .invalid_field input {
    border-bottom: 2px solid var(--rou-danger) !important;
}
.invalid_mail label, .invalid_field label {
    top: -14px;
    font-size: 12px;
    color: var(--rou-danger) !important;
}
.invalid_mail .form-error, .invalid_field .form-error {
    display: block !important;
}
.invalid_mail .form-hint, .invalid_field .form-hint {
    display: none !important;
}


/* ----------------- Sitemap -----------------*/
.directory-wrapper {
    display: flex;
    flex-wrap: nowrap;
}
.directory-column-section {
    pointer-events: none;
}
.directory-column-section-list {
    padding-left: 20px;
}
.directory-column-section-item {
    margin-bottom: 10px;
}
.directory-column-section-link {
    pointer-events: auto;
}

/* ----------------- Datenschutz -----------------*/
.content-section {
    margin-bottom: 40px;
}
.content-section h2 {
    margin-bottom: 20px;
}
.content-section p {
    margin-bottom: 10px;
}

/* ----------------- Shop -----------------*/
.shop-wrapper {
    margin-top: 40px;
}
.shop-list {
    list-style: none; 
    padding:0; 
    margin-bottom:0; 
    margin-top:0; 
    display:flex; 
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}
.shop-list-item {
    list-style-type: none; 
    position: relative; 
    width: 200px; 
    min-height: 1px; 
    padding-right: 5px; 
    padding-left: 5px; 
    max-width: 200px; 
    flex: 0 0 20%;
    background-color: white;
    border: thin solid var(--rou-table-border-color);
    margin-bottom: 10px;
}
.shop-list-item a {
    padding-top: 15px; 
    display:flex; 
    flex-direction:column; 
    background-color: white; 
    position:relative; 
    border-radius:5px; 
    text-decoration:none; 
    margin-bottom: 10px; 
    padding:15px; 
    height:calc(100% - 10px);
    cursor: auto;
}
.shop-list-item a:hover {
    color: var(--rou-body-color);
}
.product-wrapper {
    position: relative; 
    height:100%; 
    display:inline-block; 
    vertical-align:middle; 
    font-size:0; 
    text-align:center; 
    align-self:center; 
    flex-shrink:0; 
    width:100%;
}
.product-thumbnail {
    width:auto; 
    max-width: 150px;
    height:50px; 
    text-align:center; 
    text-decoration:none; 
    vertical-align:middle; 
    display:inline-block;
}
.product-thumbnail-image {
    max-width:100%; 
    max-height:100%;
}
.product-thumbnail_image {
    width: auto; 
    height: 50px;
}
.product-details {
    display: flex; 
    flex-direction:column; 
    position:relative; 
    width:100%; 
    margin:15px 0 0; 
    padding:0; order:2;
}
.product-details-quantity-wrapper {
    display: flex; 
    margin: 5px 0 10px; 
    height: 25px; 
    justify-content: space-between;
}
.product-quantity-info {
    display: inline-block; 
    line-height: 20px; 
    color: var(--rou-body-color); 
    letter-spacing: 0; 
    font-size: .75rem; 
    margin: 0; 
    position: relative; 
    overflow: hidden;
    width: 100%;
}
.product-quantity-text {
    display: inline-block; 
    margin-top: 0;
}
.product-details-name-wrapper {
    height:80px;
}
.product-details-name {
    clear: both; 
    color: var(--rou-body-color); 
    font-weight: 600; 
    letter-spacing: 0; 
    line-height: 20px; 
    position: relative; 
    overflow: hidden; 
    font-size: 16px; 
    max-height: 60px; 
    margin-bottom: 10px !important;
}
.product-details-name-value {
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    line-clamp: 2;
    -webkit-box-orient: vertical; 
    max-height: 3.75em; 
    position: relative; 
    height: 2.5rem;
}
.product-details-price-wrapper {
    height: 100%; 
    display: flex; 
    align-items: flex-end; 
    width: 100%; 
    flex-grow: 1;
}
.product-price {
    font-weight: 600; 
    font-size:15px; 
    margin:0; 
    max-width: calc(100% - 90px);
}
.product-price-value {
    font-weight: 600; 
    letter-spacing:.0625rem; 
    line-height:20px; 
    display:inline-block; 
    font-size: 24px; 
    margin:0;
}
.product-price-value-lead-price {
    margin-top: 12px; 
    padding: 0 3px;
}
.product-button-wrapper {
    align-self: bottom; 
    min-height: 36px; 
    margin-left: auto; 
    float:left; 
    z-index:3; 
    width: 90px;
}
.btn-basket {
    height: auto;
    min-height: 40px;
    width: 80px;
    text-align: center;
    margin: 0;
    margin-left: auto;
    padding: 0;
    background: #ffbf00;
    display: block;
    color: var(--rou-white);
    border: 2px solid #ffbf00;
    border-radius: 5px;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    max-width: 100%;
    cursor: pointer;
    transition: .2s ease all;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.btn-basket:hover {
    background-color: var(--rou-primary-600);
    color: white;
}
.btn-warenkorb {
    font-size: 1rem;
    width: 200px;
}
.callout {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 20px;
    min-width: 20px;
    padding: 2px 1px;
    text-align: center;
    color: white;
    background-color: #08a332;
    pointer-events: none;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .5px;
    border-radius: 10px;
    -webkit-transition: all .35s cubic-bezier(0.7,0.3,0,1);
    transition: all .35s cubic-bezier(0.7,0.3,0,1);
    -webkit-transition-property: opacity;
    transition-property: opacity;
    opacity: 0;
}
.btn-warenkorb .callout {
    left: 10px;
    bottom: 10px;
}
.show-callout > .callout {
    opacity: 1;
}
.form_shop {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.form_shop .form-wrapper {
    width: 100%;
}
.form_shop .form-wrapper ul {
    padding: 0;
}
.warenkorb-item {
    max-height: 1000px;
    height: 100px;
    padding: 10px 0;
    border-bottom: 1px solid rgb(52,58,64);
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
}
.warenkorb-item.shirt {
    height: 100%;
}
.warenkorb-item .col-6 {
    padding: 0;
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}
.warenkorb-item.shirt .col-6.shirt {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
}
.warenkorb-item .item-name {
    width: 21.7%;
    height: 100%;
    padding-left: 9.5px;
    margin: 0;
    display: flex;
    align-self: center;
    justify-content: center;
}
.warenkorb-item .item-name img {
    max-width: 100% !important;
    max-height: 80px !important;
    object-fit: contain;
}
.warenkorb-item .item-beschreibung {
    width: 63%;
    padding-left: 27px;
    margin: 0;
    align-self: center;
}
.warenkorb-item .item-beschreibung .item-title {
    color: var(--rou-body-color);
    margin: 0;
}
.warenkorb-item .numeric-stepper {
    margin: 0;
    width: 126px;
    height: 32px;
    display: flex;
    padding: 0;
    border: 1px solid #9e9d99;
}
.warenkorb-item .input-group-btn {
    line-height: 0;
}
.disabled {
    pointer-events: none;
}
.warenkorb-item .btn {
    display: inline-block;
    margin: 0;
    height: 36px;
    min-width: 160px;
    padding: 2px 12px;
    border: 1px solid transparent;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
    border-radius: 3px;
    position: relative;
    color: var(--rou-white);
    background-color: #c00;
    border-color: #c00;
}
.warenkorb-item .btn-icon {
    text-indent: -119988px;
    overflow: hidden;
    text-align: left;
    text-transform: capitalize;
}
.warenkorb-item .input-group-btn > button {
    height: 100%;
}
.warenkorb-item .btn.disabled {
    cursor: default;
    color: var(--rou-gray-500) !important;
}
.warenkorb-item .btn.stepper-minus, .warenkorb-item .btn.stepper-plus {
    position: relative;
    color: #333;
    background-color: #fff;
    border-color: #333;
    padding: 0;
}
.input-group-btn > .btn {
    min-width: 0;
    border-radius: 0;
    border: 0;
    height: 30px;
    width: 30px;
}
.warenkorb-item .input-group-btn > .btn.disabled::before {
    opacity: .25;
}
.warenkorb-item .numeric-stepper > input {
    line-height: 1;
    height: 30px !important;
    width: 65px !important;
    border-radius: 0;
    font-size: 16px;
    color: var(--rou-body-color);
    margin-bottom: 0;
    border: 1px solid #9e9d99 !important;
    background-color: #f2f1ed !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    min-width: 30px;
    text-align: center !important;
    padding: 3px 5px 2px;
    cursor:default;
}
.warenkorb-item .remove-item {
    width: 10%;
    text-align: left;
    padding-left: 15px;
    margin: 0;
}
.warenkorb-item .remove-item .trash {
    height: 30px;
    background: none;
    border: 0;
    min-width: 0 !important;
    color: var(--rou-body-color);
}
.warenkorb-item .col-6.item-price {
    padding-left: 2%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}
.warenkorb-item .col-6.item-price .price-subtotal {
    font-weight: bold;
}
.warenkorb-item li:not(.trashed) {
    margin-bottom: .5em;
}
.cart-total {
    display: flex;
}
.cart-total .col-6.col-last {
    padding-left: 0;
    display: flex;
}
.cart-total .col-6.col-last .total_label, .cart-total .col-6.col-last .price-total {
    padding: 20px 0 10px;
    width: 50%;
}
.cart-total h2 {
    display: inline-block;
    color: var(--rou-body-color);
    margin: 0;
}
.cart-total .price-total {
    text-align: right;
}
.curency {
    margin-right: 20px;
}
.warenkorb-item.shirt .product-size-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 10px;
}
.warenkorb-item.shirt .shirt-anzahl-wrapper, .warenkorb-item.shirt .shirt-size-wrapper {
    display: flex;
    width: 50%;
}
.warenkorb-item.shirt .shirt-anzahl-wrapper {
    padding-top: 5px;
}
.product-select {
    padding: 3px;
    border: 1px solid var(--rou-border-color);
    font-size: 13px;
}
.product-select.select-error {
    border: 3px solid var(--rou-danger);
}

/* ----------------- Statuten -----------------*/
.statuten header p {
    margin-top: 20px;
}
.statuten .bodytext {
    margin-top: 40px;
}
.statuten .flex-wrapper {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.statuten .flex-wrapper .flex-left {
    width: 20%;
    max-width: 100px;
    font-weight: bold;
}
.statuten .flex-wrapper .flex-right {
    width: 80%;
}
.statuten .flex-wrapper ul {
    list-style-type: disc;
}
.statuten .flex-wrapper ul li {
    margin-left: 16px;
    margin-top: 5px;
}

/* ----------------- Archiv -----------------*/
.archiv .content-section-btn {
    height: fit-content;
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    z-index: 2;
}
.archiv .btn-archiv {
    background-color: #e5e5e5;
    height: 40px;
    width: calc((100% - 20px) / 3);
    margin-right: 5px;
    text-align: center;
    color: #808080;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: color 300ms ease-in-out;
    transition: color 300ms ease-in-out;
}
.content-section-btn :last-child {
    margin-right: 0;
}
.archiv .btn-archiv.active {
    background: white;
    color: var(--rou-body-color);
    height: 47px;
    border: 2px solid #e5e3db;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    
}
.btn-archiv-berichte-jahr:hover, .btn-archiv-berichte-jahr.active {
    background-color: darkgreen;
    color: white;
}
.bericht-autor {
    margin-top: 20px;
    text-align: right;
    font-style: italic;
}
.archiv .content-section-data {
    background: white;
    border-radius: 5px;
    box-shadow: 0 3px rgba(0,0,0,0.2);
    border: 2px solid #e5e3db;
    padding: 40px;
}
.archiv #section-berichte {
    border-top-left-radius: 0;
}
/*.archiv .content-section-data h2 {
    display:none;
}*/
.archiv .content-section-btn-jahr {
    margin-top: 40px;
}
.archiv .btn-archiv-jahr {
    background-color: #84bc0f;
    color: white;
    width: 70px;
    margin-bottom: 10px;
    padding-right: 10px;
}
.archiv .btn-archiv-galerie-jahr {
    background-color: var(--rou-blue);
}
.archiv .btn-archiv-jahr.active {
    background-color: var(--rou-secondary);
}
.archiv .content-section-btn-jahr:last-child {
    margin-right: 0;
}
.archiv .content-section-text-jahre {
    margin-top: 40px;
}
.archiv .content-section-data .section-month h2 {
    display: block;
}
.archiv .section-galerie-data {
    margin-bottom: 50px;
}
.archiv .gallery img {
    width: 100px;
    height: 100px;
    border: 2px solid gray;
    margin: 20px;
    object-fit: cover;
}

.content-flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.goenner .sponsoring-wrap {
    width: 200px;
    height: 200px;
    border: 1px solid #b6b5b5;
    padding: 10px;
    margin-bottom: 50px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.goenner .sponsoring-img {
    width: 100%;
    position: relative;
    text-align: center;
}
.goenner .sponsoring-img a {
    width: 100%;
}
.goenner .sponsoring-img a img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
}

/* ----------------- Gästebuch -----------------*/
.gaestebuch header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.button {
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    background: var(--rou-primary);
    color: var(--rou-body-color);
    font-weight: bold;
    padding: 9px 15px;
    border-radius: 4px;
    border: thin solid var(--rou-table-border-color);
    overflow: hidden;
    text-overflow: ellipsis;
    outline: none;
    user-select: none;

}
.blogList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
}
.blogPost {
    background-color: white;
    border-radius: 8px;
    -webkit-box-shadow: 0px 15px 35px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 15px 35px 0px rgba(0,0,0,0.1);
    width: 400px;
    margin-bottom: 60px;
    padding: 30px;
    align-self: stretch;
}
.blogPost .blog-meta {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.blogPost .blog-meta span {
    font-size: 14px;
    line-height: 100%;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blogPost .blog-meta span::before {
    content: "";
    position: absolute;
    right: -10px;
    height: 100%;
    width: 2px;
    background-color: #b5b5b5;
}
.blogPost .blog-meta span:last-of-type::before {
    display: none;
  }
  .blogPost .blog-text {
    font-size: 18px;
  }
  @media only screen and (max-width: 1025px) {
    .jconfirm .jconfirm-box {
        width: 80% !important;
    }
    .jconfirm-form {
        margin-right: 20px;
    }
    .jconfirm-form .form-wrapper {
        width: 80%;
    }
    #shop .jconfirm .jconfirm-box {
        width: 100% !important;
    }
    #shop .jconfirm .jconfirm-form.form_shop {
        width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
    #shop .form_shop .form-wrapper {
        width: 100%;
    }
    #shop .form_shop .curency {
        margin-right: 10px;
    }
}
@media only screen and (max-width: 821px) {
    .jconfirm .jconfirm-box {
        width: 90% !important;
    }
    .jconfirm-form {
        margin-right: 20px;
    }
    .jconfirm-form .form-wrapper {
        width: 90%;
    }
    #shop .jconfirm .jconfirm-box {
        width: 100% !important;
    }
    #shop .jconfirm .jconfirm-form.form_shop {
        width: 100% !important;
    }
    #shop .form_shop .warenkorb-item .numeric-stepper {
        width: 100px;
    }
    #shop .form_shop .warenkorb-item .stepper-value {
        width: 40px !important;
    }
    #shop .form_shop .warenkorb-item .remove-item {
        padding-left: 5px;
    }
    #shop .form_shop .warenkorb-item .item-price {
        justify-content: flex-end;
    }
    #shop .form_shop .warenkorb-item .price-per-piece {
        display: none;
    }
    #shop .form_shop .warenkorb-item .price-subtotal {
        width: 100%;
        text-align: right;
    }

}

@media only screen and (max-width: 769px) {
    .jconfirm .jconfirm-box {
        width: 100% !important;
        padding: 0 !important;
    }
    .jconfirm-form {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }
    .jconfirm-form .form-wrapper {
        width: 100% !important;
        padding: 10px !important;
    }
    .jconfirm .jconfirm-box .jconfirm-buttons {
        padding-right: 20px !important;
    }
    #shop .jconfirm .jconfirm-box {
        width: 100% !important;
    }
    #shop .jconfirm .jconfirm-form.form_shop {
        width: 100% !important;
    }
    #shop .form_shop .cart-total h2 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 562px) {
    #shop .form_shop .warenkorb-item {
        flex-direction: column;
        height: 100%;
    }
    #shop .form_shop .warenkorb-item > .col-6 {
        width: 100%;
        justify-content: center;
        padding-bottom: 20px;
    }
    #shop .form_shop .cart-total .col-6:first-child {
        display: none;
    }
    #shop .form_shop .cart-total .col-6:last-child {
        width: 100%;
    }
    /*#shop .form_shop .numeric-stepper {
        width: 80%;
    }
    #shop .form_shop .input-group-btn {
        width: 25%;
    }
    #shop .form_shop .stepper-minus, #shop .form_shop .btn.stepper-plus {
        width: 100%;
        font-size: 14px;
    }
    #shop .form_shop .stepper-value {
        width: 50% !important;
        font-size: 14px;
    }
    #shop .form_shop .remove-item {
        width: 20%;
    }*/
}
/*@media(prefers-color-scheme: dark) {
    h1, h2, h3, h4, h5, h6 {
        color: #ffffff;
    }
}*/
.grecaptcha-badge {
    display: none !important;
}
#agenda .grecaptcha-badge, #shop .grecaptcha-badge {
    display: block !important;
}
.error-meldung {
    position: relative;
    left: 30%;
    top: 50px;
    border: 3px solid red;
    padding: 10px;
    color: red;
    background-color: white;
    width: 200px;
}
.btn.disabled {
    color: white;
    border-color: #a0a0a0;
    background-color: #a0a0a0;
}
