html.lb-disable-scrolling {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: fixed;
}

.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	background: #000000;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.8;
	display: none;
	z-index: 9999;
	cursor: pointer;
}

.lightbox {
	width: 100%;
	position: absolute;
	left: 0;
	z-index: 10000;
}

.lightbox .lb-image {
	display: block;
	max-width: inherit;
	max-height: none;
	border-radius: 3px;
}

.lb-outerContainer {
	width: 250px;
	height: 250px;
	margin: 0 auto;
	position: relative;
	background: #ffffff;
	border-radius: 3px;
	overflow: hidden;
}

.lb-loader {
	width: 100%;
	height: 25%;
	position: absolute;
	top: 43%;
	left: 0;
	line-height: 0;
}

.lb-cancel {
	width: 32px;
	height: 32px;
	margin: 0 auto;
	display: block;
	background: url(images/loading.gif) no-repeat;
}

.lb-nav {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.lb-container > .nav {
	left: 0;
}

.lb-nav a {
	background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
}





.lb-nav a.lb-prev,
.lb-nav a.lb-next,
.lb-data .lb-close {
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	display: block;
	background: #283444;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	-webkit-border-radius: 		20px;
	-moz-border-radius: 		20px;
	border-radius: 				20px;
    -webkit-transition: 		all 0.20s ease;
    -ms-transition: 			all 0.20s ease;
    transition: 				all 0.20s ease;
}
.lb-data a.lb-close:hover,
.lb-nav a.lb-next:hover,
.lb-nav a.lb-prev:hover {
	background: #de6e00;
	color: #ffffff;
}
.lb-data a.lb-close,
.lb-nav a.lb-next:before,
.lb-nav a.lb-prev:before {
	font-family: "Font Awesome 5 Free";
}

.lb-nav a.lb-prev {
	position: absolute;
	top: 50%;
	left: 30px;
	float: left;	
}
.lb-nav a.lb-prev:before {
	content: '\f060';
}

.lb-nav a.lb-next {
	position: absolute;
	top: 50%;
	right: 30px;
	float: right;
}
.lb-nav a.lb-next:before {
	content: '\f061';
}

.lb-data a.lb-close {
	position: absolute;
	top: 25px;
	right: 30px;
	float: right;
}
.lb-data a.lb-close:before {
	content: '\f00d';
}



.lb-dataContainer {
	width: 100%;
	margin: 0 auto;
}

.lb-data {
	width: 100%;
	padding: 30px;
	background: #ffffff;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	position: relative;
	float: left;
}

.lb-data .lb-caption {
	max-width: 60%;
	float: left;
	display: block;
	clear: both;
	font-weight: 700;
}

.lb-data .lb-number {
	width: 100%;
	display: block;
	float: left;
	font-size: 14px;
	color: #555555;
}

