/**
 * AutoComplete Styles
 */

.autoComplete_wrapper {
    position: relative;
    display: inline-block !important;
    width: 100% !important;
}

.autoComplete_wrapper > input {
    width: 100% !important;
    box-sizing: border-box !important;
}

.autoComplete_wrapper > ul {
    position: absolute;
    max-height: 226px;
    overflow-y: scroll;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0;
    margin: .5rem 0 0 0;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid rgba(33, 33, 33, .1);
    z-index: 9999 !important;
    outline: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.autoComplete_wrapper > ul > li {
    padding: 10px 20px;
    list-style: none;
    text-align: left;
    font-size: 16px;
    color: #212121;
    border-radius: 3px;
    background-color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .2s ease;
    cursor: pointer;
}

.autoComplete_wrapper > ul > li:hover,
.autoComplete_wrapper > ul > li[aria-selected="true"] {
    background-color: #f5f5f5;
}

.autoComplete_wrapper > ul > li mark {
    background-color: transparent;
    color: #ff7a7a;
    font-weight: 700;
}

.autoComplete_wrapper .no_result {
    padding: 10px 20px;
    color: #999;
    font-style: italic;
}

.autoComplete_wrapper > ul::-webkit-scrollbar {
    width: 8px;
}

.autoComplete_wrapper > ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.autoComplete_wrapper > ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.autoComplete_wrapper > ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}