
#toast-container > div {
    opacity: 1;
}

#toast-container .toast-close-button {
    color: #333;
}

#toast-container > .toast {
    background-image: none !important;
    background-color: white;
    color: #333;
}

#toast-container > .toast:before {
    position: fixed;
    font-family: FontAwesome;
    font-size: 24px;
    line-height: 18px;
    float: left;
    color: #333;
    padding-right: 0.5em;
    margin: auto 0.5em auto -1.5em;
}

#toast-container > .toast-warning {
    background-color: #f7deba; /*#F89406*/
}

#toast-container > .toast-error {
    background-color: #f7bdba; /*#BD362F*/
}

#toast-container > .toast-info {
    background-color: #bae9f7; /*#2F96B4*/
}

#toast-container > .toast-success {
    background-color: #baf7ba; /*#51A351*/
}


#toast-container > .toast-warning:before {
    content: "\f12a";
}

#toast-container > .toast-error:before {
    content: "\f00d";
}

#toast-container > .toast-info:before {
    content: "\f129";
}

#toast-container > .toast-success:before {
    content: "\f00c";
}