.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: none;
  border-top: 0;
  background: rgba(255, 255, 255, 0.33);
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 60%;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.autocomplete-suggestions:before{
  content: "Suchergebnisse - nach Titel";
  display: block;
  color: #fff;
  margin: 10px 15px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 22px;
}

.autocomplete-suggestion { 
  position: relative;
  padding: 5px 2px 5px 25px;
  line-height: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-weight: 300;
  font-size: 22px;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 1px;
  justify-content: space-between;
}

.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }

.autocomplete-suggestion.selected { 
  background: rgba(74, 74, 74, 0.33); 
}