.highlighted {
  animation: flash-highlight 2s ease-out;
  background-color: yellow;
}

@keyframes flash-highlight {
  0%   { background-color: yellow; }
  100% { background-color: transparent; }
}