.lightbox-info {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .3);    
    position: fixed;
    z-index: 100000;

    font-size: 1.1em;
}

.lightbox-center {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-btn-close {
    position: absolute;
    top: -25px;
    right: -25px;
    cursor: pointer;
    color: rgb(40, 40, 40);
    font-size: 2.5em;
}

.lightbox-content {
    background-color: white;
    width: 40%;
    height: 40vh;
    padding: 25px;

    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;

    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content-badget{
    max-width: 400px;
    height: 30vh;
}

.lightbox-content p{    
    line-height: 1.8em;
}

table .btn {
    margin: 20px 5px;
}

@media screen and (max-width: 900px) {
    .lightbox-content {
        width: 85%;
        height: 60vh;
    }

    .lightbox-content-badget{
        max-width: 300px;
        height: auto;
    }

    .lightbox-btn-close {
        font-size: 2em;
    }

}