﻿div.ErrorDiv {
    display: none;
}
div.ErrorDiv-visible {
    z-index: 1;
    background: #5a5a5a66;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

div.MsgDiv {
    background-color: white;
    max-width: 80vw;
    border-radius: 2vh;
    border: 2px solid #808080;
    background-image: linear-gradient(0deg, #808080, transparent 20%);
}

div.MsgDiv-visible {
    z-index: 2;
    background: #5a5a5a66;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

div.ErrorHeadLine {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin: 10px 0px;
}

div.ErrorContent {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    color:black;
}

div.MsgContent {
    margin: 10px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: auto;
}

div.ErrorButtonContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: end;
    justify-content: center;
    margin: 1vh 1vw 3vh 1vw;
}