@keyframes line-item-highlight {
  0% {
    background: #8f8;
  }

  100% {
    background: none;
  }
}

.line-item-highlight {
  animation: line-item-highlight 1s;
}