#groupify-notifications-root{
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:99999;
    opacity:0;
    transform:translateY(20px);
    transition:.35s ease;
}

#groupify-notifications-root.show{
    opacity:1;
    transform:translateY(0);
}

.groupify-toast{
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    border-radius:16px;
    padding:16px 20px;
    min-width:320px;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
    border-left:4px solid #2271b1;
}

.groupify-toast-icon{
    font-size:22px;
}

.groupify-toast-text{
    font-size:14px;
    font-weight:600;
    color:#111;
    line-height:1.5;
}

@media(max-width:768px){

    #groupify-notifications-root{
        left:12px;
        right:12px;

        /* was bottom:12px */
        bottom:95px;

        z-index:99999;
    }

    .groupify-toast{
        min-width:auto;
        padding:12px 14px;
    }

}