.autoComplete_wrapper {
    display: inline-block;
    position: relative;
    width: 100%;
}

.autoComplete_wrapper>input {
    width: 100% !important;
    margin: 0;
    padding: 12px 50px 12px 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-size: 1rem;
    text-overflow: ellipsis;
    color: rgba(217, 217, 217, 1);
    outline: none;
    border-radius: 10rem;
    border: 2px solid rgba(208, 208, 208, 1);
    background-image: url('/img/search-icon.png');
    background-size: 16px;
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    -webkit-transition: all -webkit-transform 0.4s ease;
}

.autoComplete_wrapper>input::placeholder {
    color: rgba(217, 217, 217, 1);
    transition: all 0.3s ease;
    -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper>input:hover::placeholder {
    color: rgba(217, 217, 217, 1);
    transition: all 0.3s ease;
    -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper>input:focus::placeholder {
    
    font-size: 0.95rem;
    color: rgba(217, 217, 217, 1);
}

.autoComplete_wrapper>input:focus::selection {
    background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper>input::selection {
    background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper>input:hover {
    color: rgba(217, 217, 217, 1);
    transition: all 0.3s ease;
    -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper>input:focus {
    color: rgba(217, 217, 217, 1);
    border: 2px solid rgba(208, 208, 208, 1);
}

.autoComplete_wrapper>ul {
    position: absolute;
    max-height: 226px;
    overflow-y: scroll;
    box-sizing: border-box;
    left: 0;
    right: 0;
    margin: 0.5rem 0 0 0;
    padding: 0;
    z-index: 1;
    list-style: none;
    border-radius: 0.6rem;
    background-color: #fff;
    border: 2px solid rgba(208, 208, 208, 1);
    box-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
    outline: none;
    transition: opacity 0.15s ease-in-out;
    -moz-transition: opacity 0.15s ease-in-out;
    -webkit-transition: opacity 0.15s ease-in-out;
}

.autoComplete_wrapper>ul[hidden],
.autoComplete_wrapper>ul:empty {
    display: block;
    opacity: 0;
    transform: scale(0);
}

.autoComplete_wrapper>ul>li {
    margin: 0.3rem;
    padding: 0.3rem 0.5rem;
    text-align: left;
    font-size: 1rem;
    color: #212121;
    border-radius: 0.35rem;
    background-color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
}

.autoComplete_wrapper>ul>li mark {
    background-color: transparent;
    color: #892abb;
    font-weight: bold;
}

.autoComplete_wrapper>ul>li:hover {
    cursor: pointer;
    background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper>ul>li[aria-selected="true"] {
    background-color: rgba(255, 122, 122, 0.15);
}

@media only screen and (max-width: 600px) {
    .autoComplete_wrapper>input {
        width: 18rem;
    }
}

.mark.mark,
mark {
    background-color: transparent !important;
    padding: 0px;
}