.autocomplete {
        position: fixed;
        display: flex;
        width: inherit;
    }

    input {
        padding: 10px;
        font-size: 16px;
        border-radius: 5px;
        border: 1px solid #ddd;
        width: 100%;
    }

    #suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999999;
        display: block;
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #fff;
        border-top: 0;
        overflow: auto;
        max-height: 200px;
    }

    /* #suggestions_products {
        display: block;
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #fff;
        border-top: 0;
        overflow: auto;
        max-height: 200px;
        border: 1px solid #000;
    } */

    #suggestions li {
        display: flex;
        padding: 10px;
        cursor: pointer;
        border: 1px solid #000;
    }

    #suggestions_products {
        position: absolute;
        display: none;
        width: 100%;
        border-radius: 10px;
        background-color: #fff;
        z-index: 99;
        list-style: none;
        max-height: 200px;
        border: 2px solid #E5E7E9;
        overflow: auto;
        margin: 0;
        padding: 0;
    }

    #suggestions_products li {
        font-size: 16px;
        color: #685443;
        padding: 10px 10px 5px 10px;
        cursor: pointer;
        margin: 10px;
    }

    #suggestions_products li p {
        font-size: 16px;
        color: #685443 !important;
    }

    #suggestions li img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        margin-right: 10px;
    }

    #suggestions_products li img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        margin-right: 10px;
    }

    @media screen and (max-width: 1075px) {
        .autocomplete {
            position: relative;
            width: 90%;
        }
    }