
.notify {
    border: 1px solid;
    border-radius: 8px;
    position: fixed;
    bottom: 65px;
    right: 10px;
    width: 280px;
    /*height: 100px;*/
    z-index: 100;
    padding: 10px;
}
.notify_error {
    background-color: #FBDCDC;
    /*border-color: #E51616;*/
    outline: #E51616;
}
.notify_warning {
    background-color: #FFF5DD;
    /*border-color: rgba(255, 188, 25, 0.46);*/
    outline: #FFDB83;
}
.notify_info {
    background-color: #E6F9FF;
    /*border-color: #58D7FF;*/
    outline: #58D7FF;
}
.notify_success {
    background-color: #E8F8E2;
    /*border-color: #378632;*/
    outline: #E51616;
}

#error_elem {
    display: flex;
    flex-direction: column;
}
.error_elem_head {
    display: flex;
    flex-direction: row;
    self-align: stretch;
}
.error_elem_head_icon {
    justify-content: flex-start;
    padding-right: 10px;
}
.error_elem_head_text {
    width: 80%;
}
.close_error_elem {
    justify-content: flex-end;
    cursor: pointer;
}
.error_elem_text {
}
