.avatar {
  position: relative;
  z-index: 1;

  .dots {
    position: absolute;
    right: calc(5% - 6px);
    top: calc(30% - 6px);
    width: 12px;
    height: 12px;
    background-color: $info;
    border-radius: 50%;
    border: 2px solid $white-100;
    box-shadow: 2px 2px 2px rgba(5, 5, 5, 0.16);
    z-index: 2;
    &.is-not-active {
      background-color: $gray-60;
    }
  }
  .is-initial {
    position: relative;
    z-index: 1;
    background-color: $gray-90;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: $color-heading;
    border: 1px solid $color-border;
    &.is-rounded {
      border-radius: 50%;
    }
  }
  img {
    background-color: #ddd;
    height: 100%;
    width: 100%;
    border: 1px solid $color-border;
  }
}
.avatar-group {
  .avatar:not(:first-child) {
    margin-left: -8px;
  }
}
