﻿.dialog-container {
    position: fixed;
    z-index: 100;
    display: flex;
    top: 0; left: 0; right: 0; bottom: 0;

    justify-content: center;
    align-content: center;
}

.dialog-container:not(.active) {
    display: none;
}

.dialog {
    background-color: white;
    border: 1px solid #b1b1b1;
}



.dialog-xs {
    width: 300px;
    height: 300px;
}