.kmr-smart-search-shell {
    position: relative;
}

.kmr-search-suggestions {
    position: fixed;
    z-index: 10000;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    border: 1px solid #d7dde7;
    border-radius: .75rem;
    background: #fff;
    box-shadow: 0 .8rem 2.2rem rgba(16, 42, 86, .14);
}

.kmr-search-suggestions[hidden] {
    display: none !important;
}

.kmr-search-suggestion {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem .8rem;
    color: #102a56;
    text-decoration: none;
    border-bottom: 1px solid #edf0f4;
}

.kmr-search-suggestion:last-child {
    border-bottom: 0;
}

.kmr-search-suggestion:hover,
.kmr-search-suggestion.is-active {
    background: #f3f6fa;
}

.kmr-search-suggestion-type {
    flex: 0 0 auto;
    min-width: 4.8rem;
    color: #667085;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.kmr-search-suggestion-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .08rem;
}

.kmr-search-suggestion-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kmr-search-suggestion-copy small {
    color: #667085;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kmr-favorites-bar {
    border-bottom: 1px solid #e3e7ed;
    background: #f8fafc;
}

.kmr-favorites-inner {
    display: flex;
    align-items: center;
    gap: .45rem;
    min-height: 2.7rem;
    overflow-x: auto;
    padding-top: .4rem;
    padding-bottom: .4rem;
    scrollbar-width: thin;
}

.kmr-favorites-label {
    flex: 0 0 auto;
    color: #7a5b00;
    font-size: .8rem;
    font-weight: 800;
    white-space: nowrap;
}

.kmr-favorite-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 1.85rem;
    padding: .25rem .55rem;
    border: 1px solid #d7dde7;
    border-radius: 999px;
    background: #fff;
    color: #102a56;
    font-size: .78rem;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.kmr-favorite-chip:hover {
    border-color: #b7c2d2;
    background: #f1f5f9;
}

a.kmr-is-favorite-link::after {
    content: " ★";
    color: #b77900;
    font-size: .78em;
    font-weight: 800;
}

@media (max-width: 680px) {
    .kmr-search-suggestion-type {
        min-width: 4rem;
    }

    .kmr-favorites-inner {
        padding-left: .1rem;
        padding-right: .1rem;
    }
}
