
/************* LIGHTBOX **************/
div.lightbox{
    background-color: rgba(22, 26, 31,0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 8000;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all ease-in-out .2s;
    display:flex;
    justify-content: center;
    align-items: start;
    padding:10px;
}

div.lightbox section{
    max-width: 900px;
    background: var(--widget-bg-color);
    border-radius: var(--border-radius);
    margin:1.75rem;
    padding:0;
    display:flex;
    flex-direction: column;
    max-height: calc(100% - 40px);
    min-width: 500px;
    border: 2px solid var(--bg-color);
}

div.lightbox header{
    border-bottom: 2px solid var(--bg-color);
    display: flex;
    padding: 15px;
    flex:0 0 auto;
}

div.lightbox header > *:nth-child(2){
    margin:0 auto;
}

div.lightbox footer{
    border-top: 2px solid var(--bg-color);
    padding: 15px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    flex:0 0 auto;
}

div.lightbox footer button,
section.widget footer button{
    margin-right: 0;
    margin-left: 10px;
}

div.lightbox main{
    padding: 15px;
    min-height: 100px;
    flex:1 1 auto;
    overflow-y:auto;
}
