#rec1214490266 .t-btn {
  position: relative;
  overflow: visible !important; /* чтобы точка выходила за края */
  border-radius: 6px;
}

#rec1214490266 .t-btn .button-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #ff6600; /* яркий оранжевый центр */
  border-radius: 50%;
  top: -7px;
  right: -7px;
  box-shadow:
    0 0 8px 4px rgba(255, 102, 0, 0.35), /* широкое слабое сияние */
    0 0 10px 2px rgba(255, 102, 0, 0.5);  /* более яркое ближе к центру */
  animation: moveDotRightToLeft 4s linear infinite;
  pointer-events: none;
}

@keyframes moveDotRightToLeft {
  0% {
    top: -7px;
    right: -7px;
  }
  25% {
    top: calc(100% - 7px);
    right: -7px;
  }
  50% {
    top: calc(100% - 7px);
    right: calc(100% - 7px);
  }
  75% {
    top: -7px;
    right: calc(100% - 7px);
  }
  100% {
    top: -7px;
    right: -7px;
  }
}
