.toast-container {
    position: fixed;
    z-index: 999999999;
    width: 100%;
}

.toast {
    font-family: "Droid Arabic Kufi";
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 2px;
    position: relative;
    right: 0;
    color: white;
    padding: 20px;
    margin-top: 0px;
    margin-bottom: 8px;
    border-radius: 3px;
    text-align: center;
    opacity: 1;
    animation: fadeInOpacity ease .5s;
}

    .toast.toast-exit {
        transition: 1s all ease;
        opacity: 0;
    }


@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Successful toast class */
.toast-success {
    background: rgba(50,200,50,1);
    box-shadow: 0 5px 15px rgba(126,211,33,.5);
}

.toast-info {
    background: rgba(50,50,200,1);
    box-shadow: 0px 5px 15px rgba(0,50,250,.5);
}

/* Error toast class */
.toast-error {
    background: rgba(200,50,50,1);
    box-shadow: 0 5px 15px rgba(191,36,58,.5);
}

/* Warn toast class */
.toast-warn {
    background: rgba(250,150,50,1);
    box-shadow: 0 5px 15px rgba(245,166,35,.5);
}
