@charset "utf-8";
/* =================================================================================
 img lightbox
================================================================================= */

/* lightbox css
------------------------------------------------------- */
#imagelightbox{
	cursor: pointer;
	position: fixed;
	z-index: 10000;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 );
	box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 );
}

/* ACTIVITY INDICATION */
#imagelightbox-loading{
	width:16px;
	height:16px;
	position: fixed;
	z-index: 10003;
	top: 50%;
	left: 50%;
	margin: -8px 0 0 -8px;
}

#imagelightbox-loading div{
	-webkit-animation: imagelightbox-loading .5s ease infinite;
	animation: imagelightbox-loading .5s ease infinite;
}

@-webkit-keyframes imagelightbox-loading{
	from { opacity: .5;	-webkit-transform: scale( 1 ); }
	to	 { opacity: .5;	-webkit-transform: scale( 1 ); }
}
@keyframes imagelightbox-loading{
	from { opacity: .5;	transform: scale( 1 ); }
	to	 { opacity: .5;	transform: scale( 1 ); }
}

/* OVERLAY */
#imagelightbox-overlay{
	background-color: #333;
	background-color: rgba( 0, 0, 0, .7 );
	position: fixed;
	z-index: 9998;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* "CLOSE" BUTTON */
#imagelightbox-close{
	display:block;
	width:35px;
	height:35px;
	line-height:35px;
	position: fixed;
	-webkit-border-radius:18px;
	border-radius:18px;
	border:none;
	background-color:#333;
	background-color:rgba(0,0,0,.5 );
	z-index: 10002;
	top:35px;
	right:35px;
	text-align:center;
	font-size:28px;
	color:#fff;
}

#imagelightbox-close:hover{cursor:pointer;}

/* CAPTION */
#imagelightbox-caption{
	position: fixed;
	padding:8px 10px;
	background-color:#333;
	z-index: 10001;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	color: #fff;
}

/* ARROWS */
.imagelightbox-arrow{
	display: none;
	position: fixed;
	width:50px;
	height:100px;
	margin-top:-50px;
	border:none;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:#333;
	background-color:rgba(0,0,0,.5 );
	vertical-align: middle;
	z-index: 10001;
	top: 50%;
}

.imagelightbox-arrow:hover,
.imagelightbox-arrow:focus{
	background-color:#000;
	background-color: rgba( 0, 0, 0, .75 );
}

.imagelightbox-arrow-left{left:40px;}
.imagelightbox-arrow-right{right:40px;}
.imagelightbox-arrow:before{
	width:0;
	height:0;
	border:1em solid transparent;
	content:'';
	display: inline-block;
	margin-bottom: -2px;
}
.imagelightbox-arrow-left:before{
	border-left: none;
	border-right-color: #fff;
	margin-left: -5px;
}
.imagelightbox-arrow-right:before{
	border-right: none;
	border-left-color: #fff;
	margin-right: -5px;
}

#imagelightbox-loading,
#imagelightbox-overlay,
#imagelightbox-close,
#imagelightbox-caption,
#imagelightbox-nav,
.imagelightbox-arrow{
	-webkit-animation: fade-in .25s linear;
	animation: fade-in .25s linear;
}
@-webkit-keyframes fade-in{
	from{opacity:0;}
	to{opacity: 1;}
}
@keyframes fade-in{
	from{opacity:0;}
	to{opacity:1;}
}

@media only screen and (max-width:640px){
#container{width:100%;}

#imagelightbox-close{
	top:10px;
	right:10px;
}

.imagelightbox-arrow{
	width:35px;
	height:60px;
	margin-top:-30px;
}
.imagelightbox-arrow-left{left:0;}
.imagelightbox-arrow-right{right:0;}
}

/* EOF */