.search-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.search-box {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.banner_form {
  margin-top: 2rem;
}

.field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 110px;
  padding: 10px 15px;
  border: 1px solid #534d4d;
  border-radius: 10px;
}

.banner_form label {
  font-size: 16px !important;
  text-transform: capitalize;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 6px;
  text-align: left;
}

.banner_form input,
.banner_form select {
  border: none;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  outline: none;
}
.banner_form option {
  color: var(--black-color);
}
.banner_form input::placeholder {
  color: var(--white-color);
}
.search-btn {
  background: #d96a00;
  color: white;
  border: none;
  padding: 18px 45px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}

.search-btn:hover {
  background: #ff7b00;
}
.book-now-btn {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, 100px);
}
.modal.show .modal-dialog {
  transform: none;
}
.form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form-bottom p {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 500;
}

.booking-form-input input,
.booking-form-input textarea,
select,
label {
  margin-bottom: 0;
  border: none;
  padding: 0;
  font-size: 14px !important;
  color: #434343;
}
.modal--form .search-box-row {
  flex-direction: column;
}
.modal--form .second-row input,
.modal--form .second-row select {
  text-align: right;
  width: 120px;
  border: none;
  outline: none;
}
.modal--form .field {
  border: 1px solid #ccc;
}
.modal--form .field {
  flex-direction: row;
  justify-content: space-between;
}
.modal--form .search-box-row,
.modal--form .modal-wrapper-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
  .search-box {
    gap: 10px;
  }
  .banner_form label {
    font-size: 14px;
  }
  .field {
    min-width: 130px;
  }
  .field:nth-child(1) {
    min-width: 195px;
  }
}

@media (max-width: 992px) {
  .search-box-row {
    flex-direction: column;
    gap: 0;
  }
  .modal--form .search-box-row,
  .modal--form .modal-wrapper-row {
    gap: 0;
    margin-bottom: 0;
  }

  .second-row input,
  .second-row select {
    text-align: right;
    width: 120px;
  }
  .field {
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
    gap: 7px;
    padding: 12px 0;
  }
  .field:nth-child(1) {
    min-width: -webkit-fill-available;
  }

  .search-box-row {
    flex-direction: column;
  }

  .banner_form button {
    padding: 6px 20px;
    font-size: 16px;
  }
  .search-btn {
    width: 100%;
  }
  .banner_form {
    border-radius: 10px;
  }
  .field {
    min-width: -webkit-fill-available;
    flex-direction: row;
    justify-content: space-between;
  }
  .banner_form input,
  .banner_form select,
  .banner_form option {
    width: 200px;
    text-align: right;
    background-color: #fff;
  }
}

@media (max-width: 380px) {
  .banner_form label {
    font-size: 15px;
  }
  .banner_form input,
  .banner_form select,
  .banner_form option {
    width: 150px;
    font-size: 14px;
  }
}
