.combobox-list {
  position: relative;
	overflow: inherit !important;
}

.annotate {
  font-style: italic;
  color: #366ed4;
}

.hidden {
  display: none;
}

.combobox-wrapper {
  /*display: inline-block;*/
  position: relative;
  /*font-size: 16px;*/
}

.combobox-label {
  /*font-size: 14px;*/
  /*font-weight: bold;*/
  margin-right: 5px;
}

.listbox,
.grid {
  min-width: 230px;
  background: #eee;
  border: 1px solid #ccc;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 45px;
  z-index: 1000;
  width: calc(100% - 2px);
  max-height: 350px;
  overflow-y: scroll;
}

.listbox .result {
  cursor: default;
  margin: 0;
}

.grid .result-row {
  padding: 2px;
  cursor: default;
  margin: 0;
}

.listbox .result:hover,
.grid .result-row:hover {
  background: rgb(139, 189, 225);
}

.listbox .focused,
.grid .focused {
  background: rgb(139, 189, 225);
}

.grid .focused-cell {
  outline-style: dotted;
  outline-color: green;
}

.combobox-wrapper input {
  font-size: inherit;
  border: 1px solid #aaa;
  border-radius: 2px;
  line-height: 1.5em;
  padding-right: 30px;
  /*width: 200px;*/
  background-color: #F1F1F1;
}

.combobox-dropdown {
  position: absolute;
  right: 10px;
  top: 17px;
  background-image: url("../../../images/form-arrow-down.png");
  width: 18px;
  height: 11px;
}

.combobox-dropdown:hover,.combobox-dropdown:focus{
  background-image: url("../../../images/form-arrow-down-over.png");
}

.grid .result-cell {
  display: inline-block;
  cursor: default;
  margin: 0;
  padding: 0 5px;
}

.grid .result-cell:last-child {
  float: right;
  font-size: 12px;
  font-weight: 200;
  color: #333;
  line-height: 24px;
}
