.form-group .suggest-box {
    position: absolute;
    width: 94%;
    height: 300px;
    overflow-y: scroll;
    z-index: 1;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0.1px 0.3px 0px rgba(0,0,0, 0.5);
    overflow-x: hidden;
}

.suggest-box::-webkit-scrollbar {
    background-color: transparent;
    width: 1px;
}

.suggest-box::-webkit-scrollbar-thumb {
    background-color: #d8d8d8;
    width: 1px;
}

.suggest-box .suggestion-container {
    width: 100%;
    min-width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;

}

.suggest-box .suggestion-container .suggested-item {
    width: 100%;
    /*min-width: 250px;*/
    padding: 1rem;
    text-align: left;
    vertical-align: middle;
    cursor: pointer;
    text-overflow:ellipsis;
}

.suggest-box .suggestion-container .suggested-item:hover {
    background-color: #d8d8d8;
}

.suggest-box .suggestion-container .suggested-item.selected {
    background-color: #d8d8d8;
}


table .suggest-box {
    width: 100px;
    overflow-x: hidden;
    position: absolute;
    z-index: 1;
    background-color: #fff;
}
table .suggest-box .suggestion-container .suggested-item {
    width: 100px;
    /* min-width: 250px; */
    line-height: 2.2;
    overflow: hidden;
    padding: 0 .5rem;
    white-space: nowrap;
    text-align: left;
    vertical-align: middle;
    cursor: pointer;
    text-overflow: ellipsis;
}

