        .autocomplete-items {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #bebebe;
            border: 1px solid #444;
            z-index: 9999;
            max-height: 250px;
            overflow-y: auto;
            display: none;
        }

        .autocomplete-items div {
            padding: 10px;
            cursor: pointer;
            color: rgb(0, 0, 0);
        }

        .autocomplete-items div:hover {
            background: #f0f0f0;
        }

        .image-brand-slider {
            display: flex;
            align-items: center;
            /* Vertical centering */
            justify-content: center;
            /* Horizontal centering */
            flex-wrap: wrap;
            padding: 1rem;
        }

        .image-brand-slider img {
            width: 150px;
            height: 100px;
            object-fit: contain;
            margin: 10px;
        }

        @media only screen and (max-width: 600px) {
            .image-brand-slider img {
                height: 50px;
                width: auto;
            }
        }
