
/* Пульсирующая зелёная точка */
.ww-online-dot {
  overflow: visible !important;
}

.ww-online-dot .tn-atom {
  position: relative;
  border-radius: 50% !important;
  background: #9DFF3F !important;
  box-shadow: 0 0 8px rgba(157, 255, 63, 0.8);
}

/* внешнее пульсирующее свечение */
.ww-online-dot .tn-atom::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(157, 255, 63, 0.35);
  animation: wwOnlinePulse 1.8s ease-out infinite;
  z-index: -1;
}

@keyframes wwOnlinePulse {
  0% {
    transform: scale(0.45);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}