#notifications {
cursor: pointer;
position: fixed;
right: 0px;
z-index: 99999;
top: 10px;
margin-bottom: 22px;
margin-right: 15px;
min-width: 300px;
max-width: 300px;
word-wrap: break-word;
}
.notif-clignote {
    animation: notifClignoteAnim 1s infinite;
}
@keyframes notifClignoteAnim{
    0%{opacity: 1;}
    50%{opacity: 0;}
    100%{opacity: 1;}
}
