.twonotify_notification_list{
    position: fixed;
    width: 300px;
    top: 40px;
    right: 20px;
}
.twonotify_notification {
    display: flex;
    width: auto;
    background: rgba(184, 184, 184, 0.95);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    animation: slideInRight 0.5s forwards;
    opacity: 0;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.twonotify_icon{
    margin-right: 10px;
}
.twonotify_icon img{
    width: 48px;
    height: 48px;
    border-radius: 10px;
}
.twonotify_content{
    width: 100%;
}
.twonotify_content p{
    margin: 0;
    font-size: 18px;
    color: #464646;
    /*font-family: Inter, sans-serif;*/
}
.twonotify_content h4{
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    /*font-family: Inter, sans-serif;*/
}
.twonotify_notification .close{
    cursor: pointer;
}