/**
 * Kabyapot Premium Ultimate v6
 * Live Search
 */

.kp-search-form{
    position:relative;
    width:100%;
    max-width:420px;
}

.kp-search-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:50px;
    overflow:hidden;
    background:#fff;
}

.kp-search-input{
    width:100%;
    border:none;
    outline:none;
    padding:12px 18px;
    font-size:15px;
    background:transparent;
}

.kp-search-button{
    width:52px;
    height:46px;
    border:none;
    background:#b30000;
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}

.kp-search-button:hover{
    background:#8d0000;
}

.kp-search-results{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    margin-top:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    z-index:9999;
    max-height:420px;
    overflow-y:auto;
}

.kp-search-item{
    display:flex;
    gap:12px;
    padding:12px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #eee;
    transition:.2s;
}

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

.kp-search-item img{
    width:70px;
    height:55px;
    object-fit:cover;
    border-radius:6px;
}

.kp-search-content{
    flex:1;
}

.kp-search-content h4{
    margin:0 0 5px;
    font-size:15px;
    line-height:1.4;
}

.kp-search-content span{
    font-size:12px;
    color:#777;
}

.kp-loading,
.kp-no-result{
    padding:20px;
    text-align:center;
    color:#777;
}