/* Lightbox propio (mm-lightbox.js): por encima de cabecera sticky */
.mm-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1071;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	box-sizing: border-box;
}
.mm-lightbox--hidden {
	display: none !important;
}
.mm-lightbox-open {
	overflow: hidden;
}
.mm-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 15, 77, 0.82);
	cursor: pointer;
}
.mm-lightbox__dialog {
	position: relative;
	z-index: 2;
	max-width: min(96vw, 1200px);
	max-height: 92vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #0f0f4d;
	border-radius: 8px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	padding: 2.5rem 0.75rem 0.75rem;
	box-sizing: border-box;
}
.mm-lightbox__close {
	position: absolute;
	top: 0.35rem;
	right: 0.5rem;
	z-index: 5;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mm-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.22);
}
.mm-lightbox__prev,
.mm-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mm-lightbox__prev:hover,
.mm-lightbox__next:hover {
	background: rgba(255, 255, 255, 0.28);
}
.mm-lightbox__prev {
	left: 0.35rem;
}
.mm-lightbox__next {
	right: 0.35rem;
}
.mm-lightbox__stage {
	position: relative;
	flex: 1;
	min-height: 120px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.mm-lightbox__img {
	max-width: 100%;
	max-height: min(78vh, 900px);
	width: auto;
	height: auto;
	object-fit: contain;
	vertical-align: middle;
}
.mm-lightbox__iframe {
	width: 100%;
	border: 0;
	background: #000;
	min-height: 55vh;
	max-height: 88vh;
}
.mm-lightbox__stage--tour .mm-lightbox__iframe {
	min-height: min(88vh, 900px);
	height: min(88vh, 900px);
	max-height: 88vh;
}
.mm-lightbox__video {
	max-width: 100%;
	max-height: min(78vh, 900px);
	width: auto;
	height: auto;
	background: #000;
}
.mm-lightbox__stage--video .mm-lightbox__video {
	width: 100%;
	max-height: 78vh;
}
.mm-lightbox__media--hide {
	display: none !important;
}
.mm-lightbox__caption {
	margin-top: 0.5rem;
	padding: 0 0.5rem;
	color: #e8e8f0;
	font-size: 0.85rem;
	text-align: center;
	max-width: 100%;
	line-height: 1.35;
}
.mm-lightbox__caption--hide {
	display: none !important;
}
