div#listproducts-wrapper {
    max-height: 300px;
    position: absolute;
    top: 40px;
    background-color: white;
    border: 1px solid gray;
    z-index: 100;
    width: calc( 100% + 20px );
    overflow-y: auto;
    overflow-x: hidden;
}

ul#listproducts {
    list-style: none;
    line-height: 1rem;
    margin: 0;
    padding: 0;

}
ul#listproducts li {
    padding: 0.2rem 0.6rem;
    display: flex
}
ul#listproducts li:hover {
    background-color: aliceblue;
    cursor: pointer;

}

ul#listproducts li span.code {
    display: inline-block;
    width: 85px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

ul#listproducts li span.title {
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: calc(100% - 85px );
}

ul#listproducts li span.title:before {
    content: '> '
}

@media screen and (max-width: 1200px) {
    div#listproducts-wrapper {
        width: calc( 100% - 2px);
    }

}