#p_finder_canvas {
    display: none;
    z-index: 99998;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
}

#p_finder {
    position: fixed;
    top: 0;
    width: 100vw;
    background: #f8f9fa;
    z-index: 99999;
    display: none;
    padding: 20px;
    min-height: 60vh;
    max-height: 100vh;
    padding-bottom: 80px;
    overflow-x: hidden;
    overflow-y: auto;
}

#p_finder__close
{
    font-size: 48px;
    color: #666;
    display: inline-block;
    float: right;
    text-align: center;
    margin-top: -7px;

}

#p_finder__input {
    background: #fff;
    border: 0;
    box-shadow: none;
    flex: 0 0 50px; /* fixed height */
    font-size: 20px;
    font-weight: 400;
    line-height: 50px;
    margin: 0 0 10px 0; /* add bottom margin */
    outline: 0;
    padding: 0 20px;
    text-overflow: ellipsis;
    border-radius: 8px;
    width: calc(100% - 50px);
}

#p_finder_wrapper {
    display: grid;
    grid-template-columns: 25% auto; /* suggest left (1/3), results right (2/3) */
    grid-template-columns: 100%; /* suggest left (1/3), results right (2/3) */
    gap: 0;
}
#p_finder__suggest {
    display: none;
    grid-column: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
}
#p_finder__right {grid-column: 1;}

#p_finder__see_all_products {

    padding: 10px 20px;
    background: white;
    border-radius: 5px;
    text-align: right;
    width: 100%;
    display: grid;
}

#p_finder__results .product {
    background: white;
    border-radius: 8px;
    padding: 0 30px;
    height: 100%;
}


#p_finder_caption {
    background: white;
    border-radius: 8px;
    padding: 10px 20px;

    display: flex;
    display: none;
    justify-content: space-between;
    width: 100%;
}


