@keyframes row-highlight {
  0%   { background-color: #c6f0e2; }
  60%  { background-color: #e4efed; }
  100% { background-color: transparent; }
}

.row-new {
  animation: row-highlight 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}