/* Local font mapping based on available files in fileadmin/fonts */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	src: url('../../fonts/roboto-v50-latin-regular.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'Source Sans Pro';
	font-style: italic;
	font-weight: 400;
	src: url('../../fonts/roboto-v50-latin-regular.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	src: url('../../fonts/roboto-v50-latin-700.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'Source Sans Pro';
	font-style: italic;
	font-weight: 600;
	src: url('../../fonts/roboto-v50-latin-700.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'Black Ops One';
	font-style: normal;
	font-weight: 400;
	src: url('../../fonts/roboto-v50-latin-900.woff2') format('woff2');
	font-display: swap;
}


:root {
  --uweiss: #ffffff;
  --grau: #e5e5e5;
  --schrift: #00142e;
  --gelb: #ffdd00;
  --rot: #ed1c24;
  --gap: 40px;

  --xd-font: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --xd-max: 1300px;
  --standardtransition: ease all 0.3s;
}

html,
body {
  font-family: var(--xd-font);
  color: var(--schrift);
  background: var(--uweiss);
  max-width: 100%;
  margin: 0;
}

body,
p,
li,
label,
input,
select,
textarea {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
}

/* Navigation */
#oben {
  position: fixed;
  top: 0;
  z-index: 50;
  min-height: 120px;
  background: var(--schrift);
  /* border-bottom: 4px solid var(--gelb); */
}

#oben .rahmen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: none;
  margin: 0;
}

#oben ul.hnavi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin: 0;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

#oben ul.hnavi > li {
  position: relative;
  background: none;
  text-align: left;
}

#oben ul.hnavi > li > a {
  position: relative;
  display: inline-block;
  color: var(--uweiss);
  font-family: var(--xd-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  padding: 50px 0;
  transition: color 0.2s ease;
}

#oben ul.hnavi > li > a::after,
#oben ul.hnavi > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gelb);
  transition: width 0.2s ease;
}

#oben ul.hnavi > li > a::after {
  bottom: 35px;
  left: 8px;
}

#oben ul.hnavi > li > a::before {
  bottom: 40px;
  left: -8px;
}

#oben ul.hnavi > li:hover > a,
#oben ul.hnavi > li.act > a,
#oben ul.hnavi > li.current > a,
#oben ul.hnavi > li.active > a {
  color: var(--gelb);
}

#oben ul.hnavi > li:hover > a::after,
#oben ul.hnavi > li:hover > a::before,
#oben ul.hnavi > li.act > a::after,
#oben ul.hnavi > li.act > a::before,
#oben ul.hnavi > li.current > a::after,
#oben ul.hnavi > li.current > a::before,
#oben ul.hnavi > li.active > a::after,
#oben ul.hnavi > li.active > a::before {
  width: 100%;
}

#oben ul.hnavi > li > ul.unavi {
  display: none;
  position: absolute;
  left: 0;
  top: 122px;
  width: min(320px, 88vw);
  margin: 0;
  padding: 20px 20px 20px 30px;
  list-style: none;
  background: var(--gelb);
  box-shadow: 0 12px 30px rgba(0, 20, 46, 0.2);
}

#oben ul.hnavi > li:hover > ul.unavi,
#oben ul.hnavi > li:focus-within > ul.unavi {
  display: block;
}

#oben ul.hnavi > li > ul.unavi > li {
  margin: 0;
  border-bottom: 2px solid rgba(0, 20, 46, 0.55);
  padding: 15px 0;
  background: none;
}

#oben ul.hnavi > li > ul.unavi > li:last-child {
  border-bottom: 0;
}

#oben ul.hnavi > li > ul.unavi > li > a {
  display: block;
  color: var(--schrift);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  line-height: 1.15;
  position: relative;
}

#oben ul.hnavi > li > ul.unavi > li:hover > a,
#oben ul.hnavi > li > ul.unavi > li.act > a,
#oben ul.hnavi > li > ul.unavi > li.active > a,
#oben ul.hnavi > li > ul.unavi > li.current > a {
  font-weight: 700;
  /* padding-left: 16px; */
}

#oben ul.hnavi > li > ul.unavi > li:hover > a::before,
#oben ul.hnavi > li > ul.unavi > li.act > a::before,
#oben ul.hnavi > li > ul.unavi > li.active > a::before,
#oben ul.hnavi > li > ul.unavi > li.current > a::before {
    content: "";
    background: url(../images/aufzaehlung.svg) -4px center no-repeat;
    background-size: 20px;
    position: absolute;
    width: 20px;
    height: 20px;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rot);
    font-size: 20px;
    line-height: 1;
}


section, aside, header, nav, article, footer, time, figure {	
	display: block;	
	margin: 0px;	
	padding: 0px;
	float: left;
	clear: both;
	width: 100%;
}

* {	
	outline: none;
}

img {	
	border: none;
	max-width: 100%;
	height: auto;
}

p {	
	margin: 0px 0px 10px 0px;
}

p.align-center, .align-center {	
	text-align: center;
}

p.align-left, .align-left {	
	text-align: left;
}

p.align-right, .align-right {	
	text-align: right;
}

p.align-justify, .align-justify {	
	text-align: justify;
}

table td, .contenttable td {	
	vertical-align: top;
	padding: 0px;
}

a {	
	text-decoration: none;	
	color: #ED1C24;
}

ul {	
	padding: 0;  
	list-style: none;
}

/* li {
    background: url(../images/aufzaehlung.svg) -4px 2px no-repeat;
    background-size: 20px;
    padding-left: 20px;
	} */
ul {
	list-style-image: url(../images/aufzaehlung.svg);
	background-size: 20px;
	list-style-position: inside;
	/* text-align: center; */
	padding-left: 0;
}

/* Typography */
h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--schrift);
  margin: 0 0 34px;
  position: relative;
}

h1::before,
h1::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -10px;
  width: 60%;
  height: 5px;
  background: var(--rot);
}

h1::after{
  left: 20px;
  bottom: -20px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0
}

h2.folgt{
	font-size: 40px;
	font-weight: 300;
	margin: 50px 0 30px;
}

h2.zweizeilig{
	position: relative;
}

h2.zweizeilig::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 1.2em;
  width: 100px;
  height: 2px;
  background: var(--gelb);
}

h3 {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.15;
  margin: 16px 0 0 25px;
}

h3.folgt{
	margin-top: 0;
	margin-bottom: 35px;
}

h1, h2, h3, h4, h5{
	opacity: 0;
}

.c99l {
	float: left; 
	width: 99%;
}

.c99l .subcl:first-child {
	border-bottom: 1px dotted #fff;
    margin-bottom: 30px;
}

/* *************** HINTERGRUND-SLIDER *************** */

#slideshow {
	position: fixed !important;
	z-index: 0;
	left: 0px;
	top: 0px;
	width: 100% !important;
	height: 100% !important;
	display: block;
	margin: 0px;
	padding: 0px;
	overflow:none;
}

#slideshow li {
	margin: 0px;
	padding: 0px;
	background-repeat:no-repeat;
	width: 100% !important;
	height: 100% !important;
	background-image:none;
	background-size: cover;
	background-position: center top;
}

.startheader {
	float: left;
	clear: both;
	width: 100%;
	display: block;
	overflow: hidden;
}

.arrow_next_bottom {
	bottom: 20px;
    left: 50%;
    margin-left: -75px;
    position: absolute;
    z-index: 2;
	cursor: pointer;
}

.startheader .csc-textpic-image {
	position: relative;
	margin-bottom: 0px !important;
}

.startheader .csc-textpic-image .csc-textpic-caption {
    position: absolute;
    display: block;
    top: 25%;
    width: 100%;
    left: 0;
    margin-left: 0;
	text-align: center;
}

.startheader h1 {
    font-size: 80px;
	color: #f07d00;
	margin: 0 auto;
	padding: 0px;
	line-height: 1;
}

.startheader h1:after {
    background: none;
}

.startheader h2 {
    font-size: 80px;
	color: #252525;
    font-weight: 300;
	text-transform: uppercase;
	margin: 0 auto;
	padding: 0px;
	line-height: 1;
}

.startheader img {
	width: 100% !important;
	height: auto !important;
}

/* *************** HINTERGRUND-SLIDER ENDE ************ */	

.zentriert {		
	margin: 0 auto;	
	position: relative;
	padding: 0px 4%;	
	width: 90%;
	z-index: 1;
}

/* -- Allgemeine Formatierungen -- */
/* -- Bereich: OBEN -- */

/* -- SPRACHE -- */
.sprache {
	float: left;
	display: block;
	margin: 0px 0px 0px 15px;
}

/* -- SPRACHE -- *

/* -- TICKER -- */
.ticker {
    position: relative;
    width: 100%;
	margin: 0;
	font-family: 'Source Sans Pro', arial;
	font-size: 11px;    
	padding-top: 10px;
	height: 25px;	
}

.ticker .zentriert {
	padding: 0px;
	width: 100%;
}

.ticker .inhalt_normal {
	padding: 0px;
	background: none;
}

.ticker .tickertext {
	width: 100%;
	border: 0px;
	padding: 0px;
	margin: 0px;
	resize: none;
	background-image: none;
	font-family: 'Source Sans Pro', arial;
	font-size: 11px;
	overflow: hidden;
	color: #FFFFFF !important;
}

/* -- TICKER -- */

	
#header {	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;
}

.oben {	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;	
	position: fixed;	
	background: rgba(0, 0, 0, 0.8);	
	z-index: 30;
}

/* Hauptnavi */
#hauptnavi {	
	float: left;	
	width: 100%;	
	margin: 30px 0px 30px 0px;	
	font-size: 18px;
	text-transform: none;
	line-height: 1em;
}

#hauptnavi a {
	color: #FFFFFF;
}

#hauptnavi ul {	
	margin: 0px;	
	padding: 0px;	
	list-style: none;
}

#hauptnavi li {	
	background: none;	
	float: left;	
	padding: 0px;	
	margin: 0px 0px 0px 2px;
}

#hauptnavi li:first-child {	
	margin: 0px;
}

#hauptnavi li a {	
	padding: 30px 15px;	
	line-height: 18px;
}

#hauptnavi li.active a {	
	color: #FFFFFF;
	font-size: 30px;
	line-height: 8px;
}

.mobil_kontakt, .button_mobil, .funk_mobil {	
	display: none;
}

/* Hauptnavi */
.logo {	
	width: 266px;	
	display: block;	
	margin: 0px;	
	position: absolute;	
	top: 33px;	
	right: 2%;
	cursor: pointer;
}

.logo img{
	width: 100% !important;
	height: auto !important;
}

/* -- Bereich: OBEN -- */

/* -- Bereich: FADE-IN-BOX -- */
#slidein {
	display: none;
}

#fadebox {  
	width: 295px;  
	height: auto;  
	/* background: #FFFFFF; */ 
	color: #fff;
	background: #a6c711;
	box-shadow: 0 0 5px #000;  
	position: fixed;  
/* 	left: -395px; */  
	left: 0;
	top: 115px;  
	padding: 20px;  
	z-index: 150;
	font-size: 16px;
}

#fadebox h3 {
	margin: 10px 0 15px 0;
}

#fadebox .inhalt_normal {
	padding: 0;
	width: 100%;
	background: #a6c711;
}

#fadebox .zentriert {
	padding: 0;
	width: 100%;
}

#fadebox .subcl {
	padding: 0 0 14px 0;
}

#fadebox .subcr {
	padding: 0;
}

#lightbox label {  
	display: none !important;
}

/* -- Bereich: FADE-IN-BOX -- */

/* -- Bereich: ONEPAGEINHALT -- */
.onepageinhalt {
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;
	position: relative;
	z-index: 0;
}

.bereiche {	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;	
	margin: 0px;
}

.inhalt {	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;
	margin-top: 0px;
}

.nr-1 .inhalt {
	margin: 0px;
	position: relative;
}

.nr-1 .header, .bereiche:first-child .header {
	display: none;
}

.inhalt_normal, .farbe1, .farbe2, .farbe3, .farbe4,.boxhoehe {	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;	
	padding: 60px 0px 75px 0;
}

/* HEADER */	
.header {
	width: 100%;
	float: left;
	clear: both;
	display: block;
	height: 400px;
	overflow: hidden;
	position: relative;
}

.header div.csc-textpic .csc-textpic-imagewrap .csc-textpic-image {
	margin: 0px;
}

.header img {
	width: 100% !important;
}

.header .inhalt_normal, .header .inhalt_normal .zentriert {	
	width: 100%;	
	max-width: 100%;	
	float: none;	
	clear: none;	
	margin: 0px;	
	padding: 0px;
}

.parabild {
	width: 100%;
	height: 400px;
	display: block;
	background-position: 0 0px;
	background-size: cover;
	background-attachment: scroll;
}

/* HEADER */

/* HEADERSLIDE */
.headerslide {
	width: 100%;
	float: left;
	clear: both;
	display: block;
	height: 300px;
	overflow: hidden;
}

.headerslide .inhalt_normal, .headerslide .inhalt_normal .zentriert {	
	width: 100%;	
	max-width: 100%;	
	float: none;	
	clear: none;	
	margin: 0px;	
	padding: 0px;
	background: none;
}

.headerslide .csc-textpic-imagecolumn, .headerslide .csc-textpic-image {
	width: 100% !important; 
}

.headerslide .owl-carousel .owl-item img {
	width: 100% !important;
	height: auto !important;
}

/* HEADERSLIDE */

.inhalt_normal {	
	background: #FFFFFF;
}

/* -- Bereich: ONEPAGEINHALT -- */

.feature-buttons {
	bottom: 15%;   
	position: fixed;    
	right: 1%;  
	z-index: 200;   
	display: block;
}

.nachoben:hover, .suche:hover, .nachunten:hover {
	opacity: 1;
}

/* -- Drucklink Button -- */

/* -- Bereich: FOOTER -- */
#footer {	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;	
	color: #FFFFFF;	
	position: relative;	
	font-size: 14px;	
	/* margin-top: 150px; */
	z-index: 5;
}

#footer .inhalt_normal {	
	background: none;	
	padding: 0px;
}

#footer table {
	padding: 0px !important;
	border-spacing: 0px !important;
}

#unten {	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;
/* Muss selbe Höhe wie der .mapsborder haben */	
	min-height: 38px;
}

.mapsborder {	
	width: 100%;	
	height: 38px;	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;	
	background: #ED1C24;	
	text-align: center;
}

.googlemap iframe {	
	pointer-events: none;

}

.googlemap {
	height: 350px;
	/*overflow: hidden;*/
	float: left;
	clear: both;
	width: 100%;
	display: block;
}

.anfahrt {
/* Muss selbe Farbe wie der .footerinhalt haben */	
	background: #000000;
	height: 0px;
	/*height: 350px;*/
	overflow: hidden;
	float: left;
	clear: both;
	display: block;
	width: 100%;
}

.anfahrt .inhalt_normal, .anfahrt .inhalt_normal .zentriert {	
	width: 100%;	
	max-width: 100%;	
	float: none;	
	clear: none;	
	margin: 0px;	
	padding: 0px;
}

.footerinhalt {	
	width: 100%;	
	display: block;	
	float: left;	
	clear: both;	
	background: #000000;	
	padding: 35px 0px 30px 0px;
}

.footerinhalt p {
	margin: 0px;
}

#footer  .csc-menu {	
	margin: 0px;	
	padding: 0px;	
	text-align: right;
}

#footer  .csc-menu li {	
	padding: 0px;	
	background: none;
}

#footerfunction {
	display: block;
	float: left;
	clear: both;
	width: 100%;
	background: #2e2e2e;
}

.iconsmartstyle {	
	float: right;	
	padding: 5px 0;
	position: absolute;
	top: -35px;
	right: 15px;
}

.fb, .yt, .teamviewer {
	float: left;
	display: block;
	margin: 5px 5px 5px 0; 
}

#c397 li:nth-child(even) {
	margin-left: 60px;
}

#c397 ul.block {
	padding: 45px 15px 15px 15px;
	background: rgba(0,0,0,0.1);
}

#c397 ul.block:nth-child(even) {
	background: rgba(255,255,255,0.5);
}

/* -- Bereich: FOOTER -- */

/* -- UNTERSEITEN -- */
.rahmen {  
	width: 100%;  
	min-height: 100%;  
	position: relative;  
	float: left;  
	clear: both;  
	display: block;
}

.unterseite_inhalt  {
	width: 100%;
	display: block;	
	float: left;	
	clear: both;
	position: relative;
	z-index:5;
	margin-top: 350px;
	margin-bottom: 346px;
	background: #FFF;
	padding-bottom: 50px;
}

.unterseite_inhalt .zentriert  {
	width: 92%;
	display: block;
	max-width: 988px;
	
}

.unterseite_inhalt .inhalt_normal {
	padding: 20px 0;
}

.rahmen #footer{
	position: absolute;
	bottom: 0px;
	left: 0px;
}

/* -- UNTERSEITEN -- */
/* -- OWL PLUGIN -- */
/* -- OWL-SILDER -- */
.owlslider {
	position: relative;
}

.owlslider div.csc-textpic, .owlslider  div.csc-textpic div.csc-textpic-imagerow, .owlslider  ul.csc-uploads li, .owlslider-einzel div.csc-textpic, .owlslider-einzel div.csc-textpic div.csc-textpic-imagerow, .owlslider-einzel ul.csc-uploads li {
	overflow: initial;
}

.owlslider-einzel, .owlslider-video{
	clear: both; 
	display: block;
	margin: 0 auto;
	max-width: 660px;
	position: relative;
}

.owlslider-einzel h3 {
	text-align: center;
}

.owl-controls {
	width: 100%;
	display: block;
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -40px;
}

.owl-dots {
	display: none;
	text-align: center;
}

.startheader .owl-dots {
	display: block;
	float: right;
}

.owl-dot {
	display: inline-block;
	height: 15px;
	width: 15px;
	background: #FFFFFF;
	float: none;
	border-radius: 100%;
	margin: 0 2px 0px 2px;
}

.owl-dots .active {
	background: #252525;
}

.startheader .owl-controls {
	width: 98%;
	display: block;
	position: absolute;
	left: 0;
	top: 210px;
	padding: 0 1%;
}

/* -- OWL-SILDER -- */

/* -- OWL-GALLERY -- */
.owlgalerie .zentriert  {
	max-width: 600px;
	width: 96%;
}

/* -- OWL-GALLERY -- */

/* -- OWL TEXT -- */
.owltext {
	float: left;
	clear: both;
	display: block;
	width: 100%;
	background: #FFFFFF;
	padding: 20px 0px 20px 0;
}

.owltext .owl-next {
	background-position: right top;
	right: 5px;
	left: auto;
 }

.owltext .owl-item .zentriert {
	width: 90%;
	padding: 0 5%;
 }

/* -- OWL TEXT -- */

/* -- OWL PLUGIN -- */

/* BILDERGALERIE MIT FILTER */

.filtergalerie .zentriert {
	max-width: 100%;
}

.filtergalerie .csc-textpic-text {
	display: table;
	margin: 0 auto;
	text-align: center;
	color: #252525;
}

.filtergalerie a {
	color: #252525;
}

.filtergalerie .csc-textpic-imagewrap {
	float: left;
	clear: both;
	width: 100%;
}

.filtergalerieinner {
	display: block;
	float: left;
	clear: both;
	position: relative;
	width: 100%;
	text-align: center;
}

.filtergalerie .filterbild {
	display: inline-block;
	/*float: left;*/
	margin: 2px !important;
}

.filtergalerie .csc-textpic-image {
	margin-bottom: 0px !important;
	background: #000000;
	position: relative;
}

.filtergalerie ul {
	padding: 0px;
	margin: 40px auto 30px;
	display: table;
}

.filtergalerie li {
	background: none; 
	padding: 10px 0;
	margin: 0 5px 10px;
	float: left;
	display: block;
	border: 1px solid #252525;
	cursor: pointer;
	font-size: 16px;
	font-family: Times, 'Source Sans Pro', arial;
	font-style: italic;
	width: 180px;
	transition: all 0.3s ease;
}

.filtergalerie li:hover {
	border: 1px solid #F07D00 !important;
	color: #F07D00 !important;
}

.filtergalerie .csc-textpic-image img {
	transition: opacity 0.3s ease;
}

.filtergalerie .csc-textpic-image:hover img {
	opacity: 0.3;
}

.filtergalerie .csc-textpic-image .csc-textpic-caption {
	display: none;
}

.filtergalerie .csc-textpic-image:hover .csc-textpic-caption {
	display: block;
	position: absolute;
	width: 90%;
	left: 2%;
	bottom: 2.5%;
	border: 3px solid #FFF;
	color: #FFFFFF;
	padding: 2%;
}

.filtergalerie .csc-textpic-image:hover .csc-textpic-caption a {
	color: #EF7D00;
	font-weight: normal;
}

/* BILDERGALERIE MIT FILTER */

/* -- EXTENSION -- */
/* -- TT_NEWS -- */
/* -- LIST -- */

.news-list-container {
margin: 0px 0 20px 0;
padding: 0px;
}

.news-list-item {  
margin: 0;  
padding: 0 0 15px;  
background: #FFFFFF;
width: 100%;
float: left;
font-family: Times, 'Source Sans Pro', arial;
font-style: italic;
color: #8d8d8d;
}

.news-list-item:first-child {  
border: 0px;  
margin: 0px;  
}

.news-list-item h2 {
    display: block;
    float: left;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0 10px;
    text-align: left;
	padding: 0 4%;
    width: 92%;
	font-family: 'Source Sans Pro', arial;
	font-style: normal;
	min-height: 36px;
}

.news-list-item h2 a {
    color: #8d8d8d;
}

.news-list-browse {
	display: none;
}

.news-list-date {
	width: 92%;
	text-align: left;
	display: block;
	padding: 5px 0;
	margin: 0 4%;
	color: #8d8d8d;
	font-size: 14px;
	font-family: 'Source Sans Pro', arial;
	font-style: normal;
}

.news-list-container IMG {
    float: left;
    height: auto;
    margin: 0;
    width: 100%;
}

.news_list-subheader {
	float: left;
	width: 92%;
	margin: 0 4%;
	min-height: 120px;
	position: relative;
}

.news_list-subheader a {
	float: left;
	width: 90%;
	margin: 15px 0 0 0;
	clear: both;
	border: 1px solid #8d8d8d;
	padding: 10px 0;
	text-align: center;
	color: #8d8d8d;
	transition: all 0.3s ease;
	position: absolute;
	bottom: 15px;
	left: 5%;
}

.news_list-subheader a:hover {
	border: 1px solid #EF7D00;
	color: #EF7D00;
}

.farbe3 .owl-controls {
	position: absolute;
	bottom: -48px;
	left: 0;
	width: 100%;
	top: auto;
	text-align: center;
	background: none;
}

.farbe3  .owl-nav {
	float: none;
	clear: none;
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 3px 0;
	position: relative;
	top: 5px;
}

.farbe3  .owl-nav div {
	float: left;
	margin: 0 10px 0 0;
	display: block;
	width: 12px;
	height: 24px;	
	overflow: hidden;
	text-indent: -999px;
}

.farbe3  .owl-dots {
	float: none;
	clear: none;
	display: inline-block;
}

.farbe3  .owl-dot {
	background: #252525;
	display: block;
	width: 14px;
	height: 14px;
	float: left;
	margin: 10px 8px 0 0;
	border-radius: 100%;
	transition: background 0.3s ease;
}

.farbe3  .owl-dots .active, .farbe3  .owl-dots .owl-dot:hover {
	background: #ef7d00;
}

/* -- LIST -- */

/* -- SINGLE -- */

/* -- SINGLE -- */
.news-single-item {
	width: 100%;
	display: block;
	/*float: left;
	clear: both;*/
	margin: 0px auto 10px;
	padding: 0px; 
	max-width: 988px;
}

.news-single-item .news_prev-next {
	float: left;
	clear: both;
	display: block;
	width: 100%;
	margin-bottom: 40px;
}

.news-single-item h1 {
	clear: both;
	text-align: center;
}

.news-single-item h2 {
	margin: 0 auto 30px;
	text-align: center;
}

.singleinhalt {
	width: 100%;
	display: block;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.news-single-img {
	width: auto;
	display: block;
	float: left;
	clear: both;
	margin: 0px 20px 10px 0px;
	padding: 0px;
}

.news-single-img .bild {
	float: left; 
	margin-left: 10px;
}

.news-single-img .bild:first-child {
	margin-left: 0px;
}

.news-single-backlink {
	width: 100%;
	float: left;
	clear: both;
	margin: 0px;
	padding: 10px 0px 0px 0px;
}

.news-single-backlink a {
	display: block;
	background: #EF7D00;
	color: #FFF;
	padding: 10px 25px;
	text-align: center;
}

/* -- TT_NEWS -- */

/* -- JFMulticontent -- */
/* Allgemeine Formatierungen JFMulticontent */
.tx-jfmulticontent-pi1 .inhalt_normal, .tx-jfmulticontent-pi1 .inhalt_normal .zentriert {	
	width: auto;	
	float: none;	
	clear: none;	
	margin: 0px;	
	padding: 0px;
	background: none;
}

/* Allgemeine Formatierung: TABS */

.ui-tabs .ui-tabs-nav li {  
	background: none !important;
	border: 0px !important;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br, .ui-corner-tl, .ui-corner-top, .ui-corner-tr, .ui-corner-left, .ui-corner-bl {
    border-radius: 0px;
}

.ui-widget-content, .ui-widget-content .inhalt_normal {  
	border: 0px;  
	background: none; 
}

.ui-widget-header {  
	background: none;  
	border: 0px;  
	padding: 0px;  
	margin: 0px;
}

.ui-widget {
	font-family: 'Source Sans Pro', arial, sans-serif !important;    
	font-size: 14px !important;    
	color: #363636 ;
}

.ui-tabs .ui-tabs-nav {
	padding: 0px;
}

.ui-tabs .ui-tabs-panel {  
	padding: 15px;  
	float: left;  
	clear: both;  
	display: block;
	background: #E6E6E6;
	margin-top: 5px;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {  
	background: #E6E6E6;
	color: #15A9B5;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited, .ui-state-default a:hover {    
	background:  #15a9b5;
	color: #FFFFFF;
}

.tx-jfmulticontent-pi1 .ui-tabs-nav  {  
	background:none !important;  
	border: none !important;  
	font-size: 14px !important;  
	font-family: 'Source Sans Pro', arial, sans-serif !important;    
	font-weight: 300 !important;  
	margin-top: 20px;
}

.tx-jfmulticontent-pi1 .ui-widget-content {  
	font-family: 'Source Sans Pro', arial, sans-serif !important;    
	font-size: 14px !important;    
	color: #363636 ;  
	display: block;
	background: #CCCCCC;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {  
	font-weight: 300;
}

.ui-tabs-panel ul {  
	list-style: disc;
}

/* Allgemeine Formatierung: TABS */

/* Allgemeine Formatierung: ACCORDION */

.ui-accordion  .ui-state-default, .ui-accordion  .ui-widget-content .ui-state-default, .ui-accordion  .ui-widget-header .ui-state-default {  
	background: #ed1c24;
	border: 0px;
	font-family: 'Source Sans Pro', arial, sans-serif !important; 
	font-size: 22px;
}

.ui-accordion .ui-state-active, .ui-accordion  .ui-widget-content .ui-state-active, .ui-accordion  .ui-widget-header .ui-state-active {
	background:  #ed1c24;
	border: 0px;
}
.ui-accordion .ui-accordion-icons {
    padding-left: 0 !important;
}

.ui-accordion .ui-accordion-header {
    padding: 10px 40px 10px 20px !important;
	width: calc(100% - 60px);
	margin: 2px 0 0;
	position: relative;
}

.ui-accordion .ui-accordion-header::after{
	content: '';
	position: absolute;
	background: url("/fileadmin/cn_website/images/down.svg") center center/contain no-repeat;
	width: 30px;
	height: 40px;
	right: 5px;
	top: 0;
	transition: var(--standardtransition);
}

.ui-accordion .ui-accordion-header.ui-accordion-header-active::after{
	transform: rotate(90deg);
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited{
	color: var(--uweiss) !important;
}

.ui-accordion .ui-state-default a, .ui-accordion  .ui-state-hover a  {
	background: none;
	color: #FFF;
}

.ui-accordion  .ui-state-active a {
	background: none;
	color: #FFFFFF;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	right: 15px;
	left: auto;
	top: 50%;
	margin-top: -20px;
}

.ui-accordion .ui-accordion-icons {
	padding-left: 2%;
}

.ui-accordion .ui-accordion-content,
.ui-widget-content{
	background: var(--uweiss);
	color: var(--schrift) !important;
	padding: 15px 29px !important;
	width: calc(100% - 60px);
}
.ui-accordion .ui-accordion-content p,
.ui-widget-content h1,
.ui-widget-content h2,
.ui-widget-content h3,
.ui-widget-content span,
.ui-widget-content li,
.ui-widget-content strong,
.ui-widget-content p{
	color: var(--schrift) !important;
}

/* Allgemeine Formatierungen JFMulticontent */ 

/* --- Powermail Formular --- */
.tx-powermail {
	float: left;
    clear: both;
    width: 100%;
    margin: 0 0 50px 0;
    padding: 0px;
    font-size: 17px;
    font-weight: 300;
    border: 0;
}

.powermail_fieldset {
	border: 0;
	float: left;
	clear: both;
	width: 100%;
	margin: 0;
	padding: 0;
}

.powermail_legend, .powermail_label, .tx-powermail h3 {
	display: none;
}

input.powermail_field {
	border: 0;
	background: #000;
	font-size: 17px;
	font-weight: normal;
	padding: 10px 2%;
	margin-bottom: 5px;
	border-radius: 0;
	width: 95%;	
	color: #fff;	
	font-family: 'Source Sans Pro', sans-serif, arial;
}

.tx-powermail textarea {
	width: 95%;
	color: #fff;	
	font-size: 17px;
	font-weight: normal;	
	background: #000;	
	font-family: 'Source Sans Pro', sans-serif, arial;	
	padding: 10px 2%;	
	margin-bottom: 5px;	
	border: 0px;	
	border-radius: 0 !important;
}

.powermail_fieldwrap_check fieldset {
	border: 0;
	margin: 0 0 10px 0;
	padding: 0;
}

.powermail_field.powermail_submit {
	margin: 0;
	width: 100%;
	border: 0 !important;
	background: #000 !important;
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	font-weight: 300;
	color: #fff;
	padding: 15px 0;
	text-align: center;
	cursor: pointer;
}

.parsley-errors-list.filled {
	margin: 0;
	padding: 0;
	list-style: none;
}

.parsley-errors-list.filled li {
	background: none;
	padding: 0;
	margin: 0;
	line-height: 1em;
	color: #000;
}

.powermail_fieldwrap input::placeholder, .tx-powermail textarea::placeholder{
	color: #fff;
}

/* --- Powermail Formular --- */

/* -- JFMulticontent -- */
/* -- EXTENSION -- */

/* -- Verschiedene Styles (Rahmen im Backend) -- */
/* Allgemeine Formatierungen der Styles */

.farbe1 h2, .farbe2 h2, .farbe3 h2, .farbe4 h2 {
	color: #FFFFFF !important;
}

/* FARBE 1 */
.farbe1 {
	background: #5A5A5A;
	color: #252525;
	padding: 0px;
}

.farbe1 .subcolumns {
	overflow: visible;
}

.farbe1 .c50l {
	padding: 20px 2% 50px;
	width: 46%;
	background: #5a5a5a;
}

.farbe1 .c50r {
	background: #838383;
	padding: 20px 2% 50px;
	width: 46%;	
	color: #FFFFFF;
}

.farbe1 .subcr, .farbe1 .subcl {
	margin: 0px;
	padding: 0px;
}

.farbe1 a {
display: block;
}

/* FARBE 1 */

/* FARBE 2 */
.farbe2 {	
	background: #ED1C24;
	color: #FFFFFF;
}

.farbe2 h1 {	
	color: #FFFFFF;
}

.farbe2 h1:after {
	background: #FFF;
}

.farbe2 li {
	background: rgba(0,0,0,0.25);
	font-family: 'Source Sans Pro', Arial;
	font-style: italic;
	margin: 0 0.25%;
    padding: 15px 1%;
    width: 14%;
	float: left;
	text-align: center;
}

.farbe2 li h3 {
	font-family: 'Source Sans Pro', Arial;
	margin: 0 0 10px 0; 
	font-style: normal;
	font-weight: 600;
	font-size: 16px;	
}

.farbe2 a {
	font-family: 'Times', Arial;
	font-style: italic;
	font-size: 18px;	
	color: #FFF;
}

/* FARBE 2 */

/* BOX HOEHE */
.boxhoehe {	
/* missing image asset commented out: 	background: url(../images/background/bg_orange.jpg) left top repeat; */
	color: #FFFFFF;
}

.boxhoehe h1 {	
	color: #FFFFFF;
}

.boxhoehe h1:after {
	background: #FFF;
}

.boxhoehe li {
	background: rgba(0,0,0,0.25);
	font-family: 'Source Sans Pro', Arial;
	font-style: italic;
	margin: 0 0.25%;
    padding: 15px 1%;
    width: 14%;
	float: left;
	text-align: center;
}

.boxhoehe li h3 {
	font-family: 'Source Sans Pro', Arial;
	margin: 0 0 10px 0; 
	font-style: normal;
	font-weight: 600;
	font-size: 16px;	
}

.boxhoehe a {
	font-family: 'Source Sans Pro', Arial;
	font-size: 18px;	
	color: #FFF;
}

/* BOX HOEHE */

/* FARBE 3 */
.farbe3 {	
	position: relative;
	background: #5A5A5A;
	padding: 0px;
}

.farbe3 .subcolumns {
	overflow: visible;
}

.farbe3 .c50l {
	padding: 20px 2% 50px;
	width: 46%;
	background: #838383;
}

.farbe3 .c50r {
	background: #5a5a5a;
	padding: 20px 2% 50px;
	width: 46%;	
	color: #FFFFFF;
}

.farbe3 .subcr, .farbe3 .subcl {
	padding: 0px;
	margin: 0px;
}

.farbe3 table {
	float: left;
	width: 45%;
	margin-bottom: 15px;
}

/* FARBE 3 */

/* FARBE 4 */
.farbe4 {	
	background: #B59F0C;	
	color: #FFFFFF;
}

/* FARBE 4 */

/* Allgemeine Formatierungen der Styles */ 
.farbe1 .ui-tabs .ui-tabs-panel, .farbe1 .ui-tabs .ui-tabs-panel a,
.farbe2 .ui-tabs .ui-tabs-panel, .farbe2 .ui-tabs .ui-tabs-panel a,
.farbe3 .ui-tabs .ui-tabs-panel, .farbe3 .ui-tabs .ui-tabs-panel a,
.farbe4 .ui-tabs .ui-tabs-panel, .farbe4 .ui-tabs .ui-tabs-panel a,
.farbe1 .ui-accordion-content,  .farbe1 .ui-accordion-content a ,
.farbe2 .ui-accordion-content,  .farbe2 .ui-accordion-content a ,
.farbe3 .ui-accordion-content,  .farbe3 .ui-accordion-content a ,
.farbe4 .ui-accordion-content,  .farbe4 .ui-accordion-content a  {
	color: #FFFFFF !important;
 }

.farbe1 .ui-accordion-content a, 
.farbe2 .ui-accordion-content a,
.farbe3 .ui-accordion-content a,
.farbe4 .ui-accordion-content a {
	text-decoration: underline;
 }

/* FARBE 1 Accordion */
.farbe1 .ui-accordion  .ui-state-default, .farbe1 .ui-accordion  .ui-widget-content .ui-state-default, .farbe1 .ui-accordion  .ui-widget-header .ui-state-default {  
	background: #24b8c4;
}

.farbe1 .ui-accordion .ui-state-active, .farbe1 .ui-accordion  .ui-widget-content .ui-state-active, .farbe1 .ui-accordion  .ui-widget-header .ui-state-active {
	background:  #0295A1;
}

.farbe1 .ui-accordion .ui-state-default a, .farbe1 .ui-accordion  .ui-state-hover a  {
	background: none;
}

.farbe1 .ui-accordion .ui-state-default a:visited, .farbe1 .ui-accordion .ui-state-default a:hover {
	color: #FFFFFF;
	background: none;
 }

/* FARBE 1 Accordion */

/* FARBE 2 Accordion */
.farbe2 .ui-accordion  .ui-state-default, .farbe2 .ui-accordion  .ui-widget-content .ui-state-default, .farbe2 .ui-accordion  .ui-widget-header .ui-state-default {  
	background: #861155;
}

.farbe2 .ui-accordion .ui-state-active, .farbe2 .ui-accordion  .ui-widget-content .ui-state-active, .farbe2 .ui-accordion  .ui-widget-header .ui-state-active {
	background:  #680437;
}

.farbe2 .ui-accordion .ui-state-default a, .farbe2 .ui-accordion  .ui-state-hover a  {
	background: none;
}

.farbe2 .ui-accordion .ui-state-default a:visited, .farbe2 .ui-accordion .ui-state-default a:hover {
	color: #FFFFFF;
	background: none;
 }

/* FARBE 2 Accordion */

/* FARBE 3 Accordion */

.farbe3 .ui-accordion  .ui-state-default, .farbe3 .ui-accordion  .ui-widget-content .ui-state-default, .farbe3 .ui-accordion  .ui-widget-header .ui-state-default {
	font-family: 'Source Sans Pro', arial, sans-serif !important; 
	font-size: 16px;
	text-transform: normal;
}

.farbe3 .ui-accordion  .ui-state-default, .farbe3 .ui-accordion  .ui-widget-content .ui-state-default, .farbe3 .ui-accordion  .ui-widget-header .ui-state-default {  
	background: #393939;
}

.farbe3 .ui-accordion .ui-state-active, .farbe3 .ui-accordion  .ui-widget-content .ui-state-active, .farbe3 .ui-accordion  .ui-widget-header .ui-state-active {
	background:  #000;
}

.farbe3 .ui-accordion .ui-state-default a, .farbe3 .ui-accordion  .ui-state-hover a  {
	background: none;
}

.farbe3 .ui-accordion .ui-state-default a:visited, .farbe3 .ui-accordion .ui-state-default a:hover {
	color: #FFFFFF;
	background: none;
 }

.farbe3 .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	right: 15px;
	left: auto;
	top: 50%;
	margin-top: -13px;
}

.farbe3 .ui-accordion .ui-accordion-icons {
	padding-left: 2%;
	padding-right: 10%;
}

.farbe3 .ui-accordion-content {
	color: #363636 !important;
}

/* FARBE 3 Accordion */

/* FARBE 4 Accordion */
.farbe4 .ui-accordion  .ui-state-default, .farbe4 .ui-accordion  .ui-widget-content .ui-state-default, .farbe4 .ui-accordion  .ui-widget-header .ui-state-default {  
	background: #c5af20;
}

.farbe4 .ui-accordion .ui-state-active, .farbe4 .ui-accordion  .ui-widget-content .ui-state-active, .farbe4 .ui-accordion  .ui-widget-header .ui-state-active {
	background:  #a58f00;
}

.farbe4 .ui-accordion .ui-state-default a, .farbe4 .ui-accordion  .ui-state-hover a  {
	background: none;
}

.farbe4 .ui-accordion .ui-state-default a:visited, .farbe4 .ui-accordion .ui-state-default a:hover {
	color: #FFFFFF;
	background: none;
 }

/* FARBE 4 Accordion */

/* ----------------- */

/* FARBE 1 Tabs */

.farbe1 .ui-tabs .ui-tabs-panel {
	background: #0295A1;
}

.farbe1 .ui-state-default a, .farbe1 .ui-state-default a:link, .farbe1 .ui-state-default a:visited {
	background: #24b8c4;
	color: #FFFFFF;
}

.farbe1 .ui-state-active a, .farbe1 .ui-state-active a:link, .farbe1 .ui-state-active a:visited, .farbe1 .ui-state-default a:hover {
	color: #FFFFFF;
	background: #0295A1;
}

/* FARBE 1 Tabs */

/* FARBE 2 Tabs */

.farbe2 .ui-tabs .ui-tabs-panel {
	background: #680437;
}

.farbe2 .ui-state-default a, .farbe2 .ui-state-default a:link, .farbe2 .ui-state-default a:visited {
	background: #861155;
	color: #FFFFFF;
}

.farbe2 .ui-state-active a, .farbe2 .ui-state-active a:link, .farbe2 .ui-state-active a:visited, .farbe2 .ui-state-default a:hover {
	color: #FFFFFF;
	background: #680437;
}

/* FARBE 2 Tabs */

/* FARBE 3 Tabs */
/*
.farbe3 .ui-tabs .ui-tabs-panel {
	background: #005159;
}

.farbe3 .ui-state-default a, .farbe3 .ui-state-default a:link, .farbe3 .ui-state-default a:visited {
	background: #106f77;
	color: #FFFFFF;
}

.farbe3 .ui-state-active a, .farbe3 .ui-state-active a:link, .farbe3 .ui-state-active a:visited, .farbe3 .ui-state-default a:hover {
	color: #FFFFFF;
	background: #005159;
}
*/
/* FARBE 3 Tabs */

/* FARBE 4 Tabs */

.farbe4 .ui-tabs .ui-tabs-panel {
	background: #a58f00;
}

.farbe4 .ui-state-default a, .farbe4 .ui-state-default a:link, .farbe4 .ui-state-default a:visited {
	background: #c5af20;
	color: #FFFFFF;
}

.farbe4 .ui-state-active a, .farbe4 .ui-state-active a:link, .farbe4 .ui-state-active a:visited, .farbe4 .ui-state-default a:hover {
	color: #FFFFFF;
	background: #a58f00;
}

/* FARBE 4 Tabs */

/* ----------------- */


/* -- Verschiedene Styles (Rahmen im Backend) -- */

/* -- COOKIES -- */
#cookie-bar {
	background:#111111; 
	color:#ffffff; 
	text-align:center; 
	padding: 5px 0 5px 0; 
	font-size: 10px; 
	font-family: arial;
}

#cookie-bar.fixed {
	position:fixed; 
	top:0px; 
	left:0; 
	width:100%;
}

#cookie-bar.fixed.bottom {
	bottom:0; top:auto;
}

#cookie-bar p {
	margin:0; 
	padding:0;
}

#cookie-bar a {
	color:#ffffff !important; 
	display:inline-block; 
	border-radius:3px; 
	text-decoration:none; 
	padding:0px; 
	margin-left:0px;
}

#cookie-bar .cb-enable {
	background:#ED1C24; 
	margin-left: 8px; 
	padding: 0 5px;
}

/* -- COOKIES -- */

/* ************ SUCHVERSION *********** */

#searchborder {
	background: #f1f1f1;
	padding: 20px 5%;
	margin: 0px;
	float: left;
	display: block;
	clear: both;
	width: 90%;
}

.search_decription {
	padding: 15px 30px 5px;
	background: #A9AF4B;
	border-radius: 35px;
	margin: 15px 0 15px 0;
	color: #fff;
	display: table;
	position: relative;
}

#searchcontent {
	background: #ffffff;
	padding: 10px 5%;
	width: 90%;
	margin-top: 0px;
	float: left;
	display: block;
	clear: both;
}

#text-search {
	width: 100%;
	border: 0px;
	border-bottom: 5px solid #A9AF4B;
	min-height: 100px;
	background: none;
	font-size: 50px;
	font-family: 'Source Sans Pro', arial;
	color: #c9c9c9;
}

.highlight {
    background-color: #A9AF4B;
	color: #fff;
    -moz-border-radius: 5px; /* FF1+ */
    -webkit-border-radius: 5px; /* Saf3-4 */
    border-radius: 5px; /* Opera 10.5, IE 9, Saf5, Chrome */
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7); /* FF3.5+ */
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7); /* Saf3.0+, Chrome */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7); /* Opera 10.5+, IE 9.0 */
    padding:1px 4px;
    margin:0 -4px;
}

/* *** ELEMENTE AUSBLENDEN *** */

#searchborder .headerslide, #searchborder .ui-tabs-nav, #searchborder .tx-jfmulticontent-pi1 h3, #searchborder .owlgalerie #sync2, #searchborder .ui-accordion-header, #searchborder .header, #searchborder .owl-controls {
	display: none !important
}

/* *** ELEMENTE AUSBLENDEN *** */

#searchborder .bereiche {
	margin-top: 0px;
}

#searchborder .oben {
	position: relative;
	width: auto !important;
	float: right !important;
}

#searchborder .logo {
	cursor: default;
	top: -60px;
	right: -30px;
	width: 90px;
	height: auto;
}

/* *** ERSTER BEREICH ABSTAND ENTFERNEN *** */
#searchborder .csc-default:first-child {
	margin-top: 0px !important;
}

#searchborder .bereiche:first-child {
	margin-top: 0px !important;
}

/* *** ERSTER BEREICH ABSTAND ENTFERNEN *** */

/* *** ACCORDION *** */
#searchborder .tx-jfmulticontent-pi1 li {
	display: block;
	float: left;
	clear: both;
	background: none;
}

#searchborder .tx-jfmulticontent-pi1 .ui-widget-content {
	display: block !important;
}

#searchborder.tx-jfmulticontent-pi1 .inhalt_normal, #searchborder .bereiche:first-child .inhalt_normal {
	border: 0px;
}

#searchborder .tx-jfmulticontent-pi1 h2 {
	font-size: 18px;
	color: #15A9B5;
}

/* *** ACCORDION *** */


/* *** SLIDER *** */
#searchborder .arrow {
	display: none !important;
}

#searchborder .owlslider, #searchborder .owlgalerie {
	display: none;
}

/* *** SLIDER *** */

/* *** LIGHTBOX *** */

#cboxCurrent {
	display: none !important;
}

#cboxClose, #cboxPrevious, #cboxNext {
	width: 18px;
	height: 18px;
	text-indent: -999px;
	overflow: hidden;
}

#lightbox  .inhalt_normal, #lightbox  .zentriert{
	margin: 0px;
	padding: 0px;
}

/* *** LIGHTBOX *** */

 .owlslider .inhalt_normal {
	background: #000;
	position: relative;
 }

.owlslider h2 {
	color: #FFF;
	font-family: 'Black Ops One', 'Source Sans Pro', arial;
	font-size: 50px;
 }

.startheader  h1, .startheader  h2 {
	background: none;
	text-shadow: 0px 0px 30px rgba(0,0,0,0.8);
	font-family: 'Black Ops One', sans-serif, arial;
    font-size: 60px;
	padding: 30px 0 30px 0;
	text-align: center;
	width: 100%;
	color: #FFFFFF;
	line-height: 1.3em;
}

.startheader  h2#platzhirsch {
	margin-top: -120px;
}

.mediaconsent {
	position: relative;
}

.mediaconsent .consentoverlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.1);
	padding: 10px;
}

.mediaconsent.accepted .consentoverlay {
	display: none;
}

#tx_cookies_inner form + form button[type="submit"] {
	background: rgba(0,0,0,0.2) !important;
	color: #000;
}

body #tx_cookies{
	z-index: 100
}

#footer + .inhalt_normal, .rahmen + .inhalt_normal{
	padding: 0;
}

/* BEGIN MERGED: xd-page1.css */
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto-v50-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto-v50-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto-v50-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 900 requested; mapped to available bold file */
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto-v50-latin-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Tiles: Der Weg zum Fuehrerschein */
/* #c14 .tx_cn-columns[data-cols="1"] > .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
}

#c14 .tx_cn-columns[data-cols="1"] > .row > div {
  min-height: 340px;
}

#c14 .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen {
  min-height: 340px;
  background: var(--schrift);
  color: var(--uweiss);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#c14 .tx_cn-columns[data-cols="1"] > .row h3 {
  color: var(--uweiss);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
}

#c14 .tx_cn-columns[data-cols="1"] > .row p {
  color: var(--uweiss);
  font-size: 18px;
  font-weight: 300;
  margin: 0;
} */

/* Start page visual implementation */
#oben {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 100px;
  width: calc(100% - 200px);
}

#oben .frame {
  flex: 0 0 auto;
}

#oben .rahmen {
  min-height: auto;
  padding: 0;
}

#oben .frame-type-textmedia{
  position: absolute;
}

#oben .ce-textpic {
  background: #ed1c24;
  padding: 45px 20px;
}

#oben .ce-textpic img {
  width: 266px;
  height: 65px;
  max-width: none;
  display: block;
}

#oben .mob_button {
  display: none;
}

#header {
  position: relative;
  overflow: hidden;
  background: #00142e;
  margin-top: 120px;
}

#header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 320px;
  background: url("../images/header/kurve header.svg") center bottom/contain no-repeat;
  pointer-events: none;
}

#c3 .ce-textpic {
  position: relative;
}

#header .ce-gallery .image-embed-item {
  display: block;
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: clamp(560px, 38vw, 760px);
  object-fit: cover;
}

#header .ce-bodytext p.text-center {
  position: absolute;
  left: 112px;
  bottom: 0;
  transform: translateY(-50%);
  margin: 0;
  width: 580px;
  min-height: 300px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffdd00;
  color: #00142e;
  border: 2px solid #111111;
  box-shadow: 0 0 0 10px #ffdd00;
  border-radius: 25px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.02;
  z-index: 2;
}

#header .headertext {
  position: absolute;
  bottom: 10px;
  left: 100px;
  z-index: 1;
  color: var(--schrift);
  margin: 0;
  font-size: 20px;
}

#inhaltsbereich > .tx_cn-multicontent,
#inhaltsbereich > div.tx_cn-multicontent {
  margin: 0;
  padding: 88px 0;
}

#inhaltsbereich > .frame{
  float: left;
  clear: both;
  width: 100%;
}

#inhaltsbereich > .frame > .rahmen,
#footer > .frame > .rahmen {
  float: none;
  clear: none;
  max-width: var(--xd-max);
  margin: 0 auto;
}

#inhaltsbereich > .frame + .frame:not(.tx_cn-multicontent){
	margin-top: 80px;
}

#c126 {
  background: #00142e;
  color: #ffffff;
}

/* #c126 .tx_cn-columns[data-cols="2"] .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
} */

#c126 h1,
#c126 h2,
#c126 p,
#c126 li {
  color: #ffffff;
}

#c126 h1::after {
  background: #ed1c24;
}

.frame-flipbox {
  background: #ffffff;
}

.frame-flipbox .cn_multicontent_teaser {
  max-width: 700px;
  margin-bottom: 65px;
  /* margin: 24px auto 50px;
  text-align: center; */
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  column-gap: 60px !important;
  row-gap: 60px !important;
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div,
.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100 {
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
  box-sizing: border-box !important;
}


.frame-flipbox .tx_cn-columns[data-cols="1"] > .row{
  counter-reset: step;   /* Zähler bei 0 starten */
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100{
	position: relative;
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100:before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	position: absolute;
	bottom: -55px;
	left: -20px;
	color: var(--grau);
	opacity: 15%;
	font-size: 150px;
	font-weight: 700;
	z-index: 1;
}

#inhaltsbereich:not(.sub) .frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100:not(:last-child) > .frame,
#inhaltsbereich.sub .frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100 > .frame {
	float: none !important;
	margin: 0 !important;
	padding: 26px !important;
	width: 100% !important;
	min-height: 340px;
	/* border-radius: 10px; */
	box-shadow: 0 16px 38px rgba(0, 20, 46, 0.14);
	border-top: 5px solid #ed1c24;
	background: #00142e;
	color: #ffffff;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	position: relative;
}


.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100 > .frame::after{
	content: "";
	position: absolute;
	background: url("/fileadmin/cn_website/images/sync.svg") center center/contain no-repeat;
	width: 50px;
	height: 50px;
	top: 5px;
	right: 5px;
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column-reverse;
	position: initial;
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen > header,
.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen .ce-gallery {
  backface-visibility: hidden;
  transform: rotateY(0deg);
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen > header h3 {
    font-size: 28px;
  	font-weight: 300;
	margin: 0;
	text-align: center;
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen .ce-gallery .ce-row,
.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen .ce-gallery .ce-column {
  display: flex;
  justify-content: center;
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen .ce-bodytext {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    overflow: hidden;
    opacity: 0;
    z-index: 4;
    background: var(--schrift);
	transition: var(--standardtransition);
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame > .rahmen .ce-bodytext p {
  margin: 0;
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div > .frame:hover > .rahmen .ce-bodytext{
  opacity: 1;
}

.frame-flipbox .ce-gallery {
  margin-bottom: 20px;
}

.frame-flipbox .ce-gallery img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

#inhaltsbereich:not(.sub) .frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100:last-child{
	background: var(--rot);
	border-radius: 50%;
	margin-left: 300px !important;
	margin-top: 30px !important;
	width: 250px !important;
	height: 250px !important;
}

#inhaltsbereich:not(.sub) .frame-flipbox .tx_cn-columns[data-cols="1"] > .row  > .col-100:last-child .ce-bodytext{
	opacity: 1 ;
	font-size: 38px;
}

#inhaltsbereich:not(.sub) .frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100:last-child::before,
#inhaltsbereich:not(.sub) .frame-flipbox .tx_cn-columns[data-cols="1"] > .row > .col-100:last-child > .frame::after{
	display: none;
}

#inhaltsbereich:not(.sub) .frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div:last-child > .frame > .rahmen .ce-bodytext{
	background: none;
	opacity: 1;
}

.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div:last-child > .frame > .rahmen .ce-bodytext a{
	color: var(--uweiss);
	font-size: 38px;
	font-weight: 300;
	display: block;
	transition: var(--standardtransition);
	transform: rotate(-15deg);
}
.frame-flipbox .tx_cn-columns[data-cols="1"] > .row > div:last-child > .frame > .rahmen .ce-bodytext a:hover{
	transform: rotate(15deg);
}

#c61 {
  background: #ffffff;
}

#c61 .tx_cn-columns[data-cols="2"] .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

#c61 .col-33 > .frame > .rahmen {
  background: #00142e;
  color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  width: calc(100% - 60px);
}

#c61 .col-33 p,
#c61 .col-33 a {
  color: #ffffff;
}

#c61 .powermail_form {
  background: #f8fafc;
  border: 1px solid #d6dee8;
  border-radius: 10px;
  padding: 24px;
}

#c61 .powermail_input,
#c61 .powermail_textarea {
  border: 1px solid #c5d0de;
  border-radius: 6px;
  padding: 11px 12px;
}

#c61 .powermail_submit {
  background: #00142e;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 700;
}

#footer {
  background: #00142e;
  color: #ffffff;
  border-top: 8px solid #ed1c24;
  padding: 40px 0;
}

#footer a,
#footer p,
#footer li,
#footer span {
  color: #ffffff;
}

.startheader a.t3colorbox, .startheader .youtubelink {
    background: url(../images/play.png) left top no-repeat;
	height: 100px;
	width: 100px;
	margin: 0 auto;
	display: block;
	text-indent: -9999px;
}

.oben:after {
	float: left;
	clear: both;
	content: "";
	width: 100%;
	display: block;
	height: 23px;
	background: url(../images/border.png) repeat-x left top;
}

.schliessen,
.search_close {
	width: 27px;
	height: 27px;
	background: url(../images/close.png) left top no-repeat;
	cursor: pointer;
}

.schliessen {  
	display: block;  
	right: 10px;   
	top: 10px;  
	position: absolute;  
}

.fadebox_button {  
	width: 89px;  
	height: 106px;  
	position: absolute;  
	right: -89px;  
	top: 13%;  
	/* background: url(../images/fade-in.png) left top no-repeat; */
	background: url(../images/fade-in-info.png) left top no-repeat;	
	cursor: pointer;   
	display: none;
}

/* -- Bereich: PFEIL NACH UNTEN -- */
.nachunten,
.nachoben,
.suche {
	width: 56px;
	height: 56px;
	display: none;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.nachunten {  
	background: url(../images/arrow-bottom.png) left top no-repeat;
	margin-bottom: 10px;
}

/* -- Pfeil Nach unten -- */

/* -- Bereich: PFEIL NACH OBEN -- */
.nachoben {  
	background: url(../images/arrow-top.png) left top no-repeat;  
	margin-bottom: 10px;
}

/* -- Pfeil Nach oben -- */

/* -- SUCHEN Button -- */
.suche {
	background: url(../images/suche.png) left top no-repeat;
	background-size: 100% auto;
	text-indent: -9999px;
}

#mapstoggle {	
	background: url(../images/anfahrt-icon.png) center top no-repeat;	
	width: 97px;	
	height: 86px;	
	position: relative;	
	top: -50px;	
	margin: 0 auto;	
	cursor: pointer;
}

.drucklink a {
	float: left;
	display: block;
	background: url(../images/print.png) left top no-repeat;
	height: 25px;
	width: 25px;
	background-size: 100% auto;
	text-indent: -9999px;
	margin: 5px 0;
}

#c397 li {
	background: url(../images/haha.png) left top no-repeat;
	min-height: 41px;
	padding: 10px 0 0 65px ;
    margin-bottom: 30px;
    font-size: 16px;
}

.owl-prev, .owl-next,
.owltext .owl-prev, .owltext .owl-next {
	cursor: pointer;
	overflow: hidden;
	text-indent: -999px;
	position: absolute;
}

.owl-prev, .owl-next {
	background: url(../images/owl-prev.png) left top no-repeat;
	width: 27px;
	height: 51px;
	left: -27px;
}

.owl-next {
	background: url(../images/owl-next.png) right top no-repeat;	
	left: auto;
	right: -27px;
}

.owltext .owl-prev, .owltext .owl-next {
	background: url(../images/slider_pfeile_blau.png) left top no-repeat;
	width: 25px;
	height: 50px;
	left: 5px;
}

/* -- OWL TEXT -- */

/* -- OWL PLUGIN -- */

/* BILDERGALERIE MIT FILTER */

.filtergalerie {
	background: url(../images/background/bg_grau.jpg) left top repeat;
	float: left;
	clear: both;
	display: block;
    padding: 20px 0 60px;
    width: 100%;
}

.farbe3  .owl-prev,
.farbe3  .owl-next {
	position: static;
}

.farbe3  .owl-prev {
	background: url(../images/slider-prev.png) left top no-repeat;
}

.farbe3  .owl-next {
	background: url(../images/slider-next.png) left top no-repeat;
}

.ui-state-default .ui-icon,
.ui-state-active .ui-icon,
.ui-state-hover .ui-icon {
	width: 40px;
	height: 40px;
}

.ui-state-default .ui-icon {
	background: url(../images/smily.png) left top no-repeat !important; 
}

.ui-state-active .ui-icon, .ui-state-hover .ui-icon {
	background: url(../images/smily-zunge.png) left top no-repeat !important; 
}

/* FARBE 2 */

/* BOX HOEHE */
.boxhoehe {	
	background: url(../images/background/bg_orange.jpg) left top repeat;
	color: #FFFFFF;
}

.farbe3 .ui-state-default .ui-icon,
.farbe3 .ui-state-active .ui-icon {
	background: url(../images/sprechblase.png) left top no-repeat !important; 
	width: 37px;
	height: 26px;
}

.search_decription:before {
	content: "";
	background: url(../images/search_bubble.png) left top no-repeat #A9AF4B;
	height: 21px;
	width: 34px;
	position: absolute;
	top: -21px;
	right: 50px;
}

.search_close {
	position: absolute;
    right: 50px;
    top: 50px;
}

#cboxClose,
#cboxClose:hover {
	background: url(../images/lightbox_sprites.png) -36px 0px no-repeat;
}

#cboxPrevious,
#cboxPrevious:hover {
	background: url(../images/lightbox_sprites.png) 0px 0px no-repeat;
	left: 0px;
}

#cboxNext,
#cboxNext:hover {
	background: url(../images/lightbox_sprites.png) -18px 0px no-repeat;
	left: 25px;
}

.owlslider .inhalt_normal:after {
	content: "";
	position: absolute;
	background: url(../images/pattern.png) left top repeat;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
 }

#inhaltsbereich > .frame-layout-20 > .rahmen{
	max-width: 100%;
 }
/* Shared layout for all frame-layout-32 blocks */
.frame-layout-32 {
  background: var(--schrift);
  border-top: 20px solid var(--rot);
  padding-top: 100px;
  padding-bottom: 100px;
}

.frame-layout-32 h1,
.frame-layout-32 h2,
.frame-layout-32 h3,
.frame-layout-32 p,
.frame-layout-32 li,
.frame-layout-32 span,
.frame-layout-32 strong {
  color: var(--uweiss);
}

.frame-layout-32 .ce-textpic {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  width: 100%;
  float: left;
  clear: both;
}

.frame-layout-32 .ce-bodytext {
  order: 1;
  flex: 1 1 auto;
}

.frame-layout-32 .ce-gallery {
  order: 2;
  flex: 0 0 450px;
  max-width: 450px;
}

.frame-layout-32 .ce-gallery .image-embed-item {
  display: block;
  width: 450px;
  max-width: 100%;
  height: auto;
}

.frame-layout-32 a.btn-anmelden {
  display: inline-block;
  background: var(--rot);
  color: var(--uweiss);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border: 2px solid var(--rot);
  border-radius: 4px;
}

.frame-layout-32 a.btn-anmelden:hover,
.frame-layout-32 a.btn-anmelden:focus {
  background: transparent;
  color: var(--uweiss);
}

.tx_cn-columns,
.row,
.tx_cn-columns > .row .frame {
  float: left;
  clear: both;
  width: 100%;
}

.tx_cn-columns > .row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  gap: 1rem; /* optional */
}

.tx_cn-multicontent:not(.frame-flipbox, .frame-kachel) .tx_cn-columns > .row > .col-100 { grid-column: span 6; }
.tx_cn-multicontent:not(.frame-flipbox, .frame-kachel) .tx_cn-columns > .row > .col-66  { grid-column: span 4; }
.tx_cn-multicontent:not(.frame-flipbox, .frame-kachel) .tx_cn-columns > .row > .col-33  { grid-column: span 2; }
.tx_cn-multicontent:not(.frame-flipbox, .frame-kachel) .tx_cn-columns > .row > .col-50  { grid-column: span 3; }
.tx_cn-columns[data-cols="2"] > .row > .col-50 {
  grid-column: span 1;
}

.tx_cn-columns[data-cols="2"] > .row > .col-,
.tx_cn-columns[data-cols="2"] > .row > .col-100 {
  grid-column: 1 / -1;
}

.tx_cn-columns > .row + .row{
	margin-top: 30px;
}


.frame-kachel .tx_cn-columns > .row{
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 60px;
}

.frame-kachel .col-50{
	background: var(--schrift);
	color: var(--uweiss);
}

.frame-kachel .col-50 .ce-bodytext{
	padding: 30px 20px;
	float: left;
    clear: both;
    width: calc(100% - 40px);
}

/* Fuehrerscheinklassen: title box left of content */
.page15 .frame-klasse .rahmen {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 28px 32px;
}

.page15 .frame-klasse header {
  margin: 0;
  flex: 0 0 150px;
}

.page15 .frame-klasse h2 {
  margin: 0;
  width: 150px;
  height: 150px;
  background: var(--schrift);
  color: var(--uweiss);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
}

.page15 .frame-klasse h2 span {
  color: inherit;
  display: block;
}

.page15 .frame-klasse .ce-textpic {
  width: calc(100% - 180px);
}

.page15 .frame-klasse .ce-bodytext,
.page15 .frame-klasse blockquote {
  margin: 0;
}

.page15 .frame-klasse-alt {
  background: #e5e5e5;
}

/* Hide TYPO3 content elements that render without visible content */
header:empty,
.rahmen:empty,
.ce-bodytext:empty,
.cn_multicontent_teaser:empty,
.tx_cn-columns:empty,
.ce-gallery:empty,
.ce-row:empty,
.ce-column:empty,
figure.image:empty {
  display: none;
}

.frame.frame-type-header:has(> .rahmen > header:empty),
.frame.frame-type-textmedia:has(> .rahmen:empty),
.tx_cn-multicontent:has(> .rahmen:empty) {
  display: none;
}
