#msgboxoverlay {
    display: none;
    opacity: .8;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #707070;
    width: 100%;
    z-index: 9998;
}

#msgbox {
    display: none;
    position: absolute;
    background: #FFF;
    border-radius: 7px;
    width: 95%;
    z-index: 9999;
    top: 60px;
    /* bottom: 10px; */
    left: 0;
    right: 0;
    margin: auto;
}

.msgboxCloseButton {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0 16px;
    width: 100%;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: #246ef3 !important;
    background: #FFF;
    font-size: 14px;
    font-weight: 500 !important;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    border-top: 1px dotted #ccc;
}

#msgbox>div {
    background: #FFF;
    margin: 8px;
}

#msgbox>div>#msgboxbody {
    background: #FFF;
    padding: 15px 10px 10px 10px;
    color: #333;
}

#msgbox>div>#msgboxfoot {
    background: #FFF;
    text-align: center;
}

.msgbox-success, .msgbox-success a  {
    color: #1e7f28 !important;
    /* background: #e7ffec; */
}

.msgbox-error, .msgbox-error a  {
    color: #650304 !important;
    /* background: #fde5e9; */
}

.msgbox-info, .msgbox-info a {
    color: #082a64 !important;
    /* background: #e5fffb; */
}

.msgbox-warning, .msgbox-warning a {
    color: #672901;
    /* background: #fef5e7; */    

}
