.show-on-scroll-up {
  transition: transform 0.25s ease, opacity 0.25s ease;
  will-change: transform, opacity;
}

.show-on-scroll-up.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

