﻿/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    left: 0;
    top: 0;
    /*height: 100vh;*/
    /*width: 100%;*/ /* Full width */
    /*height: 100%;*/ /* Full height */
    /*overflow: auto;*/ /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 520px;
    height: 550px;
}

/* The Close Button */
.close {
    color: rgb(50,50,50);
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modalErrorMsg {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    left: 0;
    top: 0;
    height: 100vh;
    /*width: 100%;*/ /* Full width */
    /*height: 100%;*/ /* Full height */
    /*overflow: auto;*/ /* Enable scroll if needed */
    background-color: red; /* Fallback color */
    background-color: maroon; /* Black w/ opacity */
}

/* Modal Content/Box */
.modalErrorMsgContent {
    margin: auto; /* 25% from the top and centered */
    background-color: #fefefe;
    border: 1px solid #888;
    width: 370px;
    height: 175px;
}

.errorMsgTopBar{
    height:30px;
    width:100%;
    border: 1px solid gray;
    background-color: rgb(200,200,200);
    vertical-align:middle;
    line-height:30px;
    padding-left:5px;
    color:maroon;
    font-weight:bold;
}

.errorMsgTextArea{
    padding: 15px;
    width: 100%;
    height: 105px;
}

/* The Close Button */
.closeErrorMsgBox {
    color:maroon;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeErrorMsgBox:hover,
.closeErrorMsgBox:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}