/* POP UP */

.bh-bemode #popupContent {
	display: none;
	position: relative;
}

.bh-bemode.bhe-state-editing[data-page="1"] #popupContent {
	display: block;
}
.bh-bemode.bhe-state-editing[data-page="1"] #popupContent {
	padding-top: 30px;
}
#popupContent > .bhContainer {
	max-width: 750px;
	margin: 0 auto;
	-webkit-box-flex: 1;
    -ms-flex-positive: 1;
        flex-grow: 1;
}
.bh-femode #popupContent {
	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: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	pointer-events: none;
	opacity: 0;
	background: rgba(0,0,0,0.7);
    visibility: hidden;
    animation: delayed-hide 0.5s forwards;
}
#popupContent.initialized {
	transition: ease opacity 0.5s;
}
#popupContent.showPopup {
	opacity: 1;
	pointer-events: all;
	transition: ease opacity 0.5s;
	z-index: 17000000;
    visibility: visible;
    animation: none;
}

/* IE11 HACK */

@media screen and (min-width:0\0) and (min-resolution:+72dpi), \0screen\,screen\9 { 
	.bh-femode #popupContent {
		display: block;
	}
	#popupContent > .bhContainer {
		margin-top: 150px;
	}
}
