.xdsoft_autocomplete {
  /*	-moz-box-sizing: border-box !important;
  	box-sizing: border-box !important;*/

  div, span {
    /*	-moz-box-sizing: border-box !important;
    	box-sizing: border-box !important;*/
  }

  display: inline;
  position: relative;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  text-align: start;

  .xdsoft_input {
    position: relative;
    z-index: 2;
  }

  .xdsoft_autocomplete_dropdown {
    position: absolute;
    border: $border;
    border-top-color: $dark-color;
    box-shadow: 0px 16px 18px rgba(6, 10, 48, 0.1);
    -webkit-box-shadow: 0px 16px 18px rgba(6, 10, 48, 0.1);
    cursor: default;
    display: none;
    z-index: 1001;
    margin-top: -1px;
    background-color: $white;
    min-width: 100%;
    overflow-x: auto;
    height: 200px;
  }

  .xdsoft_autocomplete_hint {
    position: absolute;
    z-index: 1;
    color: $dark-color !important;
    -webkit-text-fill-color: $dark-color !important;
    text-fill-color: $dark-color  !important;
    overflow: hidden !important;
    white-space: pre  !important;
    box-shadow: 0px 16px 18px rgba(6, 10, 48, 0.1);

    span {
      color: transparent;
      opacity: 0.0;
    }
  }

  .xdsoft_autocomplete_dropdown > {
    .xdsoft_autocomplete_copyright {
      color: $dark-color;
      font-size: 10px;
      text-decoration: none;
      right: 5px;
      position: absolute;
      margin-top: -15px;
      z-index: 1002;
    }

    div {
      background: $white;
      white-space: nowrap;
      cursor: pointer;
      line-height: 1.5em;
      padding: 0.5rem 1.5rem;

      &.active {
        background: #f4f5fb;
        color: #313e6a;
      }
    }
  }
}