.notification-message-unread {
	font-size: 13px;
	color: white;
	padding: 10px;
	background-color: #ec512d;
	animation: blinker 1s linear infinite;
	font-weight: bold;
	text-align: left;
	text-transform: uppercase;
}

@keyframes blinker {
	50% {
    background-color: white;
}
}