/**
 * Minified by jsDelivr using clean-css v4.2.3.
 * Original file: /npm/@tarekraafat/autocomplete.js@10.2.6/dist/css/autoComplete.02.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
.autoComplete_wrapper {
    display: flex;
    position: relative;
}


.autoComplete_wrapper>input {
    width: 100%;
    /* height: 40px;
    padding-left: 10px;
    font-size: 1rem;
    color: #747474;
    border-radius: 0px;
    border: 1px solid rgba(33, 33, 33, .2);
    outline: 0; */
}

.autoComplete_wrapper>input::placeholder {
    color: rgba(123, 123, 123, .5);
    transition: all .3s ease
}

.autoComplete_wrapper>ul {
    position: absolute;
    /* max-height: 226px; */
    max-height: 30vh;
    overflow-y: scroll;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0 0 0 0;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid rgba(33, 33, 33, .1);
    z-index: 1000;
    outline: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15); /*Standard Bootstrap 5 shadow*/
}

.autoComplete_wrapper>ul>li {
    /* height: 38px;
    padding: 10px 20px; */
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    list-style: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    /* font-size: 16px; */
    color: #212121;
    transition: all .1s ease-in-out;
    border-radius: 3px;
    background-color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .15s ease
}

.autoComplete_wrapper>ul>li::selection {
    color: rgba(#fff, 0);
    background-color: rgba(#fff, 0)
}

.autoComplete_wrapper>ul>li:hover {
    cursor: pointer;
    background-color: rgba(123, 123, 123, .1)
}

.autoComplete_wrapper>ul>li mark {
    background-color: transparent;
    color: #000000;
    font-weight: 700
}

.autoComplete_wrapper>ul>li mark::selection {
    color: rgba(#fff, 0);
    background-color: rgba(#fff, 0)
}

.autoComplete_wrapper>ul>li[aria-selected=true] {
    background-color: rgba(123, 123, 123, .1)
}

/* @media only screen and (max-width:600px) {
    .autoComplete_wrapper>input {
        width: 100%
    }
} */

/*# sourceMappingURL=/sm/38debd88dbaf12078724075dd58d53e5259e5e982a7072de58f4a96dab354ff8.map */