.lightbox-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(2,4,4,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.lightbox-loading {
    text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
}

.lightbox-image-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    cursor: default;
    border: solid 15px white;
    max-width: 80%;
    max-height: 80%;
    box-shadow: 
     rgba(0, 0, 0, 0.8) 0px 5px 35px,
     rgba(0, 0, 0, 0.8) 0px 3px 5px;
}

.lightbox-help {
    display: block;
    color: #ddd;
    margin-top: 8px;
    font-size: smaller;
}

.lightbox-close {
    background: rgba(255, 255, 255, .1);
    border-radius: .2rem;
    border: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    z-index: 10000;
    display: flex;
    align-items: center;
    align-content: center;
    padding: .8rem 1rem;
    cursor: pointer;
    text-shadow: 0 1px 0 black;
}

.lightbox-close:hover {
    background-color: rgba(255,255,255, .08);
    box-shadow: 0 3px 10px black;
}


.close-icon {
    display: block;
    width: 22px;
    height: 22px;
    margin-right: 8px;
}
