
a.exModal {
	cursor: pointer;
}

#exModalBox,
#exModalOverlay {
	display: none;
}

#exModalOverlay {
	background-color: rgb(0, 0, 0);
	opacity: 0.7;
	cursor: pointer;
	height: 29664px;
	z-index: 10000;
	top: 0;
    left: 0;
    width: 100%;
	position: fixed;
}

#exModalBox {
	z-index: 10001;
	position: fixed;
	width: max-content;
	background-color: #fff;
	padding: 20px;
	top: 100px;
	left: calc( 50% - 450px );
	transition-duration: 500ms;
	transition-property: width, height;
}

@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) and (orientation:portrait){
#exModalBox {
	top:0!important;
    overflow-x: scroll;
    height: 100vh;
}
}

#exModalBox .exmodal_loading {
	background-color: #fff;
	opacity: 0.8;
	background-image: url('../images/loading.gif');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 300px;
	text-align: center;
}

