.bxpp,
.bxpp * {
    /* Reset */
    margin: 0;
    box-sizing: border-box;
}

.bxpp {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bxpp_search {
    position: relative;
}

.bxpp_search-input-container {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
}

.bxpp_search-results {
    z-index: 999;
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    width: 100%;
    max-width: 600px;
    max-height: 330px;
    overflow: scroll;
    border: 1px solid #8c8f94;
    background-color: white;
}

.bxpp_search:focus-within .bxpp_search-results {
    display: block;
}

.bxpp_search-result {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
}

.bxpp_search-result-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.bxpp_search-result.clickable {
    cursor: pointer;
}

.bxpp_search-result.clickable:hover {
    background-color: #dcdcde;
}

.bxpp_selected-products-viewport {
    max-height: 300px;
    overflow: scroll;
}

.bxpp_selected-product-image-column {
    width: 40px;
}

.bxpp_selected-product-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
