@import url("https://use.typekit.net/jvq1xzs.css");

@view-transition {
  navigation: auto;
}

/* ----- FARBEN ----- */

:root {    
    --4touch-color-yellow: #E4C540;
	--4touch-color-grey: #58595B;
    --4touch-color-brown-01: #23221F;
	--4touch-color-brown-02: #312F29;
	--4touch-color-green: #A5B45C;
	--4touch-color-white: #FFFFFF;
	--4touch-color-black: #000000;
	--4touch-color-text-grey: #333333;
}

body { 
    font-family: "myriad-pro", sans-serif;
    line-height: normal;
    font-size: 18px;
    color: var(--4touch-color-white);
    line-height: 150%;
    -webkit-font-smoothing: antialiased;
}
figure {
	display: block;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
}

/* ----- PRELOADER ----- */

#Preloader {
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 400;
}
#Preloader .preloadericon {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -25px;
	margin-top: -25px;
	border-radius: 50%;
	border-left: 2px solid rgba(0,0,0,.1);
	border-right: 2px solid rgba(0,0,0,.1);
	border-top: 2px solid rgba(0,0,0,.1);
	border-bottom: 2px solid #009DE1;

	-webkit-animation: rotation 0.8s infinite linear;
	-moz-animation: rotation 0.8s infinite linear;
	-ms-animation: rotation 0.8s infinite linear;
	-o-animation: rotation 0.8s infinite linear;
	animation: rotation 0.8s infinite linear;
}
@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* ----- NAVIGATION ----- */

#NavigationBox {
	z-index: 200;
}
#Navigation {
	height: 60px;
	color: var(--4touch-color-yellow);
	width: 100%;
	background-color: var(--4touch-color-brown-02);
	position: fixed;
	width: 100vw;
	z-index: 200;
	box-shadow: 0px 4px 0px rgba(0,0,0,.2);
}
body.showmenulogo #Navigation {
	background-image: url(../images/logo-scrolled.svg);
	background-position: left 15px top 2px;
	background-repeat: no-repeat;
	background-size: 123px 63px;
}
body.bhe-state-dragging #Navigation {
	opacity: .3;
	pointer-events: none;
}
#Navigation .hnavi_item {
	display: inline-block;
}
#Navigation .hnavi_item > a {
	transition: color .4s;
}
#Navigation .hnavi_item:hover > a {
	color: var(--4touch-color-green);
}
#Navigation .hnavi_item > a:after {
	content: '';
	display: block;
	height: 60px;
	width: 22px;
	position: absolute;
	top: 0;
	right: -11px;
	background-image: url(../images/hnavi-line.png);
	background-size: 22px 60px;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: .6;
}
#Navigation .hnavi_item:last-child > a:after {
	display: none;
}
#Navigation .hnavi_item.active > a {
	color: var(--4touch-color-green);
}
#Navigation ul.hsnavi_box {
	position: absolute;
	width: 300px;
	margin-left: -100px;
	top: 60px;
	display: block;
	padding-left: 70px;
	padding-right: 70px;
	background-color: var(--kinderparadies-white);
	background: linear-gradient(180deg, #312F29 0%, #23221F 100%);
	margin-top: 60px;
	pointer-events: none;
	transition: all .4s;
	opacity: 0;
	padding: 10px 26px;
	border-radius: 10px;
}
#Navigation .hnavi_item:hover .hsnavi_box {
	margin-top: 0px;
	opacity: 1;
	pointer-events: all;
}
#Navigation .bh-navigation ul {
	text-align: center;
}
#Navigation .hnavi_item a {
	color: var(--4touch-color-yellow);
	font-weight: bold;
	line-height: 60px;
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
}
#Navigation .hsnavi_item {
	width: 100%;
	display: inline-block;
	border-bottom: 1px solid rgba(255,255,255,.2);
}
#Navigation .hsnavi_item:last-child {
	border-bottom: none;
}
#Navigation .hsnavi_item a {
	font-weight: normal;
	line-height: 50px;
	font-size: 20px;
	letter-spacing: 0.04em;
	text-transform: none;
	width: 300px;
	text-align: left;
	padding-left: 0;
	padding-right: 0;
	transition: all .4s;
	font-family: "myriad-pro-condensed";
}
#Navigation .hsnavi_item a:last-child {
	border-bottom: none;
}
#Navigation .hsnavi_item a:after {
	content: '\e902';
	width: 50px;
	position: absolute;
	bottom: 0px;
	right: 20px;
	display: block;
	color: #fff;
	transition: all .4s;
	opacity: 0;

	font-family: 'bakehouse-iconset' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
	font-size: 20px;
}
#Navigation .hsnavi_item a:hover:after {
	opacity: 1;
	right: 0;
}
#Navigation .hsnavi_item a:hover {
	padding-left: 15px;
}

/* ----- CTA ----- */

#Cta {
	position: fixed;
	right: 0;
	top: 0;	
	z-index: 210;
}
body.bh-bemode #Cta {
	top: 50px;	
}
#Cta #Inquiry {
	position: absolute;
	right: 0px;
	width: 188px;
	background-color: var(--4touch-color-yellow);
	height: 60px;
	font-family: "myriad-pro", sans-serif;
	font-weight: bold;
	line-height: 62px;
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding-left: 15px;
}
#Cta #Inquiry:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 60px 15px;
	border-color: transparent transparent var(--4touch-color-yellow) transparent;
	position: absolute;
	left: -15px;
}
#Cta #Inquiry a {
	display: block;
	color: var(--4touch-color-brown-02);
}
#Cta #PhoneTop {
	position: absolute;
	width: 64px;
	height: 64px;
	top: 13px;
	right: 13px;
	border-radius: 50%;
	z-index: 300;
	background: var(--4touch-color-white);
	background-image: url(../images/icon-rund-background.png);
	background-size: contain;
	font-size: 24px;
	color: var(--4touch-color-brown-02);
	text-align: center;
	box-shadow: 0px 3px 0px rgba(0,0,0,0.3);
}
#Cta #PhoneTop .phoneicon {
	line-height: 64px;
}

/* ----- PAGE ----- */

.bhe-state-editing #Page {
	margin-top: 60px;
	overflow: visible;
}
#Page {
	overflow: hidden;
}

/* ----- HEADER ------ */

#HeaderContent .cssFaderMenuPoint {
    text-align: right;
    margin: 0 auto;
    right: 30px;
    position: absolute;
}
#HeaderContent {
	padding-top: 60px;
	background-color: var(--4touch-color-brown-01);
}

/* ----- LOGO ------ */

#Logo {
	position: absolute;
	top: 59px;
	left: 0px;
	width: 100%;
	height: 300px;
	background: radial-gradient(100% 50% at 50% 0%, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 100%);
	z-index: 190;
	transition: all .4s;
	display: flex;
    align-items: flex-start;
    justify-content: center;
}
.bh-bemode #Logo {
	top: 110px;
}
body.productmenuopen #Logo {
	opacity: 0;
}
#Logo a {
	padding-top: 44px;
}
#Main {
	background-color: var(--4touch-color-brown-02);
}
/* #HeaderContent {
	min-height: 400px;
} */
#HeaderContent .bhPicture, #HeaderContent .bhFader {
	margin-bottom: 0px;
}

/* ----- MAIN TOP ----- */

#MainTop {
	background: var(--4touch-color-brown-01);
	position: relative;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
#MainTopContent {
	padding: 65px 65px;
	text-align: center !important;
	max-width: 1160px;
	margin: 0 auto;
	margin-bottom: 40px;
}
#MenuTitle {
	font-size: 32px;
	font-family: "chaparral-pro", serif;
	font-style: italic;
	font-weight: 300;
	padding: 46px 20px;
	color: #CFDE43;
	background-color: rgba(207, 222, 67, 0.14);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

/* ----- SUBNAVIGATION ----- */

#SubnavigationTriggerWrapper {
	position: fixed;
	top: 50%;
	left: 0;
	z-index: 299;
}
#SubnavigationTrigger {
	position: absolute;
	top: 250px;
	border-radius: 30px;
	transform: rotate(-90deg);
	transform-origin: top left;
	background-color: #CFDE43;
	color: #000;
	width: 250px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	font-weight: bold;
	text-transform: uppercase;
	vertical-align: middle;
	cursor: pointer;
	left: 10px;
}
#SubnavigationTrigger:hover {
	background-color: #fff;
}
#SubnavigationTrigger .triggericon {
	padding-right: 20px;
	font-size: 24px;
	line-height: 40px;
	position: absolute;
	top: 9px;
	right: 0;
	transform: rotate(90deg);
}
#SubnavigationInner {
	height: calc(100vh - 177px);
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}
#SubnavigationInner .bh-navigation {
	padding-bottom: 60px;
}
#Subnavigation  {
	z-index: 300;
	position: fixed;
	top: 70px;
	left: -253px;
	width: 253px;
	height: calc(100vh - 80px);
	background: #fff;
	margin-bottom: 20px;
	font-size: 16px;
	box-shadow: 0px 0px 200px rgba(0,0,0,.2);
	transition: left .4s;
	border-radius: 10px;
	background: rgba(0, 0, 0, .85);
	backdrop-filter: blur(10px);
}
body.productmenuopen #Subnavigation  {
	left: 10px;
}
#SubnavigationClose {
	position: absolute;
	top: 45px;
	right: 10px;
	font-size: 24px;
	cursor: pointer;
}
#SubnavigationClose:hover {
	color: #CFDE43;
}
#Subnavigation ul {
	padding: 0px;
}
#Subnavigation ul li {
	line-height: 40px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	position: relative;
	transition: all .3s;
}
#Subnavigation ul li:hover {
	background-color: rgba(0,0,0,.05);
}
#Subnavigation ul li.active {
	background: #CFDE43;
	border-top: none;
	padding-left: 0px;
}
#Subnavigation ul li.active a {
	font-weight: bold;
	color: #000;
}
#Subnavigation ul li.active + li {
	border-top: none;
}
#Subnavigation ul li.active + li + li {
	border-top: 1px solid rgba(255, 255, 255, .1);
}
#Subnavigation ul li a {
	color: #fff;
	padding-left: 20px;
	padding-right: 20px;
}

/* ----- CONTENT ------ */

#Content {
	padding: 30px 64px 128px 64px;
	margin: 0 auto;
}

#MainFooter {
	padding: 60px 65px;
	background: var(--4touch-color-brown-01) ;
	color: var(--4touch-color-white);
}
#MainFooter .bhContainer {
	max-width: 1160px;
	margin: 0 auto;
}
#MainFooter h1, #MainFooter h2, #MainFooter h3, #MainFooter h4 {
	color:#000;
}

/* ----- ASIDE CONTENT (INHERIT) ----- */

#AsideContent .aside-content-wrapper {
	padding: 45px 65px;
	max-width: 1160px;
	margin: 0 auto;
}
#AsideContent img {
	width: 100%;
	height: auto;
}

/* ----- FOOTER ----- */

#Footer {
	background-color: var(--4touch-color-yellow);
	color: var(--4touch-color-brown-02);
	background-image: url(../images/pattern-4touch.png);
	background-position: center center;
	background-repeat: repeat;
	background-size: 100% auto;
	height: 374px;
	position: relative;
}
#Footer a {
	color: var(--4touch-color-brown-01);
}
#FooterMap {
	padding: 10px;
}
#FooterLocation {
	overflow: hidden;
}
#FooterLocation,
#FooterButtons {
	width: 325px;
	height: 340px;
	position: absolute;
	top: 0;
	left: 0;
}
#FooterButtons  {
	right: 0;
	left: auto;
}
#Footer h1, #Footer h2, #Footer h3, #Footer h4 {
	color: #fff;
}
#FooterContent {
	width: calc(100% - 700px);
	left: 350px;
	position: absolute;
	font-family: "chaparral-pro", serif;
	font-size: 18px;
	line-height: 25px;
}
#FooterContent .bh-bodytext a {
    font-weight: normal;
}
#FooterContent strong {
	font-family: "myriad-pro", sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.08em;
	font-weight: bold;
}
#FooterContent .bh-navigation {
	text-align: center;
	margin-top: 50px;
}
#Footer ul li {
	display: inline-block;
	font-weight: bold;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-family: "myriad-pro", sans-serif;
}
#Footer ul li a:after {
	display: inline-block;
	content: '·';
	width: 30px;
	text-align: center;
}
#Footer ul li:last-child a:after {
	display: none;
}
#Footer ul li a {
	color: #fff;
}
#Footer ul li a:hover {
	color: var(--4touch-color-brown-02);
}
#FooterLogo {
	margin-top: 34px;
	margin-bottom: 27px;
	background-image: url(../images/logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 251px 92px;
	height: 92px;
}
#FooterButtons {
	text-align: right;
	padding-top: 140px;
	height: 200px;
}
#FooterButtons .footer-button {
	width: 64px;
	height: 64px;
	border-radius: 32px;
	background-color: var(--4touch-color-white);
	background-image: url(../images/icon-rund-background.png);
	background-size: contain;
	display: inline-block;
	margin-right: 12px;
	box-shadow: 0px 6px 0px rgba(0,0,0,.3);
}
#FooterButtons .footer-button .footericon {
	color: var(--4touch-color-brown-01);
	text-align: center;
	font-size: 24px;
	line-height: 64px;
}

/* ----- SCHRIFTEN ----- */

.bh-styleclass-highlight {
	font-size: 22px;
	line-height: 140%;
	font-family: "chaparral-pro", serif;
}
a.bh-styleclass-linkbutton,
.bh-styleclass-linkbutton a {
	display: inline-block;
	font-size: 16px;
	padding-left: 64px;
	padding-right: 64px;
	padding-top: 18px;
	padding-bottom: 16px;
	line-height: 110%;
	text-align: center;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: bold;
	background-color: var(--4touch-color-white);
	color: var(--4touch-color-brown-02) !important;
	border-radius: 25px;
	transition: all .4s;
	box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.20);
}
a.bh-styleclass-linkbutton:hover,
.bh-styleclass-linkbutton a:hover {
	background-color: var(--4touch-color-yellow);
}
a.bh-styleclass-linkbutton:after,
.bh-styleclass-linkbutton a:after {
	display: block;
	content: '\e902';
	position: absolute;
	width: 24px;
	height: 24px;
	right: 22px;
	top: calc(50% - 12px);
	font-size: 24px;
	
	font-family: 'bakehouse-iconset' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	letter-spacing: 0;
	speak: never;
	font-feature-settings: "liga";
	font-variant-ligatures: discretionary-ligatures;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.produkt-preis {
	line-height: 77px;
	font-size: 33px;
	font-family: "chaparral-pro", serif;
	color: #000;
	text-align: center;
	position: relative;
	background-image: url(../images/price-gradient.png);
	background-repeat: repeat-x;
	background-position: top center;
	background-size: 579px 63px;
	padding: 0px 20px; 
	background-color: #fff;
	box-shadow: 0px 5px 20px rgba(0,0,0,.15);
	transform: rotate(-5deg);
	transform-origin: top left;
	border-radius: 4px;
	display: block;
	position: relative;
	margin-top: 30px;
}
.anfrage-button {
	line-height: 47px;
	font-family: "myriad-pro", sans-serif;
    font-size: 17px;
	background-color: #CEDE43;
	border-radius: 40px;
	padding-top: 7px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.3);
	position: relative;
	transition: background-color .4s;
}
.anfrage-button:hover {
	background-color: #e2f539;
}
a.anfrage-button, .anfrage-button a {
	font-weight: bold;
	color: #000;
	display: block;
	border-bottom: 0px !important;
}
.anfrage-button:after {
	display: block;
	width: 45px;
	height: 54px;
	text-align: left;
	content: '\e902';
	position: absolute;
	top: 0;
	right: 0;
	color: #000;
	line-height: 54px;
	font-size: 24px;
	pointer-events: none;
	
	font-family: 'bakehouse-iconset' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.contenttable tr {
	background: #EFEFEF;
}
.contenttable tr.tr-odd {
	background: #F7F7F7;
}
.contenttable td {
	padding:10px 15px;
	line-height: normal;
}
.contenttable td:first-child {
	font-weight:bold;
	padding-left:10px;
}
.bh-bodytext a {
    font-weight: 600;
    color: var(--4touch-color-yellow);
    border-bottom: 1px solid rgba(227, 197, 64, 0.3);
}
.bh-bodytext a:hover {
	color: var(--4touch-color-green);
	border-bottom: 1px solid rgba(164, 180, 92, 0.3);
}

/* ---- LIST ---- */
.bh-bodytext ul {
	padding-left: 0;
	margin: 0 0 20px;
	list-style: none;
}

.bh-bodytext li {
	position: relative;
	padding-left: 28px;      /* Icon-Breite (16) + Gap (12) */
	margin-bottom: 8px;
	list-style-type: none;
}

.bh-bodytext li::before {
	content: '\e915';
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	height: 16px;
	color: var(--4touch-color-green);

	/* Icon vertikal auf die erste Zeile ausrichten – 
	   passt sich automatisch an font-size/line-height an */
	line-height: inherit;

	font-family: 'bakehouse-iconset' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	letter-spacing: 0;
	speak: never;
	font-feature-settings: "liga";
	font-variant-ligatures: discretionary-ligatures;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ---- HEADLINES ---- */

h1,h2,h3 {
	font-family: "chaparral-pro", serif;
	font-weight: 300;
	margin-top: 0;
}
h1 {
    font-size: 70px;
    line-height: 90%;
}
h2 {
    line-height: 100%;
	font-size: 36px; 
}
h3 {
    font-size: 32px;
	line-height: 100%
}
h4, h5, h6 {
	margin-top: 0;
	color: var(--4touch-color-yellow);
	font-size: 15px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0.195rem;
	text-transform: uppercase;
	margin-bottom: 8px !important;
}
.txtyellow {
  color: var(--4touch-color-yellow);
}
.txtgreen {
  color: var(--4touch-color-green);
}
.txtwhite {
  color: var(--4touch-color-white);
}

.txtnomargin .bh-bodytext p {
  margin-bottom: 0px;
}

.colorgroupbox {
  background-color: #f1f1f1;
  padding: 20px;
}

.colorgroupbox .cols3 .bhCol {
  margin: 0;
  width: 33.333333%;
}

.colorgroupbox .cols3 .bhCol .bhElement {
  margin-bottom: 0px;
}

.bh-gallery-item:hover {
  opacity: .7;
}

/* ----- PICTURES RESIZE ----- */

body:not(.bhe-state-editing) .bhPicture.bhElement:not(.picnoresize) img,
body:not(.bhe-state-editing) .bhBox.bhElement img {
	width: 100%;
	height: auto;
}

/* ----- LAYOUT ----- */

.bhElement, .bhPseudoElement {
    margin-bottom: 40px;
}
.geoPlugin {
	border-top:1px solid #e1e1e1;
}
.geoPlugin .hideContent, .geoPlugin .menubox, .geoPlugin.fullscreen .menubox {
	background:#fff !important;
}

.geoPlugin .selectButton, .geoPlugin .selectTitel {
	background-color:#e1e1e1;
	font-family: "myriad-pro", sans-serif;
	color:#fff;
	text-shadow: none;
}
.geoPlugin .iconButton {
	background:none !important;
	position:relative;
}
.iconButton:before, .iconButton:after {
	display: block;
	content:' ';
	position:absolute;
	font-size:0px;
	line-height: 0px;
	border:4px solid grey;
}
.iconButton:before {
 bottom:5px;
 left:5px;
 border-top-color: transparent;
  border-right-color: transparent;
}
.iconButton:after {
	 top:5px;
 right:5px;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.geoPlugin .selectTitel, .geoPlugin .iconButton, .geoPlugin .selectButton:hover .selectTitel {
	 box-shadow: none; 
	 -webkit-box-shadow: none; 	
}
.geoPlugin .selectButton .selectTitel:hover, .geoPlugin .iconButton:hover, .geoPlugin .selectOptions, .geoPlugin .selectButton:hover .selectOptions {
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5); 
	 -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.5); 
}
.newslist_pic {
	float:left;
	width:25%;
	margin-right:5%;
}
.newslist_pic img {
	width:100%;
	height:auto;
}
.newslist_contentbox {
	float:left;
	width:70%;
}

#Content .newslist .ctSliderBox {
	float:none;
	clear:right;
	margin-bottom: 20px;
}
#Content .newslist .ctSliderBox:after {
	content: ' ';
	height:1px;
	display:block; 
	clear: both;
}
.newslist_headline {
	font-family: "chaparral-pro", serif;
	font-size: 26px;
	margin-bottom: 6px;
	color: #9CAD25;
}
#Content .newslist_datum {
	padding:5px 0px 10px; 
}

#MainFooter .newslist .ctSliderBox {
	float:left;
	width: 49%;
}
#MainFooter .newslist .ctSliderBox:first-child {
	margin-right:2%;
}
#MainFooter .newslist_datum, #MainFooter .newslist_morelink {
	display:none;
}
#MainFooter .newslist_pic {
	width:40%;
	margin-right:5%;
}
#MainFooter .newslist_contentbox {
	width:55%;
}
.newslist_text {
	color: #999999;
}
.newsdetail_mainpicture {
	float:left;
	width:48%;
	margin-right:4%;
}
.newsdetail_image img, .newsdetail_gallerypic img {
	width:100%;
	height:auto;
}
.newsdetail_image {
	display: block;
	margin-bottom:20px;
}
.newsdetail_gallery {
	margin:-4% 0%;
	position: relative;
	left:-4%;
	width:104%;
}
.newsdetail_gallerypic {
	margin:2% 0% 2% 4%;
	width:29.33333%;
}
.newsdetail_maincontent {
	float:left;
	width:48%;
}
.newsdetail_links div {
	border-bottom:1px solid #e0e0e0;
}
.newsdetail_links div:first-child {
	border-top:1px solid #e0e0e0;
}
.newsdetail_links a {
	display:block;
	line-height:35px;
}

/* ---- ANFRAGE ---- */

.errorBox {
	border: 2px solid rgba(255, 0, 0, 0.418);
	border-radius: 6px;
	padding: 16px;
	background-color: rgba(255, 0, 0, 0.112);
	font-size: 15px;
	margin-bottom: 16px;
	color: rgba(255,255,255,.5);
}
.bhAnfrage.bhElement {
	max-width: 960px;
	margin: 0 auto;
}
.bh-fieldblock {
	background-color: rgba(255,255,255,.05);
	border-radius: 6px;
	margin-bottom: 20px;
	padding: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.bh-fieldblock h3 {
	color: var(--4touch-color-green);
	width: 100%;
	margin-bottom: 6px;
}
.bh-field {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex: 0 0 calc(50% - 10px);
	box-sizing: border-box;
}
.bh-field.bh-field-fullwidth {
	flex: 0 0 100%;
}
.bh-field.bh-field-checkbox {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.bh-field.bh-field-checkbox a {
	color: var(--4touch-color-yellow);
}
.bh-field span {
	display: flex;
	line-height: 35px;
	align-items: flex-start;
}
.bh-field.textfield span {
	vertical-align: top;
}
.bh-field input,
.bh-field select {
	display: inline-block;
	padding: 14px 12px;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 6px;
	font-size: 17px;
	font-family: "myriad-pro", sans-serif;
	font-weight: 400;
	box-shadow: 0px 2px 0px rgba(0,0,0,0.3);
	box-sizing: content-box;
	width: calc(100% - 24px);
}
.bh-field select {
	background-color: var(--4touch-color-yellow);
}
.bh-field input:focus,
.bh-field textarea:focus {
	border: none;
	outline: 3px solid #D0DC2E;
	border: 1px solid rgba(0,0,0,0);
}
.bh-field textarea {
	display: inline-block;
	width: calc(100% - 32px);
	padding: 16px;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 6px;
	font-size: 17px;
	font-family: "myriad-pro", sans-serif;
	font-weight: 400;
	height: 300px;
	box-shadow: 0px 4px 0px rgba(0,0,0,0.04);
}
.bh-field input[type="checkbox"] {
	width: 24px;
	height: 24px;
	margin-right: 12px;
}
#Page .bhAnfrage.bhElement .bh-field.submit input {
	display: block;
	background-color: #A0B12A;
	border: none;
	color: #fff;
	padding: 0px;
	cursor: pointer;
	transition: all .4s;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: "myriad-pro", sans-serif;
	padding-top: 15px;
	padding-bottom: 15px;
	line-height: 110%;
	margin: 0 auto;
	max-width: 300px;
	border-radius: 6px;
	margin-top: 30px;
}
.bh-field.submit input:hover {
	box-shadow: 0px 4px 0px rgba(0,0,0,0.3);
	background-color: #D0DC2E;
	color: #000;
}

@media
	(max-width : 660px) {
	
	#Page .bhAnfrage.bhElement .bh-field.submit input {
		margin-top: 15px;
	}
	.bh-field {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 6px;
	}
	.bh-field span {
		width: 100%;
		line-height: 28px;
	}
	.bh-field input,
	.bh-field textarea {
		width: calc(100% - 32px);
	}
	.bh-field textarea {
		height: 200px;
	}
}

/* ELEMENTE */

/* siehe centered */
#HeaderContent .cssFaderMenuPoint {
	position: relative;
}
#HeaderContent .cssFaderMenuPointInner {
	position: absolute;
	bottom: 390px;
	right: 30px;
	width: 253px;
	height: 40px;
	padding-top: 20px;	
	text-align: right;
}
#HeaderContent .cssFaderMenuPointItem {
	float:none;
	display:inline-block;
	margin-bottom:0px;
	border-radius:10px;
	border:2px solid #fff;
	background: transparent;
	height: 4px;
	width: 4px;
	margin: 0px 8px;
}
#HeaderContent .cssFaderMenuPointItem.current {
	background: #fff;
}
.bhGallery {
	position: relative;
	left: -2%;
	width: 102%;
	margin: -1% 0%;
	padding-bottom: 20px;
}
.bh-gallery-item {
	margin: 1% 0% 1% 2%;
width: 23%;
}
.bh-gallery-item img {
	width:100%;
	height:auto;
}
.bhElement.message-box {
	margin-bottom: 20px;
	color: var(--4touch-color-white);
	border-radius: 7px;
	padding: 30px 30px 30px 86px;
	background-color: var(--4touch-color-brown-01);
}
.bhElement.message-box a {
	color: var(--4touch-color-yellow);
}
.bhElement.message-box:before {
	display: block;
	content: '\e915';
	width: 44px;
	height: 44px;
	font-size: 44px;
	line-height: 44px;
	color: var(--4touch-color-yellow);
	position: absolute;
	left: 20px;
	top: 20px;
	text-align: center;
	
	font-family: 'bakehouse-iconset' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.bhElement.message-box .bh-styleclass-highlight {
	color: #fff;
}

/* ----- COLS ----- */

.breit-schmal .col1 {
	width:65%;
}
.breit-schmal .col2 {
	width:33%;
}
.bh-cols-asymmetric .col1 {
	width:33%;
}
.bh-cols-asymmetric .col2 {
	width:65%;
}
#FooterContent .bhCol {
	width:48%;
}
#FooterContent .bhCol.col1 {
	margin-right:4%;
}

/* ----- DEFAULT-TABLE ----- */

#ContentBox table tr td {
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 10px;
	padding-right: 10px;
}
#ContentBox table tr:nth-child(odd) {
	background-color: rgba(255,255,255,.1);
}
#ContentBox table tr:nth-child(even) {
	background-color: rgba(255,255,255,.05);
}
#ContentBox table tr:first-child td {
}
#ContentBox table td:first-child {
	font-weight: bold;
	width: 50%;
}
#ContentBox table {
}

/* ----- FADER ----- */

.cssFaderMenuPoint{
	left: 0px; right: 0px;
	width: 100%;
	bottom:0px; top: auto;
	text-align: center;
}
.cssFaderMenuPointInner{
	display: inline-block;
}
.cssFaderArrow{
	width: 64px;
	height: 64px;
	color: var(--4touch-color-brown-02);
	background-color: var(--4touch-color-white);
	top: auto;
	bottom: 20px;
	position: absolute;
	border-radius: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cssFaderArrow:hover {
	background-color: var(--4touch-color-yellow);
}
.cssFaderArrow.fadePrev{
	left: auto;
	right: calc(50% + 12px);
}
.cssFaderArrow.fadeNext{
	right: auto;
	left: calc(50% + 12px);
}
.cssFaderArrow.fadePrev:after,
.cssFaderArrow.fadeNext:after {
	content: '\e901';
	
	font-family: 'bakehouse-iconset' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	letter-spacing: 0;
	speak: never;
	font-feature-settings: "liga";
	font-variant-ligatures: discretionary-ligatures;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	font-size: 24px;
}
.cssFaderArrow.fadeNext:after {
	content: '\e902';
}

/* ----- LINKBOX FOOTER ----- */

#MainFooter .bhLinkbox{
	background:none;
}
#MainFooter .linkbox_content{
	padding: 0px 10px;
}

/* ----- BOX ----- */

.bhBox {
	padding: 0px;
	background: #fff;
	color: #6e6e6e;
	font-family: "chaparral-pro", serif;
	font-size: 17px;
	line-height: 22px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0px 4px 0px rgba(0,0,0,.15);
	transition: all .4s;
}
a.bhBox:hover {
	box-shadow: 0px 12px 30px rgba(0,0,0,.15);
	transform: rotate(-5deg);
}
.bhBox .boxBild {
	padding: 7px;
}
.bhBox h3 {
	font-family: "myriad-pro", sans-serif;
	margin-bottom: 5px;
	font-size: 20px;
	font-style: normal;
	font-weight: bold;
	color: #009DE1;
}
.boxTitle {
	display: none;
}
.boxContent {
	padding: 20px 20px 50px 20px;
	min-height: 100px;
}
.bhBox:after {
	display: none;
	line-height: 40px;
	content: '\e902';
	color: #009DE1;
	font-size: 24px;
	bottom: 10px;
	right: 14px;
	position: absolute;
	
	font-family: 'bakehouse-iconset' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.bhBox[href]:after {
	display: block;
}

/* ----- PICTURE ----- */

body:not(.bhe-state-editing) .bhPicture.picrotate {
	transform: rotate(-5deg) scale(.85);
	border: 15px solid #fff;
	box-shadow: 0px 15px 30px rgba(0,0,0,.4);
}

/* ----- TABS ----- */

.bh-tab-togglers {
	text-align: center;
}
.bh-tabtogglers {
	background-color: var(--4touch-color-white);
	position: relative;
	height: 45px;
	border-radius: 30px;
	text-align: center;
	display: inline-block;
	margin-bottom: 50px;
}
.bhTabElement {
	padding: 0px 40px;
	color: var(--4touch-color-brown-01);
	background-color: transparent;
	font-size: 17px;
	border: none;
	width: 100px;
	float: none;
	display: inline-block;
	
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.bhTabElement:first-child {
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
}
.bhTabElement:last-child {
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
}
.bh-tabtoggler-active {
	background-color: var(--4touch-color-yellow);
	border-radius: 40px;
}

#CooAnfrage_Newsletter input {
	line-height: 38px;
	height:38px;
	padding:0px 20px;
	width:400px;
	margin-bottom:20px;	
}
#CooAnfrage_Newsletter .big_uppercase, #CooAnfrage_Newsletter .nl_info {
	display:none;
}
#CooAnfrage_Newsletter input[type="submit"] {
	background:#A0B12A;
	border: none;
	color:#fff;
	cursor: pointer;
	font-size: inherit;
	width:442px;
	line-height: 40px;
	height:40px;	
}
#CooAnfrage_Newsletter input[type="submit"]:hover {
	box-shadow:0px 0px 10px rgba(0,0,0,0.3);
}


/**************
* Cookies
**************/
.bh-cookies-warning-accept,
.bh-cookies-warning-link {
    color: white;
    background-color: #4e4e4e !important;
    font-size: 14px;
}
.bh-state-desktop .bh-cookies-warning {
	width: 300px;
	padding-bottom: 0px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    background-color: #f1f1f1;
    color: rgb(0, 0, 0);
}
.bh-state-desktop .bh-cookies-buttons {
	width: 130px;
	margin-right: 10px;	
}
.bh-state-desktop .bh-cookies-buttons > * {
	width: 110px;
	margin-bottom: 10px;
}
.bh-state-desktop .bh-cookies-warning-text {
	width: 130px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
}

/* ANPASSUNG THUMBNAIL-GALERIE - UMBAU VON bhGALLERY AUF EL-GALLERY - Sascha (18.06.2021) */

.el-gallery .el-gallery-thumbnail-container {
	grid-template-columns: repeat( auto-fit, minmax(175px, 1fr));
    grid-gap: 20px;
}
.el-gallery .el-gallery-thumbnail-container .el-gallery-item {
	position: relative;
    box-sizing: border-box;
    padding-top: 75%;
}
.el-gallery .el-gallery-thumbnail-container .el-gallery-item:hover {
	opacity: 0.7;
}

/* VIDEO HEADER OVERRULING */

#HeaderContent .yt-wizard-wrapper iframe,
#HeaderContent .vi-wizard-wrapper iframe,
#HeaderContent .bhHtml5VideoElement video {
	height: 100vh !important;
	object-fit: cover;
}

/* ----- SITEMAP ----- */

.frame-type-menu_sitemap_pages {
	background-color: rgba(255,255,255,.05);
	border-radius: 10px;
	max-width: 760px;
	margin: 0 auto;
	padding: 30px;
	font-size: 20px;
	line-height: 140%;
}
.frame-type-menu_sitemap_pages a {
	color: var(--4touch-color-white);
}
.frame-type-menu_sitemap_pages > ul > li > ul > li a {
	color: var(--4touch-color-green);
}