.kx_tooltip {
  min-width: 32px;
  min-height: 32px;
  padding: 6px 8px;
  text-align: start;
  text-decoration: none;
  word-wrap: break-word;
  border-radius: 6px;
  box-shadow: 0 6px 16px 0 rgb(0 0 0 / 8%), 0 3px 6px -4px rgb(0 0 0 / 12%), 0 9px 28px 8px rgb(0 0 0 / 5%);
  max-width: 250px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  z-index: 10000;

  &.none {
    display: none;
  }

  &::before {
    content: "";
    position: absolute;
    bottom: -8px;
    width: 32px;
    height: 8px;
    background: rgba(0, 0, 0, 0.85);
    clip-path: path('M 6.343145750507619 8 A 4 4 0 0 0 9.17157287525381 6.82842712474619 L 14.585786437626904 1.414213562373095 A 2 2 0 0 1 17.414213562373096 1.414213562373095 L 22.82842712474619 6.82842712474619 A 4 4 0 0 0 25.65685424949238 8 Z');
    transform: rotate(180deg);
  }

  &::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: transparent;
    left: 0;
    bottom: -20px;
  }
}