.lightbox {
	position: fixed;
	z-index: 9999;
	top: 0;
	bottom: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
}
.lightbox .lightbox-header {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 35px;
	height: 35px;
	cursor: pointer;
	color: rgba(255,255,255,0.7);
	font-size: 35px;
	transition: all 0.3s;
}
.lightbox .lightbox-header:hover {
	color: rgba(255,255,255,1);
}
.lightbox .lightbox-content {
	margin: 5% auto;
	width: 80%;
}