.tooltip {
  font-family: arial;
  font-size: 13px;
  color: #333;
  line-height: 19px;
  max-width: 250px;
  background: #fff;
  border: 1px solid #e4e9f0;
  box-shadow: 0 8px 14px 0 rgb(0 0 0 / 10%);
  text-align: left;
  opacity: 0;
  padding: 8px 21px;
  position: fixed;
  pointer-events: none;
  z-index: 999;
  margin-top: -10px;
  --arrowPos: 50%;
}

.tooltip:after {
  border-top-style: solid;
  border-right-style: solid;
  content: "";
  position: absolute;
  border-right-color: #222;
  border-top-color: #fff;
}

.tooltip.bottom-arrow:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  bottom: -6px;
  left: var(--arrowPos);
  margin-left: -8px;
  border-top-width: 6px;
}

.tooltip.left-arrow:after {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  left: -6px;
  top: var(--arrowPos);
  margin-top: -4px;
  border-right-width: 6px;
}

.tip-trigger {
  position: absolute;
}