.search-tours-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 976px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  align-items: center;
  padding: 24px 64px;
}

.search-tours-holder .image-holder img {
  width: 16px;
}
.tripgo-search-widget {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.filters {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 10px;
}

.search-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  flex: 1;
  min-width: 200px;
}
.filter-column {
  display: flex;
  flex-direction: column;
}
.filter-column .dropdown-toggle::after {
  display: none;
}

.filter-column label {
  color: #777e90;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 1px;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-toggle {
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  padding: 8px 12px 8px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 195px;
}

.location-icon,
.calendar-icon {
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selected-location {
  flex-grow: 1;
  color: #23262f;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.dropdown-icon {
  transition: transform 0.3s;
}

.dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  padding: 0;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 8px 12px;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #23262f;
  list-style: none;
}

.dropdown-menu li:hover {
  background-color: #f5f5f5;
}

.date-picker {
  position: relative;
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-picker input {
  border: none;
  background: transparent;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #23262f;
  flex: 1;
  padding-left: 8px;
  width: 140px;
  cursor: pointer;
}
.selected-location {
}

.filter-column:not(:last-child) {
  border-right: 1px solid #e4e6e8;
}

.button-column button {
  background-color: #c94a30;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.icon-search {
  /* Assume using icomoon */
}

input:focus {
  outline: none;
}

#search-btn {
  border-radius: 45px;
  background: var(--color-primary) !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  -webkit-transition: all 0s linear;

  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  max-height: 58px;
}
#search-btn i {
  font-size: 24px;
  margin-right: 10px;
}
#search-btn:hover {
  background: var(--color-primary-hover) !important;
}
#search-btn:hover i,
#search-btn:hover span {
  color: white;
}

.search-tours-holder input {
  height: 22px;
}

@media (max-width: 1140px) {
  .search-tours-holder {
    max-width: 90%;
    padding: 16px 32px;
  }
}
@media (max-width: 960px) {
}
@media (max-width: 720px) {
  .search-tours-holder {
    flex-direction: column;
    align-items: normal;
    gap: 15px;
  }
  .filters {
    justify-content: center;
  }
  .filter-column {
    width: 50%;
  }
  .dropdown-toggle {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .filters {
    flex-direction: column;
  }
  .filter-column {
    width: 100%;
  }
  .dropdown-toggle {
    width: 100%;
  }
  .filter-column:not(:last-child) {
    border-right: none;
  }
}
