/** {*/
/*    box-sizing: border-box;*/

/*}*/
/*body{*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    flex-wrap: wrap;*/
/*}*/
#lightbox-item{
    position: relative;
    /*height: 168px;*/
    margin-right: 15px;
    display: inline-block;
}
#lightbox-item img{
    pointer-events: none;
}

#lightbox-item:after{
    display: none;
    content: attr(data-info);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0.2px 0.2px black;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    /*color: red;*/
}
#lightbox-item:hover:after{
    display: inherit;
}
#lightbox-item:hover{
    opacity: 0.9;
    cursor: pointer;
}

#lightbox-modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.95);
    width: 100%;
    height: 100%;
    color: #ffffff;
    z-index: 1000000;
}
#lightbox-modal #close-button{
    font-size: 25px;
    margin: 25px;
    float:right;
}
#lightbox-modal #close-button:hover{
    cursor: pointer;
}

#lightbox-modal #lightbox-modal-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: auto;
    max-height: 80%;
    max-width: 30%;
}
