.e9-lightbox-gallery {
	display: grid;
	gap: 1rem;
}

.e9-lightbox-gallery.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.e9-lightbox-gallery.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.e9-lightbox-gallery .gallery-item {
	margin: 0;
}

.e9-lightbox-gallery img {
	width: 100%;
	height: auto;
	display: block;
}

.e9-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.85);
}

.e9-lightbox.is-active {
	display: flex;
}

.e9-lightbox__image {
	max-width: 95vw;
	max-height: 85vh;
}

.e9-lightbox__caption {
	position: absolute;
	left: 2rem;
	right: 2rem;
	bottom: 1rem;
	color: #fff;
	text-align: center;
}

.e9-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 2rem;
	line-height: 1;
}

@media (max-width: 767px) {
	.e9-lightbox-gallery,
	.e9-lightbox-gallery.gallery-columns-4,
	.e9-lightbox-gallery.gallery-columns-6 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.e9-lightbox__close,
.e9-lightbox__prev,
.e9-lightbox__next {
	appearance: none;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #000;
	width: 48px;
	height: 48px;
	padding: 0;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
	font-size: 0;
	line-height: 1;
	z-index: 1000000;
}

.e9-lightbox__close {
	position: fixed;
	top: 1rem;
	right: 1rem;
}

.e9-lightbox__prev {
	position: fixed;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.e9-lightbox__next {
	position: fixed;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.e9-lightbox__close::before,
.e9-lightbox__prev::before,
.e9-lightbox__next::before {
	display: block;
	font-size: 32px;
	line-height: 1;
	font-weight: 700;
}

.e9-lightbox__close::before {
	content: "×";
}

.e9-lightbox__prev::before,
.e9-lightbox__next::before {font-size: 40px;}

.e9-lightbox__prev::before {
	content: "‹";
}

.e9-lightbox__next::before {
	content: "›";
}