.autocomplete-suggestions {
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.autocomplete-suggestion {
    font-size: 16px;
    padding: 10px 12px;
    color: #666;
    line-height: 1.4;
}
.autocomplete-suggestion:hover, .autocomplete-selected {
    background: #F5F5F5;
}

.faq-no-suggest {
    font-size: 16px;
    color: #666;
    padding: 10px 12px;
}
.faq-no-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    display: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    z-index: 10000;
}

.autocomplete-suggestion small {
    font-size: 12px;
    line-height: 1.25;
}
.autocomplete-suggestion span {
    font-size: inherit;
    color: inherit;
}

.faq-search {
    margin: 0 0 16px;
    position: relative;
}
.faq-search-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid rgba(0,0,0,.25);
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    background: #fff;
}
.faq-search-input:focus {
    box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}
.faq-search.loading .faq-search-input {
    padding-right: 40px;
}
.faq-search.loading::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,.25);
    border-top-color: rgba(0,0,0,.6);
    animation: faq-spin .8s linear infinite;
    pointer-events: none;
}
@keyframes faq-spin { to { transform: rotate(360deg); } }

.panel.faq .faq-search {
    margin: 0 20px 16px;
}
.panel.faq .faq-search.loading::after {
    right: 18px;
}
