
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0;
}

.lightbox.active {
	opacity: 1;
	pointer-events: initial;
}

.lightbox_content {
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: calc(100% - 6em);
	max-width: calc(100% - 6em);
	transform: translate(-50%, -50%);

}

.lightbox_back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(55, 55, 53, 0.9);
	/*cursor: pointer;*/
	cursor: zoom-out;
}

.lightbox_content img{
	max-width: 80%;
	max-height: 80%;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
}

/*.lightbox_content::after {
	content:  '\000D7';
	position: absolute;
	top: -1em;
	right: -1em;
	width: 1em;
	height: 1em;
	line-height: 1em;
	text-align: center;
	color: #373735;
	font-size: 2em;
	background-color: rgba(240, 241, 245, 0.8);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	pointer-events: none;
}*/