/* pedarco-lightbox.css — styled to visually match prettyPhoto's "light_square" theme,
   reusing its bundled arrow images (js/prettyPhoto/images/prettyPhoto/light_square/). */

.pedarco-lightbox-overlay {
	display: none;
	position: fixed;
	z-index: 9998;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.8;
}
.pedarco-lightbox-overlay.open {
	display: block;
}

.pedarco-lightbox-box {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 5%;
	left: 50%;
	max-width: 90%;
	max-height: 90%;
	transform: translateX(-50%);
	background: #fff;
	padding: 10px;
	box-shadow: 0 0 20px rgba( 0, 0, 0, 0.5 );
}
.pedarco-lightbox-box.open {
	display: block;
}

.pedarco-lightbox-content {
	max-width: 100%;
	max-height: 80vh;
	overflow: auto;
}

.pedarco-lightbox-image {
	max-width: 100%;
	max-height: 80vh;
	display: block;
}

.pedarco-lightbox-frame {
	width: 80vw;
	height: 45vw;
	max-width: 960px;
	max-height: 540px;
	border: 0;
}

.pedarco-lightbox-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 28px;
	height: 28px;
	line-height: 26px;
	text-align: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 6px rgba( 0, 0, 0, 0.4 );
	font-size: 20px;
	color: #333;
	text-decoration: none;
}

.pedarco-lightbox-prev,
.pedarco-lightbox-next {
	position: absolute;
	top: 50%;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: rgba( 255, 255, 255, 0.8 );
}
.pedarco-lightbox-prev {
	left: -16px;
	background-image: url( ../js/prettyPhoto/images/prettyPhoto/light_square/btnPrevious.png );
}
.pedarco-lightbox-next {
	right: -16px;
	background-image: url( ../js/prettyPhoto/images/prettyPhoto/light_square/btnNext.png );
}
