@charset "utf-8";

.ag-tooltip {
  background-color: var(--ag-tooltip-background-color); border: var(--ag-tooltip-border); border-radius: var(--ag-border-radius); color: var(--ag-tooltip-text-color); padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding); position: absolute; white-space: normal; z-index: 99999;
  &:where(.ag-cell-editor-tooltip) { background-color: var(--ag-tooltip-error-background-color); border: var(--ag-tooltip-error-border); color: var(--ag-tooltip-error-text-color); font-weight: 500; }
}

.ag-tooltip-custom { position: absolute; z-index: 99999; }

.ag-tooltip-custom:where(:not(.ag-tooltip-interactive)), .ag-tooltip:where(:not(.ag-tooltip-interactive)) { pointer-events: none; }

.ag-tooltip-animate {
  transition: opacity 1s;
  &:where(.ag-tooltip-hiding) { opacity: 0; }
}