/* Disable motion globally (including vendor stylesheets loaded before this file). */
*,
*::before,
*::after {
  transition: none !important;
  animation: none !important;
}

html,
.neo-filter-bar {
  scroll-behavior: auto !important;
}

/* Allow loading indicator to spin (global rule above disables other animations). */
@keyframes neo-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-spinner {
  animation: neo-loading-spin 1s linear infinite !important;
}
