.custom--select {
  position: relative;
  min-height: 36px;
  max-width: 400px;
}

.custom--select ul {
  list-style: none;
  margin-top: 36px;
  background-color: white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  overflow: auto;
  display: none;
  max-height: 150px;
  padding-left: 0;
}

.custom--select ul li {
  padding: 11px 9px;
  cursor: pointer;
}

.custom--select ul li img {
  width: 25px;
  margin-right: 4px;
}

.custom--select ul li:hover {
  background-color: rgba(40, 134, 242, 0.2);
}

.custom--select ul li .selected {
  cursor: default;
}

.custom--select ul li .selected:hover {
  background-color: transparent;
}

.custom--select .search-input {
  height: 36px;
  position: absolute;
  width: 100%;
  min-width: 200px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #DADEE3;
  padding: 0 12px;
  font-size: 12px;
  outline: none !important;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: flex;
  overflow: auto;
}

.custom--select .search-input .focus {
  border-color: #2887f2;
}

.custom--select .search-input .selected {
  display: flex;
  align-items: center;
}

.custom--select .search-input .selected img {
  width: 25px;
  margin-right: 4px;
}

.custom--select .search-input::-webkit-scrollbar {
  display: none;
}

.custom--select .search-input input {
  height: 34px;
  width: 100%;
  min-width: 50px;
  padding: 0;
  border: none;
  text-align: left !important;
}

.custom--select .search-input input:focus {
  border: none;
  outline: none;
}