@media (max-width: 1024px) {
  .ls-stages-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 14px;
    padding: 0;
    color: #ffffff;
    font-family: "Inter Tight", "Onest", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.01em;
    user-select: none;
    pointer-events: none;
    animation: ls-stages-swipe-pulse 2.2s ease-in-out infinite;
  }

  .ls-stages-swipe-hint.is-hidden {
    display: none !important;
  }

  .ls-stages-swipe-hint__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #ffffff;
    flex-shrink: 0;
  }

  .ls-stages-swipe-hint__icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .ls-stages-swipe-hint__text {
    display: block;
  }
}

@media (min-width: 1025px) {
  .ls-stages-swipe-hint {
    display: none !important;
  }
}

@keyframes ls-stages-swipe-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}
