/*selectize*/
.selectize-custom.selectize-control.single:not(.open) .ui-select-no-choice {
  display: none;
}
.selectize-custom.selectize-control.single .selectize-input {
  padding: 8px 30px 8px 12px;
  line-height: 14px;
  background-image: none;
  background-clip: padding-box;
  border-radius: .25rem;
  transition: background-color ease-in-out .15s, border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  color: var(--main-dark-grey-color);
  font-size: 14.5px;
  text-align: left;
  height: 35px;
  font-weight: 400;
  cursor: pointer;
  box-shadow: none;

  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
}
.selectize-custom.error.selectize-control.single .selectize-input {
  border-bottom-color: red;
}
.selectize-custom.selectize-control.single .selectize-input::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  color: var(--main-dark-grey-color);
  position: absolute;
  right: 10px;
  top: 18px;
}
.selectize-custom.selectize-control.single .selectize-input input {
  font-size: 14.5px;
  color: var(--main-dark-grey-color);
}
.selectize-custom .selectize-dropdown.single {
  border: 1px solid rgba(0, 0, 0, .15);
  padding: 8px;
  border-radius: .25rem !important;
  margin-top: 2px;
  box-shadow: none !important;
  right: 0;
  top: 37px;
  animation: fadein .25s;
}
.selectize-custom .selectize-dropdown-content {
  max-height: 160px;
}
.selectize-custom .selectize-dropdown.single .ui-select-choices-row {
  color: #54667a;
  line-height: 16px;
  font-size: 14.5px;
  font-weight: 400;
  padding: 4px 0 4px 2px;
  border-right: 4px;
}
.selectize-custom .selectize-dropdown.single .ui-select-choices-row .option {
  color: #54667a;
  line-height: 17px;
  font-size: 15px;
  font-weight: 400;
  padding: 3px 9px 4px 7px;
}
.selectize-custom .selectize-dropdown.single .ui-select-choices-row:hover {
  background-color: #f5f5f5;
}
.selectize-custom .selectize-dropdown.single .ui-select-choices-row.disabled:hover {
  background-color: transparent;
}
.selectize-custom .selectize-dropdown.single .ui-select-choices-row.disabled .option {
  cursor: default;
}
.selectize-custom .ui-select-highlight {
  font-weight: 400;
  color: var(--main-blue-color);
}

.selectize-custom .selectize-dropdown.single ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}
.selectize-custom .selectize-dropdown.single ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  width: 5px;
  height: 5px;
  background-color: transparent;
  border-radius: 7px;
}
.selectize-custom .selectize-dropdown.single ::-webkit-scrollbar-thumb {
  background: rgb(220, 220, 220);
  width: 5px;
  height: 5px;
  opacity: 0.6;
  display: block;
  border-radius: 7px;
  z-index: 99;
}

