.tooltip {
  position: fixed;
  inset: auto;
  margin: 0;
  border: none;
  padding: 0;
  overflow: visible;
  max-width: 280px;
  border-radius: 8px;
  background: #1C2A3B;
  color: #CBD8E2;
  box-shadow: 0 2px 8px rgba(29, 32, 36, 0.08);
  font-family: "Urbanist", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transition: opacity 120ms ease, display 120ms allow-discrete;
}
.tooltip.is-active {
  opacity: 1;
}
@starting-style {
  .tooltip.is-active {
    opacity: 0;
  }
}
.tooltip .tooltip-text {
  padding: 6px 10px;
}
.tooltip .tooltip-arrow {
  position: absolute;
  width: 10px;
  height: 10px;
  background: inherit;
  transform: rotate(45deg);
}
.tooltip.tooltip-top .tooltip-arrow {
  bottom: -5px;
  margin-left: -5px;
}
.tooltip.tooltip-bottom .tooltip-arrow {
  top: -5px;
  margin-left: -5px;
}
.tooltip.tooltip-right .tooltip-arrow {
  left: -5px;
  margin-top: -5px;
}
.tooltip.tooltip-left .tooltip-arrow {
  right: -5px;
  margin-top: -5px;
}
