html.lb-disable-scrolling {
	overflow: hidden;
	/* Position fixed required for iOS. Just putting overflow: hidden;
	on the body is not enough. */
	position: fixed;
	height: 100vh;
	width: 100vw;
}
.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.9;
	display: none;
}
.lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
}
.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
	/* Image border */
}
.lightbox a img {
	border: none;
}
.lb-outerContainer {
	position: relative;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	/* Background color behind image. This is visible during transitions. */
	background-color: #000;
}
.lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
}
.lb-loader {
	position: absolute;
	top: 0%;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 0;
}
.lb-cancel {
	display: block;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	background-image: url(../img/loader.svg);
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
.lb-container > .nav {
	left: 0;
}
.lb-nav a {
	outline: none;
	background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
	position: relative;
	transition: all .4s ease;
}
.lb-nav a:before{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	height: 50px;
	width: 50px;
	margin: auto;
	border-radius: 50%;
	background-color: #1a2d80;
}
.lb-nav a img{
	display: block;
	max-height: 30px;
	filter: brightness(0) invert(1);
}
.lb-prev, .lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
}
.lb-nav a.lb-prev {
	width: 15%;
	left: 0;
	float: left;
	opacity: 0;
	-webkit-transition: all .6s ease;
	-moz-transition: all .6s ease;
	-o-transition: all .6s ease;
	transition: all .6s ease;
	color: rgba(255,255,255,.6);
	justify-content: center;
	align-items: center;
	font-size: 2rem;
}
.lb-nav a.lb-prev:hover {
	opacity: 1;
	background: linear-gradient(to left, transparent, rgba(0,0,0,.6));
}
.lb-nav a.lb-next {
	width: 15%;
	right: 0;
	float: right;
	opacity: 0;
	-webkit-transition: all .6s ease;
	-moz-transition: all .6s ease;
	-o-transition: all .6s ease;
	transition: all .6s ease;
	color: rgba(255,255,255,.6);
	justify-content: center;
	align-items: center;
	font-size: 2rem;
}
.lb-nav a.lb-next:hover {
	opacity: 1;
	background: linear-gradient(to right, transparent, rgba(0,0,0,.6));
}
.lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
	width: 100%;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
}
.lb-data {
	padding: 0 4px;
	color: #ccc;
}
.lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
}
.lb-data .lb-caption {
	font-size: 13px;
	font-weight: bold;
	line-height: 1em;
	text-transform: uppercase;
}
.lb-data .lb-caption a {
	color: #4ae;
}
.lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999999;
}
.lb-data .lb-close {
	display: block;
	float: right;
	text-align:right;
	-webkit-transition: all .6s ease;
	-moz-transition: all .6s ease;
	-o-transition: all .6s ease;
	transition: all .6s ease;
	color: rgba(255,255,255,.6);
	font-size: 2rem;
}
.lb-data .lb-close img{
	display: block;
   height: 25px;
	filter: brightness(0) invert(1);
}
.lb-data .lb-close:hover {
	cursor: pointer;
	opacity: 1;
	color: #fff;
}
 