.property-search-bar {
  display: flex;
  align-items: flex-start;
  background: #f9fbfd;
  border-radius: 30px;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: Arial, sans-serif;
  flex-wrap: wrap;
}

.search-item {
  display: flex;
  align-items: center;
  margin-right: 15px;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.search-item.price-slider {
  border-bottom: none !important;
}

.search-item .icon {
  margin-right: 5px;
  font-size: 16px;
  color: #999;
}

.search-item select,
.keyword-input {
  border: none !important;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #555;
}

.divider {
  display: none;
}

.price-slider {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: .5rem 0;
}

.price-slider input[type=range] {
  margin: 0 10px;
}

.price-label {
  display: flex;
  align-items: center;
}
.price-label label {
  font-size: 14px;
  color: #555;
  padding: 0 1rem;
}

#priceRange {
  width: 100%;
}

#priceValue {
  font-size: 14px;
  color: #555;
}

.search-btn-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.search-btn {
  background: #0a2742;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}

.search-btn:hover {
  background: #08335a;
}


@media only screen and (min-width: 1024px) {
  .divider {
    display: block;
    width: 1px;
    height: 25px;
    background: #ddd;
    margin: 0 10px;
  }

  .property-search-bar {
    align-items: center;
    justify-content: space-around;
  }

  .search-item {
    width: unset;
    border-bottom: none;
  }
  .search-item.keyword .icon {
    display: none;
  }
  
  .search-name {
    display: none;
  }
  
  .price-slider {
    flex-direction: row;
    align-items: center;
  }
  .search-btn-container {
    width: unset;
  }
}

@media only screen and (max-width: 1024px) {
  .search-item :nth-child(2) {
    flex: 1;
  }
}
