.status[data-status="1"]{
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #00BFFFcc; }
  70% { box-shadow: 0 0 0 10px #00BFFF00; }
  100% { box-shadow: 0 0 0 0 #00BFFF00;; }
}