/******************************************
 * lightbox.css
 * Vzhled lightboxu (náhrada ColorBoxu)
 *
 * @author Petr Svoboda (digivibe.cz)
 */

#lb-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: #000;
	opacity: 0.85;
	z-index: 9998;
}

#lb-box {
	position: fixed;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	background: #fff;
	padding: 10px;
	border: 1px solid #999;
	max-width: 92%;
	max-height: 92%;
	text-align: center;
}

#lb-image {
	display: block;
	max-width: 84vw;
	max-height: 74vh;
	margin: 0 auto;
}

#lb-caption {
	font: 12px/1.5 Arial, Helvetica, sans-serif;
	color: #333;
	padding: 8px 4px 2px;
}

#lb-count {
	color: #888;
	padding-left: 6px;
}

/* Ovládací prvky */
#lb-box button {
	position: absolute;
	border: 0;
	background: #fff;
	color: #333;
	font: bold 18px/1 Arial, Helvetica, sans-serif;
	padding: 7px 12px;
	cursor: pointer;
	border: 1px solid #999;
}

#lb-box button:hover,
#lb-box button:focus {
	background: #eee;
	color: #000;
}

#lb-close { top: -1px; right: -1px; }
#lb-prev  { top: 50%; left: -1px; margin-top: -16px; }
#lb-next  { top: 50%; right: -1px; margin-top: -16px; }

/* Skrytí, dokud se nezobrazí */
#lb-overlay[hidden],
#lb-box[hidden] { display: none; }

/* Jedna fotka = žádné šipky */
#lb-box.lb-single #lb-prev,
#lb-box.lb-single #lb-next { display: none; }
