/* CSS Document */

#dialogDiv{
    position: fixed;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    padding: 1rem;
    z-index: 20;
    box-shadow: 3px 7px 11px 4px lightgrey;
    border-radius: 0.5rem;
}

#dialogDiv > *{
    margin-bottom: 0;
}

#dialogDiv h1{
    background-color: var(--colour4);
    margin-top: 0;
    text-align: center;
    padding: 0.5rem;
}

#dialogControls{
    display: grid;
    grid-auto-flow: column; /* Puts all on one row. */
    /*justify-content: space-between;*/
}
#dialogCancel:hover, #dialogBack:hover{
    font-weight: bold;
    cursor: pointer;
    }  

#dialogCancel{
    display: flex;
    justify-self: right;
}

#dialogBack{
    display: none;
    justify-self: left;
}

#dialogDivBlanker{
    position: fixed;
    display: none;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: white;
    opacity: 0.8;
    z-index: 10;
} 

@media (min-width: 1350px) { /* was 992px */
#dialogDiv{
    top: 50%;
    left: 50%;
    height: auto;
    width: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
}



























