.el-backgroundbox {
	box-sizing: border-box;	
}
/*
.el-backgroundbox.withBlur.bh-margin-none {
	z-index: 0 !important;
}
*/
.el-backgroundbox .bhElementInner {
	position: relative;
}
/* Overlay */

.el-backgroundbox .overlay {
	min-height: 100px;
	height: 100%;
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: transparent;
	box-sizing: border-box;
	z-index: 3;
}
.el-backgroundbox.caTop .overlay {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.el-backgroundbox.caBottom .overlay {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.bhe-state-dragging .el-backgroundbox .overlay {
	max-width: 50%;
	margin: 0 auto;
	
}
.el-backgroundbox .bhBackgroundImage {
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.el-backgroundbox.withBlur .bhBackgroundImage {
	transform: scale(1.02);
}
.el-backgroundbox .bhBackgroundImage .blurOverlayInner {
	height: 100%;
	width: 100%;
}
.el-backgroundbox .blurOverlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	
}
.el-backgroundbox.withBlur .blurOverlay {
	overflow: hidden;
}

.el-backgroundbox:not(.withBlur) .bhBackgroundImage {
	-webkit-filter: none;
	filter: none;
}

.el-backgroundbox.spaceAround .bhContainer {
	height: 100%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-around;
}

/* Ausrichtung horizontal */

.el-backgroundbox.caHLeft .overlay > .bhContainer > .bhElement {
	margin-left: 0px;
	margin-right: auto;
}
.el-backgroundbox.caHRight .overlay > .bhContainer > .bhElement {
	margin-right: 0px;
	margin-left: auto;
}


/* ohne Bild */
.el-backgroundbox.withOverlay > .bhElementInner > .blurOverlay {
	background-color: #f4f2f5;
}
/* mit Bild */
.el-backgroundbox.withOverlay > .bhElementInner > .blurOverlay > .bhBackgroundImage:not(.bhe-state-property-empty) > .blurOverlayInner {
	background-color: rgba(153, 139, 132, 0.5);
}
/* bei Ausrichtung horizontal */
.el-backgroundbox.withOverlay.caHLeft > .bhElementInner > .bhBackgroundImage > .overlay {
	background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0, 0, 0, 0) 60%);
}
/* bei Ausrichtung horizontal */
.el-backgroundbox.withOverlay.caHRight > .bhElementInner > .bhBackgroundImage > .overlay {
	background: linear-gradient(90deg, rgba(0,0,0,0) 40%, rgba(0, 0, 0, 0.6) 100%);
}


/* TEXT */
/*
.el-backgroundbox.withHeadline {
	padding-top: 75px;
}
*/
.el-backgroundbox.withHeadline .bbHeadline {
	margin-bottom: 40px;
}
.el-backgroundbox.withHeadline .bbHeadline .bbHeadlineInner {
	max-width: 900px;
	margin: 0 auto;
}
.el-backgroundbox.withHeadline .bbHeadline .bbHeadlineInner h3 {
	font-family: 'braisetto';
	font-size: 70px;
	line-height: 88px;
	text-align: center;
	color: #9A8C85;
}
/* PADDING */

/* right left */
.el-backgroundbox.paddingRLdefault > .bhElementInner > .overlay {
	padding: 0px;
}
.el-backgroundbox.paddingRL40 > .bhElementInner > .overlay {
	padding: 0 40px;
}
.el-backgroundbox.paddingRL60 > .bhElementInner > .overlay {
	padding: 0 60px;
}
.el-backgroundbox.paddingRL80 > .bhElementInner > .overlay {
	padding: 0 80px;
}

/* top */
.el-backgroundbox.paddingTopDefault > .bhElementInner > .overlay {
	padding-top: 0px;
}
.el-backgroundbox.paddingTop40 > .bhElementInner > .overlay {
	padding-top: 40px;
}
.el-backgroundbox.paddingTop60 > .bhElementInner > .overlay {
	padding-top: 60px;
}
.el-backgroundbox.paddingTop100 > .bhElementInner > .overlay {
	padding-top: 100px;
}
.el-backgroundbox.paddingTop125 > .bhElementInner > .overlay {
	padding-top: 125px;
}
.el-backgroundbox.paddingTop150 > .bhElementInner > .overlay {
	padding-top: 150px;
}
.el-backgroundbox.paddingTop200 > .bhElementInner > .overlay {
	padding-top: 200px;
}

/* bottom */
.el-backgroundbox.paddingBottomDefault > .bhElementInner > .overlay {
	padding-bottom: 0px;
}
.el-backgroundbox.paddingBottom40 > .bhElementInner > .overlay {
	padding-bottom: 40px;
}
.el-backgroundbox.paddingBottom60 > .bhElementInner > .overlay {
	padding-bottom: 60px;
}
.el-backgroundbox.paddingBottom100 > .bhElementInner > .overlay {
	padding-bottom: 100px;
}
.el-backgroundbox.paddingBottom125 > .bhElementInner > .overlay {
	padding-bottom: 125px;
}
.el-backgroundbox.paddingBottom150 > .bhElementInner > .overlay {
	padding-bottom: 150px;
}
.el-backgroundbox.paddingBottom200 > .bhElementInner > .overlay {
	padding-bottom: 200px;
}

