
.lightbox {
	opacity: 0; /* hides the lightbox */
	z-index: -1;
	transition-duration: 0.5s;
	display: table; /* helps us center the lightbox-content */
	/*Also make the lightbox occupy the entire page */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
	backdrop-filter: brightness(.3) blur(5px);
}

.lightbox:target, .lightbox.shown {
	opacity: 1;
	z-index: 99999;
}

.lightbox-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 10px;
}

.lightbox .lightbox-content img{
	max-height: 350px;
	max-width: 100%;
}

.lightbox .lightbox-content .light-content-inner {
	display: inline-block;
	position: relative;
	padding: 13px;
	background: white;
	color: black;
}

.lightbox .lightbox-content .light-content-inner .r-close {
	position: absolute;
	right: 13px;
	top: 13px;
  background: #00000060;
  color: white;
	font-size: 25px;
	font-weight: bold;
	font-family: serif;
  line-height: 1;
  padding: 8px 12px;
	text-decoration: none;
}


.lightbox .lightbox-content .light-content-inner .r-close:hover{
	background: #00000030;
}


