/* --------------------------------------------
lightbox for billing statement */

.lightbox {
    position: relative;
    display: none;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: 10;
}

.lightbox-content {
    position: absolute;
    text-align: center;
    padding: 50px 0 0 0;
    z-index: 20;
    width: 100%;
    cursor: pointer;
}

.lightbox-image {
    display: inline-block;
    width: 100%;
    height: auto;
    max-width: 570px;
}
