@keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(15, 180, 0, 0.4);
      box-shadow: 0 0 0 0 rgba(380, 0, 11, 0.4);
    }
    70% {
      -moz-box-shadow: 0 0 0 10px rgba(13, 128, 2, 0);
      box-shadow: 0 0 0 10px rgba(256, 2, 9, 0);
    }
    100% {
      -moz-box-shadow: 0 0 0 0 rgba(5, 61, 0, 0);
      box-shadow: 0 0 0 0 rgba(61, 0, 4, 0);
    }
  }
  
  
  
  .dot-online {
    animation: pulse 2s infinite;
    width: 10px;
    height: 10px;
    background: #7cfd54;
    border-radius: 50%;
  }

  .dot-idle {
    width: 10px;
    height: 10px;
    background: #6e6e6e;
    border-radius: 50%;
  }

  .dot-dnd {
    width: 10px;
    height: 10px;
    background: #fc3030;
    border-radius: 50%;
  }