/* .typeahead {
    position: relative;
    width: 100%;
    text-align: left;
    vertical-align: top;
    padding-bottom: 2.5em;
}
.typeahead-input {
    border-color: transparent;
    z-index: 10;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: right 10px;
    background-size: 28px 18px;
}
.typeahead-input-has-selection {
    background-color: #f5f5f5;
    border: 1px solid #4c4845;
    color: #008fca;
}
.typeahead-typeahead {
    color: rgb(128, 128, 128);
    position: absolute;
    z-index: 5;
    text-align: start;
    background-color: rgb(255, 255, 255);
} */
.typeahead-suggestions {
    position: absolute;
    top: 30px;
    overflow-y: auto;
    color: #666666;
    border-radius: 3px;
    padding: 0;
    background-color: #f5f5f5;
    width: 90%;
    max-height: 18em !important;
    border: 1px solid #e0e0e0;
    z-index: 100;
}
ul.typeahead-suggestions {
    list-style-type: none;
    padding-left: 0;
    margin-top: 3px;
}
ul.typeahead-suggestions>li {
    padding: 6px !important;
    font-size: 0.9em;
    border-bottom: 1px solid #e0e0e0;
    height: 30px;
}
ul.typeahead-suggestions>li.suggestion:hover{
    background-color: #008fca;
    color: #ffffff;
    cursor: pointer;
}
.typeahead-suggestion-active {
    background-color: #008fca;
    color: #ffffff;
}
.suggestion>.suggestionValue{
    color: #adadad
}
.input-group-text {
    font-size: 12px;
}