.price-recommender {
  border: 1px solid #d4d4d4;
  border-radius: 15px;
  background-color: #f9f9f9;
  padding: 14px 10px;
  @media screen and (min-width: 1000px) {
    padding: 10px;
  }
}

.price-recommender h3 {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}
.price-recommender .form {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
  flex-direction: column;
  @media screen and (min-width: 1000px) {
    flex-direction: row;
  }
}
.price-recommender .form .marca {
  width: 100%;
  @media screen and (min-width: 1000px) {
    max-width: 165px;
  }
}
.price-recommender .form .modelo {
  width: 100%;
  @media screen and (min-width: 1000px) {
    max-width: 433px;
  }
}
.price-recommender .form .baterias {
  width: 100%;
  @media screen and (min-width: 1000px) {
    max-width: 100px;
  }
}
.price-recommender label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.price-recommender input[type="number"] {
  display: block;
  width: 100%;
  padding: 0.594rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.714;
  color: #333e48;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ddd;
  appearance: none;
  border-radius: 1.375rem;
  box-shadow: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  max-height: 34px;
}
.price-recommender .results {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-direction: column;
  @media screen and (min-width: 1000px) {
    flex-direction: row;
  }
}
.price-recommender .results button.enviar {
  cursor: pointer;
  background-color: #0787ea !important;
  border-radius: 500px;
  padding: 14px 17px 14px 17px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 34px;
  color: #ffffff !important;
  font-size: 12px;
}
.price-recommender .results button.enviar:hover {
  background-color: #005177 !important;
}

#price-output {
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #0787ea;
  padding: 0px 16px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  min-width: 230px;
  display: flex;
  gap: 5px;
  flex-direction: column;
  @media screen and (min-width: 1000px) {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
}
#price-output span {
  font-size: 12px;
  color: #3f3f3f;
  font-weight: 400;
}

span#price-result {
  font-size: 16px;
  font-weight: bold;
  color: #3f3f3f;
}
