.toast-container  {
    top: 20px;
}
.toast {
    padding: 10px 0 10px 10px;
}
.toast:not(.showing):not(.show) {
    display: none;
}
.toast.success, .toast.info {
    color:  #FFE84F;
    background-color: blue;
}
.toast.error {
    color: red;
    background-color: #FFF;
}
.toast.user-error, .toast.mistake {
    color: red;
    background-color:  #FFE84F;
}
.toast.warning {
    color: blue;
    background-color:  #FFE84F;
}