.autocomplete__wrapper {
  position: relative;
}

.autocomplete__hint,
.autocomplete__input {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  width: 100%;
  height: calc(1.5em + 1.25rem + 2px);
  margin-bottom: 0;
  padding: .375rem .75rem;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

.autocomplete__input {
  position: relative;
  background-color: white;
}

.autocomplete__hint {
  position: absolute;
  color: #b1b4b6;
}

.autocomplete__input--default {
    /*padding: 5px*/
}

.autocomplete__input--focused {
  color: #495057;
  border-color: #80bdff;
  outline: 0;
    /*outline: 3px solid #fd0;*/
  outline-offset: 0;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 0 2px;
          box-shadow: inset 0 0 0 2px;
  -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
          box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.autocomplete__input--show-all-values {
  padding: 5px 34px 5px 5px;
  cursor: pointer;
}

.autocomplete__dropdown-arrow-down {
  position: absolute;
  z-index: -1;
  top: 10px;
  right: 8px;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.autocomplete__menu {
  overflow-x: hidden;
  width: 100%;
  width: calc(100% - 4px);
  max-height: 342px;
  margin: 0;
  padding: 0;
  color: #495057;
  border: 2px solid #80bdff;
  border-top: 0;
  background-color: #fff;
}

.autocomplete__menu--visible {
  display: block;
}

.autocomplete__menu--hidden {
  display: none;
}

.autocomplete__menu--overlay {
  position: absolute;
  z-index: 100;
  top: 100%;
    /*box-shadow: rgba(0, 0, 0, .256863) 0 2px 6px;*/
  left: 0;
}

.autocomplete__menu--inline {
  position: relative;
}

.autocomplete__option {
  position: relative;
  display: block;
  cursor: pointer;
    /*border-bottom: solid #b1b4b6;*/
  border-width: 0 0;
}

.autocomplete__option > * {
  pointer-events: none;
}

.autocomplete__option:first-of-type {
  border-top-width: 0;
}

.autocomplete__option:last-of-type {
  border-bottom-width: 0;
}

.autocomplete__option--odd {
  background-color: #fafafa;
}

.autocomplete__option--focused,
.autocomplete__option:hover {
  color: #fff;
  border-color: #1d70b8;
  outline: 0;
  background-color: #1d70b8;
}

.autocomplete__option--no-results {
  cursor: not-allowed;
  color: #646b6f;
  background-color: #fafafa;
}

.autocomplete__hint,
.autocomplete__input,
.autocomplete__option {
    /*font-size: 16px;
  line-height: 1.25*/
}

.autocomplete__hint,
.autocomplete__option {
  padding: 5px;
}

@media (min-width: 641px) {
  .autocomplete__hint,
    .autocomplete__input,
    .autocomplete__option {
        /*font-size: 19px;
    line-height: 1.31579*/
  }
}
