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

.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	filter: alpha(opacity=80);
	opacity: .8;
	display: none
}

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

.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
	border-radius: var(--box-br);
}

.lightbox a img {
	border: 0
}

.lb-outerContainer {
	background: #eee;
	border-radius: var(--box-br);
	position: relative;
	*zoom: 1;
	width: 600px;
	height: 800px;
	margin: 0 auto;
}

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

.lb-loader {
	border-radius: 50%;
	position: absolute;
	padding: 8px;
	top: calc(50% - 23px);
	left: calc(50% - 23px);
	width: 46px;
	height: 46px;
	backdrop-filter: var(--box-blur);
	-webkit-backdrop-filter: var(--box-blur);
}

.lb-loader--spin {
	width: 100%;
	height: 100%;
	border: 2px solid;
	border-radius: 50%;
	border-color: transparent #131a22 #131a22;
	-webkit-animation: cssload-spin 1.2s infinite linear;
	animation: cssload-spin 1.2s infinite linear;
}

@-webkit-keyframes cssload-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes cssload-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

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

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

.lb-prev,
.lb-next {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	float: left;
	width: 40%;
	padding: 0 0 0 12px;
	cursor: pointer;
	height: 100%;
	opacity: 0.6;
	transition: opacity .6s
}

.lb-next {
	justify-content: flex-end;
	padding: 0 12px 0 0;
	float: right;
}

.lb-nav .lb-prev:hover,
.lb-nav .lb-next:hover {
	opacity: 1
}

.lb-nav .lb-prev svg {
	transform: rotate(180deg);
}

.lb-nav .lb-prev svg,
.lb-nav .lb-next svg {
	position: relative;
	width: 38px;
	height: 38px;
}



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

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

.lb-data .lb-caption {
	font-size: 14px;
	font-weight: 500;
	line-height: 1em
}

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

.lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999
}

.lb-closeContainer {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 11;
}

.lb-close {
	position: relative;
	width: 30px;
	height: 30px;
	opacity: .8;
	transition: .2s;
	cursor: pointer;
}

.lb-closeContainer .lb-close:hover {
	transform: rotate(45deg);
	opacity: 1
}