.user-status-dot{
  opacity: 0;
  transform: scale(0.88);
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
}

.user-status-dot--online,
.user-status-dot--saved,
.user-status-dot--saving,
.user-status-dot--error,
.user-status-dot--offline{
  opacity: 1;
  transform: scale(1);
}
