.userprofile {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
}

.userprofile #userDataContainer, .userprofile #userImageContainer {
  display: block;
}

.userprofile #userDataContainer.hide, .userprofile #userImageContainer.hide {
  display: none;
}

.userprofile .buttonContainer {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-top: 20px;
}

.userprofile .infoContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
  border-bottom: solid 2px rgba(112, 112, 112, 0.1);
}

.userprofile .imgAndNameContainer {
  display: flex;
  width: 100%;
  align-items: center;
}

.userprofile .imagePicker {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #707070;
  background-size: cover;
}
.userprofile .fullNameContainer {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 90px);
  margin-left: 20px;
}

.userprofile .fullNameContainer .infoContainer input {
  width: 55%;
}

.userprofile .infoContainer input, .userprofile .infoContainer select, .userprofile .infoContainer .suffix {
  width: auto;
  margin: 0;
  background-color: transparent;
  font-size: 18px;
  color: #0eb5fe;
  text-align: right;
  height: 50px;
  border: 0;
  opacity: 0.7;
}

.userprofile .infoContainer select#_iselectCountry {
  width: 50%;
}

.userprofile .infoContainer .dropdowninput {
  display: flex;
  justify-content: flex-end;
}

.userprofile .infoContainer .suffix {
  height: auto;
  margin-left: 7px;
}

.userprofile .infoContainer input::placeholder {
  font-family: 'Metropolis Light';
  font-size: 16px;
  line-height: 1.21;
  letter-spacing: 3.32px;
  color: #0eb5fe;
}

.userprofile .infoContainer .paramTitle {
  font-family: 'Metropolis Regular';
  font-size: 16px;
  line-height: 1.21;
  letter-spacing: 3.32px;
  color: #333333;
}

.userprofile input.invalid {
  border-color: red;
  outline: none;
}

.userprofile input.valid {
  border-color: green;
  outline: none;
}

.userprofile.imp .metric, .userprofile .imperial {
  display: none
}

.userprofile.imp .imperial, .userprofile .metric {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.userprofile .action-button {
  width: 140px;
  background-color: #2cdd6b;
  font-family: 'Metropolis Bold';
  font-size: 18px;
  /* line-height: 1.21; */
  letter-spacing: 3.32px;
  text-align: center;
  color: #ffffff;
  border-radius: 14px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 10px;
}

.userprofile .previous.action-button {
  background-color: #7c7c7c;
}

.userprofile .action-button:hover, .userprofile .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #3fb7e3;
}