In Telerik themes, we see this z-index on .k-tooltip. This would put it comfortably above some other high z-index values we had to use.
.k-tooltip {
z-index: 12000;
}
However, it's held within a div class="k-animation-container telerik-blazor" which has low z-index such as 3 or 11. This puts it below our z-index, which might be in the 900s. Was there a reason this k-animation-container z-index was so low?