.delete-row-animated {
  opacity: 0 !important;
  max-height: 0 !important;
  transition: all 0.2s ease-out;
}

.delete-row-animated-frame {
  animation-name: hide;
  animation-duration: 0.2s;
  animation-fill-mode: forwards !important;
  animation-play-state: initial;

  @keyframes hide {
    from { opacity: 1; }
    to { opacity: 0; }
  }
}
