.str-chat__loading-channels {
  width: 300px;
  height: 100%;
  padding: 20px;
  background: #fafafa;

  &-meta {
    flex: 1;
  }

  &-avatar,
  &-username,
  &-status {
    background-image: linear-gradient(-90deg, #f2f2f2 0%, #e5e5e5 100%);
  }

  &-username,
  &-status {
    border-radius: 2px;
    height: 14px;
  }

  &-avatar {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 10px;
  }

  &-username {
    width: 40%;
    margin-bottom: 6px;
  }

  &-status {
    width: 80%;
  }

  &-item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    border-radius: 3px;
    margin-bottom: 10px;
    animation: pulsate 1s linear 0s infinite alternate;

    &:nth-of-type(2) {
      animation: pulsate 1s linear 0.3334 infinite alternate;
    }

    &:last-of-type {
      animation: pulsate 1s linear 0.6667s infinite alternate;
    }
  }
}

@keyframes pulsate {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}
