.profile-pic {
  color: transparent;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.profile-pic input {
  display: none;
}
.profile-pic img {
  position: absolute;
  object-fit: cover;
  width: 80px;
  height: 80px;
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  z-index: 0;
}
.profile-pic .-label {
  cursor: pointer;
  height: 80px;
  width: 80px;
  font-size: 12px;
}
.profile-pic:hover .-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  color: rgb(250, 250, 250);
  transition: background-color 0.2s ease-in-out;
  border-radius: 100px;
  margin-bottom: 0;
}
.profile-pic span {
  display: inline-flex;
  padding: 0.2em;
  height: 2em;
}
.profile-pic .edit-icon {
  background: var(--primary);
  border: none;
  height: 24px;
  width: 24px;
  border-radius: 100%;
  position: absolute;
  bottom: 5px;
  right: 4px;
  overflow: hidden;
  z-index: 99999;
}
.profile-pic .edit-icon img {
  position: unset;
  box-shadow: none;
  height: unset;
  width: 100%;
}

.h-profile {
  height: calc(100% - 3rem);
}

.button-change {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 0;
  background: none;
  border-bottom: 1px solid var(--neutral-20);
}