.tsa-lightbox-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba( 0, 0, 0, 0.9 );
	z-index: 99999;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.tsa-lightbox-overlay.is-open {
	display: flex;
}
.tsa-lightbox-img {
	max-width: 90vw;
	max-height: 80vh;
	box-shadow: 0 5px 25px rgba( 0, 0, 0, 0.5 );
}
.tsa-lightbox-caption {
	color: #fff;
	margin-top: 15px;
	text-align: center;
	max-width: 80vw;
}
.tsa-lightbox-counter {
	color: rgba( 255, 255, 255, 0.7 );
	margin-top: 6px;
	font-size: 0.85em;
}
.tsa-lightbox-close {
	position: absolute;
	top: 20px;
	right: 30px;
	background: none;
	border: none;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
}
.tsa-lightbox-prev,
.tsa-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	background: rgba( 255, 255, 255, 0.15 );
	border: none;
	color: #fff;
	font-size: 28px;
	padding: 15px 18px;
	cursor: pointer;
	border-radius: 4px;
}
.tsa-lightbox-prev {
	left: 20px;
}
.tsa-lightbox-next {
	right: 20px;
}
.tsa-lightbox-prev:hover,
.tsa-lightbox-next:hover,
.tsa-lightbox-close:hover {
	background: rgba( 255, 255, 255, 0.3 );
}
.tsa-lightbox {
	cursor: zoom-in;
}
