@keyframes transaction-arrival {
  0%, 25% { background-color: #d1fae5; }
  100% { background-color: transparent; }
}
tr.transaction-row-new > td,
li.transaction-row-new,
article.transaction-row-new {
  animation: transaction-arrival 1.4s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  tr.transaction-row-new > td,
  li.transaction-row-new,
  article.transaction-row-new {
    animation: none;
    background-color: #d1fae5;
  }
}
