/*.autocomplete-suggestions {
    font-size: 12px;
    border: 1px solid #E2E7EB;
    border-radius: 5px;
    background: #FFF;
    overflow: auto;
    color: #333333;
}*/
.autocomplete-suggestions {
    border: 1px solid #dbdfe9;
    border-top: none;
    border-bottom: none;
    border-radius: 0rem 0rem .475rem .475rem;
    background: #FFF;
    overflow: auto;
    color: #4b5675;
}
.autocomplete-suggestions{
  scrollbar-width: thin;
}

.autocomplete-suggestions::-webkit-scrollbar {
  width: 10px;
  height: 8px;
  scrollbar-color: #cccccc white;
}

.autocomplete-suggestions::-webkit-scrollbar-track {
  background: white;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border: 0px solid white;
  border-radius: 3px;
}

/*.autocomplete-suggestion {
    padding: 0 10px;
    overflow: hidden;
    cursor: pointer;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    line-height: 18px;
    width: 100%;
}*/
.autocomplete-suggestion {
    padding: 1rem 1rem;
    overflow: hidden;
    cursor: pointer;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
    width: 100%;
    border-bottom: 1px solid #dbdfe9;
    font-size: 1.3rem;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #00a86b;
    display: contents;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}