/***
ModEl Framework
Popup Style
***/

.zkPopupBg{
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	top: 0;
	left: 0;
	box-sizing: border-box;
	text-align: center;
}

.zkPopup{
	position: fixed;
	z-index: 1001;
	box-shadow: 1px 1px 5px #444;
	overflow: hidden;
	box-sizing: border-box;
	transition: width 0.4s ease-out, height 0.4s ease-out, top 0.4s ease-out, left 0.4s ease-out, opacity 0.4s ease-out, transform 0.4s ease-in;
}

.zkPopup.no-transition{
	transition: none;
}

.zkPopupClose{
	position: fixed;
	z-index: 1002;
}
