.edit-icon-container {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edit-icon-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--green);
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotateBorder 10s linear infinite;
}

#change_log_vegan {
  width: 280px;
}

.modal-social-group span {
  top: 24px;
}

#edit-instagram {
  padding-left: 142px;
}

#edit-facebook {
  padding-left: 136px;
}

#edit-x {
  padding-left: 77px;
}

#upload-edit-btn {
  position: absolute;
  left: 114px;
  bottom: 11px;
  font-size: 14px;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.delete-icon-container {
  margin-left: 10px;
}

.delete-icon-container::before {
  border: 1px dashed var(--red);
}

.form-buttons .submit-button {
  width: 118px;
}
