.tooltip {
  position: absolute;
  left: -999px;
  top: -999px;
  width: max-content;
  max-width: 260px;
  padding: 8px 12px;
  background: #101010;
  color: #ffffff;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.tooltip[data-show=true] {
  opacity: 1;
}

/*# sourceMappingURL=tooltip.css.map */