.fs-mobile-swipe-hint-host {
  position: relative;
}

.fs-mobile-swipe-hint {
  position: absolute;
  z-index: 12;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #21d8ff 0%, #397cff 100%);
  box-shadow: 0 8px 22px rgba(38, 135, 255, .4), inset 0 1px 0 rgba(255, 255, 255, .35);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  animation: fs-mobile-swipe-hint-nudge 1.45s ease-in-out infinite;
}

.fs-mobile-swipe-hint:focus-visible {
  outline: 2px solid rgba(126, 234, 255, .9);
  outline-offset: 2px;
}

.fs-mobile-swipe-hint::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.fs-mobile-swipe-hint[hidden] {
  display: none !important;
}

@keyframes fs-mobile-swipe-hint-nudge {
  0%, 100% { transform: translate(-2px, -50%); }
  50% { transform: translate(3px, -50%); }
}

@media screen and (min-width: 768px) {
  .fs-mobile-swipe-hint {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fs-mobile-swipe-hint {
    animation: none;
  }
}
