﻿#messageBoxConfirm, #messageBoxNotification {
    display: none;
    border: 1px solid #F15D54;
    position: fixed;
    width: 30%;
    height: 20%;
    top: 37%;
    left: 35%;
    padding: 6px 8px 8px;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
    background-color: white;
    z-index: 10000;
    box-shadow: 10px 10px 10px lightgrey;
    color: #F15D54;
}

#errorMessageBoxNotification {
    display: none;
    border: 1px solid red;
    position: fixed;
    width: 30%;
    height: 20%;
    top: 37%;
    left: 35%;
    padding: 6px 8px 8px;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
    background-color: white;
    z-index: 10000;
    box-shadow: 10px 10px 10px lightgrey;
    color: red;
}