.autocomplete-searcher {
  position: relative;
  &__secondary-content {
    box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.16);
    z-index: 20;
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    left: 0;
    padding: 10px;
    background: $white;
    border: 1px solid $gray-border-color;
    border-top: 0;
    border-radius: 0 0 4px 4px;
  }
  &__suggestions {
    &-list {
      background-color: $white;
      max-height: rem-calc(220);
      overflow: auto;
    }
    &-item {
      border-bottom: 1px solid $gray-border-color;
      padding: $input-padding;
      &:hover {
        background: $select-option-bg-color;
        cursor: pointer;
      }
      &--selected {
        background-color: $select-option-bg-color;
      }
    }
  }
}