.lightbox-container{
    position: fixed;
    top: 0px; bottom: 0px;
    left: 0px; right: 0px;
    z-index: 5;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-container .close-lightbox{
    color: white;
    position: absolute;
    top: 10px; right: 10px;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
}

.lightbox-container .lightbox-contents{
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    border: 1px solid #c3c3c3;
    -webkit-box-shadow: 0px 0px 8px 0px #000000; 
    box-shadow: 0px 0px 8px 0px #000000;
    overflow: hidden;
}

.lightbox-container .lightbox-contents .top-title{
    justify-content: center;
}

@media(max-width: 756px){
    .lightbox-container{
        flex-direction: column;
        align-items: flex-end;
    }
    .lightbox-container .close-lightbox{
        position: relative;
        top: unset;
        right: unset;
    }
    .lightbox-container .lightbox-contents{
        width: 100%;
        height: fit-content;
        border-radius: 0px;
    }
}