ux-nested-donut-chart {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;

  .ux-nested-donut-chart-content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .ux-nested-donut-chart-tooltip {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10101;
    pointer-events: none;

    > ux-tooltip {
      position: absolute;
      transform: translateX(-50%) translateY(-100%);

      .ux-nested-donut-chart-tooltip-content {
        white-space: nowrap;
      }
    }
  }
}
