/*gallery setup*/
.hidden{
    display: none !important;
}

.visible{
    display: block !important;
}

.no-scroll{
    overflow: hidden !important;
}

.transparent{
    opacity: 0 !important;
}

#lightbox-main-container{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

ul li{
    list-style: none !important;
}

#lightbox-main-container .fadeIn{
    -webkit-animation: fadein 1.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1.5s; /* Firefox < 16 */
        -ms-animation: fadein 1.5s; /* Internet Explorer */
         -o-animation: fadein 1.5s; /* Opera < 12.1 */
            animation: fadein 1.5s;
}

#lightbox-main-container .overlay{
    position: fixed;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background-color: #fff;
    opacity: 1;
    z-index: 10000;
}

#lightbox-main-container .gallery-list{
    display: table;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

#lightbox-main-container .gallery-list .gallery-list-item{
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    position: relative;
    z-index: 10000;
}

#lightbox-main-container .gallery-list .gallery-list-item img{
    width: 80%;
    height: auto;
    margin: auto;
    display: block;
}

/*gallery navigation*/
#lightbox-main-container .navigation-button{
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    z-index: 100000;
    cursor: pointer;
}

#lightbox-main-container #left-arrow{
    background-image: url('../img/gallery-prev.png');
    left: 30px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: cover;
}

#lightbox-main-container #right-arrow{
    background-image: url('../img/gallery-next.png');
    right: 30px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: cover;
}

#lightbox-main-container #close-button{
    background-image: url('../img/gallery-close.png');
    right: 20px;
    top: 20px;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media all and (max-width: 768px) and (orientation: landscape) {
    #lightbox-main-container .gallery-list .gallery-list-item img{
        width: 50%;
        margin: auto;
        display: block;
    }
}

@media all and (max-width:768px) and (orientation:portrait){
    #lightbox-main-container .gallery-list .gallery-list-item img{
        width: 80%;
        margin: auto;
        display: block;
    }

    #lightbox-main-container #left-arrow{
        bottom: 10px;
        left: 20%;
        top: initial;
    }

    #lightbox-main-container #right-arrow{
        bottom: 10px;
        right: 20%;
        top: initial;
    }
}


