.vlb-container-wrapper {
	z-index: 500;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, 0.65 );
	opacity: 1;
	transition: opacity 300ms linear;
}
.vlb-container-wrapper ~ * {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-o-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px);
}
.vlb-container-hidden {
	opacity: 0;
	pointer-events: none;
}
.vlb-container-holder {
	position: relative;
	height: 100%;
	width: 100%;
}
.vlb-container {
	display: block;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
	position: absolute;
	left: 50%;
}
.vlb-container-content {
	position: relative;
	box-sizing: border-box;
	display: inline-block;
	margin-left: -100%;
	margin-top: 2%;
	max-height: 90%;
	max-width: 90%;
	line-height: 0;
}
.vlb-container-content img {
	max-height: 100%;
	width: auto;
	max-width: 100%;
	box-shadow: 0 0 30px #000;
	border-radius: 2px;
}
.vlb-navigate-left,
.vlb-navigate-right {
	position: absolute;
	top: 0;
	height: 100%;
	width: 50%;
	cursor: pointer;
}
.vlb-navigate-left:before,
.vlb-navigate-right:before {
	position: absolute;
	font-family: "Arial", "sans-serif";
	font-size: 64px;
	color: #fff;
	text-shadow: 0 0 5px #000;
	font-weight: bold;
	top: calc( 50% - 32px );
	transition: all 500ms ease-in-out;
	line-height: 1;
}
.vlb-navigate-left::before{
	content: '⟨';
	left: 100px;
	opacity: 0;
}
.vlb-navigate-right::before {
	content: '⟩';
	right: 100px;
	opacity: 0;
}
.vlb-navigate-left:hover::before {
	opacity: 1;
	left: 20px;
}
.vlb-navigate-right:hover::before {
	opacity: 1;
	right: 20px;
}
.vlb-navigate-right {
	right: 0;
}
.vlb-navigate-left {
	left: 0;
}
.vlb-container-close {
	z-index: 501;
	position: absolute;
	right: -10px;
	top: -10px;
	width: 24px;
	height: 24px;
	box-sizing: border-box;
	background: #000;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: -1px 1px 5px #000;
	cursor: pointer;
}
.vlb-container-close::before {
	position: absolute;
	font-family: "Arial", "sans-serif";
	color: #fff;
	content: '×';
	font-weight: 400;
	font-size: 18px;
	height: 21px;
	line-height: 21px;
	width: 21px;
	text-align: center;
	left: 0;
	top: 0;
}
.vlb-container-items {
	height: 100%;
}
.vlb-container-info {
	line-height: 1;
}
.vlb-container-info-title,
.vlb-container-info-position {
	position: absolute;
	bottom: 0;
	font-family: "Arial", "sans-serif";
	color: #fff;
	font-size: 13px;
	padding: 5px 10px;
	text-shadow: 1px 1px 1px #000;
	background: rgba( 0, 0, 0, 0.5 );
}
.vlb-container-info-title {
	left: 0;
	border-radius: 0 2px 0 2px;
}
.vlb-container-info-position {
	right: 0;
	border-radius: 2px 0 2px 0;
}
@media only screen and ( max-width: 940px ) {
	.vlb-container-close {
		top: 0;
		width: 34px;
		height: 34px;
	}
	.vlb-container-close::before {
		height: 31px;
		line-height: 31px;
		width: 31px;
	}
}
