/* Autocomplete input list */
.autocomplete-items {
  position: absolute;
  top: 60px;
  z-index: 4;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  width: 250px;
  max-height: 250px;
  overflow-y: scroll;
  border-radius: 5px;
  border: 0.25px solid rgb(226, 226, 226);
}

.autocomplete-items-list {
  border-bottom: 1px solid #e4e4e4;
  padding: 5px 10px;
  cursor: pointer;
}

.autocomplete-items strong {
  font-size: 0.925rem;
  text-transform: capitalize;
}

.autocomplete-items p {
  font-size: 0.875rem;
  text-transform: capitalize;
  margin: 0;
}

.autocomplete-items-list:hover {
  background-color: #ef1923;
  color: #fff;
}
.autocomplete-items-list:hover p {
  color: #e9e9e9;
}

@media (max-width: 726px) {
  .autocomplete-items {
    width: 100%;
  }

  .autocomplete-items strong {
    font-size: 0.825rem;
  }

  .autocomplete-items p {
    font-size: 0.825rem;
  }
}

.autocomplete-items-list {
  display: none;
}

/* Drop List  */
/* Search Component  */
input {
  width: 100%;
  padding: 20px;
}

input.search {
  margin: 0;
  text-align: center;
  position: relative;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ccc;
}

.suggestions {
  margin-top: 15px;
  padding: 0;
  position: relative;
}

.suggestions li {
  list-style: none;
  border-bottom: 1px solid #d8d8d8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
}

span.population {
  font-size: 15px;
}

.location__container {
  height: 55px;
}

.listbox {
  width: 100%;
}
