/*!
 * TOAST
 *
 * @version 2.0.0
 *
 * @author 4 Medic
 * @author Denis Carvalho Silva
 */

.toast {
    border-radius: 5px 0 0 5px;
    color: #fff;
    position: fixed;
    right: -360px;
    top: 30px;
    z-index: 2500000;
    border: 2px solid #fff;
    cursor: pointer;
}
.toast:hover {
    border-color: #2e8acc;
    opacity: 0.95;
}
.toast .icon {
    padding: 10px 0 10px 15px;
    display: inline-block;
    float: left;
}
.content-toast { 
    float: left; 
}
.message-tost {
    padding: 10px 100px 0;
}
.toast-info{
    background:rgba(33,121,185,0.9);
}
.toast-success{
    background:rgba(0,167,157,0.9);
}
.toast-danger{
    background:rgba(194,61,80,0.9); 
}
.toast-primary{
    background:rgba(95,102,174,0.9); 
}
.toast-warning{
    background:rgba(244,209,45,0.9);  
    color:#888;
}
.toast-alert{
    background:rgba(255,102,0,0.9); 
}