.toaster {
    width: 100%;
    min-height: 50px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    direction: rtl;
    text-align: center;
    color: #fff4f4;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
}

#parent-toaster {
    position: absolute;
    display: none;
    top: 5%;
    left: 2%;
    width: 250px;
    /*min-height: 20px;*/
}

#toaster-body {
    padding: 10px 15px 17px 10px;
    text-align: right;
}

.success-toaster {
    background-color: #30b15b;
}

.danger-toaster {
    background-color: #ca4a4a;
}

.info-toaster {
    background-color: #dca746;
}

#toaster-header {
    text-align: right;
    padding: 7px 17px 5px 17px;
}
