@keyframes blink-notify {
    from,
    to {
      opacity: 0;
    }

    70% {
      opacity: 1;
    }
}

.pm-count strong,
.notification-count strong {
	animation: blink-notify 1s ease infinite;
}