.typeselect-wrapper {
  display: block;
  width: 100%; 
  position: relative;
  outline: none;
}

.typeselect-input {
  width: 100%;
  height: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  padding-right: 5px;
  outline: none;
}

.typeselect-clear-button {
  background: #dadada;
  border-radius: 10px;
  border: 0;
  bottom: 0;
  color: #fff;
  font-size: 30px;
  height: 20px;
  margin: 0;
  margin: auto;
  padding: 0;
  position: absolute;
  right: 1px;
  text-align: center;
  top: 0;
  vertical-align: middle;
  width: 20px;
  line-height: 18px;
  outline: none!important;
  display: none;
}

.typeselect-clear-button:hover {
  background: red;
  cursor: pointer;
}

.typeselect-clear-button:active {
  background: #a81515;
  cursor: pointer;
}

.typeselect-list {
  position: absolute;
  width: 100%;
  top: calc(100% - 1px);
  padding: 0;
  margin: 0;
  list-style-type: none;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0px 6px 20px -8px rgba(0, 0, 0, 0.74);
  border: 1px solid #e7e7e7;
  max-height: 150px;
  overflow-y: auto;
}

.typeselect-item {
  padding: 2px 5px;
  display: block;
}

.typeselect-item > div:first-of-type {
  font-family: monospace;
  font-size: 16px;
  width: 100%;
}

.typeselect-item > div:nth-child(2) {
  font-size: 12px;
  width: 100%;
}

.typeselect-item:hover, .typeselect-item-selected  {
  background: #e7e7e7;
  color: #333;
  cursor: pointer;
}
.typeselect-item:active {
  background: #cbc6c6;
  color: #333;
  cursor: pointer;
}

.typeselect-hint {
  padding: 2px 5px;
  font-size: 18px;
  text-align: left;
}

.typeselect-button {
  padding: 2px 5px;
  font-size: 18px;
  text-align: left;
  color: #21afec;
  cursor: pointer;
}

.typeselect-button:hover {
  text-decoration: underline;
  color: #149dd7;
}

.typeselect-button:active {
  text-decoration: underline;
  color: #0f91c8;
}
