.ajax-search-container {
    position: relative;
}

#ajax-search-field {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

#ajax-search-results {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;
}

#ajax-search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#ajax-search-results li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

#ajax-search-results li img {
    max-width: 50px;
    max-height: 50px;
    margin-right: 10px;
    vertical-align: middle;
}

#ajax-search-results a {
    text-decoration: none;
    color: #333;
}
#ajax-search-submit {
    color: white;
    padding: 11px;
    line-height: 0;
}
 
#ajax-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
}
 
.nxs_cats:not(:empty) {
    background-color: #cc497b;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    margin-left: 10px;
    margin-top: 10px;
    display: inline-block;
    margin-left: auto;
}
#ajax-search-results .nxs_cats a {
    color: white;
    font-weight: bold;
}
.nxs_li_t {
    background: #f3f3f3;
}

.nxs_spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    animation: spin 1s linear infinite;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #d4d4d4;
    border-top-color: #cc497b;

}

 
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
 
.pti_ad_listing {
    color: #ffcc00;
    margin-right: 5px;
}
.pti_ad_listing::before {
    content: "✪";
}

