  
#suggestions {
  position: absolute;
  left: 0;
  background: #fff;
  /*border: 1px solid #ccc;*/
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  border-radius: 6px;
  box-shadow: 0 1px 3px 2px rgba(0, 0, 0, .1);
}
#suggestions div {
  cursor: pointer;
}
#suggestions .suggestion-text:hover {
  background: #f7f7f7;
}
#suggestions .suggestion-item {
  padding: 0 1em;
}
#suggestions .suggestion-text {
  padding: 1em;
  border-bottom: 1px solid #ebebeb;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#suggestions .suggestion-item:last-child .suggestion-text {
  border-bottom: 0;
}
