.toast {
    width: 230px;
    padding: 15px 15px;
    position: fixed;
    opacity: 0.9;
    z-index: 9999;
    background: #FFF;
    color: #333;
    top: 10px;
    right: 8px;
    font-family: lucida Grande;
    font-size: 14px;
    border: 2px solid #999;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.toast p {
    text-align: left;
    margin-left: 40px;
}

.toast.status-false {
    /*box-shadow: 0px 0px 10px #FF0000 !important;*/
    border: 2px solid #051350 !important;
    background: #FFF !important;
}

.toast-image {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: 10px;
}

.toast-image-true {
    background: url(/assets/img/success.png);
}

.toast-image-false {
    background: url(/assets/img/error.png);
}

.toast-image-warning {
    background: url(/assets/img/warning.png);
}