/*! --------------------------------------------------------------
    Copyright (c) 2011 - Kaango, LLC - All Rights Reserved
   -------------------------------------------------------------- */

/* --------------------------------------------------------------
    provides the foundation setup of the flash messages

    same setup is used on the front end and the management console
    this is why it is in its own file
   -------------------------------------------------------------- */

p.kng-message-success{
    margin:10px;
    padding:10px;
    color:#333333;
    font-size:1.2em;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
    background-color:#d4fca9;
    border:1px solid #bbfa78;
}

p.kng-message-success i.fa-circle {color:#56a006;}

p.kng-message-failure,p.kng-message-fail,p.kng-message-warning{
    margin:10px;
    padding:10px;
    color:#333333;
    font-size:1.2em;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
    background-color:#ffe4f1;
    border:1px solid #ffb1d7;
}

p.kng-message-failure i.fa-circle,
p.kng-message-fail i.fa-circle,
p.kng-message-warning i.fa-circle {color:#e4006e;}