
/************* LIGHTBOX **************/
div.lightbox{
    background-color: rgba(200, 200, 200, .8);
    backdrop-filter: blur(0.1em);
    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: center;
}

div.lightbox section{
	background: white;
    margin:10%;
    padding:0;
    display:flex;
    flex-direction: column;
    max-height: calc(100% - 140px);
    min-width: 600px;
}

div.lightbox header{
    border-bottom: 2px solid #e5e5e5;
    display: flex;
    padding: 10px;
    flex:0 0 auto;
}

div.lightbox footer{
    border-top: 2px solid #e5e5e5;
    background: #fff;
    padding: 10px;
    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: 10px;
    min-height: 100px;
    flex:1 1 auto;
    overflow-y:auto;
}
