#vaos-dialog-container {
    display : flex;
    position: fixed;
    top     : 0;
    bottom  : 0;
    right   : 0;
    left    : 0;
    z-index : 99999;
    padding-bottom: 6em;
    cursor: default;
    background: rgba(20, 20 , 20, 0.6);
}

#vaos-dialog-container.vaos-hidden {
    display: none;
}

.vaos-dialog {
    position: relative; 
    margin: auto;
    max-width: 32em;
    background-color: white;
    border-radius: 0.5em;
    border: 1px solid grey;
    overflow: visible;
    box-shadow: 1px 1px 1px white;
    font-size   : 12px;
    font-family : Arial, Helvetica, sans-serif;
}

.vaos-dialog-title {
    background-color: lightgrey;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    text-align: center;
    padding: 0.5em;
    margin: 0;
    font-size: 1.2em;
    line-height: 1.4;
    position: relative;
}

.vaos-dialog-title .vaos-close {
    position: absolute;
    display : block;
    top     : 50%;
    right   : 16px;
    overflow: visible;
    width   : 0;
    height  : 0;
    margin  : 0;
    padding : 0;
    color   : #95979c;
    cursor  : pointer;
    transition: color 0.2s, border-color 0.2s;
}

.vaos-dialog-title .vaos-close:before {
    font-family: Arial, sans-serif !important;
    display    : block;
    content    : "\00d7";
    margin-top : -16px;
    margin-left: -16px;
    font-size  : 32px;
    line-height: 32px;
    text-align : center;
}

.vaos-dialog-title .vaos-close:active {
    margin-top  : 1px;
    margin-right: -1px;
}

.vaos-dialog-title .vaos-close:hover {
    color: inherit;
}

.vaos-dialog-body {
    margin : 1em;   
    padding: 0; 
}

.vaos-dialog > h3 {
    background-color: lightgrey;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    text-align: center;
    padding: 0.5em;
    margin: 0;
    font-size: 1em;
    line-height: 1.4;
}

.vaos-dialog-buttons {
    text-align: center;
    padding   : 0;
    margin: 1em;
    margin-top: 0;
}