.search_mobile {
    background: rgba(0,0,0,.9);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.search_close {
    color: rgba(255,255,255,.5);
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: color .5s;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.search_close svg {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 8;
}
.search_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 660px;
    height: 100%;
    padding: 0px 20px;
    position: relative;
    /* z-index: 2; */
}
.search_form {
    display: block;
    width: 100%;
    height: 60px;
    margin: 20px 0px 0px 0px;
    position: relative;
}
.search_text,
.search_text_mobile {
    color: rgba(255,255,255,.6);
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    height: 20px;
    line-height: 20px;
    margin: 30vh 0px 0px 0px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.search_text_mobile{
    font-size: 22px;
}
.search_esc {
    border: 1px solid rgba(255,255,255,.6);
    font-size: 12px;
    font-weight: 400;
    margin: 0px 5px;
    padding: 4px 8px;
    border-radius: 12px;
}
.search_input {
    background: #fff;
    border: none;
    outline: none;
    color: #000;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 10px 60px 10px 30px;
    border-radius: 12px;
}
.search_button {
    background: rgba(0,0,0,0);
    border: none;
    outline: none;
    color: rgba(0,0,0,.8);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
}
.search_button svg path{
    fill: #000;
}
.autocomplete-suggestions {
    width: 100%;
    max-width: 660px;
    max-height: calc(50vh - 130px) !important;
    position: absolute;
    /* top: 70px;
    left: 0; */
    z-index: 9999;
    border-radius: 12px;
}
.autocomplete-suggestions {
    background: #fff;
    color: #030303;
    display: block;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
}
.autocomplete-suggestion {
    width: 100%;
    padding: 10px;
    transition: background .5s;
    display: flex;
    align-items: center;
}
.autocomplete-suggestions a {
    color: #000;
    max-width: 380px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    text-decoration: none;
    margin-right: 15px;
}
.autocomplete-suggestions span{
    display: block;
    margin-left: auto;
    margin-right: 0;
}
.autocomplete-suggestion div, .autocomplete-suggestions span {
    padding: 0;
    width: auto!important;
}
.autocomplete-suggestion div{
    margin-right: 15px;
    min-width: 50px;
    max-width: 50px;
}
.suggestion_price {
    font-weight: 700;
    margin-left: auto;
    margin-right: 10px;
    white-space: nowrap;
}
.autocomplete-suggestion div.suggestion_img {
    width: 65px !important;
    text-align: center;
}
.suggestion_img {
    min-width: 65px;
}