﻿.msg-info,
.msg-success,
.msg-warning,
.msg-error,
.msg-info-default,
.msg-question{
    margin: 10px 0 10px 0;
    padding: 10px;
    border-radius: 3px;
    width: 100%;
    display: flex;
    box-shadow: 0px 1px 3px #ddd;
    flex-flow: column nowrap;
    align-items: flex-start;
}

    .msg-info .head,
    .msg-success .head,
    .msg-warning .head,
    .msg-error .head,
    .msg-info-default .head,
    .msg-question .head{
        flex: none;
        font-weight: 700;
    }


    .msg-info .body p,
    .msg-success .body p,
    .msg-warning .body p,
    .msg-error .body p,
    .msg-info-default .body p,
    .msg-question .body p {
        margin: 8px 0;
        line-height: 140%;
        /*border: 1px solid;*/
    }

.msg-info {
    color: #059;
    background-color: #BEF;
}

.msg-success {
    color: #270;
    background-color: #DFF2BF;
}

.msg-warning {
    color: #9F6000;
    background-color: #FEEFB3;
}

.msg-error {
    color: #D8000C;
    background-color: #FFBABA;
}

.msg-info-default {
    color: #555;
    background-color: #fafafa;
    box-shadow: none;
    border: 1px solid #eee;
}

.msg-question {
    color: #FF6000;
    background-color: rgba( 240, 91, 65, 0.1 );
}
