/*	---------	general stuff */

.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #fff;
	opacity: 0.9;
	display: none;
}

.lightbox {
	position: fixed;
	top: 0 !important;
	left: 0 !important;
	width: 100%;
	z-index: 1000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
}

.lb-outerContainer {
	position: relative;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}

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

.lb-container {
	padding: 0;
}


/*	---------	image */

.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	top: 50% !important;
	left: 50% !important;
	position: fixed;
	-webkit-transform: translate( -50%, -50% );
	-moz-transform: translate( -50%, -50% );
	-o-transform: translate( -50%, -50% );
	-ms-transform: translate( -50%, -50% );
	transform: translate( -50%, -50% );
}

.lightbox a img {
	border: none;
}


/*	---------	loading */

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

.lb-cancel {
	display: block;
	margin: 0 auto;
	/*opacity: 0.9;*/
	-webkit-animation-name: spinnerRotate;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: spinnerRotate;
	-moz-animation-duration: 2s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: spinnerRotate;
	-ms-animation-duration: 2s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: spinnerRotate;
	-o-animation-duration: 2s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
	animation-name: spinnerRotate;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;	
}

.lb-cancel,
.lb-cancel:hover {
	text-decoration: none;
	border-bottom: none;
	color: #111;
}

.lb-cancel:before {
	font-family: 'Genericons';
	content: '\f420';
	font-weight: 400;
	font-size: 36px;
	line-height: 0;
	-webkit-font-smoothing: antialiased;
	color: #111;
	position: relative;
	vertical-align: middle;
}

@-webkit-keyframes spinnerRotate {
	from {
		-webkit-transform:rotate(0deg);
	}
	to {
		-webkit-transform:rotate(360deg);
	}
}

@-moz-keyframes spinnerRotate {
	from {
		-moz-transform:rotate(0deg);
	}
	to {
		-moz-transform:rotate(360deg);
	}
}

@-o-keyframes spinnerRotate {
	from {
		-o-transform:rotate(360deg);
	}
	to {
		-o-transform:rotate(360deg);
	}
}

@-ms-keyframes spinnerRotate {
	from {
		-ms-transform:rotate(0deg);
	}
	to {
		-ms-transform:rotate(360deg);
	}
}

@keyframes spinnerRotate {
	from {
		transform:rotate(0deg);
	}
	to {
		transform:rotate(360deg);
	}
}


/*	---------	navigation */

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

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

.lb-prev,
.lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
	opacity: 0;
	transition: opacity 0.6s;
	width: 36%;
}

.lb-nav a {
	outline: none;
}

.lb-nav a.lb-prev {
	left: 0;
	float: left;
}

.lb-nav a.lb-next {
	right: 0;
	float: right;
}

.lb-nav a.lb-prev:before,
.lb-nav a.lb-next:before {
	font-family: 'Genericons';
	content: '\f432';
	font-weight: 400;
	font-size: 63px;
	vertical-align: text-bottom;
	-webkit-font-smoothing: antialiased;
	color: #111;
	top: 50%;
	position: relative;
}

.lb-nav a.lb-prev:before {
	float: left;
	-webkit-transform: rotate( 270deg );
	-moz-transform: rotate( 270deg );
	-o-transform: rotate( 270deg );
	-ms-transform: rotate( 270deg );
	transform: rotate( 270deg );
}

.lb-nav a.lb-next:before {
	float: right;
	-webkit-transform: rotate( 90deg );
	-moz-transform: rotate( 90deg );
	-o-transform: rotate( 90deg );
	-ms-transform: rotate( 90deg );
	transform: rotate( 90deg );
}

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


/*	---------	caption & info */

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

.lb-dataContainer:after {
	content: '';
	display: table;
	clear: both;
}

.lb-data {
	padding: 0 3px;
}

.lb-data .lb-details {
	width: 100%;
	text-align: left;
	line-height: 1.2em;
	display: none;
}

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


/*	---------	close */

.lb-close {
	display: block;
	top: 9px;
	right: -8px;
	position: fixed;
	opacity: 0.81;
	transition: opacity 0.2s;
	z-index: 11;
	text-decoration: none;
	border-bottom: none;
}

.lb-close:before {
	font-family: 'Genericons';
	content: '\f405';
	font-weight: 400;
	font-size: 48px;
	vertical-align: text-bottom;
	-webkit-font-smoothing: antialiased;
	color: #111;
}

.lb-close:hover,
.lb-close:hover:before {
	cursor: pointer;
	opacity: 1;
	text-decoration: none;
	border-bottom: none;
	color: #111;
}
