/*
Update = 1, //Green
Warning = 2, //Yellow
Alert = 3 //Red
*/
/*Nullifying Global*/

/****************
    We want to leave these style to avoid breaking other notification bars
****************/
.jGrowl-notification.update {
    background-image: none !important;
    background-color: #060 !important;
    width: 100% !important;
    height: auto !important;
    padding-left: 0 !important;
}

div.jGrowl-notification.update div.jGrowl-close {
    color: #FFFFFF !important;
    display: initial !important;
    background-color: #060 !important;
    z-index: auto !important;
    width: auto !important;
    height: inherit !important;
    float: left !important;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

div.jGrowl-notification.update div.jGrowl-message {
    background: none !important;
    background-color: #060 !important;
    width: auto !important;
    font-size: 15px !important;
    line-height: 20px !important;
    padding-right: 10px;
    padding-top: 4px;
}

/*WARNING CSS*/
.jGrowl-notification.warning {
    background-image: none !important;
    background-color: #e69900 !important;
    width: 100% !important;
    height: auto !important;
    padding-left: 0 !important;
}

div.jGrowl-notification.warning div.jGrowl-close {
    color: #FFFFFF !important;
    display: initial !important;
    background-color: #e69900 !important;
    z-index: auto !important;
    width: auto !important;
    height: inherit !important;
    float: left !important;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

div.jGrowl-notification.warning div.jGrowl-message {
    background: none !important;
    background-color: #e69900 !important;
    width: auto !important;
    font-size: 15px !important;
    line-height: 20px !important;
    padding-right: 10px;
}

/*ALERT CSS*/
.jGrowl-notification.alert {
    background-image: none !important;
    background-color: #ff0000 !important;
    width: 100% !important;
    height: auto !important;
    padding-left: 0 !important;
}

div.jGrowl-notification.alert div.jGrowl-close {
    color: #FFFFFF !important;
    display: initial !important;
    background-color: #ff0000 !important;
    z-index: auto !important;
    width: auto !important;
    height: inherit !important;
    float: left !important;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

div.jGrowl-notification.alert div.jGrowl-message {
    background: none !important;
    background-color: #ff0000 !important;
    width: auto !important;
    font-size: 15px !important;
    line-height: 20px !important;
    padding-right: 10px;
}
/****************
    End legacy styles
****************/


/*base*/
div.jGrowl-notification.jGrowl-globalmessage {
    width: 100% !important;
    height: auto !important;
    padding-left: 0 !important;
    display: flex !important;
    flex-direction: row;
    align-items: center;
}

    div.jGrowl-notification.jGrowl-globalmessage div.jGrowl-message,
    div.jGrowl-notification.jGrowl-globalmessage div.message,
    div.jGrowl-notification.jGrowl-globalmessage div.jGrowl-message a,
    div.jGrowl-notification.jGrowl-globalmessage div.message a {
        background: none !important;
        width: auto !important;
        font-size: 14px !important;
        line-height: 20px !important;
        padding: 5px 5px 5px 0;
        font-family: Arial,sans-serif;
    }

div.jGrowl-notification.jGrowl-globalmessage div.jGrowl-message a:hover
div.jGrowl-notification.jGrowl-globalmessage div.message a:hover
{
    text-decoration: underline;
    color: #dedede;
}

    div.jGrowl-notification.jGrowl-globalmessage div.jGrowl-close,
    div.jGrowl-notification.jGrowl-globalmessage div.close {
        color: #FFFFFF !important;
        display: inline-block;
        z-index: auto !important;
        width: auto !important;
        height: 100% !important;
        float: left !important;
        padding-left: 10px;
        padding-right: 10px;
        cursor: pointer;
        font-weight: bold;
        font-family: Arial,sans-serif;
        font-size: 1em;
    }

/*update*/
/*alert*/
div.jGrowl-notification.jGrowl-globalmessage.update {
    background-image: none !important;
    background-color: #060 !important;
}

div.jGrowl-notification.jGrowl-globalmessage.warning {
    background-image: none !important;
    background-color: #e69900 !important;
}

div.jGrowl-notification.jGrowl-globalmessage.alert {
    background-image: none !important;
    background-color: #ff0000 !important;
}
