/*==================================================
LIVE SEARCH
==================================================*/

.acd-search{
    position:relative;
}

.acd-search-results-wrapper{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#fff;

    border-radius:12px;

    margin-top:10px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    overflow:hidden;

    display:none;

    z-index:9999;

}

.acd-search-results{

    list-style:none;

    margin:0;

    padding:0;

}

.acd-search-results li{

    border-bottom:1px solid #f2f2f2;

}

.acd-search-results li:last-child{

    border-bottom:none;

}

.acd-search-results a{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 18px;

    text-decoration:none;

    color:#222;

    transition:.3s;

}

.acd-search-results a:hover{

    background:#f8f8f8;

}

.acd-search-results img{

    width:60px;

    height:75px;

    object-fit:cover;

    border-radius:8px;

}

.acd-search-results span{

    display:flex;

    flex-direction:column;

    font-weight:600;

}

.acd-search-results small{

    color:#d62828;

    font-size:14px;

    margin-top:5px;

}

.acd-search-loading{

    padding:25px;

    text-align:center;

    font-size:15px;

}

.acd-no-result{

    padding:25px;

    text-align:center;

    color:#888;

}