.toast-container {
    z-index: 9999;
    position: fixed;
    top: 15px;
    right: 15px;
}
  

* html .toast-container {
	position: absolute;		
}
  
.toast-item {
    background: #333;
    display: block;
    min-width: 300px;
    position: relative;
    padding: 10px;
 color: white;
 border-radius: 3px;
 word-wrap:normal;
 margin-bottom:6px;
}

.toast-item:hover{
    cursor: pointer;
}
.toast-item p {
    text-align: center;
    font-size:14px;
    font-weight: bold;
    margin:0;
}




/** 
 * toast types 
 * 
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 * 
 */
 

 
 
.toast-type-notice {
    color: white;    
}

.toast-type-success {
background-color: rgba(0, 197, 65, 0.9);

}

.toast-type-warning {
    background-color: rgba(220, 125, 52, 1);

}

.toast-type-error {
background-color: rgba(255, 17, 0, 0.9);
}


