@keyframes blink-notify {
	from {background-color: #D31141;}
    to {visibility: hidden;}
}

@-webkit-keyframes blink-notify {
	from {background-color: #D31141;}
    to {visibility: hidden;}
}

.badge {
	background-color: #D31141;
	animation: blink-notify 1s steps(2, start) infinite;
	-webkit-animation: blink-notify 1s steps(2, start) infinite;
}