.lightbox{
	position: fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	z-index:999;
	display:block;
	opacity:0;
	-webkit-transition: opacity 500ms ease;
	-moz-transition: opacity 500ms ease;
	-ms-transition: opacity 500ms ease;
	-o-transition: opacity 500ms ease;
	transition: opacity 500ms;
}

.lightbox-overlay {
	background: rgba(255,255,255,0.75);
	width:100%;
	height:100%;
	position:absolute;
	z-index: 10;
}

.lightbox-content{
	width: 100%;
    height: 100vh;
    margin: 0px auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 8000;
}

.lightbox-close{
	width: 22px;
    height: 22px;
    margin: 7px 13px 7px 7px;
	position: fixed;
	top: 0px;
    right: 0px;
	float: right;
	overflow: hidden;
	cursor: pointer;
	background: url(img/lightbox-arrow-close.svg) no-repeat;
	background-size: contain;
	opacity: 0.65;
	z-index: 200;

    -webkit-transition: opacity 250ms ease;
	-moz-transition: opacity 250ms ease;
	-ms-transition: opacity 250ms ease;
	-o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.lightbox-close:hover{
	opacity: 1;
}

.lightbox-lightimage{
	box-sizing: border-box;
	border: 10px solid #fff;
    z-index: 99;
    clear: right;
    width: auto;
    height: auto;
    min-height: 100px;
    left: auto;
	/*display:none;*/
	visibility: visible;
	opacity: 1;
	position: absolute;
	/*top: 50%;*/
	left: 50%;
	/*-moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/

    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);


    -moz-box-shadow: 0px 0px 15px #000;
	-webkit-box-shadow: 0px 0px 54px #000;
	box-shadow:0px 0px 15px #000;
	z-index: 15;
}

.lightbox-lightimage img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;

}

.lightbox-arrow{
	position: fixed;
	top: 40px;
	width: 60px;
	height: calc(100vh - 80px) !important;
	cursor: pointer;
	opacity: 0.65;
    z-index: 8001;

    -webkit-transition: opacity 250ms ease;
	-moz-transition: opacity 250ms ease;
	-ms-transition: opacity 250ms ease;
	-o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.lightbox-arrow span{
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	display: block;
    height: 28px;
    width: 28px;
    margin-top: -15px;
    position: absolute;
    top: 50%;

    -webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-ms-transition: all 250ms ease;
	-o-transition: all 250ms ease;
    transition: all 250ms ease;
}

.lightbox-arrow-prev{
	left: 0px;
}

.lightbox-arrow-prev span{
	/*background-image:url(img/lightbox-arrow-prev.svg);*/
    margin-left: 13px;
    left: 0;
}

.lightbox-arrow-prev:hover span{
    /*margin-left: 8px;*/
}

.lightbox-arrow-next{
	right: 0px;
}

.lightbox-arrow-next span{
	/*background-image:url(img/lightbox-arrow-next.svg);*/
    margin-right: 13px;
    right: 0;
}

.lightbox-arrow-next:hover span{
    /*margin-right: 8px;*/
}

.lightbox-arrow:hover{
	opacity: 1.0;
}


#loading-image{
	margin-top:15px;
	position:relative;
	left:70px;
}

.lightbox-info{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 8000;
}

.caption{
	padding: 15px 25px 15px 25px;
	text-align: center;
}

.lightbox-lock{
	height: 101%;
	overflow: hidden;
}

.lightbox-hiddden{
	opacity: 0 !important;
	visibility: hidden !important;
}
