.search-form {
  position : relative;
}

.search-form .hint-search {
  width       : 100%;
  position    : absolute;
  top         : -1px;
  left        : 0;
  right       : 1px;
  bottom      : 0;
  padding     : .6180469716em;
  font-weight : 400;
  color       : #aaa;
  z-index     : 1;
}

.search-form .live-search-results {
  position         : absolute;
  top              : calc(100% + 5px);
  left             : 0;
  right            : 0;
  z-index          : 6;
  box-shadow       : 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color : rgba(255, 255, 255, 0.95);
  width            : 100%;
  border-radius    : var(--theme-border-radius);
}

@media screen and (min-width : 576px) {
  .search-form .live-search-results {
    width : 320px;
  }
}

.search-form .autocomplete-suggestion {
  padding       : 10px 0.75em;
  border-bottom : 1px solid rgba(0, 0, 0, 0.05);
  display       : flex;
  align-items   : center;
  cursor        : pointer;
}

.search-form .autocomplete-suggestion .search-name {
  -ms-flex    : 1;
  flex        : 1;
  font-size   : 12px;
  white-space : normal;
}

.search-form .autocomplete-suggestion img {
  width         : 40px;
  border-radius : 99px;
  height        : 40px;
  margin-right  : 10px;
  float         : left;
}

.search-form .autocomplete-suggestion img + .search-name {
  margin-top   : -0.15em;
  padding-left : 0.5em;
}

.search-form .autocomplete-suggestion .search-price {
  padding-top : 3px;
  margin-left : 5px;
  font-size   : .8em;
  display     : flex;
  font-weight : bold;
}

.search-form .autocomplete-suggestion .search-price ins {
  text-decoration : none;
}

.search-form .autocomplete-suggestion:last-child {
  border-bottom : none;
}

.search-form .autocomplete-selected {
  background-color : rgba(0, 0, 0, 0.05);
}