.modal-hinweis-top{
    height: 31px;
    width: 100%;
    text-align: left;
    vertical-align: center;
    background-color: blue;
    color: white;
}

/* -------------------- MODAL BOX ------------------------------ */
.modal-wrapper{
    position: fixed;
    display: grid;
    left: 0px;
    top: 0px;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.grayout{
    position: fixed;
    display: grid;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 9000;
    justify-content: center;
    align-items: center;
}

.modal-box{
    display: grid;
    overflow: hidden;
    background-color: black;
    box-sizing: border-box;
    z-index: 9000;
    border: 5px solid ;
    border-color: red;
}

.modal-dialog-top{
    height: 31px;
    width: 100%;
    background-color: #d7d8ec;
    text-align: left;
    vertical-align: center;
    color: #333333;
}

.modal-alert-top{
    height: 31px;
    width: 100%;
    text-align: left;
    vertical-align: center;
    background-color: red;
    color: white;
}

.modal-headline{
    float: left;
    font-size: 18px;
    height: 20px;
    width: 90%;
    padding-top: 5px;
    padding-left: 5px;
}

.modal-canvas{
    width: 400px;
    height:160px;
    color: black;
    background-color:  white;
}

.modal-text{
    float: left;
    margin-top: 15px;
    margin-left: 0px;
}

.modal-icon{
    float: left;
    width: 90px;
    height: 100px;
    margin-top: 15px;
    margin-left: 15px;
}

.modal-close {
    float: right;
    width: 30px;
    height: 100%;
    width: 25px;
    height:25px;
    background-color: #5A5A5A;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    margin-top: 2px;
    margin-right: 2px;
    padding-top: 1px;
}

.modal-close:hover{
    cursor: pointer;
    background-color: #1E201F;
}

.modal-dialog-bottom{
    display:flex;
    height: 40px;
    width: 100%;
    background-color: white;
    justify-content: center;
    align-items: center;
}

.modal-dialog-button{
    display: flex;
    align-items: center;
    height: 80%;
    width: 100px;
    font-size: 18px;
    margin-left: 10px;
    margin-bottom: 5px;
    border: 1px solid #c5c5c5;
    background-color: #F0F0F0;
    color: black;
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
}

.modal-button-text{
    text-align: center;
    width: 100%;
}

.modal-dialog-button:hover{
    cursor: pointer;
    background-color: #EDEDED;
}

.modal-dialog{
    display: grid;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-color: black;
    box-sizing: border-box;
    z-index: 9000;
    border: 3px solid ;
    border-color: darkgrey;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;
    border-radius: 0.4em;
}
