.cr-criyator-avatar-label {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;

  &--clickable {
    cursor: pointer;
  }

  &__picture {
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    &--small {
      height: 30px;
      width: 30px;
    }

    &--medium {
      height: 35px;
      width: 35px;
    }

    &--large {
      height: 40px;
      width: 40px;
    }
  }

  &__label {
    font-weight: 400;
    margin: 0;
    flex: 1;

    &--small {
      font-size: 12px;
      line-height: 18px;
    }

    &--medium {
      font-size: 14px;
      line-height: 20px;
    }

    &--large {
      font-size: 18px;
      line-height: 24px;
    }
  }
}