.gy-lightbox{
	position: fixed;
	left:0px;
	top:0px;
	bottom: 0;
	width: 100%;
	z-index: 999;
	display:none;
	-webkit-transform: translateZ(0);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

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

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

.gy-lightbox-close{
	width: 22px;
    height: 22px;
    margin: 13px 13px 7px 7px;
	position: fixed;
	top: 0px;
    right: 0px;
	float: right;
	overflow: hidden;
	cursor: pointer;
	background: url(img/lightbox-arrow-close.svg?1) 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;
}

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

.gy-lightbox-lightimage{
	background-color: #000;
	box-sizing: border-box;
    clear: right;
    width: auto;
    height: auto;
    left: auto;
	display:none;
	position: absolute;
	left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
	box-shadow: 0px 0px 100px -20px #fff;
	z-index: 99;
}

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

.gy-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;
}

.gy-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;
}

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

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

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

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

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

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

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


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

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

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

.gy-lightbox-lock{
	overflow: visible !important;
}

.gy-lightbox-lock body{
	overflow: hidden;
	height: 100%;
}

.gy-dragging-active .gy-lightbox-lightimage {
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
	-moz-transform: none;
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
	overflow: hidden;
}

.gy-dragging-active .gy-lightbox-lightimage img {
    width: initial !important;
    height: initial !important;
    max-width: initial !important;
    max-height: initial !important;
}

.dragarea{
	position: fixed;
	width: 100%;
	height: 100%;
}

.gy-draggable{
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.gy-draggable.gy-draggable-init{
	cursor: move;
}

.gy-dragging-active .gy-lightbox-arrow{
	display: none;
}

.gy-lightbox-lightimage iframe{
	position: absolute;;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

/*--Start Animation--*/
.gy-lightbox-loading{
	position:relative;
	top:100px;
	width:230px;
	height:120px;
	margin:0px auto;
	display:block;
	text-align: center;
	z-index:98;

	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%);
}

#gy-loading-animation{
	width:80px;
	margin: 0px auto;
	padding-top:10px;
}

.gy-loading-animation-block{
	background-color: #fff;
	float:left;
	height:57px;
	margin-left:6px;
	width:15px;
	opacity:0.1;
	-moz-animation-name:bounceG;
	-moz-animation-duration:1.1s;
	-moz-animation-iteration-count:infinite;
	-moz-animation-direction:linear;
	-moz-transform:scale(0.7);
	-webkit-animation-name:bounceG;
	-webkit-animation-duration:1.1s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-direction:linear;
	-webkit-transform:scale(0.7);
	-ms-animation-name:bounceG;
	-ms-animation-duration:1.1s;
	-ms-animation-iteration-count:infinite;
	-ms-animation-direction:linear;
	-ms-transform:scale(0.7);
	-o-animation-name:bounceG;
	-o-animation-duration:1.1s;
	-o-animation-iteration-count:infinite;
	-o-animation-direction:linear;
	-o-transform:scale(0.7);
	animation-name:bounceG;
	animation-duration:1.1s;
	animation-iteration-count:infinite;
	animation-direction:linear;
	transform:scale(0.7);
}

#gy-blockG_1{
-moz-animation-delay:0.33s;
-webkit-animation-delay:0.33s;
-ms-animation-delay:0.33s;
-o-animation-delay:0.33s;
animation-delay:0.33s;
}

#gy-blockG_2{
-moz-animation-delay:0.44000000000000006s;
-webkit-animation-delay:0.44000000000000006s;
-ms-animation-delay:0.44000000000000006s;
-o-animation-delay:0.44000000000000006s;
animation-delay:0.44000000000000006s;
}

#gy-blockG_3{
-moz-animation-delay:0.55s;
-webkit-animation-delay:0.55s;
-ms-animation-delay:0.55s;
-o-animation-delay:0.55s;
animation-delay:0.55s;
}

@-moz-keyframes bounceG{
0%{
-moz-transform:scale(1.2);
opacity:1}

100%{
-moz-transform:scale(0.7);
opacity:0.1}

}

@-webkit-keyframes bounceG{
0%{
-webkit-transform:scale(1.2);
opacity:1}

100%{
-webkit-transform:scale(0.7);
opacity:0.1}

}

@-ms-keyframes bounceG{
0%{
-ms-transform:scale(1.2);
opacity:1}

100%{
-ms-transform:scale(0.7);
opacity:0.1}

}

@-o-keyframes bounceG{
0%{
-o-transform:scale(1.2);
opacity:1}

100%{
-o-transform:scale(0.7);
opacity:0.1}

}

@keyframes bounceG{
0%{
transform:scale(1.2);
opacity:1}

100%{
transform:scale(0.7);
opacity:0.1}
}

@media screen and (max-width: 768px) {
	.gy-lightbox-lock{
		padding-right: 0;
	}

	.gallery-lightbox{
		position: relative;
	}

	.gallery-lightbox img{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}


