.gns-lightboxContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gns-lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0,0,0,0.8);
}

.gns-lightbox {
    z-index: 2;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    /* this is centered with jquery */
}

/* Custom... */

    .gns-lightbox {
        width: 800px;
    }

    @media only screen and (max-width: 850px) {
        
        .gns-lightbox {
            width: 600px;
        }
        
    }
    
    @media only screen and (max-width: 850px) {
        
        .gns-lightbox {
            width: 100%;
        }
        
    }

    .lightbox {
        overflow: hidden;
    }

    .lbImg {
        display: block;
        float: left;
        width: 60%;
        height: auto;
    }

    .lbContent {
        display: block;
        float: right;
        width: 40%;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lbContentWrap {
        padding: 30px;
    }

    .lbCloser {
        position: absolute;
        top: 0;
        left: 0;
        width: 68px;
        height: 68px;
        background-image: url(../../img/close.png);
        background-size: 68px 68px;
        z-index: 1;
    }
    
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        
        .lbCloser {
            background-image: url(../../img/close_2x.png);
        }
        
    }
    
    @media only screen and (max-width: 650px) {
    
        .gns-lightbox {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin-left: 0;
            margin-right: 0;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .lbImg {
            width: 100%;
            float: none;
        }
        
        .lbContent {
            float: none;
            width: 100%;
            height: auto;
            background: #fff;
            overflow: hidden;
        }
        
        .lbCloser {
            position: fixed;
        }
        
    }