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