.lightbox:not(.display)
{
    cursor: pointer;
}
.lightbox.display{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: #35353599;
}
.lightbox.display .lightbox-dialog
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightbox.display .lightbox-content
{
    padding: 30px;
    border-radius: 15px;
    box-shadow: 2px 1px 6px 6px #474747;
    position: relative;
}
.lightbox.display .lightbox-body
{
    text-align: justify;
}
.lightbox.display .lightbox-header
{
    width: 100%;
    height: 100%;
    text-align: center;
}
.lightbox.display .close 
{
    position: absolute;
    top: 3%;
    right: 3%;
    background-color: #fff;
    border-radius: 50%;
}
.lightbox.display .close i 
{
    font-size: 1.5em;
}
.lightbox.display .close i:before 
{
    box-shadow: 0px 0px 4px 0px #000;
    border-radius: 100%;
}
.lightbox.display .lightbox-title
{
    font-weight: bold;
    margin-bottom: 15px;
}

@media only screen and (max-width: 780px)
{
    .lightbox.display .lightbox-content 
    {
        width: 70vw;
    }
    .lightbox.display .lightbox-body
    {
        overflow-y: auto;
        max-height: 35vh;
        text-align: center;
    }
}