#imagelightbox {
    cursor: pointer;
    position: fixed;
    z-index: 10000;
    -ms-touch-action: none;
    touch-action: none;
	padding:0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .3);
    box-shadow: 0 0 15px rgba(0, 0, 0, .3)
}
#imagelightbox-loading,
#imagelightbox-loading div {
    border-radius: 9999px
}
#imagelightbox-loading {
    background-color: grey;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 10003;
    top: 50%;
    left: 50%;
    padding: .65em;
    margin: -1.3em 0 0 -1.3em;
    -webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, .75);
    box-shadow: 0 0 2.5em rgba(0, 0, 0, .75)
}
#imagelightbox-loading div {
    width: 1.3em;
    height: 1.3em;
    background-color: #fff;
    -webkit-animation: imagelightbox-loading .5s ease infinite;
    animation: imagelightbox-loading .5s ease infinite
}
@-webkit-keyframes imagelightbox-loading {
    from, to {
        opacity: .5;
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
@keyframes imagelightbox-loading {
    from, to {
        opacity: .5;
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
#imagelightbox-overlay {
    background-color: #333333;
    background-color: rgba(51,51,51, .90);
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}
#imagelightbox-close {
    width: 60px;
    height: 60px;
    background:#ffffff;
    position: fixed;
    z-index: 10002;
    top:0;
    right:0;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
	
	-webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
#imagelightbox-close:before{
	content:'';
	background:url(../img/icons.png) -409px -30px no-repeat;
	position:absolute;
	top:50%;
	left:50%;
	width:25px;
	height:25px;
	margin-top:-13px;
	margin-left:-12px;
}
#imagelightbox-close:hover {
    background-color: #f4f4f4
}
 
#imagelightbox-caption {
    text-align: center;
    color: #fff;
    position: fixed;
    z-index: 10001;
	font-size:15px;
	font-weight:bold;
    left: 0;
    right: 0;
	/*bottom:6%;*/
	bottom:4%;
    padding: .625em;
}

#imagelightbox-nav {
    background-color: #444;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 10001;
    left: 50%;
    bottom: 3.75em;
    padding: .313em;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 20px
}
#imagelightbox-nav a {
    width: 1em;
    height: 1em;
    border: 1px solid #fff;
    display: inline-block;
    margin: 0 .313em;
    border-radius: 50%
}
#imagelightbox-nav .active {
    background-color: #fff
}
.imagelightbox-arrow {
    width:70px;
    height:110px;
    vertical-align: middle;
    display: none;
    position: fixed;
    z-index: 10001;
    top: 50%;
    margin-top:-55px;
	border:0;
	background:url(../img/icons.png) 0 0 no-repeat;
	
	-webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
 
.imagelightbox-arrow-left {
	left:10%;
	background-position:-330px -109px
}
.imagelightbox-arrow-right {
    right:10%;
	background-position:-406px -109px
}
 
 
#imagelightbox-caption,
#imagelightbox-close,
#imagelightbox-loading,
#imagelightbox-nav,
#imagelightbox-overlay,
.imagelightbox-arrow {
    -webkit-animation: fade-in .25s linear;
    animation: fade-in .25s linear
}
@-webkit-keyframes fade-in {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
@keyframes fade-in {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.touch-icon{
	display:block;
	position:absolute;
	top:0px;
	left:0px;
	background:#000;
	width:100%;
	height:100%;
	display:none;
	z-index:99
}
 
@media (max-width: 767px){
	.imagelightbox-arrow-left,
	.imagelightbox-arrow-right{ background:none}
}