/*--Toast Notification---*/

.rm-status-update-model {
    visibility: hidden;
    position: fixed;
    z-index: 999999;
    left: 50%;
    top: 70px;
    width: 600px;
    max-width: 100%;
    margin-left: -300px;
}



.rm-status-update-model .rm-notification-overlay {
    z-index: 9999;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}


.rm-status-update-model .rm-status-close {
    position: absolute;
    right: 10px;
    top: 6px;
    font-size: 22px;
    color: #0d0d0d;
    cursor: pointer;
}

/*--- Success-----*/

.rm-status-update-model.rm-status-success-model{

}

.rm-status-update-model.rm-status-success-model .rm-modal-wrap-toast{
    background-color: #fff;
    border: 1px solid #908a8a;
    color: #66b541;
    
}

.rm-status-update-model .rm-modal-wrap-toast {
    position: absolute;
    z-index: 9999;
    width: 100%;
    border-radius: 3px;
    padding: 8px 20px;
}


/*--- Failed-----*/

.rm-status-update-model.rm-status-failed-model .rm-modal-wrap-toast{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
/*--- Failed-----*/

.rm-status-update-model.rm-modal-show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.rm-status-update-model.rm-modal-show {
    visibility: visible;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 70px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 70px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 70px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 70px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}


/*----Toast Notification End----*/


