#mobileLightBox {
	
	display: none;
	position: fixed;
	z-index: 99997;
	top: 0;
	left: 0;
	width: 100vw;
	max-width: 100%;
	height: 100vh;
	max-height: 100%;
	
	line-height: 100vh;
	background: rgba(0, 0, 0, 0.9);
	text-align: center;
	cursor: pointer;
}

#mobileLightBox-img {
	
	position: relative;
	z-index: 99998;
	display: inline-block;
	max-width: 80vw;
	max-height: 80vh;
	
	border: 5px solid #fff;
	background: #fff;
	margin: 0 auto;
	box-shadow: 0 0 15px #000;
	vertical-align: middle;
}

#mobileLightBox-close {
	
	position: absolute;
	z-index: 99999;
	top: 15px;
	right: 15px;
	width: 34px;
	height: 34px;
	
	background: #000 url('../img/close.png') no-repeat center center;
	border: 2px solid #fff;
	border-radius: 50px;
}