.search_mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: 100%;
    max-width: 440px;
}
.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: 440px;
    position: relative;
}
.search_form {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    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: 20vh 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: 16px;
    font-weight: 400;
    margin: 0px 5px;
    padding: 4px 8px;
    border-radius: 5px;
}
.search_input {
    background: #FFFFFF33;
    border: 1px solid #FFFFFF4D;
    outline: none;
    color: #fff;
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 10px 50px 10px 16px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
}
.search_button {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
}
/* .search_button svg path{
    fill: #fff;
} */
.autocomplete-suggestions {
    width: 100%;
    max-width: 100%;
    max-height: calc(50vh - 130px) !important;
    position: absolute;
    top: 54px;
    left: 0;
    z-index: 9999;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    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 span{
    display: block;
    margin-left: auto;
    margin-right: 0;
}
.autocomplete-suggestion:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}
.autocomplete-suggestions a {
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    width: 100%;
    column-gap: 10px;
}
.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;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    border-radius: 5px;
    overflow: hidden;
}
.autocomplete-suggestion div.suggestion_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.autocomplete-suggestion div.suggestion_img svg {
    width: 60%;
    height: 60%;
    display: block;
    color: var(--basic-company);
}
.autocomplete-suggestion div, .autocomplete-suggestions span {
    padding: 0;
}
.autocomplete-suggestion p {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}
.autocomplete-suggestion strong {
    color: var(--second-company);
}

@media only screen and (max-width : 1199px) {
    .search_form {
        margin: 20px 0px 0px 0px;
    }
    .search_mobile {
        background: #1B190FCC;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100000;
        -webkit-backdrop-filter: saturate(180%) blur(5px);
        backdrop-filter: saturate(180%) blur(5px);
        display: none;
        max-width: 100%;
        height: 100vh;
    }
    .search_container {
        height: 0;
        padding: 0px 20px;
        max-width: 600px;
        margin: 0 auto;
    }
    .search_input {
        background: #fff;
        color: #000;
    }
    .search_button {
        color: #000;
    }
}