.profile-image {
  position: relative;
  max-width: 205px;
  margin: 10px auto;
}
.profile-image .profile-image-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.profile-image .avatar-delete {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 150px;
}

.profile-image .profile-image-edit input,
.profile-image .avatar-delete button {
  display: none;
}
.profile-image .profile-image-edit input + label,
.profile-image .avatar-delete button {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.profile-image .profile-image-edit input + label:hover,
.profile-image .avatar-delete button:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.profile-image .profile-image-edit input + label:after,
.profile-image .avatar-delete button:after {
  content: "\f040";
  font-family: "FontAwesome";
  color: #757575;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.profile-image .avatar-delete button:after {
  content: "\f1f8";
  font-size:18px;
  color: crimson;
}
.profile-image .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.profile-image .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}