/* Finder quiz live-count tick. Re-triggered by a value-keyed remount of the
   element, so it only fires on a real count change. */
.count-tick {
  display: inline-block;
  animation: count-tick 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes count-tick {
  from {
    opacity: 0;
    transform: translateY(0.35em);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .count-tick {
    animation: none;
  }
}

.finder-refine-bar {
  background: rgba(252, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(28, 28, 25, 0.06);
}
