.el-popup {
	position: relative;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.el-popup .elPopupcontentWrapper {
	min-height: 400px;
	padding: 30px;
	position: relative;
	display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-align: stretch;
    -ms-flex-align: stretch;
        align-items: stretch;
}
.el-popup .bhBackgroundImage {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.el-popup .elPopupcontent {
	position: relative;
	max-width: 280px;
	padding-top: 25px;
	padding-bottom: 25px;
	-webkit-box-flex: 1;
    -ms-flex-positive: 1;
        flex-grow: 1;
	background: rgba(255,255,255,0.9);
	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: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: stretch;
    -ms-flex-align: stretch;
        align-items: stretch;
}
.el-popup .popupClose {
	position: absolute;
	height: 20px;
	width: 20px;
	border-radius: 20px;
	top: -10px;
	right: -10px;
	left: auto;
	bottom: auto;
	background: black;
	border: 3px solid white;
	cursor: pointer;
	pointer-events: all;
	z-index: 1;
    box-sizing: inherit;
}
.el-popup .popupClose:before {
	position: absolute;
	left: 0.5px;
	top: 0px;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	text-align: center;
	height: 20px;
	width: 20px;
	color: white;
	
}
.el-popup .elPopupHeadline {
	position: relative;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
}
.el-popup .elPopupHeadline h3 {
	font-family: 'miller-text';
	color: #D0A367;
	font-size: 28px;
	line-height: 34px;
	margin-bottom: 20px !important;
}
.el-popup .elPopupHeadline:before {
	content: '';
	position: absolute;
	height: 60px;
	width: 60px;
	top: -75px;
	left: calc(50% - 30px);
	/* background-image: url('/fileadmin/images/brandicon.svg'); */
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.el-popup .elPopupText {
	font-family: 'fieldwork', sans-serif;
	font-size: 15px;
	line-height: 22px;
	text-align: left;
	padding: 0 15px;
	color: #505050;
	margin-bottom: 15px;
}
.el-popup .elPopupText p {
	margin-top: 0px;
	margin-bottom: 15px;
}
.el-popup .elPopupButton {
	padding: 0 15px;
}
.el-popup .elPopupButton a {
	font-family: 'fieldwork', sans-serif;
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    background: #D0A367;
    border-radius: 2px;
    padding: 10px 20px;
    border: 0px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	cursor: pointer;
}
.el-popup .elPopupButton a:hover {
	background: #D0A367;
	box-shadow: 0 8px 14px rgba(0,0,0,0.25), 0 6px 6px rgba(0,0,0,0.22);
}

/* IE11 HACK */

@media screen and (min-width:0\0) and (min-resolution:+72dpi), \0screen\,screen\9 { 
	.el-popup .elPopupcontent {
		height: 400px;
		box-sizing: border-box;
	}
}


/* MOBIL */

.bh-state-mobile .el-popup .elPopupcontentWrapper {
	-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
}
.bh-state-mobile .el-popup .popupClose {
	right: 5px;
}
