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: #F2F0EC;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.95;
	display: none;
}

.lightbox {
	left: 0;
	width: 100%;
	height: calc(100vh - 140px);
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
	top: 50% !important;
	position: absolute;
	-webkit-transform: translate(0%, -50%) !important;
	-moz-transform: translate(0%, -50%) !important;
	-ms-transform: str-replace(to-string(translate(0%, -50%) !important), " translateZ(0)", "");
	-o-transform: translate(0%, -50%) !important;
	transform: translate(0%, -50%) !important;
}

.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
}

.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: #FACFD5;
}

.lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
}

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

.lb-cancel {
	display: none;
	width: 32px;
	height: 32px;
	margin: 0 auto;
}

.lb-nav {
	position: fixed;
	top: 50%;
	margin-top: -50px;
	left: 0;
	width: 100%;
	z-index: 10;
	display: block !important;
}

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

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

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

.lb-nav a.lb-prev {
	width: 34%;
	left: 60px;
	float: left;
	background: url("../images/icons/prev.svg") 40px 48% no-repeat;
}

@media only screen and (max-width: 760px) {
	.lb-nav a.lb-prev {
		left: 20px;
		background: url("../images/icons/prev.svg") 20px 48% no-repeat;
		background-size: 12px;
	}
}

.lb-nav a.lb-next {
	width: 64%;
	right: 60px;
	float: right;
	background: url("../images/icons/next.svg") calc(100% - 40px) 48% no-repeat;
}

@media only screen and (max-width: 760px) {
	.lb-nav a.lb-next {
		right: 20px;
		background: url("../images/icons/next.svg") calc(100% - 20px) 48% no-repeat;
		background-size: 12px;
	}
}

.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: 4px 4px;
	color: #141C26;
}

.lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
}

.lb-data .lb-caption {
	font-size: 14px;
	line-height: 20px;
}

.lb-data .lb-caption a {
	color: #4ae;
}

.lb-data .lb-number {
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999999;
	display: none !important;
}

.lb-closeContainer {
	cursor: pointer;
	width: 60px;
	height: 60px;
	position: fixed;
	top: 22px;
	right: 22px;
	z-index: 100000;
}

@media only screen and (max-width: 760px) {
	.lb-closeContainer {
		top: 0;
		right: 0;
	}
}

.lb-closeContainer .lb-close {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: str-replace(to-string(translate(-50%, -50%)), " translateZ(0)", "");
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: block;
	cursor: pointer;
	width: 22px;
	height: 22px;
	background: url("../images/icons/close.svg") top right no-repeat;
	background-size: contain;
	outline: none;
}

@media only screen and (max-width: 760px) {
	.lb-closeContainer .lb-close {
		width: 20px;
		height: 20px;
	}
}
