.simple-lightbox-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}
.simple-lightbox-overlay.active {
	display: flex;
}
.simple-lightbox-content {
	position: relative;
	max-width: 82vw;
	max-height: 90vh;
	text-align: center;
}
.simple-lightbox-img {
	max-width: 82vw;
	max-height: 76vh;
	display: block;
	margin: 0 auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.simple-lightbox-caption {
	color: #fff;
	margin-top: 14px;
	font-size: 16px;
	font-family: inherit;
}
.simple-lightbox-counter {
	color: rgba(255, 255, 255, 0.65);
	margin-top: 6px;
	font-size: 13px;
	font-family: inherit;
}
.simple-lightbox-close {
	position: absolute;
	top: -44px;
	right: -6px;
	background: none;
	border: none;
	color: #fff;
	font-size: 34px;
	cursor: pointer;
	line-height: 1;
	padding: 4px 10px;
}
.simple-lightbox-nav {
	background: rgba(255, 255, 255, 0.08);
	border: none;
	color: #fff;
	font-size: 44px;
	line-height: 1;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
}
.simple-lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.2);
}
.simple-lightbox-prev {
	margin-right: 16px;
}
.simple-lightbox-next {
	margin-left: 16px;
}
@media (max-width: 700px) {
	.simple-lightbox-content {
		max-width: 100vw;
	}
	.simple-lightbox-img {
		max-width: 100vw;
		max-height: 66vh;
	}
	.simple-lightbox-nav {
		width: 42px;
		height: 42px;
		font-size: 30px;
		background: rgba(0, 0, 0, 0.35);
	}
	.simple-lightbox-prev {
		position: absolute;
		left: 6px;
		top: 40%;
		margin: 0;
	}
	.simple-lightbox-next {
		position: absolute;
		right: 6px;
		top: 40%;
		margin: 0;
	}
	.simple-lightbox-close {
		top: -38px;
		right: 0;
	}
}
