@charset "utf-8";
/* CSS Document */

/* base default styles for small devices */
.ePopup {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	width: 100vw;
	height: 100%;
	height: 100vh;
	z-index: 30;
	
	transition: opacity .333s ease-in-out;
	opacity: 1;	
}
.ePopupMod.no-show{
z-index:-1;
}
.ePopup.no-show {
	opacity: 0;
	z-index:-1;
}
.ePopupBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 31;
}
.ePopupContent {
	position: absolute;
	margin: 5%;
	z-index: 32;
	/*transform: translate(-50%, -50%);*/
}



@media (min-width: 768px) {

.moduletable.ePopupMod {
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ePopup { 
	position: relative;
	display: table-cell;
	vertical-align: middle;	
}
.ePopupContent {
	position: relative;
	margin: 5% auto;
}

}