.header-profile {
  width: 100%;
  height: 60px;
  background-color: #ffe9d4;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}
#logout-profile {
  display: none;
}
.container-profile {
  display: grid;
  grid-template-columns: 1fr 5% 1fr;
  padding-top: 30px;
}
.no-photo-edit {
  margin: 2rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 50px;
  background-color: #ffe9d4;
  text-align: center;
  display: grid;
  justify-content: center;
  align-content: center;
}
.info-edit-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}
.photoUserEdit {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-bottom: 5px;
}
.photo-edit-profile {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  padding-top: 2rem;
}
.photoUserProfile {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  /*background-image: url(../img/icon-user.svg);*/
  background-size: contain;
}
.title-user-edit {
  font-size: 25px;
  padding: 10px;
}
.button-change-img {
  outline: none;
  border: 1px solid #5d9cec;
  border-radius: 20px;
  background-color: #75abf3;
  padding: 5px 1rem;
  color: white;
  cursor: pointer;
}
.password-profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem;
  font-size: 20px;
}
.input-edit {
  margin: 5px;
  border: 1px solid #75abf3;
  overflow-wrap: break-word;
}
.input-edit:focus {
  outline-style: none;
  padding-left: 2px;
}
.btn-save-info,.btn-save-password,.backToHome {
  margin: 10px;
  outline: none;
  border: 1px solid #5d9cec;
  border-radius: 20px;
  background-color: #75abf3;
  padding: 5px 1rem;
  color: white;
  cursor: pointer;
}
.horizontal-line {
  border-left: 2px solid #5d9cec;
  height: 600px;
}
#fileSelection {
  padding: 10px;
}
#uploader {
  margin: 10px;
}
#logoImageProfile {
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .container-profile {
    display: flex;
    flex-flow: column;
  }
  .horizontal-line {
    display: none;
  }
  .header-profile {
    width: 100%;
    height: 60px;
    background-color: #ffe9d4;
    display: flex;
    justify-content: center;
    align-content: center;
  }
}
