body.lb-disable-scrolling {
	overflow: hidden;
}
.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: #000;
	opacity: 0.95;
	display: none;
}
.lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: 400;
	outline: 0;
}
.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
	border-radius: 3px;
}
.lightbox a img {
	border: none;
}
.lb-outerContainer {
	position: relative;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 4px;
	background-color: transparent;
}
.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: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(../images/loading.gif) 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: 0;
	background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}
.lb-next,
.lb-prev {
	height: 100%;
	cursor: pointer;
	display: block;
}
.lb-nav a.lb-prev {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 5%;
	background-color: var(--bodyMainColor1);
	background-image: url(../images/prev.png);
	background-position: 20% center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1s;
}

.lb-nav a.lb-prev:hover {
	opacity: .75;
}

.lb-nav a.lb-next {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 5%;
	background-color: var(--bodyMainColor1);
	background-image: url(../images/next.png);
	background-position: 75% center;
	background-repeat: no-repeat;
	transition: opacity 1s;
	opacity: 0;
}

.lb-nav a.lb-next:hover {
	opacity: .75;
}

.lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	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: 700;
	line-height: 1em;
}
.lb-data .lb-caption a {
	color: #4ae;
}
.lb-data .lb-number {
	position: fixed;
	right: 30px;
	bottom: 30px;
	display: block;
	font-family: var(--mainFontFamily);
	font-size: var(--mainFontSize);
	color: var(--mainFontColorAdditional);
}
.lb-data .lb-close {
	position: fixed;
	top: 50px;
	right: 30px;
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(../images/close-new.png);
	background-size: cover;
	opacity: 0.7;
	transition: opacity 0.2s;
	z-index: 999;
}
.lb-data .lb-close:hover {
	cursor: pointer;
	opacity: 1;
}