/* XM-V2-LIVE-NOTIFICATIONS-1.0 */
.xm-topbar-actions .xm-tooltip-button { position: relative; }
.xm-topbar-actions .xm-tooltip-button::after {
  content: attr(data-xm-tooltip);
  position: absolute;
  z-index: 260;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  max-width: min(320px, calc(100vw - 30px));
  padding: 8px 10px;
  border: 1px solid rgba(76, 112, 157, .58);
  border-radius: 9px;
  background: rgba(6, 18, 33, .98);
  color: #dbe9f8;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .36);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity .15s ease, transform .15s ease;
}
.xm-topbar-actions .xm-tooltip-button:hover::after,
.xm-topbar-actions .xm-tooltip-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.xm-live-notify-button.is-enabled {
  color: #73e1bb !important;
  border-color: rgba(57, 215, 165, .46) !important;
  background: rgba(27, 89, 76, .26) !important;
  box-shadow: inset 0 0 0 1px rgba(57, 215, 165, .08), 0 0 18px rgba(57, 215, 165, .07);
}
.xm-live-notify-button.is-enabled::before {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #47d9a7;
  box-shadow: 0 0 0 3px rgba(71, 217, 167, .12), 0 0 8px rgba(71, 217, 167, .5);
}
.xm-live-toast-stack { z-index: 220; }
.xm-live-toast {
  animation: xm-live-toast-in .2s ease both;
}
.xm-live-toast .xm-live-toast-icon {
  font-size: 16px;
  line-height: 1;
}
.xm-live-toast .xm-live-toast-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.xm-live-toast .xm-live-toast-copy strong {
  color: #f2f7ff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}
.xm-live-toast .xm-live-toast-copy small {
  color: #aebfd3;
  font-size: 12px;
  line-height: 1.35;
}
.xm-live-toast.xm-live-toast-leaving {
  opacity: 0;
  transform: translateX(18px);
  transition: .18s ease;
}
@keyframes xm-live-toast-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 720px) {
  .xm-topbar-actions .xm-tooltip-button::after { display: none; }
  .xm-live-toast-stack { bottom: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  .xm-live-toast { animation: none; }
  .xm-live-toast.xm-live-toast-leaving { transition: none; }
}
