div#Users ul {
  margin: 0;
  padding: 0em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 4em;
}
div#Users ul li {
  color: #FFFFFF;
  list-style: none;
  font-size: 1.5em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}
div#Users ul li div.WrapperInput {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 50%;
}
div#Users ul li div.WrapperInput input {
  border: none;
  font-size: 1em;
  padding: 0.3em;
  width: 93%;
  border-radius: 0.5em;
}
div#Users ul li div.WrapperInput label.Error {
  color: red;
  font-size: 0.7em;
  margin-top: 0.2em;
  text-align: end;
}
div#Users ul li div.WrapperInput .box {
  position: relative;
  width: 100%;
}
div#Users ul li div.WrapperInput .box select {
  padding: 0.3em;
  border-radius: 0.5em;
  border: none;
  font-size: 1em;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
}
div#Users ul li div.WrapperInput .box select option {
  padding: 30px;
}
div#Users ul li div.WrapperInput .box::before {
  padding: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "v";
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  font-size: 1em;
  color: rgba(22, 21, 21, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  cursor: pointer;
}
div#Users ul li div.WrapperInput .box:hover::before {
  color: rgba(22, 21, 21, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0.5em;
}
div#Users ul li#save {
  justify-content: center;
}
div#Users ul li#save button {
  border: none;
  border-radius: 0.5em;
  background-color: #F7EC45;
  color: #000000;
  justify-self: center;
  font-size: 1em;
  padding: 0.3em 1em;
  cursor: pointer;
}
