/* notify.css */
/* notification message new styles */

.clt-msg-success {
    background-color: #f2fff4;
    border: solid 1px #b3e1b2;
    color: #579d56;
    width: auto !important;
    height: auto !important;
    min-width: 150px;
}

.clt-msg-warning {
    background-color: #fff1e1;
    border: solid 1px #ff9f46;
    color: #ff4d00;
    width: auto !important;
    height: auto !important;
    min-width: 150px;
}

.clt-msg-info {
    background-color: #EEEEEE;
    border: solid 1px #BBBBBB;
    color: #373737;
    width: auto !important;
    height: auto !important;
    min-width: 150px;
}

.clt-msg-error {
    background-color: #ffeae1;
    border: solid 1px #ff8e5e;
    color: #f46242;
    width: auto !important;
    height: auto !important;
    min-width: 150px;
}

.clt-msg-success img.notify-icon {
    vertical-align: top;
    padding-right: 7px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-image: url('/App_Themes/Material/Icons/16x16/success_message_16.svg');
}

.clt-msg-warning img.notify-icon {
    vertical-align: top;
    padding-right: 7px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-image: url('/App_Themes/Material/Icons/16x16/warning_16.svg');
}

.clt-msg-info img.notify-icon {
    vertical-align: top;
    padding-right: 7px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-image: url('/App_Themes/Material/Icons/16x16/info_message_16.svg');
}

.clt-msg-error img.notify-icon {
    vertical-align: top;
    padding-right: 7px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-image: url('/App_Themes/Material/Icons/16x16/error_16.svg');
}

/* /notify.css */