.userCard {
  border: 1px solid rgba(34, 60, 80, 0.3);
  display: flex;
  flex-direction: row;
  padding: 20px;
  margin: 0 0 30px 0;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 8px rgba(34, 60, 80, 0.17) inset,
    0px 0px 10px 8px rgba(34, 60, 80, 0.17);
}
.photo {
  width: 200px;
  height: 200px;
  margin: 0 20px 0 0;
}
.infoWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 50px 0 0;
}
.btnWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.editBtn,
.deleteBtn {
  width: 60px;
  height: 30px;
  border-radius: 12px;
  outline: none;
  border: 1px solid #aeaeae;
}
.name {
  margin: 0 0 20px 0;
}
.userName {
  margin: 0 0 20px 0;
}
.email {
  margin: 0 0 20px 0;
}
.addressWrapper {
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.street {
}
.suite {
}
.city {
}
.zipcode {
}
.phone {
  margin: 0 0 20px 0;
}
.website {
  margin: 0 0 20px 0;
}
.companyWrapper {
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.companyName {
}
.catchPhrase {
}
.bs {
}

.name::before {
  display: inline-block;
  content: "Name: ";
  width: 80px;
  font-weight: bold;
}
.userName::before {
  display: inline-block;
  content: "Username: ";
  width: 80px;
  font-weight: bold;
}
.email::before {
  display: inline-block;
  content: "Email: ";
  width: 80px;
  font-weight: bold;
}
.street::before {
  display: inline-block;
  content: "Street: ";
  width: 80px;
  font-weight: bold;
}
.suite::before {
  display: inline-block;
  content: "Suite: ";
  width: 50px;
  font-weight: bold;
}
.city::before {
  display: inline-block;
  content: "City: ";
  width: 50px;
  font-weight: bold;
}
.zipcode::before {
  display: inline-block;
  content: "Zip code: ";
  width: 66px;
  font-weight: bold;
}
.phone::before {
  display: inline-block;
  content: "Phone: ";
  width: 80px;
  font-weight: bold;
}
.website::before {
  display: inline-block;
  content: "Site: ";
  width: 80px;
  font-weight: bold;
}
.companyName::before {
  display: inline-block;
  content: "Company: ";
  width: 80px;
  font-weight: bold;
}
.catchPhrase::before {
  display: inline-block;
  content: "Catch phrase: ";
  width: 100px;
  font-weight: bold;
}
.bs::before {
  display: inline-block;
  content: "BS: ";
  width: 40px;
  font-weight: bold;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal_content {
  position: relative;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  /* height: 450px; */
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 8px rgba(34, 60, 80, 0.17) inset,
    0px 0px 10px 8px rgba(34, 60, 80, 0.17);
}
.modal_content h3 {
  text-align: center;
}
.close {
  position: absolute;
  top: 5px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.updateForm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 10px 0;
}
.submitBtn {
  border-radius: 12px;
  border: 1px solid gray;
  outline: none;
  height: 20px;
  align-self: center;
  width: 100%;
  margin-top: 20px;
}
