.photo-scroller .btn-cntr {
	display: none !important;
}

.photo-scroller .photoSlider figure,
.photo-scroller .photoSlider img,
.photo-scroller .ts-slide-img {
	cursor: zoom-in;
}

.photo-scroller .scroller-arrow {
	z-index: 4;
}

.salanora-scroller-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	grid-template-columns: minmax(44px, 8vw) minmax(0, 1fr) minmax(44px, 8vw);
	align-items: center;
	gap: clamp(8px, 2vw, 24px);
	padding: clamp(18px, 4vw, 52px);
	background: rgba(65, 54, 32, 0.92);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.salanora-scroller-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.salanora-scroller-lightbox__frame {
	grid-column: 2;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 0;
}

.salanora-scroller-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: min(86vh, 980px);
	width: auto;
	height: auto;
	object-fit: contain;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.salanora-scroller-lightbox__close,
.salanora-scroller-lightbox__nav {
	appearance: none;
	border: 1px solid rgba(237, 231, 221, 0.45);
	border-radius: 0;
	background: rgba(237, 231, 221, 0.08);
	color: #ede7dd;
	cursor: pointer;
	font-family: "Poppins", Arial, sans-serif;
	line-height: 1;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.salanora-scroller-lightbox__close:hover,
.salanora-scroller-lightbox__nav:hover {
	background: #ede7dd;
	border-color: #ede7dd;
	color: #413620;
}

.salanora-scroller-lightbox__close {
	position: absolute;
	top: clamp(14px, 2vw, 28px);
	right: clamp(14px, 2vw, 28px);
	z-index: 2;
	width: 46px;
	height: 46px;
	font-size: 30px;
	font-weight: 300;
}

.salanora-scroller-lightbox__nav {
	width: clamp(42px, 5vw, 58px);
	height: clamp(54px, 7vw, 76px);
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 200;
}

.salanora-scroller-lightbox__nav--prev {
	grid-column: 1;
	justify-self: end;
}

.salanora-scroller-lightbox__nav--next {
	grid-column: 3;
	justify-self: start;
}

.salanora-scroller-lightbox[data-single="true"] .salanora-scroller-lightbox__nav {
	display: none;
}

body.salanora-scroller-lightbox-open {
	overflow: hidden;
}

@media (max-width: 767px) {
	.salanora-scroller-lightbox {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr auto;
		gap: 14px;
		padding: 18px;
	}

	.salanora-scroller-lightbox__frame {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.salanora-scroller-lightbox__image {
		max-height: 78vh;
	}

	.salanora-scroller-lightbox__nav {
		grid-row: 2;
		width: 100%;
		height: 46px;
		font-size: 32px;
	}

	.salanora-scroller-lightbox__nav--prev {
		grid-column: 1;
		justify-self: stretch;
	}

	.salanora-scroller-lightbox__nav--next {
		grid-column: 2;
		justify-self: stretch;
	}

	.salanora-scroller-lightbox__close {
		top: 12px;
		right: 12px;
		width: 42px;
		height: 42px;
		font-size: 28px;
	}
}
