.booking {
  background-color: #5b0507;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
}

.booking-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-left: 18px;
  padding-right: 18px;
  max-width: 1280px;
}
@media (max-width: 1024px) {
  .booking-content {
    flex-direction: column;
  }
}

.booking-content-search-form {
  background-color: #85080b;
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  gap: 20px;
}

@media (max-width: 1024px) {
  .booking-content-search-form {
    width: 90%;
    margin-top: 30px;
  }
}

.booking-content-search-form h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: start;
  color: #fff;
}

.booking-content-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 50%;
}

.booking-content-box h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: start;
  color: #fff;
}

.booking-content-box-icons-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.booking-content-box-icons-box-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.booking-content-box-icons-box-item-icon {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.booking-content-box-icons-box-item-icon h1 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.booking-content-box-icons-box-item-icon p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

.booking-mini-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.booking-mini-form label {
  font-weight: 600;
  text-align: start;
  color: #fff;
  font-size: 14px;
}

.booking-search-box-acc-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 30px;
}

.booking-search-box-pd-dt-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-top: 20px;
}

.booking-search-check-circle {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.booking-search-check-circle-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 50%;
}

.booking-search-check-circle-item label {
  color: #fff;
  font-size: 12px;
}

.booking-search-box-pd-dt-item-form {
  display: flex;
  flex-direction: row;
  width: 50%;
}

.booking-search-form-button {
  background-color: #5b0507;
  color: white;
  border-radius: 5px;
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 16px;
}

.form-select {
  --bs-form-select-bg-img: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"%3e%3cpathfill="none"stroke="%23343a40"stroke-linecap="round"stroke-linejoin="round"stroke-width="2"d="m2 5 6 6 6-6"/%3e%3c/svg%3e
  );
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: inherit;
  color: #212529;
  background-color: #ffffff;
  background-image: url("../images/down-arrow.svg"),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #294e98;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-select option[value=""] {
  color: #999;
  font-size: 14px;
}

.form-select option {
  color: #333;
  font-size: 14px;
}

.form-select:focus {
  border-color: #294e98;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: inherit;
  color: #212529;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #294e98;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #294e98;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 1024px) {
  .booking-search-box-pd-dt-item-form {
    flex-direction: column;
    gap: 10px;
  }
  .booking-search-box-pd-dt-form {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .booking-search-box-pd-dt-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .booking-search-box-pd-dt-item-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .booking-search-box-acc-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
    gap: 10px;
  }
  .booking-mini-form {
    width: 100%;
  }
  .booking-content-box-icons-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 440px) {
  .booking-content {
    display: flex;
    flex-direction: column;
  }
  .booking-content-box {
    width: 100%;
  }
  .booking-content-search-form {
    width: 100%;
  }
  .booking-content-box h1 {
    text-align: center;
  }
}
