@charset "utf-8";
/* Lightbox - sostituisce lightbox.css basato su prototype/scriptaculous */

.lb-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .85);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	transition: opacity .25s ease;
	padding: 20px;
}
.lb-overlay.aperto { opacity: 1; }

.lb-figura {
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.lb-figura img {
	max-width: 100%;
	max-height: 78vh;
	display: block;
	background: #fff;
	box-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}
.lb-didascalia {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
	max-width: 700px;
}
.lb-contatore {
	color: #bbb;
	font-size: 11px;
}

.lb-btn {
	position: absolute;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 0;
	width: 44px;
	height: 44px;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
}
.lb-btn:hover { background: rgba(255, 255, 255, .28); }
.lb-prec { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-succ { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-chiudi { right: 16px; top: 16px; font-size: 20px; }

.lb-caricamento {
	color: #fff;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 600px) {
	.lb-btn { width: 38px; height: 38px; font-size: 20px; }
	.lb-prec { left: 6px; }
	.lb-succ { right: 6px; }
}
