@charset "utf-8";
/*------------------------------------------------------------
	imagelightbox.min.js
------------------------------------------------------------*/
.lb {
	display:block;
}

#imagelightbox
{
	cursor: pointer;
	position: fixed;
	z-index: 9999;
	
	-ms-touch-action: none;
			touch-action: none;
			
	-webkit-box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 ); /* 50 */
	box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 ); /* 50 */
}
#imagelightbox-overlay
{
			background-color: #fff;
			background-color: rgba( 255, 255, 255, .9 );
			position: fixed;
			z-index: 9998;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
}
#imagelightbox-overlay
{
			-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; }
			}

/* CAPTION */

		#imagelightbox-caption
		{
			text-align: center;
			color: #333;
			background-color:#e0f2bc;
			position: fixed;
			z-index: 10001;
			left: 0;
			right: 0;
			bottom: 0;
			padding: 0.625em; /* 10 */
		}
		