﻿#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    text-align: center;
    z-index: 1000;
}

    #lightbox #content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    #lightbox p {
        color: #fff;
        margin-right: 20px;
        font-size: 12px;
        position: absolute;
        right: 0;
        cursor: pointer;
    }

        #lightbox p:hover {
            color: #06b5a6;
        }

    #lightbox img {
        box-shadow: 0 0 25px #111;
        max-width: 90vw;
        background: white;
        padding: 20px;
    }

    .LightboxImage {
        cursor: pointer;
    }
