.autocomplete-input-container {
    position: relative;
}
.autocomplete-selected {
    max-height: 90px;
    overflow-y: auto;
    display: flex;
    flex-flow: row wrap;
    padding: 4px 8px;
    background: #FFF;
}
.autocomplete-selected .autocomplete-option {
    background-color: rgba(9,30,66,.04);
    margin: 2px 7px 2px 0;
    font-size: 14px;
    padding: 1px;
    cursor: default;
    border-radius: 3px;
}
.autocomplete-selected .autocomplete-option .member-container {
    padding: 5px 8px;
    min-height: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.autocomplete-selected .autocomplete-option .member-container .member-info {
    font-size: 14px;
    line-height: 20px;
    min-height: 20px;
}
.autocomplete-selected .autocomplete-option .member-container .member-info .full-name {
    max-width: 190px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 20px;
}
.autocomplete-selected .autocomplete-option .member-container .icon-close:before {
    content: "\e5cd";
}
.autocomplete-selected .autocomplete-option .member-container .icon-close {
    height: 16px;
    line-height: 16px;
    padding-left: 4px;
    font-size: 16px;
    width: 20px;
    display: inline-block;
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    text-decoration: none;
    vertical-align: bottom;
}
.member-container span {
    cursor: pointer;
}
.autocomplete-selected .autocomplete-option .member-container .icon-close:focus{
    color: #555;
    text-decoration: none;
    outline: none;
}

.autocomplete-selected .autocomplete-input {
    font-size: 14px;
    height: 24px;
    margin: 3px 7px 3px 0;
    flex: 1;
    min-width: 10px;
    min-height: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    flex: 1 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    padding: 0;
    width: auto;
    max-width: 100%;
    min-height: 36px;
}

.autocomplete-input:focus {
    outline: none;
}

.show-loader {
    position: absolute;
    top: 45px;
    left: calc(50% - 25px);
}
.show-loader img {
    width: 50px;
}