/*
* toast.js CSS
*/
.toast {
padding: 8px 35px 8px 14px;
margin-bottom: 8px;
border: 2px solid;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
box-shadow:#999 0 0 10px;
}
.toast:hover {
cursor: pointer;
box-shadow:#666 0 0 8px;
}
#toast-container {
width: 90%;
top: 40px;
left: 5%;
position: fixed;
z-index: 9999;
text-align: center;
}
.toast-title {
font-weight: bold;
}
.toast-message {
}
.toast-success {
color: #3F6F40;
background-color: #6DEA92;
border-color: #6DEA92;
}
.toast-error {
color: #8E002D;
background-color: #FD9BAD;
border-color: #FD9BAD;
}
.toast-info {
color: #3a87ad;
background-color: #d9edf7;
border-color: #bce8f1;
}
.toast-warning {
color: #c09853;
background-color: #fcf8e3;
border-color: #fbeed5;
}
