<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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;
}</pre></body></html>