.tooltip_7d962bfe {
  position: fixed;
  z-index: 60;
  pointer-events: none;
  max-width: min(18rem, calc(100vw - 1rem));
  padding: 0.4rem 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--frey-color-surface, #fff);
  background: var(--frey-color-text-primary, #111827);
  box-shadow: 0 8px 18px rgb(17 24 39 / 22%);
  animation: tooltip_in_b1420fce 0.12s ease;
}

@keyframes tooltip_in_b1420fce {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }

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