  #lightbox {
	  position: fixed;
  width: 100%;
  height: 100%;
  background: #000000c7;
	z-index: 1000;
	display: none;
}

#lightbox .lightbox_image_wrapper {
top: 50%;
transform: translate(0, -50%);
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
max-width: 80rem;
	padding: 0 8%;
}
#lightbox .lightbox_image_wrapper .lightbox_image {
	max-height: 90vh;
}
#lightbox .lightbox_image_wrapper .lightbox_desc {
color: white;
text-shadow: 0px 0px 4px #000;
font-weight: 500;
  top: -0.5rem;
  position: relative;
  padding: 0.5rem;
}

#lightbox .lightbox_close {
position: absolute;
width: 4rem;
height: 4rem;
right: 0;
top: 0;
text-align: center;
color: white;
font-size: 3rem;
font-weight: 700;
font-family: "Font Awesome 6 Pro";
}
#lightbox .lightbox_close:hover {
	color: #6475ff;
	cursor: pointer;
}
#lightbox .lightbox_close::after {
content: "\f00d";
top: 1.25rem;
position: relative;
}
#lightbox .lightbox_close:focus-within {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #1e8fff;
}