/* ***************************************************** */
/* MODAL CONTROL CSS */
/* ***************************************************** */

#dialog_container {
    display: flex;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 75;
}

#dialog_content {
    width: 100%;
}

#dialog_content_container {
    display: flex;
    font-family: var(--body-font);
    justify-content: space-between;
    margin: auto;    
    position: relative;    
    z-index: 100;    
}

#dialog_overlay {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

#dialog_overlay {
    /* background-color: var(--diamond-black); */
    background-color: var(--dialog-overlay);
    z-index: 90;
}

#dialog_loading{
    height:200px;
    width:200px;
    background: url(/resources/images/ui/spinner.svg) no-repeat center;

    opacity: 0.7;
    /* -webkit-animation: pulse 1.5s infinite ease-in-out;
    -o-animation: pulse 1.5s infinite ease-in-out;
    -ms-animation: pulse 1.5s infinite ease-in-out;
    -moz-animation: pulse 1.5s infinite ease-in-out;
    animation: pulse 1.5s infinite ease-in-out; */
}
