@charset "UTF-8";
/*_______________________________________________________________________

                 styles.css
                 Layout Typo3 Template "VEM"
                 Thomas Krug, netzrezepte.de, 01.11.2019
   ________________________________________________________________________ */
 
 

 



   
   
/* =======================================================================
         basic structur
   =======================================================================*/
  
 
   
body {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
  background-color: #FFFFFF;
  font-family: "Noto Serif", serif;
  font-size: 1em;
  color: #282828;
}

.clearer {
	clear: both;
}

.piwikcode {
	display: none;
}

/* =======================================================================
         Bootstrap
   =======================================================================*/

@media screen and (min-width:768px){
	/*
    .col-sm-3 {
	    width: 25.9%;
        width: 26%;
	    margin: 0px -15px 0px 0px;
	}
	
	.col-sm-4 {
	    width: 34.2%;
	    margin: 0px -15px 0px 0px;
	}
	
	.col-sm-6 {
	    width: 50.5%;
	    margin: 0px -15px -15px 0px;
	}
    .col-sm-6 {
	    width: 50.5%;
	    margin: 0px -15px -15px 0px;
	}
    */
    
    .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
        padding-right: 7px;
        padding-left: 7px;
    }
    .row {
        margin-right: -7px;
        margin-left: -7px;
    }
	
	.col-sm-extra {
		width: 200% !important;
	}
    
}


.zweispalter.cols-extra-margin > div > div > .CEwrap {
    margin-bottom: 0px;
}
.zweispalter.cols-extra-margin > div > div  iframe {
    margin-bottom: 0px !important;
}


.container-fluid {
    padding-left: 0px;
}

/* =======================================================================
         Text Formtierung
   =======================================================================*/

p {
	font-size: 16px;
  line-height: 1.65;
}

h1 {
	font-family: "Noto Sans", sans-serif;
	font-size: 21px; 
    
    font-size: 35px; 
    color: #003c70;
    margin-top: 30px;
    font-weight: 700;
}

h2 {
	font-family: "Noto Sans", sans-serif;
	font-size: 22px;
	color: #003c70;
    font-weight: 700;
    
    
}

h3 {
	font-family: "Noto Sans", sans-serif;
	font-size: 21px;
    font-weight: 700;
}

h4 {
	font-family: "Noto Sans", sans-serif;
	font-size: 21px;
    font-weight: 700;
}

a {
	color: #0064c8;
}



ul li,
ol li {
	font-size: 20px; 
}




input, button, select, textarea {
     font-size: 16px;
  padding: 7px;  
}


/* homepage */
body#page-4 h2,
body#page-1 h2 {
    font-size: 26px; 
    color: #003c70;
    margin-top: 30px;
    font-weight: 700;
}


/* =======================================================================
         Form
   =======================================================================*/
   
   
/********* input[type='text'] *******************/

.form_input {
	width: 60%;
	display: inline-block;
	background-color: #FFFFFF;
  border: none;
  color: #574a43;
  padding: 5px 20px 5px 20px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
}   

/********* input[type='submit'] *******************/

.form_submit {
	width: 200px;
	display: inline-block;
	background-color: #FFFFFF;
  border: none;
  color: #574a43;
  padding: 5px 48px 5px 48px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
}

   
   
/********** input[type='checkbox'] +*********************/

/* The container */
.stfrom {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.stfrom input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.innerlabel {
	display: inline-block;
	margin: 0px 0px 0px 30px;
}

/* Create a custom checkbox */
.checker {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 28px;
  width: 28px;
  background-color: #003c70;
  border: 3px solid #FFFFFF;
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.stfrom:hover input ~ .checker {
  background-color: #003c70;
}

/* When the checkbox is checked, add a blue background */
.stfrom input:checked ~ .checker {
  background-color: #003c70;
}

/* Create the checker/indicator (hidden when not checked) */
.checker:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checker when checked */
.stfrom input:checked ~ .checker:after {
  display: block;
}

/* Style the checker/indicator */
.stfrom .checker:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/********** Funding Database +*********************/

/*** Select ****/

.fundingForm .fundingForm_select, .fundingForm button {
  width: 200px;
  height: 40px;
  -moz-padding-start: calc(10px - 3px);
  padding-left: 10px;
  background-color: transparent;
  color: #121212;
  font-size: 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  padding: 0px 30px 0px 15px;
  margin: 0px 0px 0px 3px;
}

.fundingForm button {
	width: 100px;
	background-color: #5C105B;
	color: #fff;
	text-align: center;
}

.fundingForm .fundingForm_select option {
	font-size: 16px;
	font-family: "arial";
	padding: 0px 30px 0px 15px;
}

.fundingForm_selectfields {
	float: left;
	margin: 0px 20px 15px 0px;
}

.fundingForm_selectfields button {
	margin: 35px 0px 0px 0px;
}

.select_wrap {
	position: relative;
}

.select_wrap::before {
  content: '↓';
  line-height: 10px;
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 10px;
  width: 5px;
  color: #121212;
  pointer-events: none;
}

.tx-fundingdb table {
	border-spacing: 1px;
	width: 100%;
}

.tx_fundingdb th {
	font-size: 14px;
	background-color: #5C105B;
	color: #fff;
	padding: 5px;
	
}

.tx_fundingdb td, .tx_fundingdb td a {
	font-size: 14px;
	background-color: #003c70;
	color: #fff;
	padding: 5px;
}

.tx_fundingdb ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 15px;
}

.fundingButton {
  font-size: 16px !important;
	color: #5C105B !important;
	margin: 0px 0px 0px 0px;
	letter-spacing: 0.5px;
	padding: 4px 4px 4px 4px !important;
	text-align: center;
	width: 100px;
	height: 30px;
	background-color: #fff !important;
	border-radius: 5px;
	display: block;
	font-family: "Noto Sans", sans-serif;
}

.table-scrollable {
  width: 100%;
  overflow-y: auto;
  margin: 0 0 1em;
}

.table-scrollable::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-scrollable::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, .3);
}



/* =======================================================================
         Position
   =======================================================================*/


.contentCE {
	margin: 0px 0px 15px 0px;
	overflow: hidden;
}
#topBG {
    position: absolute;
    width: 100%;
}
.topLine {
  height: 35px;
/*  background-color: #f3f0f0; */
  position: relative;
  transition: none;
  z-index: 110;
}

.topBGScrolled .topLine {
  height: 0px;
}
/*
.topBG {
	background-color: #f3f0f0;
}
*/

.breadcrumbnav {
    font-family: "Noto Sans", sans-serif;
	font-size: 13px;
	color: #6e6e78;
	/*position: absolute;
	/*left: 0px;
	top: 6px;*/
    margin: 15px 0px;
    padding-left: 15px;
}
.breadcrumbnav b {
    font-weight: 400;
    margin-right: 5px;
}
.breadcrumbnav a {
       color: #6e6e78; 
}

.arrow {
	border: 10px solid #f3f0f0;
	font-size:0;line-height:0;height:0;padding:0;margin:0;
	position: absolute;
	left: 50px;
	bottom: -20px;
}

.arrow.down {
	border-right-color:  transparent;
	border-bottom-color: transparent;
	border-left-color:   transparent;
}

.rightcol img {
	max-width: 100%;
	height: auto;
}


/************ Anzeigen von Elementen **********/

.navbar-smallmedia {
	display: none;
	background-color: transparent;
	border: none;
}

.mobil-topline {
	display: none;
}

.smallmedia_langnavi {
	position: absolute;
	top: -3px;
	right: 40px;
}

.smallmedia_langnavi p a {
	float: left;
	font-size: 14px;
	font-weight: normal;
	margin: 0px 8px 0px 0px;
	font-family: "FrutigerRoman";
}
	
	
/************ Brotkrumennavigation ************/

.breadcrumbnav {
	
}


/************ Topnavigantion ******************/

.headerNavi {
	position: absolute;
	right: -16px;
	top: 0px;
	font-size: 15px;
    z-index: 100;
    font-family: "Noto Sans", sans-serif;
}

.headerNavi ul {
	list-style-type: none;
	margin: 0px 15px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.headerNavi ul li {
	margin: 0px;
	padding: 0px 0px 0px 0px;
	float: left;
	color: #FFFFFF;
}

.headerNavi ul li:hover > ul {
    visibility: visible;
}

.headerNavi ul li a, .headerNavi ul li span {
	display: block;
	color: #6e6e78;
	font-size: 13px;
    padding: 0px 9px 0px 9px;
    margin: 1px 0px 1px 0px;
	
	cursor: pointer;
	letter-spacing: 0.03em;
    
    
}

.navigationarea ul li a.act, .headerNavi ul li span:hover  {
	text-decoration: none;
}
.headerNavi ul li a:hover {
    color: #003c70;
}

.headerNavi ul li.navi-suche a {
	padding: 0px 0px 0px 40px;
	margin: 0px 0px 0px 0px;
    position: relative;
    top: 0px;
}
.headerNavi ul li.navi-suche a img {
     width: 20px;   
}

.headerNavi ul li.navi-sprache {
	
}

.headerNavi ul li.navi-sprache-first a {
	padding: 0px 10px 0px 10px;
	border-right: 1px solid #3d424e;
}

/** 2. Ebene - Dropdown **/
.headerNavi ul li ul {
	background-color: transparent;
	opacity: 1; 
	filter:Alpha(Opacity=100);
	padding: 10px 0px 0px 0px;
  position: absolute;
  z-index: 120;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	height: 0px;
	overflow: hidden;
    
}

.headerNavi ul li:hover > ul {
    background-color: #fff;  
    border: 1px solid #eeecec;
    height: auto;
    border-radius: 4px;
}

.headerNavi ul li ul li {
    float: none;
}

.headerNavi ul li ul li a {
    color: transparent;
    transition: all .3s ease;
    padding: 0px 15px 10px 10px;
}

.headerNavi ul li:hover > ul li a {
    color: #6e6e78;
}
.headerNavi ul li > ul li a:hover {
    color: #003c70;
}

.mobilonly {
	display: none;
}

header#mainheader {
    position:  fixed;
    background-color:  #fff;
    height: 115px;
    transition: all .3s ease;
    z-index: 10;
    top: 0px;
width: 100%;
}
header#mainheader.mainheaderScrolled {
    height: 100px;
}

/*************** logoarea ****************/

.logoline {
	transition: none;
	position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100;
  background-color: transparent;
    padding-top: 5px;
}
#logoline {
 position: relative;
    z-index: 121;
}
#logoline.logolineScrolled .logoline {
  position: fixed;
  top: -6px;
  width: 100%;
  z-index: 100;
}
#logoline .logoarea {
	height: 104px;
	background-color: transparent;
    
	/*transition: all .3s ease;*/
    
    display: flex;
  justify-content: space-between;
  align-items: center;
}

#logoline.logolineScrolled .logoarea {
	height: 90px;
	background-color: #FFFFFF;
}

p.mainteaser a {
	display: block;
	position: absolute;
	/*left: 0px;*/
	top: 30px;
	color: #5c105b;
	font-size: 20px;
  font-family: "Noto Sans", sans-serif;
  transition: 1s;
}
p.mainteaser a:hover {
	text-decoration: none;
}

.logolineScrolled p.mainteaser {
	top: 30px;
	font-size: 20px;
}

span.subteaser {
	display: block;
	font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  color: #000000;
  margin: -5px 0px 0px 0px;
}

.logo {
	display: block;
    /*
    transition: all .3s ease;
    transform-origin: left top;
    */
    
    position: relative;
  top: 5px;
}
.logo a {
	display: inline-block;
    
}
.logo a:hover {
    text-decoration:  none;
    outline: none;
}

.logolineScrolled .logo {
	transform: scale(.9);
}

.logo img {
	width: auto;
	transition: none;
	height: 90px;
}

.subline {
    font-size: 22px;
    font-weight: 600;
    color: #5c105b;
    display: inline-block;
    position: relative;
    top: 22px;
    left: 10px;
}






.mainnavispendenbutton {
    /*   position: absolute;
right: 15px;
top: 50%; */
/*    margin-left: auto; */
}


/*************** navigationarea ************/
#navigationline {
    position: relative;
    z-index: 100;
}

.navigationline {
	transition: none;
	z-index: 1;
    transition: all .5s ease;
}

.navigationlineScrolled .navigationline {
	margin: 0px 0px 0px 0px;
	position: fixed;
	top: 84px;
	width: 100%;
	height: 49px;
	z-index: 100;
}

.navigationarea {
	position: relative;
    width: 100%;
    
  
    
    height: 100% !important;
}




/*************** megamenü*********/

nav {
  position:relative;
  width: 100%;
  font-size: 22px;
  font-family: "Noto Sans", sans-serif;
  margin-left: -7px;
  margin-right: -7px;
}

.navigationlineScrolled nav {
	font-size: 18px;
}

/* first stage */

nav > ul {
  position: relative;
  display: flex;
  margin: 0 auto;
  padding: 0;
}

nav a, nav span {
  display: block;
  color: #003c70;
  text-decoration: none;
  cursor: default;
    white-space: nowrap;
    font-weight: 700;
}
nav a {
cursor: pointer;
}


nav ul li {
  color: #fff;
  list-style: none;
/*  transition: 1s; */
}

nav > ul > li > a, nav > ul > li > span {
  padding: 45px 25px 35px;
  z-index: 90;
}

/*
.navigationlineScrolled nav > ul > li > a, .navigationlineScrolled nav > ul > li > span {
	padding: 15px 25px 15px 25px;
	height: 57px;
}
*/

nav > ul > li:hover 
  border-bottom: 3px solid #dddee1;
  /*
    border-left: 1px solid #dddee1;
  border-right: 1px solid #dddee1;
    */
}

nav > ul > li.mainnavispendenbutton:hover {
  background: transparent;
  margin-top: 0px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}



.mainnavispendenbutton img {
	height: 33px;
	width: auto;
	transition: 1s;
}

.navispendenbutton {
	
}

a.navispendenbutton, a.navispendenbutton:hover {
	font-size: 17px;
	color: #003c70 !important;
	margin: 0px;
	padding: 9px 25px !important;
	text-align: center;
	background-color: #ffe369;
	border-radius: 20px;
	display: block;
	font-family: "Noto Sans", sans-serif;
    position:  relative;
    top: 7px;
    font-weight: 700;
    text-decoration: none;
}
a.navispendenbutton:hover {
    background-color: #ffe880;
    color: #004098 !important;
}


/*
.navigationlineScrolled nav > ul > li > a.navispendenbutton, .navigationlineScrolled nav > ul > li > a.navispendenbutton:hover {
	font-size: 16px;
	color: #5C105B !important;
	margin: 13px 0px 0px 15px;
	letter-spacing: 0.5px;
	padding: 4px !important;
	text-align: center;
	width: 200px;
	height: 30px;
	background-color: #f3ba18;
	border-radius: 5px;
	display: block;
	font-family: "Noto Sans", sans-serif;
}

.navigationlineScrolled .mainnavispendenbutton img {
	height: 23px;
}*/


nav > ul > li:hover > span {
    text-decoration: underline #B4D0EE 3px;
}

nav > ul > li:hover a {
}
/*
.navigationlineScrolled nav > ul > li:hover span {
  padding-top: 25px;
  padding-bottom: 15px;
}

nav > ul > li.mainnavispendenbutton:hover a {
  color: #000000;
  padding-top: 25px;
  padding-bottom: 25px;
}


.navigationlineScrolled nav > ul > li.mainnavispendenbutton:hover a {
  padding-top: 15px;
  padding-bottom: 25px;
}
*/

/* second stage (mega-menu) */

nav ul.megamenu {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  width: 1210px;
  top: 115px;
  left: 50%;
  padding: 0px 0px 0px px;
  background: #f8f6f6;
  text-align: ;
  z-index: 9;
  transition: .3s;
  opacity: 0;
  overflow: auto;
  height: 0px;
    
    transform: translateX(-50%);
    
}
.pageScrolled nav ul.megamenu {
  top: 100px;
}

.navigationlineScrolled nav ul.megamenu {
	top: 46px
}

nav ul li:hover ul.megamenu {
  opacity: 1;
    height: auto;
  /* height: 700px; JWBDV TODO ok? */
}

/* third stage (child-menus in the mega-menu) */

nav ul.megamenu ul {
  width: 100%;
  margin-bottom: 0px;
  color: #000;
  box-shadow: none;
    padding: 0px;
    /* height: 70vh; */
    overflow-y: auto;
    margin: 27px 0px 15px;
}

nav ul.megamenu ul li {
  display: block;
  float: left;
  margin: 0px 15px 20px 0px;
}

nav ul.megamenu ul li a {
  margin: 0px;
  padding: 0px !important;
  transition: 0.5s;
  color: #FFFFFF;
  width: 272px;
  height: 210px;
  overflow: hidden; 
  display: block;
  position: relative;
  border: 0px solid #dddee1;
  
    border-top-left-radius:  6px;
        border-top-right-radius:  6px;
  
}

nav ul.megamenu ul li a img {
	width: 100%;
	height: auto;
}

nav ul.megamenu ul li a span {
	display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: #fff;
  width: 100%;
  color: #003c70;
  font-size: 16px;
  padding: 6px 12px;
  height: 50px;
    display: flex;
align-items: center;
  line-height: 1.2;
   
}


nav ul.megamenu ul li a:hover {
  
}
nav ul.megamenu ul li a:hover span {
    cursor: pointer;
    text-decoration: underline #B4D0EE 3px;
}

nav ul.megamenu ul li a img {
    
}

nav ul.megamenu ul li a:hover img {
    opacity: .9;
}

/*
nav ul.megamenu ul li a:hover span {
  opacity: .9;
} */


/*************** contentarea ***************/

.contentline {
	margin-top: 115px;	
    background-color: #f8f6f6 ;
    padding-bottom: 100px;
    position: relative;
}

.contentlineScrolled .contentline {
	margin-top: 180px;	
}

.contentarea {
	position: relative;
	margin: 0px 0px 20px 0px;
}

body.pageScrolled #contentline {
    margin-top: 153px;
}

/*
body.menuopen #contentline {
    opacity: .3;
}
body.menuopen .contentline {
    background-color: #282828;
}
*/

#bg-hover {
  display: none;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  z-index: 1;
}
body.menuopen #bg-hover {
    opacity: .5;
    display: block;
}


/************** scrollupline ***********/

.scrollupline {
	margin: 0px 0px -24px 0px;
	text-align: center;
	background-color: #003c70;
}


/*************** footerarea ************/

.footerlogo img {
    width: auto;
    height: 90px;
}

.footerline {
	background-color: #eeecec;
    padding-top: 40px;
}

.footerarea {
  position: relative;
  overflow: hidden;
  padding: 30px 0px 30px 0px;
  font-family:  "Noto Sans", sans-serif;
}

.footerarea ul {
	list-style-type: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.footerarea ul li {
	float: none;
	color: #FFFFFF;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
.footerarea ul li h4 {
    margin-bottom: 5px;
}

.footerarea ul li h4 a {
	color: #6e6e78;
	font-size: 20px;
}
.footerarea ul li a {
	color: #6e6e78;
	font-size: 15px;
}


.footerarea ul li ul  {
	padding: 10px 0px 0px 0px;
}

.footerarea ul li ul li {
	float: none;
	font-size: 12px;
	width: 100%;
	padding: 0px 0px 2px 0px;
}

.footerarea ul li ul li a {
	font-size: 15px;
}
.footerarea ul li ul li a:hover {
    color: #003c70;
}



body.lang-de .footer-btn-en {
   display: none;
}
body.lang-en .footer-btn-de {
   display: none;
}

/*************** contactarea ************/

.contactline {
	background-color: #eeecec;
	padding: 0px 0px 60px 0px;
    font-family: "Noto Sans", sans-serif;
}

.lang-de .contactline-en {
    display: none;
}
.lang-en .contactline-de {
    display: none;
}


.contactarea {
	position: relative;
}
.contactarea b {
    font-weight: 400;
}
.contactarea h4 {
	font-size: 20px;
	color: #6e6e78;
}

.contactarea p {
	font-size: 15px;
	color: #6e6e78;
    margin-bottom: 3px;
}

.contactarea .icon {
	display: inline-block;
	margin: 0px 5px 0px 0px;
}







.footer-logoline {
	background-color: #eeecec;
	padding: 0px 0 20px 0;
}
.content-logos {
	display: flex;
	justify-content: start;
	align-items: center;
    gap: 50px;
    padding: 30px 0px 20px;
    border-top: 3px solid #dcdcdc;
}
.content-logos img {
	
}
@media screen  and (max-width:767px){
	.content-logos {
        justify-content: center;
			flex-direction: column;
        
        align-items: baseline;
        padding: 30px 20px 20px;
	}
    
}


/*************** bottomtarea ************/

.bottomline {
	min-height: 70px;
	background-color: #dcdcdc;
    font-family:  "Noto Sans", sans-serif;
}

.bottomarea {
	position: relative;
}

.bottomnavigation ul {
	list-style-type: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.bottomnavigation ul li.first a {
 padding-left: 0px;   
}
.bottomnavigation ul li {
	margin: 0px;
	padding: 0px 0px 0px 0px;
	float: left;
	color: #6e6e78;
}

.bottomnavigation ul li:hover > ul {
    visibility: visible;
}

.bottomnavigation ul li a, .bottomnavigation ul li span {
	display: block;
	color: #6e6e78;
	font-size: 15px;
	padding: 25px 10px 5px 10px;
	font-weight: normal;
	cursor: pointer;
	letter-spacing: 0.03em;
}

.bottomnavigation ul li a:hover, 
.bottomnavigation ul li a.act, 
.bottomnavigation ul li span:hover  {
	text-decoration: underline;
    color: #003c70;
}

/*************** logos ************/

.bottomsiegel .DZIsiegel {
	width: auto;
	height: 40px;
	display: block;
	margin: 15px 15px 0px 40px;
	float: left;
}

.bottomsiegel .actAllianceLogo {
	display: block;
	margin: 15px 0px 0px 0px;
}

.bottomsozialmedia {
	text-align: right;
	margin-right: -15px;
}

.Footerbutton {
	margin: 15px 15px 0px 0px;
}



/* =======================================================================
         Contentelemente 
   =======================================================================*/
   
.CEwrap {
	margin: 0px 0px 15px 0px;
	/*overflow: hidden;*/
}

h1.ce_header {
	float: left;
	margin: 100px 0px 50px 0px;
    font-size: 35px;
    color: #003c70;     
    font-weight: 700;
}

.ce_headerlink {
	float: right;
	font-size: 16px;
	color: #1a181d;
	margin: 15px 0px 10px 0px;
    
    position: absolute; 
    right: 10px;
    bottom: 0px;
    
    
}

.ce_headerlink a {
	color: #003c70;
    font-family: "Noto Sans", sans-serif;
}


.header_mit_link {
    margin: 100px -7px 45px -7px; 
}

.header_mit_link h1.ce_header {
	margin: 0px 0px 0px 0px;
    font-size: 35px;
    color: #003c70;
    font-weight: 700;
}

.header_mit_link .ce_headerlink {
	margin: 0px 0px 0px 0px;
    
}


.row.dreispalter .CEwrap {
    margin: 0px 0px 0px 0px;
}


.BGColor {
	background-color: #003c70;
	border-radius: 5px;
	padding: 15px 0px 15px 0px;
    margin-bottom: 15px;
}

.BGColor .frame-type-textmedia {
	margin: 0px 15px 0px 15px !important;
}

.BGColor h1, .BGColor h2, .BGColor h3, .BGColor h4, .BGColor p {
	color: #FFFFFF;
}

.BGColor a {
	color: #FFFFFF;
	text-decoration: underline;
}



.equal-height-container {
    display: flex !important;
}
.equal-height-container > * {
    height: inherit !important;
}
.equal-height-container .inbox {
     height: 100%;
    display: flex;
    flex-direction: column;
}
.equal-height-container .BGColor {
    margin-bottom: 0px;
    flex: 1;
}


.equal-height-container > div > div > .CEwrap {
    margin-bottom: 0px;
    padding-bottom: 0px;
    height: 100% !important;
}
.potcast-extra h3 {
    font-family: "Noto Serif", serif;
    font-size: 24px;
}
#c10257 .CEwrap {
    margin-bottom:  0px;
}





































   
/************* Newsboxen, Spendenzielbox ****************/
   
.newsboxteaserbox {
	margin: 0px 15px 0px 0px;
	width: 100%;
	position: relative;
	overflow: hidden;
    background-color: #fff;
    display: flex;
  flex-direction: column-reverse;
    font-family: "Noto Sans", sans-serif;
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
}
.newsboxteaserbox .randlos {
  margin: 0px -25px 0px -25px;
}

.catmarker {
	display: inline-block; 
	margin: 20px 10px 0px 0px;
	font-size: 20px;
}

.newsboxteaserbox .catmarker {
    order: 3;
    font-weight: 600;
    font-size: 16px;
}
.newsboxteaserbox .randlos {
    order: 3;
}

.newsboxteaserbox h3 {
	padding: 0px;
	margin: 10px 0px 0px 0px;
	font-size: 23px;
    font-weight: 700;
    font-family: "Noto Sans", sans-serif;
    color: #003c70 !important;
    order: 2;
}
.newsboxteaserbox h3 a {
    color: #003c70;
}
.newsboxteaserbox p {
    margin-top: 10px;
}

.spendenzieltext {
	padding: 0px;
	margin: 12px 0px 0px 0px;
	font-size: 16px;
}

.spendenzielprozent {
	color: #003c70;
}

.randlos {
	padding: 0px;
	margin: 0px -15px 0px -15px;
}

.spendenzielbalken {
	padding: 0px;
	margin: 12px 0px 0px 0px;
	background-color: #003c70;
	width: 75%;
	height: 8px;
}

.newsboxteaserbox img {
	width: 100%;
	height: auto;
}

/************* Suche ***********/

.tx-indexedsearch-searchbox {
	background-color: #D5E1F1;
	border-radius: 6px;
	width: 100%;
	padding: 35px;
	margin: 0px 0px 0px 0px;
    font-family: "Noto Sans", sans-serif;
}

.tx-indexedsearch-searchbox legend {
	color: #003c70;
	border: none;
}

.tx-indexedsearch-form {
	float: left;
}

.tx-indexedsearch-searchbox label {
	color: #FFFFFF;
	font-size: 18px;
    display: none;
}

input.tx-indexedsearch-searchbox-sword {
	width: auto;
	border-radius: 16px;
	display: inline-block;
	padding: 7px 23px;
	margin: 0px 10px 10px 0px;
	font-size: 18px;
	color: #574a43;
	border: none;
}

.tx-indexedsearch-search-submit {

}

input.tx-indexedsearch-searchbox-button {

	border-radius: 18px;
	background-color: #003c70;
	font-size: 16px;
	color: #fff;
	border: none;
    font-weight: 700;
    
    padding: 8px 25px;
}

.tx-indexedsearch-description {
	margin: 0px 0px 0px 15px;
}

.tx-indexedsearch-browsebox li {
	float: left;
	display: inline-block;
	margin: 10px 10px 20px 0px;
	font-size: 16px;
}

.tx-indexedsearch-info-sword {
	font-size: 20px;
	margin: 20px 0px 10px 0px;
}

.tx-indexedsearch-res {
	clear: both;
}

/*********** Login ****************/

.felogin_message {
	font-size: 14px;
}

.felogin-fields label {
	display: inline-block;
	width: 130px;
	font-size: 14px;
	margin: 0px 0px 15px 0px;
}

.felogin-fields input {
	font-size: 14px;
	border-radius: 3px;
}


/************* Spendenbox ****************/

.spendenbox {
	background-color: #ffeb8a;
	border-radius: 6px;
	width: 100%;
	padding: 15px 35px ;
	margin: 0px 0px 0px 0px;
    
    margin-top: 100px;
}

.spendenboxtext {
	font-family: "Noto Sans", sans-serif;
	font-size: 18px;
	color: #282828;
	padding: 20px 0px 0px 0px;
	clear: both;
}

.spendenbox_teasertext h3 {
  font-size: 32px;
  color: #003c70;
  padding: 0px 20px 10px 0px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}

a.spendenbetrag {
	border-radius: 24px;
	border: 2px solid #003c70;
	float: left;
	display: block;
	height: 47px;
	padding: 3px 30px 0px 30px;
	margin: 0px 15px 15px 0px;
	font-size: 25px;
	color: #003c70;
	font-family: "Noto Sans", sans-serif;
	font-weight: bold;
    background-color: #ffeea5;
    
}

a.spendenbetrag:hover {
	background-color: #ffe369;
	color: #003c70;
	text-decoration: none;
}

.spendenbox .weiterbutton {
	font-size: 24px;
	color: #003c70;
	margin: 0px 0px 0px 0px;
	letter-spacing: 0.5px;
	padding: 3px 30px 0px 30px;
    height: 47px;
	text-align: center;
	width: auto;
	background-color: #FFFFFF;
	border-radius: 25px;
	display: block;
	font-family: "Noto Sans", sans-serif;
	float: left;
    border: 2px solid #003c70;
}

.spendenbox .weiterbuttonspenden {
		background-color: #ffffff;
		color: #003c70;
    font-weight: 700;
}
.spendenbox .weiterbuttonspenden:hover {
background-color: #ffe369;
    color: #003c70 !important;
    text-decoration: none;
}
.spenden-rows {
    display: flex;
    font-size: 22px;
    font-family: "Noto Sans", sans-serif;
}
.spenden-col {
    flex: 1;
}
.spenden-rows h3 {
    margin-bottom: 0px;
}
.spenden-rows p {
    font-size: 22px;
    margin-bottom: 5px;
}


.spenden-img-de {
    width: 90px;
  float: left;
  position: absolute;
  top: -25px;
}
.spenden-img-en {
    width: 150px;
    position: relative;
    left: -20px;
}
.lang-de .spendenbox_teasertext h3 {
    margin-left: 100px;
}
.lang-en .spendenbox_teasertext h3 {
     font-size: 26px;   
}
.spenden-col:nth-child(1) {
    text-align: center;
}
.lang-en .spendenbox {
	padding: 50px 35px ;
}


/************* Themen Boxen ***************/

.themenboxes {
	display: table;
    font-family: "Noto Sans", sans-serif;
}
.themenbox {
	margin: 0px;
	position: relative;
	width: 34.2%;
   width: 33.3%;
    
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
}
.themenbox-inner-wrap {
    
    display: table;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
}
.themenbox-inner {
    padding: 25px 25px;
    
    
}
.themenbox-inner h3 {
    font-size: 22px;
    color: #003c70;
    font-family: "Noto Sans", sans-serif;
    margin-top: 0px;

}
@media screen and (max-width: 991px) {
    .themenbox-inner h3 {
           word-break: break-all; 
    }
}
.themenbox_imagearea {
	height: auto;
/*	overflow: hidden; */
}

.themenbox_imagearea img {
	width: 100%;
	height: auto;
}

/************* newsletterbox ****************/

.newsletterbox {
	background-color: #003c70;
	border-radius: 5px;
	width: 100%;
	padding: 20px 0px 20px 20px;
	margin: 0px 0px 0px 0px;
}

.newsletterbox a {
	color: #FFFFFF;
	text-decoration: underline;
}

.newsletterbox a:hover {
	text-decoration: none;
}

.newsletterboxtext {
	font-size: 14px;
	color: #FFFFFF;
	margin: 20px 0px 0px 0px;
}

.newsletterbox h4, .newsletterbox p {
	color: #FFFFFF;
}

.newsletterbox label {
	color: #FFFFFF;
	font-size: 18px;
	font-family: "FrutigerRoman";
	font-weight: normal;
	display: inline-block;
	padding: 1px 30px 0px 10px;
}

.newsletterbox .form_input {
	width: 450px;
	margin: 5px 10px 10px 0px;
}

/************* blauebox ****************/

.download-con {
    overflow: hidden;
}

.blauebox {
	background-color: #d3e1f4;
	width: 100%;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
    border-radius: 6px;
    font-family: "Noto Sans", sans-serif;
    height: 400px;
}

.blauebox_textarea {
	padding: 35px;
}

.blauebox_textarea h4 {
	color: #003c70;
	font-size: 26px;
    font-weight: 700;
	font-family: "Noto Sans", sans-serif;
}

.blauebox_textarea p {
	color: #003c70;
}

.blauebox_textarea a.weiterbutton {
	font-size: 16px;
	color: #fff;
	margin: 20px 0px 0px 0px;
	letter-spacing: 0.5px;
	padding: 8px 25px;
	text-align: center;
	width: auto;
	background-color: #003c70;
	display: inline-block;
    border-radius: 20px;
    font-weight: 700;
    /*
	background-image: url(../Images/download-icon.png);
	background-repeat: no-repeat;
	background-position: 20px 13px;
    */
}
.blauebox_textarea a.weiterbutton:hover {
background-color: #004098;
    color: #ffffff;
}

.blauebox .blauebox_bildarea {
    /*
    width: 500px;
    height: 450px;
    overflow: hidden;
    padding: 0px 0px 0px 100px;
    float: right;
    margin-top: -130px;
    */
    width: 500px;
height: 420px;
padding: 5px 0px 0px 40px;
float: right;
margin-top: 0px;
}

.blauebox .blauebox_bildarea img {
    /*
    vertical-align: middle;
    transform: scale(0.6);
    transform: rotate(60deg);
    transform: skew(20deg,0deg) rotate(70deg);
    margin: 199px 0px 0px 0px;
    box-shadow: 10px 10px 6px #323232;
    padding: 30px 0px 0px 0px;
    width: 400px;
    height: 400px;
    */
    vertical-align: middle;
transform: 0px 0px 0px 0px;
transform: rotate(7deg);
margin: 0px 0px 0px 0px;
box-shadow: auto;
padding: 30px 0px 0px 0px;
width: 400px;
height: auto;
    position: relative;
    top: -40px;
}







.dce-newsletter-box {
    
}
.dce-newsletter-box-con {
    background-color: #d3e1f4;
    border-radius: 6px;
    font-family: "Noto Sans", sans-serif;
    
 /* float: left;*/
    width: 100%;
    padding: 35px 0px;
    display: flex;
}
.dce-newsletter-box-con h3 {
    font-size: 26px;
  color: #003c70;
}
.dce-newsletter-box-img {
    width: 200px;
    margin: auto;
}
.dce-newsletter-box-con .col-sm-4 {
    padding: 40px;
    display: flex;
  text-align: center;
}
.dce-newsletter-box-con .col-sm-6 {
    padding: 40px;
}
.dce-newsletter-box-txt ul {
    padding-left: 18px;
}
.dce-newsletter-box-con .weiterbutton {
    font-size: 16px;
  color: #fff;
  margin: 20px 0px 0px 0px;
  letter-spacing: 0.5px;
  padding: 8px 25px;
  text-align: center;
  width: auto;
  background-color: #003c70;
  display: inline-block;
  border-radius: 20px;
  font-weight: 700;
    width: fit-content;
}
.dce-newsletter-box-con .weiterbutton:hover,
.dce-newsletter-box-con .weiterbutton:focus {
     text-decoration: none;
    background-color: #004098;
    color: #ffffff;
}
.dce-newsletter-box-con .col-sm-6 {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex: 1;
}
.dce-newsletter-box-btns h3 {
     margin-bottom: 0px;   
}
.dce-newsletter-box-btns {
    display: flex;
}
.dce-newsletter-box-btns div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dce-teaser-box {
    
    
}
.dce-teaser-box-blue {
    background-color: #d3e1f4;
  width: 100%;
  padding: 35px;
  border-radius: 6px;
  font-family: "Noto Sans", sans-serif;
    margin-bottom: 20px;
    float: left;
  width: 100%;
  padding: 35px;
 
}
.dce-teaser-box-blue-img {
    max-width: 50%;
  height: auto;
    float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}
.dce-teaser-box-blue-txt {
    
}

.dce-teaser-box .weiterbutton {
    font-size: 16px;
  color: #fff;
  margin: 20px 0px 0px 0px;
  letter-spacing: 0.5px;
  padding: 8px 25px;
  text-align: center;
  width: auto;
  background-color: #003c70;
  display: inline-block;
  border-radius: 20px;
  font-weight: 700;
}
.dce-teaser-box .weiterbutton:focus,
.dce-teaser-box .weiterbutton:hover {
     text-decoration: none;
    background-color: #004098;
    color: #ffffff;
}






.dce-box-big {
    margin-top: 70px;
    margin-bottom: 0px;
    margin-left: 35px;
    margin-right: 35px;
    font-family: "Noto Sans", sans-serif;
    color: #003c70;
}
.dce-box-big .col-sm-6:first-child {
    display: flex;
    flex-direction: column;
}
.dce-box-big-img {
    width: 100%;
    height: auto;
}
.dce-box-big-txt {
    line-height: 1.6;
}

.dce-box-big .weiterbutton {
    font-size: 16px;
  color: #fff;
  margin: 20px 0px 0px 0px;
  letter-spacing: 0.5px;
  padding: 8px 25px;
  text-align: center;
  width: auto;
  background-color: #003c70;
  display: inline-block;
  border-radius: 20px;
  font-weight: 700;
    width: fit-content;
}
.dce-box-big .weiterbutton:hover {
    text-decoration: none;
    background-color: #004098;
    color: #ffffff;
}




/************** videobox ***************/

.videobox {
	border: 1px solid #dddee1;
	border-radius: 5px;
}

.videobox_videoarea {
	margin-left: -15px;
	margin-right: -15px;
}

.videobox_iframe {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.videobox_textarea {
	padding: 15px 10px 15px 15px;
}

.videobox_textarea h4 {
	font-size: 24px;
	color: #003c70;
	margin: 15px 0px 0px 0px;
	font-family: "Noto Serif", serif;
}

.videobox_textarea p {
	margin: 15px 0px 0px 0px;
	font-size: 16px;
}

.videobox_textarea .videobox_weiterbutton a {
	font-family: "Noto Sans", sans-serif;
	font-size: 18px;
}

/************** bildbox ********************/

.bildbox {
	border: 1px solid #dddee1;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.bildbox_bildarea {
	margin-left: -15px;
	margin-right: -15px;
}

.bildbox_bildarea img {
	width: 100%;
	height: auto;
}

.bildbox_textarea {
	padding: 15px 0px 15px 30px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	/* height: 88px; JWBDV */
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color: #FFFFFF;
	background-image: url(../Images/abdunkler.png);
}

/*************** dreierbox ***************/

.dreierbox {
	padding: 0px;
    height: 100%;
    font-family: "Noto Sans", sans-serif;
}

/*
.dreierbox_gross {
	background-color: #d3e1f4;
}
*/
.dreierbox_klein {
    padding-top: 10px;
    background-color: #fff;
}

p.dreierbox_datum {
	color: #6e6e78;
	font-family: "Noto Sans", sans-serif;
	font-size: 15px;
}
.dreierbox_teasertext {
}
p.dreierbox_cat {
	color: #9e9e9e;
	font-size: 13px;
	text-transform: uppercase;
	margin: 0px 0px 0px 0px;
}

.dreierbox_gross h3.dreierbox_h3 {
	color: #321404;
	font-family: "Noto Sans", sans-serif;
	font-size: 35px;
    font-size: 24px;
}

.dreierbox_gross p {
    
}


.dreierbox_klein h3.dreierbox_h3 {
	color: #003c70;
	font-family: "Noto Sans", sans-serif;
	font-size: 26px !important;
    margin: 0px 0px 15px 0px;
    font-weight: 700;
}
.dreierbox_mehrlesen {
    margin-top: 20px;
    margin-bottom: 20px;
}
.dreierbox_gross .dreierbox_mehrlesen a {
}

.dreierbox_klein .dreierbox_mehrlesen a {
}

.dreierbox_image {
	width: 100%;
	height: auto;
}

.dreierbox_image img {
	width: 100%;
	height: auto;
}
.dreierbox_txt {
    padding: 25px;
}

.dreierbox_row {
    display: flex;
    height: 100%;
}
.dreierbox_row .col-sm-6,
.dreierbox_row .col-sm-3 {
    display: table-cell;
    float: none;
    vertical-align: top;
    height: 100%;
}
.dreierbox_klein {
    height: 100%;
    padding: 25px;
}


.pressebox_row .dreierbox_gross p a {
}


/************* OpenStreetMaps Karte ****************/

.leaflet-container {
	z-index: 1;
}

/************* socialmedia-sideicons ***************/

.socialmedia-sideicons {
	position: fixed;
  top: 310px;
  right: 0px;
  width: 45px;
  z-index: 100;
  background-color: #FFFFFF;
  border: 1px solid #dddee1;
  border-right: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	padding: 20px 10px 10px 10px;
}

.socialmedia-sideicons a {
	display: block;
	margin: 0px 0px 10px 0px;
}

/************** socialmedia-boxen *************/

.blauerrahmen {
	border: 1px solid #029ee1;
	border-radius: 5px;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 5px;
}
.fb_iframe_widget {
    max-width:  100%;   
}
.fb_iframe_widget iframe {
    width: 100% !important;
}
.socialmedia-boxen {
	overflow: hidden;
	clear: both;
}

.socialmediaboxarea {
	border: 1px solid #029ee1;
	border-radius: 5px;
	width: 100%;
	height: 240px;
	position: relative;
	overflow: hidden;
}

.socialmediaboximage {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.socialmediaboximage img {
	width: 100%;
	height: auto;
}

.socialmediaboxtextarea {
	height: 180px;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 0px;
	padding: 15px 10px 0px 15px;
}

.zitat {
}

.socialmediaboxarea h5 {
	font-family: "Noto Serif", serif;
	font-size: 15px;
	color: #029ee1;
	margin: 0px;
}

.socialmediaboxarea p {
	font-family: "Noto Serif", serif;
	font-size: 15px;
}

.socialmediaboxarea .socialicon {
	font-size: 14px;
	font-weight: normal;
	line-height: 23px;
	height: 40px;
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 15px;
	bottom: 0px;
}



.facebookbutton {
	background-image: url(../Images/facebook-button.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding: 7px 0px 0px 20px;
}

.facebookbutton a {
	color: #3d424e;
}

.fb-comments, .fb-comments span, .fb-comments iframe { width: 100% !important; }

.instagrambutton {
	background-image: url(../Images/instagram-button.png);
	background-repeat: no-repeat;
	background-position: 0px 2px;
	padding: 7px 0px 0px 35px;
	color: #FF0000;
	text-shadow: 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000;
}

.instagrambutton a {
	color: #FF0000;
}

.podcastbutton {
	background-image: url(../Images/podcast-button.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding: 7px 0px 0px 38px;
}

.podcastbutton a {
	color: #3d424e;
}

.youtubebutton {
	background-image: url(../Images/youtube-button.png);
	background-repeat: no-repeat;
	background-position: 0px 4px;
	padding: 7px 0px 0px 37px;
	color: #FFFFFF;
	text-shadow: 0 -1px #000000, 1px 0 #000000, 0 1px #000000, -1px 0 #000000;
}

.youtubebox p, .youtubebox a {
	font-family: "FrutigerRoman";
	font-size: 14px;
	color: #FF0000;
	text-shadow: 0 -1px #000000, 1px 0 #000000, 0 1px #000000, -1px 0 #000000;
}



.cookie-set.script p {
  position: absolute;
  top: 15%;
  left: 10%;
  color: #333333;
  text-align: center;
  width: 80%;
  font-size: 16px;
  background-color: #ffffff;
  border: 1px solid #003c70;
  padding: 5px;
}

.cookiebox {
	color: #ffffff;
	font-size: 16px;
	text-align: left;
	padding: 25px 0px 0px 0px;
}

/*************** Slider ******************/

.bigSliderContent {
	/* height: 550px !important; */
	overflow: visible;
}

.bigSliderContent li {
	width: 100%;
	background-color: #fff;
	position: relative; 
}

.bigSliderContent,
.bigSliderContent li {
    list-style-image: none;
    padding-left: 0;
}



.lSAction > a {
    width: 60px;
    display: block;
    top: 45%;
    height: 60px;
    /* background-image: url('../img/controls.png'); */
    cursor: pointer;
    position: absolute;
    z-index: 1;
    margin-top: 0px;
    opacity: 1;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}

.navbutton {
	width: 60px;
	height: 60px;
	border-radius: 35px;
	background-color: rgba(255,255,255,.5);
    background-color: #d3e1f4;
	position: absolute;
	color: #003c70;
	font-size: 42px;
	padding: 0px 0px 0px 17px;
    font-family:  "TheSerifBold";
}
.navbutton:hover {
    background-color: rgba(255,255,255,1);
}
.lSAction > .lSPrev {
    left: 25px;
    top: 370px;
}

.lSAction > .lSNext {
    right: 25px;
    top: 370px;
}


#page-1 .breadcrumbnav {
    display: none;
}

.prevbutton {
	
}

.nextbutton {
	padding: 0px 0px 0px 21px;
}

.bigsilderimg {
	width: 100%;
	height: 450px;
	overflow: hidden;
	border-radius: 0px;
}

.bigsilderimg img {
	width: 100%;
	height: auto;
	border-radius: 0px;
}

.bigslidertextbox {
	background-color: #d3e1f4;
    padding: 35px;
	opacity: 1;
}

.bigslidertextbox .cattext {
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
	margin: 0px;
	letter-spacing: 0.5px;
    opacity: .9;
}

.bigslidertextbox h3 {
	font-family: "Noto Sans", sans-serif;
	font-size: 38px;
	color: #003c70;
	margin: 5px 0px 0px 0px;
    font-weight: 700;
}

.bigslidertextbox .teasertext p {
	font-size: 18px;
	color: #282828;
	margin: 15px 0px 0px 0px;
}
.teasertext {
    font-family: "Noto Sans", sans-serif;
}

.bigslidertextbox .weiterbutton {
	font-size: 16px;
	color: #fff;
	margin: 36px 0px 0px 0px;
	padding: 8px 25px;
    width: auto;
	text-align: center;
	background-color: #003c70;
	border-radius: 20px;
	display: block;
	font-family: "Noto Sans", sans-serif;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
}
.bigslidertextbox .weiterbutton:hover {
    text-decoration: none;
    background-color: #004098;
    color: #ffffff;
}
.bigslidertextbox .weiterbuttonspenden {
		background-color: #f3ba18;
		color: #5C105B;
}




/************* News Box Slider ****************/
#newsbox {
    height: auto !important;
    display: flex !important;
}

.newsboxes {
	clear: both;
	margin: 0px 0px 0px 0px;
    font-family: "Noto Sans", sans-serif;
}

.newsboxesSliderContent {
	overflow: hidden;
}

.newsboxes .lSAction > a {
    width: 40px;
    display: block;
    top: 120px;
    height: 40px;
    /* background-image: url('../img/controls.png'); */
    cursor: pointer;
    position: absolute;
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}

/*
#newsbox {
    height:  auto !important;
    display: table;
}
*/

.newsboxesSliderContent li {
	width: 100%;
	background-color: #FFFFFF;
	
	
	position: relative;
    height: inherit !important;
    
}
.newsboxes-inner {
    margin-bottom: 1px;
    height: 99%;
}

.newsboxesimg {
	width: 100%;
	overflow: hidden;
}

.newsboxesimg img {
	width: 100%;
	height: auto;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.newsboxestextarea {
    padding: 25px;
	/* height: 180px; */
}

.newsboxesdate {
	color: #6e6e78;
	font-size: 15px;
    
    color: #574a43;
	font-family: "Noto Sans", sans-serif;
	font-size: 14px;
}
.newsboxestextarea h3,
.newsboxestextarea h3 a {
	font-size: 22px;
    font-weight: 700;
	color: #003c70;
    font-family: "Noto Sans", sans-serif;
    margin-top: 10px;
}

.newsboxestextarea .teasertext {
	font-size: 18px;
	color: #574a43;
}

.newsboxes .navbutton {
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background-color: #003c70;
    background-color: #d3e1f4;
	position: absolute;
	color: #003c70;
	font-size: 28px;
	padding: 0px 0px 0px 13px;
}
.newsboxes .navbutton:hover {
    background-color: #fff;
}
.newsboxes .lSAction > .lSPrev {
    left: 12px;
	top: 204px;
}

.newsboxes .lSAction > .lSNext {
    right: 12px;
    top: 204px;
}

.lightSlider.lsGrab > * {
    cursor: auto !important        ;
}



#newsbox-presse {
    height: auto !important;
    display: flex !important;
	flex-wrap: wrap;
	width: 100%;
}
#newsbox-presse {
	padding: 0px;
}
#newsbox-presse li {
	list-style:  none;
	margin-right: 14px;
	display: inline-block;
	width: 25%;
	flex: 1 1 0;
}
#newsbox-presse li.last {
	margin-right: 0px;
}

@media screen and (max-width: 767px) {
	
	#newsbox-presse li {
	
		width: 50%;
    flex: 1 0 43%;
    margin-bottom: 10px;
	}
	
	#newsbox-presse li:nth-child(2) {
		margin-right: 0px;
	}
}



/************** tt_news ***************/

.news-list-item p {
	font-size: 16px;
}

h1.news_header {
	font-size: 27px;
	color: #003c70;
    margin-bottom: 50px;
}


/* news */
#c18, #c6188 {
    margin: 0px 70px 0px 0px;
}


.news-list-wrap {
    padding-top: 15px;
}

.news-list-wrap .news-list-item:nth-child(n){
    width: calc(50% - 1em);
    float: left;
    margin: 0px 2em 10px 0px;
    
}
.news-list-wrap .news-list-item:nth-child(3n-1){
    margin: 0px 0px 10px 0px;
}
.news-list-wrap .news-list-item:nth-child(3n){
    width: 100%;
    float: left;
    margin: 0px 0px 10px 0px;
}


#page-1082 .news-list-item {
    width: 100% !important;
}
#page-1082 .news-list-image {
    width: 20%;
    float: left;
    margin-right: 20px;
}


.news-list-image {
    float: none;
}
.news-list-image img {
    width: 100%;
    height: auto;
    margin: 0px;
}
.news-list-image {
    margin-bottom: 15px;
}

.news-list-date {
    font-size: 14px;
    float: none;
    color: #828282;
    font-family: "Noto Serif", serif;
}
.news-list-wrap .news-list-item {
    margin-bottom: 30px !important;
}
.news-list-item h3 {
    font-family: "Noto Serif", serif;
    font-size: 21px; 
    margin-top: 10px;
}

.news-list-browser-top { padding: 0px 0px 20px; }
.news-list-browser-bottom { padding: 30px 0px 0px; clear: both; }
.news-list-browse {
    clear: both;
    color: #ccc;
}
.news-list-browse .showResultsWrap {
    margin-bottom: 5px;
    color: #3B3B3B;
    display: none;
}
.news-list-browse .activeLinkWrap {
    border-radius: 50%;
    background-color: #828282;
    color: #fff;
    display: inline-block;
    width: 30px;
    text-align: center;
}
.browseLinksWrap span, .browseLinksWrap a {
    padding: 5px;
    margin: 0px 3px 0px 0px;
    color: #828282;
}
.news-list-container {
    position: relative;
}
.news-list-browser-top {
    float: right;
    position: absolute;
    right: 0px;
    top: -35px;
}

/************** tt_news und Termin 5er Box ***************/

.news_startbox {
	overflow: hidden;
    font-family: "Noto Sans", sans-serif;
}



.news_startbox_leftbig {
	padding: 0px;
    height: 100%;
    background-color: #fff;
    height: 100%;
}
.news_startbox_leftbig {
    padding: 25px;
}
.news_startbox_rightsmall {
	height: 100%;
	overflow: hidden;
	padding: 25px;
	margin: 0px 0px 25px 0px;
    background-color: #fff;
}


.news_startbox_date {
	color: #6e6e78;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
}

.news_startbox_rightsmall .news_startbox_date {
	float: none;
    margin-top: 5px;
}

p.news_startbox_cat {
	background-color: #ececec;
	display: block;
	width: 150px;
	height: 30px;
	float: right;
	overflow: hidden;
	color: #818181;
	font-size: 12px;
	font-family: "Noto Sans", sans-serif;
	text-align: center;
	text-transform:uppercase;
}

.news_startbox_rightsmall p.news_startbox_cat {
	background-color: transparent;
	border-radius: 0px;
	padding: 0px;
	display: block;
	width: auto;
	height: auto;
	float: none;
	overflow: hidden;
	text-align: left;
	color: #9e9e9e;
	font-size: 12px;
	margin: 0px 0px 0px 0px;
    
    font-weight: 600;
  font-size: 16px;
    color: #282828;
    
    word-break: break-all;
}

h3.news_startbox_h3 {
	font-family: "Noto Sans", sans-serif;
	font-size: 26px;
	color: #003c70;
}

.news_startbox_rightsmall h3.news_startbox_h3 {
	font-size: 22px;
margin: 10px 0px 10px 0px;
}
@media screen and (max-width: 991px) {
    .news_startbox_rightsmall h3.news_startbox_h3 {
    word-break: break-all;
}
}
.news_startbox_image {
    width: 100%;
    
}

.news_startbox_image img {
	height: auto;
	width: 100%;
}
.news_startbox_teasers_row {
    display: flex;
    height: 100%;
}




.tx-gbevents-pi1 .media-heading {
	margin-bottom: 20px;
}
.tx-gbevents-pi1 dl {
	font-size: 14px;
	display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto;
}
.tx-gbevents-pi1 .media-body {
	min-width: 75%;
	padding-left: 100px;
	padding-right: 30px;
}
.tx-gbevents-pi1 .media-left {
	padding-right: 100px;
}
.tx-gbevents-pi1 .gbevents-meta {
	margin-bottom: 30px;
}
.tx-gbevents-pi1 .gbevents-description {
	margin-bottom: 30px;
}
.tx-gbevents-pi1 .gbevents-downloads {
	margin-top: 0px;
}
.tx-gbevents-pi1 .media-img {
	margin-bottom: 10px;
}


@media screen and (max-width:991.98px){
	.tx-gbevents-pi1 .media-body {
  		padding-left: 0px;
	}
	.tx-gbevents-pi1 .media-left {
		padding-right: 0px;
	}
}

@media screen and (max-width: 650px){
	.tx-gbevents-pi1 .media-body {
		display: block;
	}
	.tx-gbevents-pi1 .media-left {
		display: grid;
    	grid-template-columns: 50% 50%;
    	grid-template-rows: auto;
	}
	.tx-gbevents-pi1 .media-left .media-img {
		width: 100%;
		padding-right: 5px;
	}
	.tx-gbevents-pi1 .media-left .media-img img {
		width: 100%;
		height: auto;
	}
	
	
}


.gbevents-list {
	font-size: 14px;
}

.gbevents-list .teaser-date {
	width: 130px;
	padding: 20px 0px 0px 0px;
}
.gbevents-list .title {
	font-family: "Noto Serif", serif;
    font-weight: 400;
}
.gbevents-location {
	margin-bottom: 10px;
}
.table-striped > tbody > tr:nth-child(2n+1) {
  background-color: #fff;
}
.teaser-images {
	padding-right: 0px !important;
}
.event-export {
	margin-bottom: 20px;
}
.teaser-date strong {
}
.event-export {
	margin-top: 10px;
}


@media screen and (max-width:991.98px){
	.gbevents-list .teaser-date {
  		width: auto;
	}
}

@media screen and (max-width:991.98px){
	.gbevents-list tr > td {
		display: block !important;
		border: 0px !important;
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.gbevents-list tr {
	border-top: 1px solid #ddd;
	}
	
}






.news_startbox_teasers {
    display: flex;
}



/*
@media screen and (min-width:768px){
    .news_startbox_teasers_row {
        margin-left: -7px;
        margin-right: -7px;
    }
    
    .news_startbox_teasers_row div:nth-child(3) .news_startbox_rightsmall {
        margin-bottom: 0px;
    }
    .news_startbox_teasers_row div:nth-child(4) .news_startbox_rightsmall {
        margin-bottom: 0px;
    }
    
    .news_startbox_teasers_row div:nth-child(1),
    .news_startbox_teasers_row div:nth-child(2) {
        margin-bottom: 15px;
    }
    
    .news_startbox_teasers_row {
        display:  grid;
        grid-template-columns: 50% 50%;
        height: 100%;
    }
    .news_startbox_teasers_row .col-sm-6 {
        width:  100%;
    }
    
}
*/

/*
.news_startbox_teasers {
    display: table;
    height: 100%;
}
.news_startbox_teasers > .col-sm-6 {
    display: table-cell;
    float: none;
    vertical-align: top;
    height: 100%;
}
*/





.maincol .tx-rt-osm::after,
.maincol .ce-textpic::after {
    content: "";
    display: block;
    width: 80px;
    height: 7px;
    background-color: #D8D8D8;
    margin-top: 40px; /* Falls Abstand nötig ist */
    margin-bottom: 30px;
}











/************* tx-evangtermine *********/

.tx-evangtermine {
	font-size: 16px;
}

.terminTeaserBoxItem {
	border-bottom: 1px solid #f3f3f3;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 10px 0px;
}

.et_content_detaillabel {
	float: left;
	font-family: "Noto Sans", sans-serif;
	margin: 0px 10px 0px 0px;
}

.et_content_detailvalue {
	margin: 0px 0px 10px 0px;
}

/************** tt_address ************/


.tt_address_list_box {
	width: 100%;
	height: auto;
	background-color: #EEECED;
	color: #1a181d;
	margin: 0px;
	float: left;
    margin-bottom: 20px;
    min-height: 320px;
    font-family: "Noto Sans", sans-serif;
}

@media screen and (min-width:768px){

.vcard.no-img .tt_address_list_box {
			min-height: auto;
		}
}

.rightcol .tt_address_list_box {
	height: auto;
	margin: 0px 0px 30px 0px;
	float: none;
}

.rightcol .tt_address_list_box {
	width: 100%;
}
.tt_address_list_box img {
    margin-left: 15px;
}

.tt_address_list_box .tt_address_image {
	max-width: 100%;
	/*max-height: 100px;*/
	height: auto;
	width: auto;
}

.tt_address_textaera {
	padding: 15px;
    color: #333;
}

.tt_address_list_box .tt_address_name {
	font-size: 18px;
	font-family: "Noto Sans", sans-serif;
    color: #003c70;
    line-height: 1;
    font-weight: 700;
}

.tt_address_list_box .tt_address_organisation {
	font-size: 13px;
	font-weight: light;
}

.tt_address_list_box .tt_address_address {
	font-size: 13px;
	padding: 0px 0px 0px 25px;
	margin: 10px 0px 0px 0px;
	background-image: url(../Images/Locator-Icon.svg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
    background-position: 0px 2px;
  background-size: 15px;
}


.tt_address_list_box .tt_address_mail {
	font-size: 13px;
	padding: 0px 0px 0px 25px;
	margin: 5px 0px 0px 0px;
	background-image: url(../Images/Brief-Icon.svg);
	background-repeat: no-repeat;
	background-position: 0px 2px;
  background-size: 15px;
	
}

.tt_address_list_box .tt_address_tel {
	font-size: 13px;
	padding: 0px 0px 0px 25px;
	margin: 5px 0px 0px 0px;
	background-image: url(../Images/Telefon-Icon.svg);
	background-repeat: no-repeat;
	background-position: 0px 2px;
  background-size: 15px;
}

.f3-widget-paginator {
	display: none;
}

.tt_address_imagecaption {
	font-size: 9px;
    margin-left: 15px;
}

/************ Powermail *************/

.powermail_fieldwrap {
	font-size: 14px;
}

.powermail_fieldset {
    min-width: 0;
    padding: 15px;
    margin: 30px 0px 15px 0px;
    border: 1px solid #78B2D1;
	border-radius: 5px;
}

.powermail_fieldset legend {
    display: block;
    width: 100%;
    padding: 3px 0px 3px 20px;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: inherit;
    color: #333;
	border: 1px solid #dddddd;
	border-radius: 5px;
	background-color: #f7f7f7;
}

.powermail_fieldwrap .col-sm-offset-2 {
	margin-left: 0px;
}

.powermail_fieldwrap label {
	font-size: 14px;
	width: 100%;
	text-align: left !important;
}

.powermail_fieldwrap .radio label {
	width: 100%;
}




/********* Nomaler Content ***********/


.toprow {
    margin-bottom: 50px;
}


.maincol .frame-type-textpic, .maincol .frame-type-textmedia, .maincol .frame-layout-0 {
	margin: 0px 70px 0px 90px;
}


.maincol .frame-layout-0.frame-space-before-extra-small {
    margin: 0px 70px 0px 0px;
}



.maincol .frame-type-textpic p, 
.maincol .frame-type-textpic li, 
.maincol .frame-type-textmedia p, 
.maincol .frame-type-textmedia li,
.maincol .frame-type-text p, 
.maincol .frame-type-text li {
	font-size: 16px;
    line-height: 1.65;
}

.maincol .frame-type-textpic h1, .maincol .frame-type-textmedia h1, .maincol .frame-type-text h1 {
	font-size: 40px;
	color: #003c70;
}

.maincol .frame-type-textpic h2, .maincol .frame-type-textmedia h2, .maincol .frame-type-text h2 {
	font-size: 26px;
    margin-bottom: 15px;
}

.contentarea h1 {
    font-size: 50px;
}

#page-1 .contentarea h1 {
    font-size: 38px;
}



.maincol .frame-type-textpic h3, 
.maincol .frame-type-textpic h4, 
.maincol .frame-type-textpic h5, 
.maincol .frame-type-textmedia h3, 
.maincol .frame-type-textmedia h4, 
.maincol .frame-type-textmedia h5,
.maincol .frame-type-text h3, 
.maincol .frame-type-text h4, 
.maincol .frame-type-text h5 {
	font-size: 22px;
	font-family: "Noto Sans", sans-serif;
    margin-top: 40px;
    color: #003c70;
}

.maincol .frame-type-textpic,
.maincol .frame-type-textmedia,
.maincol .frame-type-text {
	-ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}





/* kontakt */
body#page-1680 .maincol .frame-layout-0 {
    margin-left: 0px;
    
}

body#page-1680 .maincol .grid-accordion.frame-layout-0 {
    margin: 0px 0px 0px 0px;
}



.maincol .vcard {
    float: left;
    margin-right: 20px;
    margin-bottom: 30px;
    width: 265px;
}
.maincol .vcard:nth-child(3n) {
    margin-right: 0px;
}

@media screen and (min-width:992px) and (max-width:1199px){
    .maincol .vcard {
        width: 195px;
    }
}
@media screen and (max-width:991px) {
    .maincol .vcard:nth-child(2n) {
        margin-right: 0px;
    }
    .maincol .vcard:nth-child(3n) {
        margin-right: 20px;
    }
    .maincol .vcard {
        width: 218px;
    }
}
@media screen and (max-width:767px) {
    .grid-accordion {
        margin: 0px 0px 0px 0px;
    }
    .maincol .vcard {
        width: 100%;
    }
}

/* =======================================================================
				Accordian
   =======================================================================*/
.grid-accordion {
    margin: 0px 70px 0px 0px;
}

.grid-accordion-title {
    cursor: pointer;
    font-size: 15px !important;
    padding-left: 0px;
    position: relative;
    font-family: "Noto Serif", serif;
    color: #4a4a4a;
    padding: 10px 6px 10px 15px;
    /*
    border-bottom: 1px solid #ddd;
    */
    background-color: #f4f4f4;
    border-radius: 7px;
}

.grid-accordion-title span {
    background: url(../Images/accordian-arrow-grid.png) no-repeat left bottom;
    width: 25px;
    height: 25px;
    float: right;
    display: inline-block;
    margin: 0px 6px 0px 10px;
    position: relative;
    top: -3px;
    position: absolute;
    top: 9px;
    right: 0px;
}
.grid-accordion-title.accordion-heading-active {
    color: #fff;
    background-color: #016ba5;
}
.grid-accordion-title.accordion-heading-active span {
    background-position: left -1px;
}

.grid-accordion-content {
    padding: 20px 0px 0px; 
}


@media screen and (max-width:767px) {
    .grid-accordion {
        margin: 0px 0px 0px 0px;
    }
}


.accordian-wrap ul {
	margin:  0px !important; 
	padding: 0px 0px 0px 0px; 
}

.accordian-wrap ul li {
	list-style-type:none !important; 
	list-style-image: none !important; 
	border-top:solid 1px #b2b3b6;
	padding:8px 0 10px;
}

.accordian-wrap ul li h4 {
	font-size: 16px;
    font-weight: 400;
	color:#003c70; 
	padding: 15px 5px 15px 15px;
	border-bottom: 2px solid #DEDCDD;
    margin: 0px;
}

.accordian-wrap ul li h4 span {
	background:url(../Images/accordian-arrow.png) no-repeat left bottom;
	width: 25px;
    height: 25px;
	float:right;
	display:inline-block;
	margin: 0px 5px 0px 10px;
    position: relative;
    top: -3px;

    position: absolute;
    top: 10px;
    right: 0px;
}

.accordian-wrap ul li h4.accordion-heading {
	cursor:pointer; 
    padding-left:  0px;
    position: relative;
}

.accordian-wrap ul li h4.accordion-heading-active span {
	background-position:left -1px;
}

.accordian-wrap ul li .accordion-content {
	padding: 15px 10px 10px 10px;
	color: #3B3B3B; 
	margin: 0px 0px 10px 0px;
}

.accordian-wrap ul li .accordion-content p {
	font-size: 16px;
}

.accordian_ce ul li {
	padding:0px !important; 
	border: none !important;
}

/*
.accordian_ce ul li.last {
	display: none;
}
*/

.accordion-content h5 {
	border: none; 
	font-weight: normal; 
	color: #00AEEF; 
	font-size: 18px; 
	margin: 0px;
    
}

.accordian-wrap ul li .accordion-content ul {
	margin:0px 0px 15px 15px !important; 
	border-bottom: none !important; 
}

.accordian-wrap ul li .accordion-content ul li {
	list-style-type: disc !important; 
	/*list-style-image:url(../Images/left-blue-bullet.gif) !important;*/
	margin: 0px !important; 
	padding: 0px !important;
}

#dynamic_left .accordian-wrap ul li .accordion-content a.button {
	background-color: #00aeef;
	background-image:none;
	color:#fff;
	width:117px;
	line-height:34px;
	padding:0 10px;
	display:block;
}

#dynamic_left .accordian-wrap ul li .accordion-content a.button:after {
	content: "›››";
	color: #570861;
	padding:0 10px;
	font-size:20px;
}

#dynamic_left .accordian-wrap ul li .accordion-content a.button:hover {
	text-decoration:none;
	background-color: #006EAA;
}

.cc-revoke {
	display: none;
}


.no-break {
    white-space: nowrap;
}

.spendenboxtext .no-break {
    margin-right: 10px;
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}









.dce-headline-extra {
    border-left: 8px solid #B9D8F7;
    padding: 5px 30px 20px;
    margin: 0px;
}
.dce-headline-extra h3 {
    font-family: "Noto Serif", serif;
    font-size: 35px;
    margin-bottom: 15px;
    line-height: 1;
    font-weight: 400;
}

.dce-headline-extra span {
    display: block;
    margin-bottom: 10px;
}



.dce-headline-icon {
    display: flex;
}
.dce-headline-icon-icon {
    width: 70px;
    margin-right: 20px;
    position: relative;
    top: 0px;
}

.dce-headline-icon-hl {
    font-family: "Noto Sans", sans-serif;
    font-size: 21px;
    margin-bottom: 15px;
    color: #003c70;
    line-height: 1.4;
    margin: 0px;
    font-weight: 600;
}
.dce-headline-icon-hl span {
    display: block;
    margin-bottom: 10px;
}




.dce-download-icon {
    padding: 0px 70px 0px 40px;
}
.dce-download-icon a {
    display: flex;
}
.dce-download-icon-icon {
    width: 30px;
    height: 38px;
    margin-right: 20px;
    position: relative;
    top: 7px;
}
.dce-download-icon-hl {
    font-family: "Noto Sans", sans-serif;
    font-size: 21px;
    margin-bottom: 15px;
    color: #003c70;
    line-height: 1.4;
    margin: 0px;
    font-weight: 600;
}

.dce-link-icon {
    padding: 0px 70px 0px 40px;
}
.dce-link-icon a {
    display: flex;
}
.dce-link-icon-icon {
    width: 30px;
    height: 38px;
    margin-right: 20px;
    position: relative;
    top: 7px;
}
.dce-link-icon-hl {
    font-family: "Noto Sans", sans-serif;
    font-size: 21px;
    margin-bottom: 15px;
    color: #003c70;
    line-height: 1.4;
    margin: 0px;
    font-weight: 600;
}







.ce-bodytext a.download {
    font-family: "Noto Sans", sans-serif;
    font-size: 21px;
    margin-bottom: 15px;
    color: #003c70;
    line-height: 1.4;
    margin: 0px;
    display: flex;
    margin-bottom: 10px;
    font-weight: 600;
}
.ce-bodytext a.download::before {
    content: url('/typo3conf/ext/vemission/Resources/Public/Images/download-squared_icon_blue.svg');
    margin-left: 0px;
    margin-right: 15px;
    width: 32px;
}
.rightcol .ce-bodytext a.download::before {
    margin-left: 0px;
}

/*
.dce-download-icon {
    padding: 0px 70px 0px 40px;
}
.dce-download-icon a {
    display: flex;
}
.dce-download-icon-icon {
    width: 30px;
    height: 38px;
    margin-right: 20px;
    position: relative;
    top: 7px;
}
*/



.newsletterbox {
	margin-bottom: 10px;
}

.nl-text {
	color: #FFF;
	font-size: 18px;
	font-family: "FrutigerRoman";
	font-weight: 400;
}
.nl-btn {
	/* width: 200px; */
	display: inline-block;
	background-color: #FFF;
	border: none;
	color: #574a43 !important;
	padding: 5px 48px 5px 48px;
	text-decoration: none !important;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 18px;
}
.tx-fp-newsletter form h1 {
	display: none;
}






.pages-stiftung #logoline .subline {
	display:  none;
}
.pages-stiftung h1,
.pages-stiftung h2,
.pages-stiftung h3, 
.pages-stiftung h4 {
    color: #6f0103;
}
.pages-stiftung .contactline h4 {
    color: #fff;
}
.pages-stiftung a {
    color: #6f0103;
}

.pages-stiftung .mainnavispendenbutton {
	display:  none !important;
}
.pages-stiftung .navigationline {
    background-color: #6f0103;
}
.pages-stiftung #mobil-topline {
	display:  none !important;
}
@media screen and (min-width: 768px) {
	.pages-stiftung #navbar {
		display:  none !important;
	}
}

/*
.pages-stiftung .footerline {
    background-color: #333;
}
.pages-stiftung .contactline {
    background-color: #333;
}
.pages-stiftung .bottomline {
    background-color: #6f0103;
}
.scrollupline {
    background-color: #6f0103;
}
*/




.dce-kooperationspartner {
	background: #faf6f2;
	padding: 10px 10px 20px 15px; 
}
.dce-kooperationspartner-logo {
	/*float: right; */
	margin-bottom: 20px;
	min-height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.dce-kooperationspartner-hl {
	clear: both;
	color: #003c70;
	font-size: 20px;
	line-height: 27px;
	font-weight: 500;
	font-family: "Noto Serif", serif;
}
.dce-kooperationspartner-textblock {
	font-size: 15px;
	line-height: 24px;
	margin-right: 5px;
}
.dce-kooperationspartner-link a {
	font-size: 15px;
	line-height: 24px;
	color: #003c70;
}











.ce-intext.ce-right .ce-gallery {
  margin-left: 20px;
}
.ce-intext.ce-left .ce-gallery {
  margin-right: 20px;
}
.ce-intext.ce-right .ce-gallery, .ce-intext.ce-left .ce-gallery, .ce-above .ce-gallery {
  margin-bottom: 20px;
}





#CookieBox {
  left: 25%;
  width: 50%;
    padding: 50px 20px 20px;
}
#CookieBox h2 {
    font-size: 20px !important;
    font-family: "Noto Sans", sans-serif;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 0px !important;
}
#CookieBox p {
  font-size: 14px;
    color: #6e6e78;
}
#CookieBox .cookie-legal a {
    color: #6e6e78;
}
#CookieBox .category h3 {
  font-size: 18px;
    color: #003c70;
}
#CookieBox .intro p {
  width: 50%;
  font-size: 14px;
  text-align: center;
    border-radius: 25px;
}
#CookieBox .cookie-btn {
    font-size: 16px;
    background: #003c70;
    padding: 10px 30px !important;
    border-radius: 25px;
}
#CookieBox .cookie-management,
#CookieBox .cookie-refuse {
    background-color: transparent;
    font-size: 14px;
}
#CookieBox .info-show {
    text-align: left;
    color: #00f;
}
#CookieBox .box-cookie-management-in > p {
  text-align: center;
}
#CookieBox .cookie-management-container,
#CookieBox .cookie-refuse-container {
    margin: 0 auto 0px;
}
#CookieBox .cookie-management-container a,
#CookieBox .cookie-refuse-container a {
    color: #0A6ACA;
    padding: 5px 0px;
}
#CookieBox .intro .cookie-legal, 
#CookieBox2 .intro .cookie-legal {
  margin-top: 25px;
}
#CookieBox h2::before {
    content: url('/typo3conf/ext/vemission/Resources/Public/Images/cookie_icon_blue.svg');
    width: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    
}
#CookieBox .activated, #CookieBox2 .activated {
  background: #4CD57E;
}
#CookieBox .text-back-right .cookieback {
    font-size: 16px;  
    font-weight: bold;
    background-color: #828296;
    color: #fff;
    padding: 10px 30px !important;
    border-radius: 25px;
}
#CookieBox .text-back-right .cookie-refuse {
    font-size: 16px; 
    font-weight: bold;
    background-color: #828296;
    color: #fff;
    padding: 10px 30px !important;
    border-radius: 25px;
}
#CookieBox .deactivated, #CookieBox2 .deactivated {
    background-color: #828296;
}


/* =======================================================================
         Media
         Spezielle Einstellung f�timmte Bildschirmformate 
   =======================================================================*/




@media screen and (max-width:767px){
	
	/************* Ein- und ausblenden von Elementen *********/
	
	/*** Topline ausblenden ***/
		
	#topBG {
		display: none;
	}
	
	/*** Mobilen Sendenbutton einblenden ***/
	
	.mobil-topline {
		display: block;
		height: 40px;
		width: 100%;
		background-color: #ffe369;
		text-align: center;
        position: relative;
        z-index: 100;
	}
	
	a.mobile-topline-spendenbutten {
		color: #003c70 !important;
		font-size: 16px;
		background-color: #ffe369;
		display: inline-block;
		padding: 8px 0px 0px 25px;
        font-family: "Noto Sans", sans-serif;
        font-weight: 700;
	}
	
    body.pageScrolled #navigationline {
        top: 50px;
    }
    
    header {
        height: 117px;
    }
	.ce-bodytext header {
		height: auto;
	}
	
    header.mainheaderScrolled {
        height: 60px;
    }
    .logo {
        margin-top: 45px;
    }
    .mainheaderScrolled .navbar-smallmedia {
        top: 20px;
    }
    .logolineScrolled .logo {
        margin-top: 0px;
    }
    #logoline.logolineScrolled .logoarea {
    height: auto;
    }
	/*** Logoline ***/
	
    
    header#mainheader {
        height: auto;
    }
    header#mainheader.mainheaderScrolled {
        height: auto;
    }

    
	.logoline, .logolineScrolled .logoline {
		display: block;
		position: relative;
		top: 0px;
	}
	
	.logoline .mainteaser {
		display: none;
	}
	
	.logoarea {
		height: 75px;
		background-color: #FFFFFF;
        position:  relative;
	}
    .logolineScrolled .logoarea  {
		height: 75px;
	}
	
	.logo img, .logolineScrolled .logo img {
		height: 70px;
	}
	
    .logolineScrolled .logo {
        top: 0px;
    }
    
    .maincol .frame-type-textpic p, .maincol .frame-type-textpic li, .maincol .frame-type-textmedia p, .maincol .frame-type-textmedia li, .maincol .frame-type-text p, .maincol .frame-type-text li {
        font-size: 14px;
        line-height: 1.8;
    }
    
	.navbar-smallmedia {
		display: block;
		min-height: 15px;
		z-index:111;
		position: absolute;
		right: 0px;
		top: 65px;
		background-color: transparent;
        transition: all .3s ease;
        width: 50%;
	}
    .navbar-toggle {
        margin-right: 20px;
    }
	nav span {
        color: #000;
    }
    nav > ul > li > span,
    nav > ul > li:hover span {
    padding: 0px;
        height: 34px;
        color: #003c70;
        font-size: 16px;
}
    
    #mobil-topline {
       position:  relative;
        top: 0px;
        transition: all .3s ease;
    }
    #mobil-topline.mobiltoplineScrolled {
       top: -40px;
    }
    #navbar nav {
            height: 90vh !important;
        overflow: scroll;
    }
    
    
    #logoline .logoarea {
        height: 114px;
        display: flex;
    flex-direction: column;
        align-items: baseline;
    }
    
	/****** Content *****/
	
	.contentline {
		margin-top: 77px;
	}
	body.pageScrolled #contentline {
    margin-top: 77px;
}
	.contentarea {
    margin: 0px 0px 20px 0px;
	}
	
	/*************** navigationarea ************/
	
    
    
    
	.navigationline {
		height: 0px;
		position: relative;
	  top: -2px;
	  width: 100%;
	  z-index: 100;
	  background-color: #FFFFFF;
		border-top: none;
        transition: none;
	}
	
	.navigationlineScrolled .navigationline {
		position: relative;
	  top: 0px;
	  width: 100%;
	  height: 0px;
	}
	
	.navigationarea {
		position: relative;
        padding: 0px;
	}
	
	/******** Hamburgerman�***********/
	
	.navbar-toggle {
		float: right;
		padding: 0px 0px 0px 20px;
	}
	
	.navbar-toggle .icon-bar {
		background-color: #121212;
         cursor: pointer;
	}
    
    
	.navbar-toggle .icon-bar,
    .navbar-toggle.collapsed .icon-bar {
    -webkit-transition: all 0.2s;
transition: all 0.2s;
    }
    
    .navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -ms-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
}
    .navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(3) {
    opacity: 0;
    filter: alpha(opacity=0);
}
    .navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(4) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
    -ms-transform-origin: 10% 90%;
    transform-origin: 10% 90%;
}
    
	
	/*************** megamen�*********/
	
	.navbar-collapse.in {
	  overflow-y: visible;
	}
	
	nav {
	  font-size: 20px;
	  margin-left: 0px;
		margin-right: 0px;
		background-color: #FFFFFF;
	}
	
	.navigationlineScrolled nav {
		font-size: 20px;
	}
	
	/* first stage */
	
	nav > ul {
	  position: relative;
	  display: block;
	  justify-content: left;
	  width: 100%;
        padding-top: 20px;
        padding-left: 15px;
	}
	
	nav a {
	  color: #121212;
	}
	
	nav ul li {
	  color: #121212;
	}
	
	nav > ul > li > a {
	  padding: 0px;
	  height: auto;
	  background-color: #fff;
	  color: #003c70;
	  border-radius: 5px;
	  width: 90%;
        font-size: 16px;
	}
    nav > ul > li:hover > a {
        color: #003c70 !important;
    }
	
	.navigationlineScrolled nav > ul > li > a {
		padding: 0px 0px 0px 10px;
	  height: auto;
	}
	
	nav > ul > li:hover {
	  background: #FFFFFF;
	  margin-top: 0px;
	  border-top: none;
	  border-left: none;
	  border-right: none;
	  border-top-left-radius: 0px;
		border-top-right-radius: 0px;
	}
	
    .breadcrumbnav,
    .subline,
    .headerNavi,
	.mainnavispendenbutton {
	  display: none;
	}
	
	nav > ul > li:hover a {
	  color: #FFFFFF;
	  padding-top: 0px;
	  padding-bottom: 0px;
	}
	
	.navigationlineScrolled nav > ul > li:hover a {
	  padding-top: 0px;
	  padding-bottom: 0px;
	}
	
	/* second stage (the mega-menu) */
	
	nav ul.megamenu {
	  position: relative;
	  display: block;
	  flex-wrap: wrap; 
	  width: 100%;
	  top: 0px;
	  left: 0px;
	  padding: 0px 0px 10px 0px;
	  background-color: #FFFFFF;
	  text-align: left;
	  opacity: 1;
	  height: auto;
	  overflow: hidden;
        overflow-y: scroll;
        
        transform: none;
	}
	
	.navigationlineScrolled nav ul.megamenu {
	  top: 0px;
	}
	
	nav ul li:hover ul.megamenu {
	 /* top: 0px; */
	  opacity: 1;
	  height: auto;
	}
	
	/* third stage (child-menus in the mega-menu) */
	
	nav ul.megamenu ul {
	  width: 100%;
	  margin-bottom: 10px;
	  color: #000;
	  box-shadow: none;
	  height: auto;
        margin-top: 0px;
        
	}
	
	nav ul.megamenu ul li {
	  display: block;
	  float: none;
	  margin: 0px 15px 10px 0px;
	}
	
	nav ul.megamenu ul li a {
	  color: #121212;
	  width: 80%;
	  height: auto;
	  overflow: hidden;
	  display: block;
	  position: relative;
	  border: none;
	  border-radius: 0px;
	  font-family: "FrutigerRoman";
	  padding: 3px 0px 3px 15px;
	  text-decoration: none;
	}
	
	.navigationlineScrolled nav ul.megamenu ul li a, .navigationlineScrolled nav ul.megamenu ul li a:hover {
	  height: auto;
	  padding-top: 3px;
	  padding-bottom: 3px;
	}
	
	nav ul.megamenu ul li a img {
		display: none;
        font-weight: 400;
	}
	
	nav ul.megamenu ul li a span {
		display: block;
	  position: relative;
	  left: 0px;
	  bottom: 0px;
	  background-color: #FFFFFF;
	  width: 100%;
	  color: #000000;
	  font-size: 16px;
	  padding: 0px;
	  height: auto;
	  opacity: 1;
        font-weight: 400;
	}
	
	.navigationlineScrolled nav ul.megamenu ul li a span {
	  height: auto;
	}
    nav ul.megamenu ul li a{
        transition: none;
    }
	nav ul.megamenu ul li a:hover {
	  color: #4096ee;
	  height: auto;
	  padding-top: 3px;
	  padding-bottom: 3px;
	}
	
	.navigationlineScrolled nav ul.megamenu ul li a:hover {
	  height: auto;
	}
	
	.bigslidertextbox {
		height: auto;
	}
	
	.bigslidertextbox h3 {
		font-size: 24px;
	}
	.bigslidertextbox p {
		font-size: 16px;
	}
	.bigsilderimg {
		height: auto;
	}
	.bigsilderimg img {
		width: 100%;
		height: auto;
		border-radius: 5px;
	}
	.bigSliderContent {
		/* height: 430px !important; JWBDV TODO ok? */
	}
	
	.bigslidertextbox .weiterbutton {
		font-size: 16px;
		width: 180px;
	}
	.themenbox_imagearea {
		height: auto;
	}
	.themenbox {
        width: 33.3333333%;
	}
	.navbutton {
	  width: 50px;
	  height: 50px;
	  border-radius: 25px;
/*		color: #FFFFFF; */
		font-size: 31px;
		padding: 0px 0px 0px 15px;
	}
    
    .maincol .frame-type-textpic h2, .maincol .frame-type-textmedia h2, .maincol .frame-type-text h2 {
        font-size: 25px;
    }
    
    .maincol .col-sm-4 .tt_address_list  {
        column-count: 1;
    }
    
    .dce-headline-extra {
        padding: 1px 20px 3px;
    }
    .dce-headline-extra h3 {
        font-size: 25px;
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .dce-headline-extra span {
        display: inline;
    }
    
    .dce-headline-icon-hl {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .dce-headline-icon-icon {
        width: 50px;
        height: 51px;
    }
    
    .dce-download-icon {
        padding: 0px 0px 0px 0px;
    }
    .dce-download-icon-hl {
        font-size: 19px;
        margin-bottom: 12px;
    }
    .dce-download-icon-icon {
        width: 30px;
        height: 38px;
    }
    
    
    
    #page-1 .contentarea h1 {
      font-size: 28px;
    }
    h1.ce_header {
      margin: 50px 0px 20px 0px;
    }
    .dreierbox_klein h3.dreierbox_h3 {
  font-size: 20px !important;
    }
    
    
    .dce-link-icon {
        padding: 0px 0px 0px 0px;
    }
    .dce-link-icon-hl {
        font-size: 19px;
        margin-bottom: 12px;
    }
    .dce-link-icon-icon {
        width: 30px;
        height: 38px;
    }
    
    .ce-bodytext a.download {
        font-size: 19px;
    }
    .ce-bodytext a.download::before {
        /* JWBDV TODO .. smaller icon */
    }
    
	.navbutton {
	  width: 50px;
	  height: 50px;
	  border-radius: 25px;
		/* color: #FFFFFF; */
		font-size: 31px;
		padding: 0px 0px 0px 15px;
	}
    .nextbutton {
        padding: 0px 0px 0px 17px;
    }
    .lSAction > .lSPrev {
	  left: 10px;
		top: calc( 83vw /2);
	}
	.lSAction > .lSNext {
	  right: 10px;
		top: calc( 83vw /2);
	}
    
    .navbutton {
        width: 40px;
        height: 40px;
        font-size: 28px;
        padding: 0px 0px 0px 12px;
        line-height: 1.45em;
    }
    .lSAction > a {
        width: 40px;
    }
    .nextbutton {
        padding: 0px 0px 0px 14px;
    }
    
	.news_startbox_leftbig {
		margin-bottom: 10px;
	}
	.news_startbox_rightsmall {
		height: auto;
		margin-bottom: 10px;
	}
	
	.socialmediaboxarea {
        margin-bottom: 15px;
        padding: 5px;
	}
	.socialmediaboximage img {
        width: auto;
        height: 100%;
	}
	.maincol .frame-type-textpic, .maincol .frame-type-textmedia, .maincol .frame-layout-0 {
        margin: 0px 0px 0px 0px;
	}
    .maincol .frame-layout-0.frame-space-before-extra-small {
        margin: 0px 0px 0px 0px;
    }
    .dreierbox_gross, .dreierbox_klein {
        margin-bottom: 10px;
        height: auto;
        display: table;
        height: 100%;
    }
    .blauebox .blauebox_bildarea {
        width: 450px;
        height: 350px;
        margin-top: -80px;
    }
    .blauebox_textarea p {
        font-size: 14px;
    }
    .equal-height-container {
        margin-left: -7px;
        margin-right: -7px;
    }
    .equal-height-container > * {
        width: 50%;
        padding-left: 7px;
padding-right: 7px;
    }
    .videobox_textarea h4 {
        font-size: 21px;
    }
    .videobox_textarea {
        padding: 0px 0px 0px 0px;
    }
    .potcast-extra h3 {
        font-size: 21px;
    }
	.newsletterbox .form_input {
		width: 100%;
	}
	.mobilonly {
		display: block;
	}
	.newsboxestextarea h3 {
	}
	.newsboxesimg {
		
	}
	.newsboxesdate {
		padding: 0px;
		margin: 0px;
	}
	#fp_email {
		width: 200px;
	}
    
    .dreispalter > div {
        margin-bottom: 20px;
    }
    
    .dce-box-big > div {
        display: flex;
        flex-direction: column-reverse;
    }
    .dce-box-big .col-sm-6:first-child {
        margin-bottom: 20px;
    }
    
    .spendenbox {
        padding: 10px 20px 20px 20px;
    }
    
    .spendenbox     .no-break {
         display:  block;
    }
    
    .spendenboxtext {
        font-size: 16px;
        padding-top: 15px;
    }
    .footerarea {
        padding: 72px 0px 10px 0px;
    }
    .contactline {
        padding: 0px 0px 20px 0px;
    }
    .bottomsiegel {
        text-align:  center;
    }
    .bottomsiegel .DZIsiegel {
        display: inline;
        float: none;
        margin: 15px 15px 0px 0px;
    }
    .bottomsiegel .actAllianceLogo {
        display: inline;
    }
    .bottomsozialmedia {
        text-align: center;
        margin-right: 0px;
        margin: 20px;
    }
    .bottomsozialmedia a:last-child .Footerbutton {
        margin-right:  0px;
    }
    .bottomnavigation ul li a {
        display: inline-block;
    }
    .bottomarea {
        clear: both;
        text-align: center;
    }
    .bottomnavigation ul li {
        float: none;
        display:  inline-block;
    }
    .cookiebox {
        padding: 15px 0px 0px 0px;
    }
    
    
    .themenboxes {
        margin-left:  8px;
        margin-right: 8px;
    }

    .themenbox {
        margin: 0px 0px 20px 0px;
        border-radius: 5px;
        padding: 0px 7px;
    }
    .themenbox > * {
        
    }
    .themenbox > .themenbox_imagearea {
        padding-left: 0px;
        padding-right: 0px;
    }
    h1.ce_header,
    .header_mit_link h1.ce_header {
        float: none;
        font-size: 28px;
    }
    
    .news_startbox_teasers_row > div {
        padding: 0px;
    }
    .news_startbox_teasers {
        margin-left:  -7px;
        margin-right: -7px;
        flex-direction: column;
    }
    .news_startbox_teasers > .col-sm-6 {
        padding-left:  7px;
        padding-right:  7px;
        
    }
    .news_startbox_teasers_row {
  flex-direction: column;
}
    .dce-newsletter-box-con {
  flex-direction: column;
}
    
    .header_mit_link {
  margin:
50px -7px 20px -7px;
}
    .newsboxes .lSAction > .lSPrev ,
    .newsboxes .lSAction > .lSNext {
           top: 45%; 
    }
    
    .news_startbox_teasers_row div:nth-child(4) .news_startbox_rightsmall {
        margin-bottom: 0px;
    }
    
    .dreierbox_row .col-sm-6, .dreierbox_row .col-sm-3 {
        width: 33.33333%;
        padding-left: 7px;
        padding-right: 7px;
    }
    .dreierbox_row {
        margin-left: -7px;
        margin-right: -7px;
        flex-direction: column;
    }
    
    .dreispalter {
        display: table;
        margin-left: -7px;
        margin-right: -7px;
    }
    .dreispalter > div {
        width: 33.3333%;
        display: table-cell;
        padding-left: 7px;
        padding-right: 7px;
        vertical-align: top;
    }
    
    .footerarea ul li h4 a,
    .contactarea h4 {
        font-size:  21px;
    }
    .footerarea > div,
    .contactarea > div {
        margin-bottom: 25px;
    }
    
    #c18, #c6188 {
        margin: 0px 0px 0px 0px;
    }
    
    .tt_address_list {
        column-count: 2;
        column-gap: 20px;
    }
	
	
	.zweispalter .col-sm-6 {
		width: 100%;
	}
	
	.zweispalter.equal-height-container {
    	display: block !important;
	}
    
    
    .contentarea h1 {
  font-size: 30px !important;
}
    .toprow {
  margin-bottom: 0px;
}
    
    .dce-newsletter-box-img {
  width: 33vw;
    }
    .dce-newsletter-box-con .col-sm-4 {
  padding: 0px 20px;
    }
    .dce-newsletter-box-con .col-sm-6 {
  padding: 25px;
}
    
    
}
@media screen and (max-width:700px) {
    .dreispalter {
        width: 100%;
    }
    .dreispalter > div {
        display: block;
        width: 100%;
    }
    .themenbox {
        display: block;
        width: 100%;
    }
    .news_startbox_teasers > .col-sm-6 {
        display: block;
    }
    .dreierbox_row .col-sm-6, .dreierbox_row .col-sm-3 {
        display: block;
        width: 100%;
    }
    .dreierbox_gross, .dreierbox_klein {
        width: 100%;
    }
    .equal-height-container {
        display: block;
    }
    .equal-height-container > * {
        width: 100%;
    }
    .blauebox_textarea {
        z-index: 10;
    }
}

@media screen and (max-width:600px) {
    h1.ce_header,
    .header_mit_link h1.ce_header {
        font-size: 25px;
        max-width: 80%;
        float: left;
    }
    .ce_headerlink {
        float: right;
        position: relative;
        margin: 5px 0px 8px 0px;
    }
    .blauebox .blauebox_bildarea {
        margin-top: 0px;
    }
    h1 {
        font-size: 25px;
    }
    h2 {
        font-size: 25px;
    }
    
    
    
    
    .news-list-browser-top {
        float: none;
        position: relative;
        right: 0px;
        top: 0px;
        padding: 0px;
    }
    .news-list-wrap .news-list-item:nth-child(n) {
        width: calc(100%);
    }
    .tt_address_list {
        column-count: 1;
    }
    
    
}
@media screen and (max-width:450px) {

    .header_mit_link .ce_headerlink {
        margin: 5px 0px 0px 0px;
    }
    
    h1.ce_header, .header_mit_link h1.ce_header {
        max-width: 100%;
    }
    .ce_headerlink {
        clear: both;
        right: 0px;
    }
}

@media screen and (min-width:768px) and (max-width:991px){
    .logo img {
      height: 70px;
    }
	nav > ul {
		width: 100%;
	}
	nav {
		font-size: 14px;
	}
    nav > ul > li > a, nav > ul > li > span {
    height: 41px;
        
        font-size: 16px;
        padding: 22px 10px 58px;
    }
    nav ul.megamenu ul li a {
            width: 225px;
    }
    .navigationline {
        height: 44px;
    }
    .navigationarea {
        width: 100%;
    }
	.navigationlineScrolled nav {
		font-size: 14px;
	}
    
    .headerNavi ul li.navi-suche a {
  padding:
0px 0px 0px 0px;
    }
	nav ul.megamenu {
        padding: 0px 0px 0px 10px;
        width: 100%;
    }
    nav ul.megamenu ul li a span {
        font-size: 14px;
    }
    .navigationlineScrolled .navigationline {
        height: 44px;
    }
    .navigationlineScrolled nav ul.megamenu {
        top: 41px;
    }
    
    a.navispendenbutton, a.navispendenbutton:hover {
  font-size: 16px;
  padding: 6px 13px !important;
  top: 10px;
    }
    
    .maincol .frame-type-textpic p, .maincol .frame-type-textpic li, .maincol .frame-type-textmedia p, .maincol .frame-type-textmedia li, .maincol .frame-type-text p, .maincol .frame-type-text li {
        font-size: 17px;
    }
    
    .dce-headline-extra {
        padding: 1px 25px 10px;
        margin: 0px;
    }
    
    #c18, #c6188 {
        margin: 0px 0px 0px 0px;
    }
    
    .catmarker {
        margin: 10px 10px 0px 0px;
    }
	.bigSliderContent {
		/* height: 425px !important; JWBDV TODO ok? */
	}
	.bigslidertextbox {
	}
	.bigslidertextbox {
	}
	.bigslidertextbox h3 {
		font-size: 22px;
	}
	.bigslidertextbox p {
		font-size: 14px;
		margin: 5px 0px 0px 0px;
	}
	.bigsilderimg {
		height: 300px;
	}
	.bigsilderimg img {
		width: 100%;
		height: auto;
		border-radius: 5px;
	}
	.navbutton {
	  width: 50px;
	  height: 50px;
	  border-radius: 25px;
	/*	color: #FFFFFF; */
		font-size: 31px;
		padding: 0px 0px 0px 15px;
	}
    .nextbutton {
        padding: 0px 0px 0px 17px;
    }
    .lSAction > .lSPrev {
	  left: 10px;
		top: 250px;
	}
	.lSAction > .lSNext {
	  right: 10px;
		top: 250px;
	}
    
    .newsboxes .lSAction > .lSPrev ,
    .newsboxes .lSAction > .lSNext {
  top: 107px;
}
    
    .navbutton {
        width: 40px;
        height: 40px;
        font-size: 28px;
        padding: 0px 0px 0px 12px;
        line-height: 1.45em;
    }
    .lSAction > a {
        width: 40px;
    }
    .nextbutton {
        padding: 0px 0px 0px 14px;
    }
	
	.blauebox_textarea p {
    font-size: 14px;
	}
	.dreierbox_gross p {
    font-size: 14px;
	}
	.dreierbox_gross h3.dreierbox_h3 {
        font-size: 21px;
	}
    .dreierbox_row .col-sm-6, .dreierbox_row .col-sm-3 {
        width: 33.33333%;
    }
    /*
	.newsboxteaserbox {
		height: 270px;
	}
    */
	.newsboxesimg {
		
	}
	.blauebox .blauebox_bildarea {
    width: 350px;
  }
  .newsletterbox .form_input {
		width: 450px;
	}
    .footerarea ul li a {
		font-size: 14px;
	}
	.footerarea ul li ul li a {
		font-size: 12px;
	}
    
    .footerarea > div:nth-child(3) {
        clear: both;
    }
    .footerarea ul li ul {
        margin-bottom: 20px;
    }
    .footerarea ul li h4 a,
    .footerarea h4,
	.contactarea h4 {
		font-size: 21px;
        font-family: "Noto Sans", sans-serif;
	}
	.contactarea p {
		font-size: 12px;
	}
    
    .contactarea .col-sm-6 {
        margin-bottom: 20px;
    }
    
    .newsboxteaserbox h3 a  {
		font-size: 22px;
	}
    
	h3.news_startbox_h3 {
		font-size: 21px;
	}
    
	
    .blauebox .blauebox_bildarea img {
     width:  100%;
    }
    
	.news_startbox_image {
    height: auto;
	}
    .spendenbox {
        padding: 27px 20px 47px 20px;
    }
    .news_startbox_teasers_row {
        display: flex;
    }
    .news_startbox_teasers_row div:nth-child(1), 
    .news_startbox_teasers_row div:nth-child(2), 
    .news_startbox_teasers_row div:nth-child(3) {
        margin-bottom: 8px;
    }
    .news_startbox_teasers_row div:nth-child(3) .news_startbox_rightsmall {
        margin-bottom: 7px;
    }
    
    
    
    
    
}

@media screen and (max-width:1000px) {
    #CookieBox {
        width: 90%;
    left: 5%;
    }
}
@media screen and (max-width: 767px) {
    #CookieBox .intro p {
        width: 90%;
        left: 5%;
    }
}


@media screen and (min-width:992px) and (max-width:1199px){
	nav > ul {
		width: 100%;
	}
	nav {
		font-size: 16px;
	}
    nav ul.megamenu {
        padding: 0px 0px 0px 61px;
    }
	.navigationlineScrolled nav {
		font-size: 16px;
	}
	
	.bigSliderContent {
		height: 460px !important;
	}
	.bigslidertextbox {
	}
	.bigslidertextbox h3 {
		font-size: 22px;
	}
    
    .lSAction > .lSPrev {
      top: 290px;
    }
    .lSAction > .lSNext {
      top: 290px;
    }
    
    .newsboxes .lSAction > .lSPrev {
  top: 158px;
}
    .newsboxes .lSAction > .lSNext {
  top: 158px;
}

    .navbutton {
        width: 40px;
        height: 40px;
        font-size: 28px;
        padding: 0px 0px 0px 12px;
        line-height: 1.45em;
    }
    .lSAction > a {
        width: 40px;
    }
    .nextbutton {
        padding: 0px 0px 0px 14px;
    }
	.bigslidertextbox p {
		font-size: 14px;
		margin: 5px 0px 0px 0px;
	}
	.bigsilderimg {
		height: 350px;
	}
	.bigsilderimg img {
		width: 100%;
		height: auto;
		border-radius: 5px;
	}
    
    
    .newsboxesdate {
        font-size: 12px;
        margin-bottom: 0px;
    }
    .newsboxestextarea h3 {
        font-size: 21px;
        margin-top: 10px;
    }
    /*
	.newsboxteaserbox {
		height: 300px;
	}
    */
	.newsboxesimg {
		
	}
    .catmarker {
        margin: 15px 3px 0px 0px;
    }
    .newsboxteaserbox h3 {
        margin: 13px 0px 0px 0px;
    }
	.blauebox .blauebox_bildarea {
        width: 450px;
      }
      .newsletterbox .form_input {
		width: 550px;
	}
    
    
    
    .spendenbox {
        padding: 27px 20px 47px 20px;
    }
    .spendenboxtext {
        padding-top: 10px;
    }
	.footerarea ul li a, .footerarea ul li h4 a {
		font-size: 15px;
	}
	.footerarea ul li ul li a {
		font-size: 13px;
	}
	.contactarea h4 {
		font-size: 15px;
	}
	.contactarea p {
		font-size: 13px;
	}
	h3.news_startbox_h3 {
		font-size: 22px;
	}
    /*
	.news_startbox_rightsmall h3.news_startbox_h3 {
		font-size: 16px;
	}
    */
	.news_startbox p {
		font-size: 14px;
	}
	.news_startbox .news_startbox_rightsmall p {
		font-size: 14px;
	}
	.news_startbox_date {
		font-size: 18px;
	}
	.news_startbox_image {
        height: auto;
	}
    
    
    nav > ul > li > span {
         font-size: 18px;   
        padding: 45px 15px 35px;
    }
    
    
}

@media screen and (min-width: 1200px) {
	nav > ul {
		
	}
	nav {
		font-size: 20px;
	}
	.navigationlineScrolled nav {
		font-size: 18px;
	}
	.newsletterbox .form_input {
		width: 650px;
	}
}


@media screen and (max-width: 991px) {
	.ce-textpic .ce-gallery {
		width: 100%;
	}
	
    .contentarea h1 {
  font-size: 35px;
}
	
}





@media screen and (max-width:450px){
    .bigslidertextbox h3 {
        font-size: 22px;
    }
    .bigslidertextbox .teasertext p {
        font-size: 14px;
    }
    .bigslidertextbox .cattext {
        display: none;
    }
    
    .lSAction > .lSPrev {
		top: calc( 83vw / 2.2 );
	}
	.lSAction > .lSNext {
		top: calc( 83vw / 2.2 );
	}
    
}
/* JWBDV TODO ok? 
@media screen and (max-width:625px){
   .bigSliderContent {
        height: 380px !important; 
    } 
}
@media screen and (max-width:500px){
   .bigSliderContent {
        height: 350px !important;
    } 
}
@media screen and (max-width:450px){
   .bigSliderContent {
        height: 400px !important;
    } 
}

*/




@media screen and (max-width: 767px) {

	.pages-stiftung .logo {
		margin-top: 12px !important;
	}

	.pages-stiftung #logoline .logoarea {
		height: 70px !important;
	}
	.pages-stiftung .navbar-smallmedia {
    	top: 15px !important;
	}
	.pages-stiftung #navbar {
		
	}
	.pages-stiftung nav>ul>li>span, 
	.pages-stiftung nav>ul>li:hover span {
		color: #6f0103;
	}
	
}



/*
#page-2248 #my-popup-content-con {
	display: block !important;
}
*/
#my-popup-content-con {
    display: none; /* Initial unsichtbar */
    opacity: 0; /* Start-Opacity */
    transition: opacity 0.5s ease-in-out; /* Sanfter Übergang */
}

#my-popup-content-con .header_mit_link {
  margin: 0px -7px 0 -7px;
}

#my-popup-content {
	padding: 10px;
  border-radius: 10px;
  position: absolute;
  background: #fff;
	width: 90%;
  max-width: 690px;
	z-index: 2001;
	
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#my-popup-content-bg {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(0,0,0,.5);
	z-index: 2000;
}
#my-popup-content-con img {
	width: 100%;
  height: auto;
}



.popup-close       { 
position: absolute;
  top: 20px;
  right: 20px;
  transition: all 200ms;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: #333;
  z-index: 1;
  background-color: #fff;
  border-radius: 50%;
  line-height: .8;
  width: 30px;
  text-align: center;
  height: 30px;
}
.popup-close:hover { 
	color: orange;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	#my-popup-content {
		top: 30%;
		transform: translate(-50%, -20%) !important;
	}
}
