.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-height: 300px;
  max-width: 500px;
  overflow: auto;
  display: block;
  z-index: 999999;
  border-radius: 6px;
  box-shadow: 0 0 10px 0 rgba(101,111,122,0.5);
  background: white;
  font-size: 14px;
}
.tribute-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: white;
}
.tribute-container li {
  padding: 5px 5px;
  cursor: default;
  box-sizing: border-box;
  height: 27px;
  padding: 0 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tribute-container li.highlight {
  background: #5BB8FF;
  color: white !important;
}
.tribute-container li span {
  font-weight: bold;
}
.tribute-container li.no-match {
  cursor: default;
}
.tribute-container .menu-highlighted {
  font-weight: bold;
}