.tui-kit-avatar{
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  &.circle .avatar-image {
    border-radius: 50%;
  }
  &.square .avatar-image {
    border-radius: 4px;
  }
  img {
    width: 100%;
    height: 100%;
  }
  &:hover {
    .tui-kit-avatar-edit {
      display: flex;
    }
  }
  &-edit {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.33);
    width: 100%;
    height: 100%;
    border-radius: 100%;
    display: none;
    justify-content: center;
    align-items: center;
  }
  &-list {
    position: absolute;
    z-index: 2;
    top: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 11px 20px 0 rgb(0 0 0 / 30%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    min-width: 200px;
    max-width: 400px;
    padding: 10px;
    &-item {
      padding: 10px;
      img {
        width: 40px;
      }
    }
  }
}

