.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.image-trigger{
    cursor:pointer;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    background: #fff;
    padding: 20px;
    opacity:0;
    transform: scale(0.7)
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lightbox-overlay, 
.lightbox-content{
    transition: all 0.3s ease-in-out;
}

.lightbox-content.open{
    opacity: 1;
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 60vh;
}

.modal-topline,
.modal-description {
    margin-top: 10px;
}

.lightbox-images{
    display: inline-flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: row;
}

.lightbox-images .image-container{
    position: relative;
    display: flex;
    max-width: calc(50% - .5rem);
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: stretch;
}

.lightbox-images .image-container:last-of-type{
    margin-bottom:4rem;
}

@media screen and (max-width:768px){
    .image-trigger img{
        width:100%;
    }
}
@media screen and (min-width:1024px){
    .lightbox-images .image-container img{
        max-width: 100%;
    }
    .lightbox-images .image-container:last-of-type{
        margin-bottom:0;
    }
}
