rad-ui-autocomplete {
  .autocomplete__input-wrap {
    position: relative;
  }

  .autocomplete__dropdown {
    top: 100%;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-top: -4px;
    margin-left: 15px;
    margin-right: 15px;
    box-sizing: border-box;
    position: absolute;
    width: calc(100% - 30px);
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top-color: #e6e6e6;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    left: 0;
  }

  .autocomplete__list {
    padding-left: 0;
    overflow-y: scroll;
    max-height: 180px;
  }

  .autocomplete__option {
    color: #495057;
    cursor: pointer;
    list-style: none;
    line-height: 30px;
    margin-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    &:hover {
      background-color: #f5faff;
    }
  }

}
