/* Styles for CSS lightbox
-------------------------------------------------- */
.css-lightbox{
	display: none;
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}
.css-lightbox img{
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform    : translate(-50%, -50%);
  transform        : translate(-50%, -50%);
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
}
.css-lightbox:target{
	outline: none;
	display: block;
}