.zh-select-autocomplete {
  position: relative;
}
.zh-select-autocomplete .zh-select-autocomplete.focused {
  border-color: var(--color-main);
}
.zh-select-autocomplete .selected {
  background-color: var(--color-main);
  color: white !important;
}
.zh-select-autocomplete .show-select {
  display: none;
  transition: all 0.2s ease-in-out;
}
.zh-select-autocomplete .zh-select-multiple {
  padding-right: 25px;
}
.zh-select-autocomplete .value,
.zh-select-autocomplete .editable {
  display: inline-block;
  font-size: 13px;
  height: 26px;
  line-height: 26px;
  margin-top: -3px;
  width: 100%;
  margin-bottom: 20px;
}
.zh-select-autocomplete .editable {
  border: none;
}
.zh-select-autocomplete .editable:focus {
  outline: none;
}
.zh-select-autocomplete .view-more {
  cursor: inherit;
  display: inline-block;
  font-size: 13px;
  padding: 7px 20px;
  overflow: hidden;
  color: var(--color-main);
}
.zh-select-autocomplete .list-items {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: white;
  position: fixed;
  z-index: 1033;
  max-height: 190px;
  height: auto;
  overflow: auto;
  color: var(--color-text);
  cursor: pointer;
  width: 100%;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.zh-select-autocomplete .list-items > span {
  cursor: inherit;
  display: inline-block;
  font-size: 13px;
  padding: 7px 20px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.zh-select-autocomplete .list-items > span:hover {
  background-color: var(--color-selected);
  color: var(--color-text) !important;
  text-shadow: 0px 1px white;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.autocomplete-loading-icon {
  position: absolute;
  height: -webkit-fill-available;
  background-color: #ffffff;
  display: none;
}