.wrap-notification{
 position: fixed;
 top: 116px;
 right:40px;
 z-index: 9999;
 animation: slide 0.3s ease-in-out both;
}
.card-msg{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    height: 46px;
    padding: 15px;
}
.closed-msg {
    position: relative;
    top: -13px;
    left: 10px;
    font-size: 0.8em;
    cursor: pointer;
}

@keyframes slide{
    0%{
        transform: translateX( 1000px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
.card-msg::before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 5px;
    width: 30px;
    background-color: #3b3b3b35;
    border-radius: 0px 0px 5px 5px;
    animation: time 6s forwards;
}
@keyframes time{
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
}
.info{
    background-color: #aadaffb6;
    border: solid 1px#0f63a3;
    color: #094f85;
}
.im{
    color: #094f85;
}
.danger{
    background-color: #ffaaaab6;
    border: solid 1px#a30f0f;
    color: #850909;
}
.dm{
    color: #850909;
}
.success{
    background-color: #b9efb9de;
    border: solid 1px green;
    color: green;
}
.sm{
    color: green;
}