.tooltip{position:fixed;background:var(--notificationPrimaryBackground);background:color-mix(in srgb,var(--notificationPrimaryBackground) 90%,transparent);border:1px solid #000;color:var(--notificationPrimaryFontColor,#FFF);padding:8px 15px;border-radius:5px;max-width:100%;max-height:100%;pointer-events:none;opacity:0;animation:tooltipFadeOut 2s forwards;z-index:1350}.tooltip--secondary{background:var(--notificationSecondaryBackground);background:color-mix(in srgb,var(--notificationSecondaryBackground) 90%,transparent);color:var(--notificationSecondaryFontColor,#FFF)}.tooltip--success{background:var(--notificationSuccessBackground);background:color-mix(in srgb,var(--notificationSuccessBackground) 90%,transparent);color:var(--notificationSuccessFontColor,#FFF)}.tooltip--info{background:var(--notificationInfoBackground);background:color-mix(in srgb,var(--notificationInfoBackground) 90%,transparent);color:var(--notificationInfoFontColor,#FFF)}.tooltip--warning{background:var(--notificationWarningBackground);background:color-mix(in srgb,var(--notificationWarningBackground) 90%,transparent);color:var(--notificationWarningFontColor,#FFF)}.tooltip--danger{background:var(--notificationDangerBackground);background:color-mix(in srgb,var(--notificationDangerBackground) 90%,transparent);color:var(--notificationDangerFontColor,#FFF)}.tooltip--sticky{width:100%;max-height:50%;text-align:center;overflow:hidden}@keyframes tooltipFadeOut{100%{opacity:0}}@keyframes tooltipFadeIn{100%{opacity:1}}.tooltip--visible{animation:tooltipFadeIn .3s forwards;animation-delay:.1s}