/* ErrorPopup */
.errorPopup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
}
.errorPopup_container {
    background-color: #fff;
    margin: 4% auto; padding: 20px;
    width: 80%; max-width: 500px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #888; border-radius: 8px;
    text-align: center;
}
.error-title {
    background-color: RGB(58, 161, 232);
    font-size: 18px; font-weight: bold;  color: white; text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}
.btn-confirm {
    background-color: RGB(58, 161, 232);
    border: none; border-radius: 4px;
    font-size: 16px; font-weight: bold;
    cursor: pointer;
    padding: 10px 20px; margin-top: 20px;
}
.errorMessage ul{
    list-style-type: none;
    font-size: 16px;
    padding: 0; margin: 0;
}
.errorPopup.sysError,
.errorPopup.disconn {display: inline-block;}
.sysError .error-title{ background-color: var(--bgColorErrLight);}
.sysError .btn-confirm{ background-color: var(--bgColorErrLight);}
.errorPopup .btn-confirm{ color: white; }