.tooltip-wrapper {
  --_anchor-x: 50%;
  --_anchor-y: 0%;
  position: relative;
  display: inline-block;
}
.tooltip-wrapper--enabled:hover > .tooltip-wrapper__tooltip-container {
  visibility: visible;
  opacity: 1;
}
.tooltip-wrapper--anchor-x-left {
  --_anchor-x: 0%;
}
.tooltip-wrapper--anchor-x-center {
  --_anchor-x: 50%;
}
.tooltip-wrapper--anchor-x-right {
  --_anchor-x: 100%;
}
.tooltip-wrapper--anchor-y-top {
  --_anchor-y: 0%;
}
.tooltip-wrapper--anchor-y-center {
  --_anchor-y: 50%;
}
.tooltip-wrapper--anchor-y-bottom {
  --_anchor-y: 100%;
}
