/* Pavé de réservation */
.hero-reservation {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 10px;
  text-align: left;
}

.hero-reservation__form {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
}

.hero-reservation__form-date {
  padding-right: 5px;
  margin-bottom: 1.25em;
  width: 50%;
}
.hero-reservation__form-nights {
  padding-left: 5px;
  margin-bottom: 1.25em;
  width: 50%;
}
.hero-reservation__form-adults {
  padding-right: 5px;
  margin-bottom: 1.25em;
  width: 50%;
}
.hero-reservation__form-children {
  padding-left: 5px;
  margin-bottom: 1.25em;
  width: 50%;
}
.hero-reservation__form-submit {
  width: 100%;
}

.hero-reservation__form .form-label {
  color: white;
}

@media only screen and (min-width: 768px) {
  .hero-reservation__form-date {
    padding: 0;
    margin: 0 10px 0 0;
    width: 200px;
  }
  .hero-reservation__form-nights {
    padding: 0;
    margin: 0 10px 0 0;
    width: 120px;
  }
  .hero-reservation__form-adults {
    padding: 0;
    margin: 0 10px 0 0;
    width: 140px;
  }
  .hero-reservation__form-children {
    padding: 0;
    margin: 0 10px 0 0;
    width: 140px;
  }
  .hero-reservation__form-submit.bouton {
    margin-top: 10px;
    width: 155px !important;
  }
}
