@charset "UTF-8";
/* CSS Document */



.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #f1f1f1;
  color: #EF8B8B;
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: .25s;
}

.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #EF8B8B;
  color: #EF8B8B;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #EF8B8B;
  color: #EF8B8B;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: .5s;
}

@keyframes dotFlashing {
  0% {
    background-color: #EF8B8B;
  }
  50%,
  100% {
    background-color: #f1f1f1;
  }
}