﻿/* Notices */
.info, .success, .warning, .error {
    border: 1px solid;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
}

.success {
    background: #dff2bf;
    color: #4f8a10;
}

.info {
    color: #00529b;
    background-color: #d4f1ff; /* was #bde5f8 */
}

.warning {
    color: #9f6000;
    background-color: #FEEFB3;
}

.error {
    color: #D8000C;
    background-color: #FFBABA;
}

    .info:before, .success:before, .warning:before, .error:before {
        display: inline-block !important;
        font-family: FontAwesome;
        font-style: normal;
        font-variant: normal;
        font-weight: 400;
        line-height: 1em;
        margin-left: -4px;
        margin-right: .2em;
        -moz-osx-font-smoothing: grayscale;
        speak: none;
        text-align: center;
        text-decoration: inherit;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        width: 20px;
    }

.success:before {
    content: '\f00c';
}

.info:before {
    content: '\F05A' !important;
}

.warning:before {
    content: '\f071';
}

.error:before {
    content: '\f057';
}

