/*
        * Alertigo jQuery Plugin
        *
        * @file: jquery-alertigo.css
        * @author: Mark Coyne
        * @site: www.coynem.com
        * @license: MIT License
*/

/*-----------------------------------------------------------------
        ALERTIGO
-----------------------------------------------------------------*/

#alertigo {
    bottom: 30px;
    display: block;
    max-width: 600px;
    position: fixed;
    right: 25px;
    text-align: right;
    z-index: 2500;
}

.alertigo {
    background-color: #337ab7;
    border: 1px solid #2e6da4;
    border-radius: 5px;
    color: white;
    clear: both;
    float: right;
    margin-bottom: 20px;
    padding: 18px;
    /*padding: 18px 18px 18px 38px;*/
    text-align: left;
    width: auto;

    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.alertigo:last-of-type {
    margin-bottom: 0;
}

.alertigo-green {
    /*background: url('../img/ok.png') 5px center no-repeat #5cb85c;*/
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.alertigo-light-blue {
    background-color: #5bc0de;
    border-color: #46b8da;
}

.alertigo-orange {
    background-color: #f0ad4e;
    border-color: #eea236;
}

.alertigo-red {
    /*background: url('../img/stop.png') 5px center no-repeat #d9534f;*/
    background-color: #d9534f;
    border-color: #d43f3a;
}

/*-----------------------------------------------------------------
        ALERTIGO :: UP TO 991PX
-----------------------------------------------------------------*/

@media only screen and (max-width: 991px) {

    #alertigo {
        max-width: 300px;
    }

}
