.modal {
    /** Hide the lightbox */
    /*display: none;*/

    /** Apply basic lightbox styling */
    position: fixed;
    z-index: 9998;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
}

.lightbox-content {
    position: relative;
    /*width: 100%;*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

.lightbox-content {
    /*width: 50%;*/
}

.lightbox-content img {
    max-width: 80%;
    max-height: 500px;
    margin-top: 2%;
}

.lightbox-description {
    width: 50%;
}

.lightbox-close {
    position: absolute;
    left: 80%;
    top: 40px;
    background:url(../Images/close.png);
    width:27px;
    height:27px;
    z-index: 9999;
}

.lightbox-prev {
    top: 50%;
    position: absolute;
    background:url(../Images/prev.png);
    width:50px;
    height:45px;
}

.lightbox-next {
    top: 50%;
    position: absolute;
    left: 93%;
    background:url(../Images/next.png);
    width:50px;
    height:45px;
}