#lightbox {
	background: #34383a;
	height: 100%;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	-webkit-transition: all 0.4s ease 0s;
	        transition: all 0.4s ease 0s;
	visibility: hidden;
	width: 100%;
	z-index: 10000;
}



#lightbox.open {
	opacity: 1;
	visibility: visible;
}

#lightbox-bottom {
	background: rgba(0, 0, 0, 0.7);
	height: 70px;
	left: 0;
	position: absolute;
	bottom: 0;
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-transition: all 0.4s ease 0s;
	        transition: all 0.4s ease 0s;
	width: 100%;
	z-index: 10003;
}

#lightbox.open #lightbox-bottom {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

#lightbox.open #lightbox-bottom.idle {
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
}

#lightbox-counter {
	color: rgba(255,255,255,1);
	float: left;
	font-size: 16px;
	font-weight: normal;
	height: 44px;
	line-height: 44px;
	min-width: 44px;
	padding: 15px;
	text-align: center;
	position: relative;
}

#lightbox-fullscreen {
	background: transparent url("../Icons/fullscreen.svg") no-repeat scroll center center / 24px auto;
	cursor: pointer;
	display: none;
	float: right;
	height: 44px;
	width: 44px;
}

#lightbox-fullscreen.fullscreen-open {
	background: transparent url("../Icons/fullscreen-open.svg") no-repeat scroll center center / 24px auto;
}

#lightbox-download {
	background: transparent url("../Icons/download.svg") no-repeat scroll center center / 24px auto;
	cursor: pointer;
	display: block;
	float: right;
	height: 44px;
	width: 44px;
}

#lightbox-images {
	margin:45px auto 0 auto;
	box-sizing: border-box;

}
#lightbox-images img {
	display: block;
	left: 50%;
	max-height: calc(100% - 95px);
	max-width: 100vw;
	opacity: 0;
	position: absolute;
	top: 45px;
	visibility: hidden;
	-webkit-transition: opacity .6s ease-in-out;
	-moz-transition: opacity .6s ease-in-out;
	-o-transition: opacity .6s ease-in-out;
	-ms-transition: opacity .6s ease-in-out;
	transition: opacity .6s ease-in-out;


	z-index: 10002;
}

#lightbox-images img.no-transition {
	-webkit-transition: all 0s ease 0s;
	        transition: all 0s ease 0s;
}

#lightbox-images img.active {
	opacity: 1;
	-webkit-transform: translate(-50%, 0px) scale(1);
	        transform: translate(-50%, 0px) scale(1);
	visibility: visible;
}

#lightbox-images img.previous {
	opacity: 0;
	-webkit-transform: translate(50%, 0px) scale(1);
	        transform: translate(50%, 0px) scale(1);
	visibility: hidden;
}

#lightbox-images img.next {
	opacity: 0;
	-webkit-transform: translate(-150%, 0px) scale(1);
	        transform: translate(-150%, 0px) scale(1);
	visibility: hidden;
}

#lightbox-previous {

}

#lightbox.open #lightbox-previous {

}

#lightbox.open #lightbox-previous.disabled,
#lightbox.open #lightbox-previous.idle {
}

#lightbox-next {

}

#lightbox.open #lightbox-next {

}

#lightbox.open #lightbox-next.disabled,
#lightbox.open #lightbox-next.idle {

}

#lightbox-bottom {
	background: #34383a;
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 10003;
}

#lightbox.open #lightbox-bottom {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

#lightbox #lightbox-bottom.idle {
	-webkit-transform: translateY(100%);
	        transform: translateY(100%);
}

#lightbox-caption {
	color: rgba(255,255,255,1);
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
	margin: 0 auto;
	max-width: 500px;
	padding: 10px 30px;
	position: relative;
	z-index: 999999;
	text-align: center;
	width: 100%;
	text-transform: uppercase;
}

#lightbox-overlay {
	cursor: pointer;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10001;
}

@media (min-width: 1200px) {
	#lightbox-fullscreen {
		display: block;
	}
}
