.notification-wrapper {
    width: 300px;
    right: 20px;
    top: 55px;
    opacity:1;
    display: block;
    position: fixed;
    overflow: visible;
    -webkit-animation: fadeinout 5s linear forwards;
    animation: fadeinout 5s linear forwards;
}
.notification-wrapper-inner {
    min-height: 16px;
    overflow: hidden;
}
@-webkit-keyframes fadeinout {
  0%,100% { opacity: 0; }
  25% { opacity: 1; }
}

@keyframes fadeinout {
  0%,100% { opacity: 0; }
  25% { opacity: 1; }
}
