/* .tooltip-container {
  position: absolute;
  background: white;
  color: black;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  box-shadow: 0px 0px 1px 0px #717171;

  max-width: 300px;
  word-break: break-word;
}
.has-tooltip {
  width: auto;
  display: inline-block;
}
.tooltip-container::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: white;
} */

body .ui-tooltip{
  box-shadow: 0px 0px 1px 0px #717171;
}