.instaflow-grid {
    display: grid;
}

.instaflow-item {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

.instaflow-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 9999;
}

.instaflow-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.instaflow-lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.instaflow-lightbox span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
