

.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input-group {
    flex: 1; 
    margin-right: 10px; 
}

.input-row .input-group:last-child {
    margin-right: 0; 
}


.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
}

.input-group p {
    color: red;
    margin-top: 5px;
}

.send-request-input,
select, 
.where-btn-select, 
.person-btn-select {
    display: flex;
    height: 56px;
    width: 384px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 8px;
    border: solid;
    border-color: #e2e1e1;
    background-color: #fff;
    font-size: 17px;
    font-weight: 400;
    color: black;
}


.person-btn-select input[type="text"] {
  border: none;
  height: 45px;
  cursor: pointer;
}


input:focus, select:focus {
    border-color: #E37E20;
    outline: none; 
}

.send-request-btn {
  justify-content: center;
}

.services-header {
  margin-top: 80px;
}
#SendRequestSubmit {
  width: 227px; 
  height: 56px; 
  visibility: visible; 
  animation-delay: 0.1s; 
  animation-name: none; 
  padding: 8px; 
  margin-top: 60px; 
  font-weight: normal; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

/* Multiselect where button */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");


.where-btn-select, select, .when-btn-input, .person-btn-input {
  cursor: pointer;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
}

.where-btn-select .where-btn-text, .person-btn-select .person-btn-text, .prefix-btn-text{
  font-size: 17px;
  font-weight: 400;
  color: #777676;
  padding: 0px 2px; 
}

.where-btn-select .arrow-down, .person-btn-select .arrow-down, .prefix-btn-select .arrow-down {
  display: flex;
  height: 21px;
  width: 21px;
  color: #E37E20;
  font-size: 19px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-left: auto;
}

.where-btn-select.open .arrow-down, .person-btn-select.open .arrow-down, .prefix-btn-select.open .arrow-down{
  transform: rotate(-180deg);
}

.person-list-items {
  /* position: absolute; */
  margin-top: 15px;
  border-radius: 8px;
  width: 384px;
  background-color: #fff;
  padding: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  overflow: auto;
  max-height: 300px; 
  overflow-y: auto;
  display: none;
}

.where-list-items {
  /* position: absolute; */
  /* margin-top: 15px; */
  border-radius: 8px;
  width: 384px;
  background-color: #fff;
  /* padding: 0; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  overflow: auto;
  max-height: 300px; 
  overflow-y: auto;
}

.prefix-list-items {
  border-radius: 8px;
  max-width: 90px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  overflow: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-height: 300px; 
  overflow-y: auto;
  display: none;
}

.where-btn-select.open ~ .where-list-items, .person-btn-select.open ~ .person-list-items, .prefix-btn-select.open ~ .prefix-list-items{
  display: block;
  position: absolute;
  z-index: 1;
}

.prefix-item {
  display: flex;
  align-items: center;
}

/* .date-panel.open ~ .tabs{
  display: flex;
} */
.person-list-items{
  padding: 15px;
}
.person-list-items .person-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* display: block; */
  align-items: center;
  list-style: none;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 16px;
}
.person-item label{
  font-size: 16px;
}



.continent-item {
  /* display: flex; */
  /* align-items: start; */
  /* list-style: none; */
  /* height: 50px; */
  cursor: pointer;
  transition: 0.3s;
  /* padding: 0 15px; */
  border-radius: 8px;
  /* padding-left: 15px; */
}

.country-item {
    /* display: flex; */
    /* align-items: start; */
    /* list-style: none; */
    /* height: 50px; */
    cursor: pointer;
    transition: 0.3s;
    /* padding: 10px 40px ; */
    border-radius: 8px;
}
.city-item {
  /* display: flex; */
  /* align-items: start; */
  /* list-style: none; */
  /* height: 50px; */
  cursor: pointer;
  transition: 0.3s;
  /* padding: 10px 40px ; */
  border-radius: 8px;
}


.where-list-items .where-item:hover, .prefix-list-items .prefix-item:hover, .months-list-items .months-item:hover, .duration-list-items .duration-item:hover, .continent-item:hover {
  background-color: #e7edfe;
}

.where-item .where-item-text, .prefix-item .prefix-item-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  /* margin-top: 6px; */
}
.prefix-list-items {
  padding-bottom: 6px;
  padding-top: 6px;
}


.where-item .checkbox, .prefix-item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  border-radius: 4px;
  margin-right: 6px;
  border: 1.5px solid #A3D7A5;
  background-color: #F1F9F1;
  transition: all 0.3s ease-in-out;
}

.where-item.where-checked .checkbox, .prefix-item.prefix-checked .checkbox {
  background-color: #8BCB8D;
  border-color: #8BCB8D;
}

.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}

.where-item.where-checked .check-icon,  .prefix-item.prefix-checked .check-icon{
  transform: scale(1);
}



.where-search i {
    left: 30px;
    line-height: 53px;
    position: absolute;
    display: flex;
    justify-content: center;
    top: 2px;
}

.where-search input {
    height: 35px;
    width: 100%;
    font-size: 17px;
    outline: none;
    border-radius: 8px;
    padding: 10px 20px 10px 36px;
    border: 1px solid #e2e1e1;
    margin: 11px 0px 0px 17px;
}


.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    width: 384px;
    border-radius: 8px;
}

.where-btn-select.open + .dropdown-content {
    display: block;
}

.where-search input {
    width: calc(100% - 43px);
}
/* .where-list-items ul{
  list-style: none;
} */
/* 
.where-list-items .country-list {
  padding-left: 0px;
  padding-top: 15px;
}
.country-list .city-list {
  padding-left: 0px;
  padding-top: 15px;
} */



.date-panel {
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow:  0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  width: 384px;
  height: 350px;
  z-index: 1;
  border-radius: 8px;
  margin-top: 0px;

}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #f5efef;
  border-radius: 25px;
  overflow: hidden;
  background-color: #f5f5f5;
  width: 188px;
  height: 48px;
  margin-left: 200px;
  margin-top: 20px;
}

.toggle-button {
  /* background-color: transparent; */
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  outline: none;
  flex-grow: 1;
  text-align: center;
  color: #000;
  font-size: 16px;
}

.toggle-button:hover {
  background-color: #e6e6e6;
}

.toggle-button.active {
  background-color: white;
}

.toggle-button:focus {
  box-shadow: none;
}


#datesContent {
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#datesContent label {
  font-size: 15px;
}


.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #A3D7A5;
    border-radius: 40px;
    width: 24px;
    height: 24px;
    line-height: 0px;
}

.daterangepicker td.in-range {
  background-color: #DBF0DC;
}






/* Rating and class checkboxes */
.rating-group label,
.class-group label {
    display: block;
    margin-bottom: 10px;
}

input[type="checkbox"] {
    margin-right: 10px;
}










/* Submit button */
.submit-btn {
    background-color: #E37E20;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    padding: 15px 30px;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #E37E20;
}













/* SERVICE section */

.service-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
}

.service-group {
  flex: 1; 
  border-radius: 10px;
}

.service-row .service-group:last-child {
  margin-right: 0; 
}


.rating-group,
.flight-group,
.transfer-group {
  margin-top: 10px;
}



.hotel-list-items, 
.flight-list-items, 
.transfer-list-items,
.visainsurances-list-items {
  margin-top: 15px;
  padding: 16px;
}

.hotel-list-items .hotel-item, 
.flight-list-items .flight-item, 
.transfer-list-items .transfer-item,
.visainsurances-list-items .visainsurances-item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 8px;
}


.hotel-item .hotel-item-text, 
.flight-item .flight-item-text, 
.transfer-item .transfer-item-text,
.visainsurances-item .visainsurances-item-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}


.hotel-item .checkbox, 
.flight-item .checkbox, 
.transfer-item .checkbox,
.visainsurances-item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  border-radius: 4px;
  margin-right: 12px;
  border: 1.5px solid #A3D7A5;
  background-color: #F1F9F1;
  transition: all 0.3s ease-in-out;
}


.hotel-item.hotel-checked .checkbox, 
.flight-item.flight-checked .checkbox, 
.transfer-item.transfer-checked .checkbox,
.visainsurances-item.visainsurances-checked .checkbox {
  background-color: #8BCB8D;
  border-color: #8BCB8D;
}

.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}

.hotel-item.hotel-checked .check-icon, 
.flight-item.flight-checked .check-icon, 
.transfer-item.transfer-checked .check-icon,
.visainsurances-item.visainsurances-checked .check-icon {
  transform: scale(1);
}



/* Months and duration select */

.months-item .checkbox,
.duration-item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  border-radius: 4px;
  margin-right: 6px;
  border: 1.5px solid #A3D7A5;
  background-color: #F1F9F1;
  transition: all 0.3s ease-in-out;
}

.months-item.months-checked .check-icon,
.duration-item.duration-checked .check-icon {
  transform: scale(1);
}

.months-btn-select, .duration-btn-select {
  display: flex;
  height: 36px;
  width: 100px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  border-style: solid;
  border-color: #e2e1e1;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
}

.months-btn-select .months-btn-text, .duration-btn-select .duration-btn-text {
  font-size: 13px;
  /* font-weight: 400; */
  color: #333;
  padding: 0px 2px; 
}

.months-item .months-item-text,
.duration-item .duration-item-text {
  font-size: 13px;
  /* font-weight: 400; */
  color: #333;
}

.months-btn-select .arrow-down, .duration-btn-select .arrow-down {
  display: flex;
  height: 11px;
  width: 11px;
  color: #E37E20;
  font-size: 11px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-left: auto;
}

.months-btn-select.open .arrow-down, .duration-btn-select.open .arrow-down {
  transform: rotate(-180deg);
}

.months-list-items, .duration-list-items {
  position: relative;
  margin-top: 40px;
  border-radius: 8px;
  width: 100px;
  height: 140px;
  overflow: auto;
  background-color: #fff;
  padding: 7px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.when-btn-input.open ~ .date-panel, .months-btn-select.open ~ .months-list-items, .duration-btn-select.open ~ .duration-list-items {
  display: block;
  position: absolute;
  z-index: 1;
}


.months-item.months-checked .checkbox,
.duration-item.duration-checked .checkbox {
  background-color: #8BCB8D;
  border-color: #8BCB8D;
}

.months-list-items .months-item,
.duration-list-items .duration-item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 29px;
  cursor: pointer;
  transition: 0.3s;
  /* padding: 0 15px; */
  border-radius: 8px;
}



/* PERSON selection */



/* This is for the custom dropdown icon */
.select-container .dropdown-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none; /* Ensure that the select is always clicked, not the icon */
  color: #ff914d;
}

/* Optional: Styling on hover */
.select-container select:hover {
  border-color: #ff6c00; /* A slightly darker orange */
}

