/* Lightbox Slider
--------------------------------------------------*/
.lightbox-slider-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	text-align: center;
}

.lightbox-slider-outer-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	text-align: center;
}

.lightbox-slider-outer-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

.lightbox-slider-inner-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding: 30px;
	box-sizing: content-box;
	background-color: #FFF;
	text-align: left;
}

.lightbox-slider-close {
	position: absolute;
	right: 8px;
	top: 8px;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.lightbox-slider-close:before {
	content: '\2715';
}