div.select {
  border: 1px solid #808080;
  height: 28px;
  overflow: hidden;
}
div.select.no-search {
  caret-color: transparent;
}
div.select img {
  width: 20px;
  background: 20px;
  padding: 6px;
  cursor: pointer;
  margin-top: -2px;
  float: right;
}
div.select div.value {
  width: calc(100% - 12px - 35px);
  border: none;
  height: 16px;
  padding: 6px;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
}
.select-options {
  margin-top: -10px;
  position: absolute;
  max-height: 300px;
  background: grey;
  overflow-y: scroll;
  z-index: 10000;
}
.select-options .select-option-item {
  cursor: pointer;
  padding: 5px;
  background: #eee;
}
.select-options .select-option-item:hover {
  background: #888;
}
.select-options .select-option-item.disabled {
  cursor: default;
}
