/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.dot-flashing {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background-color: #000000;
  color: #000000;
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}
.dot-flashing::before,
.dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.dot-flashing::before {
  left: -20px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background-color: #000000;
  color: #000000;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}
.dot-flashing::after {
  left: 20px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background-color: #000000;
  color: #000000;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dot-flashing {
  0% {
    background-color: #000000;
  }
  50%,
  100% {
    background-color: rgba(152, 128, 255, 0.2);
  }
}
