.autoComplete_wrapper {
    display: inline-block;
    position: relative;
    border-radius: 52px;
}

.autoComplete_wrapper>input {

    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-overflow: ellipsis;
    outline: 0;
    border: 0;
    padding-top: 26px;
    background-color: transparent;
}

.autoComplete_wrapper ul {
    position: absolute;
    max-height: 226px;
    overflow-y: scroll;
    box-sizing: border-box;
    right: 0;
    margin: .5rem 0 0 0;
    padding: 0;
    z-index: 1;
    list-style: none;
    background-color: #fff;
    outline: 0;
    transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    -webkit-transition: opacity .15s ease-in-out;
    padding: 0 20px;
    border-radius: 16px;
    background: #FFF;
    overflow: hidden;
    padding-bottom: 0;
    min-height: 298px;
    top: 75px;
    left: -10px;
}

@media only screen and (min-width: 600px) {
    .autoComplete_wrapper ul {
        padding: 20px;
        border: 1px solid rgba(33, 33, 33, .07);
        box-shadow: 0 3px 6px rgba(149, 157, 165, .15);
        top: 85px;
        width: 515px;
    }
}

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

.autoComplete_wrapper>ul>li {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 1rem;
    color: #212121;
    background-color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .2s ease;
    border-bottom: thin solid #dddddd;
    padding: 16px 0;
}

.autoComplete_wrapper>ul>li:last-child {
    border-bottom: 0;
}

.autoComplete_wrapper>ul>li mark {
    background-color: transparent;
    color: #ff7a7a;
    font-weight: 700
}
