.openshadow {
	cursor:pointer;
}
.shadow-box {
	width:100%;
	height:100%;
	position:fixed;
	overflow:auto;
	top:0;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	visibility:hidden;
	transition:0.3s ease all;
	z-index:999;
}
.shadow-box .overlay {
	height:100%;
	width:100%;
	position:fixed;
	background-color:rgba(0,0,0,0.5);
	z-index:-1;
}
.shadow-box.show {
	opacity:1;
	visibility:visible;
}
.shadow-box .box-holder {
	max-height: 100%;
	max-width: 100%;
	top: 0;
	overflow: hidden;
}
.shadow-box .loading {
	color:#fff;
}
.shadow-box .img {
	width:100%;
}