/* страница пользователя */
.user-avatar-image-input {
  position: relative;
  background-color: transparent;
  padding: 0px;
  width: 200px;
  border-radius: 400px;
  display: inline-block;
  overflow: hidden;
}
.user-edit-avatar-hover {
  position: absolute;
  line-height: 200px;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.user-avatar-image-input:hover .user-edit-avatar-hover {
  display: block;
  color: #fff;
}
.profile-pic {
  border-radius: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: auto;
}
.profile-pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* action-errors */
