@charset "utf-8";

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

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

/* NAVIGATION */
#imagelightbox-nav {
	position: fixed;
	z-index: 10001;
	bottom: 3.75em; /* 60 */
	left: 50%;
	padding: 0.313em; /* 5 */
	-webkit-transform: translateX( -50% );
	-ms-transform: translateX( -50% );
	transform: translateX( -50% );
	border-radius: 20px;
	width: 90%;
	text-align: center;
}
#imagelightbox-nav button {
	display: inline-block;
	width: 1em; /* 20 */
	height: 1em; /* 20 */
	margin: 0 0.313em; /* 5 */
	background-color: #eee;
	border-radius: 50%;
	font-size: 10px;
	vertical-align: middle;
}
#imagelightbox-nav button.active {
	background-color: #222;
}

/* "CLOSE" BUTTON */
#imagelightbox-close {
	position: fixed;
	z-index: 10002;
	top: 2.5em; /* 40 */
	right: 2.5em; /* 40 */
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
	text-align: left;
	border-radius: 50%;
	background-color: #666;
    font-size: 16px;
}
#imagelightbox-close:hover,
#imagelightbox-close:focus {
	background-color: #111;
}

#imagelightbox-close:before,
#imagelightbox-close:after {
	position: absolute;
	top: 20%;
	bottom: 20%;
	left: 50%;
	width: 2px;
	margin-left: -1px;
	content: "";
	background-color: #fff;
}
#imagelightbox-close:before {
	-webkit-transform: rotate( 45deg );
	-ms-transform: rotate( 45deg );
	transform: rotate( 45deg );
}
#imagelightbox-close:after {
	-webkit-transform: rotate( -45deg );
	-ms-transform: rotate( -45deg );
	transform: rotate( -45deg );
}

/* ARROWS */
.imagelightbox-arrow {
	position: fixed;
	z-index: 10001;
	top: 50%;
	display: none;
	width: 3.75em; /* 60 */
	height: 7.5em; /* 120 */
	margin-top: -3.75em; /* 60 */
	vertical-align: middle;
	background-color: #444;
	background-color: rgba( 0, 0, 0, 0.5 );
    font-size: 16px;
}
.imagelightbox-arrow:hover,
.imagelightbox-arrow:focus {
	background-color: rgba( 0, 0, 0, 0.75 );
}
.imagelightbox-arrow:active {
	background-color: #111;
}

.imagelightbox-arrow-left {
	left: 2.5em; /* 40 */
}
.imagelightbox-arrow-right {
	right: 2.5em; /* 40 */
}

.imagelightbox-arrow:before {
	display: inline-block;
	width: 0;
	height: 0;
	margin-bottom: -0.125em; /* 2 */
	content: "";
	border: 1em solid transparent;
}
.imagelightbox-arrow-left:before {
	margin-left: -0.313em; /* 5 */
	border-right-color: #fff;
	border-left: none;
}
.imagelightbox-arrow-right:before {
	margin-right: -0.313em; /* 5 */
	border-right: none;
	border-left-color: #fff;
}

#imagelightbox-overlay,
#imagelightbox-close,
#imagelightbox-nav,
.imagelightbox-arrow {
	-webkit-animation: fade-in 0.25s linear;
	animation: fade-in 0.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: 1.25em;
    	right: 0.5em;
	}
	#imagelightbox-nav {
		bottom: 1.25em; /* 20 */
	}
	#imagelightbox-nav button {
		background-color: #ccc;
	}
	.imagelightbox-arrow {
		width: 2.5em; /* 40 */
		height: 3.75em; /* 60 */
		margin-top: -3.75eem; /* 30 */
	}
	.imagelightbox-arrow-left {
		left: 1.25em; /* 20 */
	}
	.imagelightbox-arrow-right {
		right: 1.25em; /* 20 */
	}
}

@media only screen and (max-width: 320px) /* 320 */ {
	.imagelightbox-arrow-left {
		left: 0;
	}
	.imagelightbox-arrow-right {
		right: 0;
	}
}
