#egonLightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
}
#egonLightbox.open {
	display: block;
}
body.egonLightboxLock {
	overflow: hidden;
}
#egonLightbox .egonLightboxBackdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 19, 20, 0.92);
}
#egonLightbox .egonLightboxContent {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 70px;
	box-sizing: border-box;
}
#egonLightbox .egonLightboxImageWrap {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	max-height: calc(100vh - 140px);
}
#egonLightbox .egonLightboxImageWrap img {
	max-width: 100%;
	max-height: calc(100vh - 140px);
	object-fit: contain;
}
#egonLightbox .egonLightboxCaption {
	color: #d4d4d4;
	font-size: 11px;
	line-height: 1.5em;
	text-align: center;
	margin-top: 18px;
	max-width: 600px;
}
#egonLightbox button {
	position: absolute;
	background: none;
	border: none;
	color: #fa4949;
	cursor: pointer;
	padding: 10px;
	line-height: 1;
}
#egonLightbox button:hover {
	color: #f58989;
}
#egonLightbox .egonLightboxClose {
	top: 15px;
	right: 20px;
	font-size: 20px;
}
#egonLightbox .egonLightboxPrev,
#egonLightbox .egonLightboxNext {
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
}
#egonLightbox .egonLightboxPrev {
	left: 10px;
}
#egonLightbox .egonLightboxNext {
	right: 10px;
}
@media screen and (max-width: 770px) {
	#egonLightbox .egonLightboxContent {
		padding: 30px 45px;
	}
}
