.notification{
    position: fixed;
    top: 30px;
    left: 30px;
    background-color: rgb(255, 255, 255);
    /* height: fit-content; */
    height: auto;
    padding: 20px 50px 15px 50px;
    width: auto;
    z-index: 200;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    color: #727272;
    font-family: "Tajawal", sans-serif;
    font-size: 20px;
    transition: 0.3s;
    transform: translateY(-200%);
    max-width: 300px;
    /* animation: Hide 200ms 7s linear forwards; */
}

.notification.success svg{
    background-color: rgb(152, 232, 204);
    stroke: white;
}
.notification.danger svg{
    background-color: rgb(244, 97, 84);
    stroke: white;
}
.notification.warning svg{
    background-color: rgb(241, 213, 88);
    stroke: white;
}


.notification div{
    width: 88%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 34px;
}
.notification span{
    width: 12%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}
.notification svg{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 25px;
    padding: 2px;
    border-radius: 100%;
}
@media (max-width: 900px) {
    .notification{
        
        top: 30px;
        left: 5vw;
        /* min-height: 80px; */
        height: auto;
        padding: 20px 2.5vw 15px 2.5vw;
      
        max-width: 85vw;
        /* animation: Hide 200ms 7s linear forwards; */
    }
    
    .notification.success svg{
        background-color: rgb(152, 232, 204);
        stroke: white;
    }
    .notification.danger svg{
        background-color: rgb(244, 97, 84);
        stroke: white;
    }
    .notification.warning svg{
        background-color: rgb(241, 213, 88);
        stroke: white;
    }
    
    .notification div{
        width: 80%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 34px;
    }
    .notification span{
        width: 10%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: auto;
        margin-right: 5%;
    }
    .notification svg{
        margin-left: unset;
        margin-right: 10px;
    }
}