
.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 99999999999999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 96%;
	max-height: 96%;
	margin-top: 2%;
	border-radius: 5px;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}

.close-icon {
	position: relative; 
	max-width: 15px;
	max-height: 15px;
	top:10px;
	
	
}

.lightbox div {
	position: absolute;
	z-index: 999999999999999;
	width: 100%;
	height: 96%;	


}

/***** iPhone (landscape) *****/
@media only screen and (max-width: 720px) {
	

	


}