

.search {
  width: 100%;
  position: relative;
  display: flex;
  padding-bottom: 0px;
}

.queryText {
  width: 100%;
  border: 1px solid rgb(127,127,127);
  border-right: none;
  padding: 8px;
  height: 30px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: grey; /* rgb(83,83,83);*/
  font-size: 15px;
  text-align: center;
}

.queryText:focus{
  color: black;
  font-size: 15px;
  text-align: left;
}

input:focus::placeholder {
  color: transparent;
}


.searchButton {
  width: 50px;
  height: 48px;
  border: 0px solid rgb(83,83,83);
  background: var(--pretty-blue); /*rgb(33,67,175); /* rgb(109,120,242); */
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 25px;
}



.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: block;
  background: none;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  text-align: left;
  border-radius: 5px 5px 5px 5px;
}
.autocomplete-items div {
  padding: 8px;
  cursor: pointer;
  background-color: white; /* rgb(36,36,36); */
  color: black;
  border-bottom: 1px solid #d4d4d4;
  text-align: left;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: var(--pretty-blue);
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.autocomplete-header {
  color: var(--pretty-blue) !important;    
  background: rgb(226,226,226) !important;
}
