.status-user span {
  color: #4c567d;
  font-size: 14px;
}

.module .status-user {
  margin-bottom: -7px;
}

.user-writing {
  display: flex;
  justify-content: center;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.user-saving span {
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.user-saving span:nth-child(2) {
  animation-delay: 0.2s;
}
.user-saving span:nth-child(3) {
  animation-delay: 0.4s;
}