/* ==========================
   WooCommerce Live Search
========================== */

.wc-live-search-wrap{
    position:relative;
    width:100%;
    max-width:500px;
    margin:0 auto;
}

/* Search Input */

#wc-live-search{
    width:100% !important;
    height:50px;
    padding:0 60px 0 20px;
    border:1px solid #dcdcdc;
    border-radius:50px;
    background:#fff;
    font-size:15px;
    color:#333;
    outline:none;
    box-sizing:border-box;
    transition:.3s;
}

#wc-live-search:focus{
    border-color:#0073aa;
    box-shadow:0 0 8px rgba(0,115,170,.2);
}

/* Search Button */

#wc-search-btn{
    position:absolute !important;
    top:50%;
    right:6px;
    transform:translateY(-50%);

    width:40px !important;
    height:40px !important;

    border:none !important;
    border-radius:50%;

    background:#0073aa;
    color:#fff;

    display:flex !important;
    align-items:center;
    justify-content:center;

    padding:0 !important;
    margin:0 !important;

    cursor:pointer;

    min-width:40px;
    max-width:40px;

    z-index:100;
}

#wc-search-btn:hover{
    background:#005f8d;
}

#wc-search-btn i,
#wc-search-btn svg,
#wc-search-btn span{
    font-size:18px;
    line-height:1;
    color:#fff;
}

/* Ajax Result Box */

#wc-live-results{
    display:none;
    position:absolute;
    top:58px;
    left:0;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    overflow:hidden;
    max-height:400px;
    overflow-y:auto;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    z-index:99999;
}

/* Result Item */

.wc-search-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #f2f2f2;
    transition:.3s;
}

.wc-search-item:hover{
    background:#f8f8f8;
}

.wc-search-item:last-child{
    border-bottom:none;
}

.wc-search-item img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.wc-search-item strong{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:5px;
}

.wc-search-item span{
    display:block;
    color:#008000;
    font-size:14px;
    font-weight:600;
}

.no-result{
    padding:15px;
    text-align:center;
    color:#777;
}

/* Responsive */

@media(max-width:767px){

    .wc-live-search-wrap{
        max-width:100%;
    }

    #wc-live-search{
        height:46px;
        padding-right:55px;
    }

    #wc-search-btn{
        width:36px !important;
        height:36px !important;
        right:5px;
    }

}