.fast-search-input-wrapper{
    display:flex;
    align-items:center;
    position:relative;
    background:white;
    border-radius: 4px;
    
}

.fast-search-icon{
    position:absolute;
    left:20px;
    width:20px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.fast-product-search{
    padding-left:50px !important;
}

.fast-product-search{

    width:100%;
    height:56px;

    padding:0 18px 0 60px;

    position:relative;

    z-index:2;

    background:transparent;

}

.fast-typing-placeholder{
    position:absolute;
    left:60px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    font-size:15px;
    pointer-events:none;
    white-space:nowrap;
    transition:.2s;
}


.fast-search-wrapper {
    position: relative;

    flex: 1 1 auto;

    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.fast-search-input-wrapper {
    position: relative;
}

.fast-search-icon{

    position:absolute;

    left:20px;

    top:50%;

    transform:translateY(-50%);

    font-size:18px;

    color:#888;

    z-index:2;

    pointer-events:none;

}


.fast-product-search:focus {
    border-color: #111;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.fast-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #f3f4f6;

    /* Show around 10 results then scroll */
    max-height: 650px;

    scrollbar-width: thin;
    scrollbar-color: #c5c5c5 #f5f5f5;
}

.fast-search-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    text-decoration: none;
    transition: .2s;
    border-bottom: 1px solid #f5f5f5;
}

.fast-search-item:last-child {
    border-bottom: none;
}

.fast-search-item:hover {
    background: #DDDDDD;
}

.fast-search-item img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    background: #f3f4f6;
}

.fast-search-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    color: #111827;
    font-weight: 600;
}

.fast-search-content span {
    font-size: 13px;
    color: #16a34a;
    font-weight: 600;
}

.no-result {
    padding: 18px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.fast-search-results:empty {
    display: none;
}