.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.new::after {
content: '';
    display: inline-block;
    height: 1em;
    width: 2.5em;
    background-image: url(../../images/new-label-color-icon.svg);
    background-position: initial;
    background-size: 100% 100%;
    background-repeat: no-repeat;
	animation: blinker 1s linear infinite;
}
