:root{
    --nb-search-suggestions-1-title-font-size: var(--nb-font-size-16);
    --nb-search-suggestions-1-title-font-weight: var(--nb-font-semibold);
    --nb-search-suggestions-1-title-line-height: 24px;

    --nb-search-suggestions-1-color: var(--nb-text-color-primary);
    --nb-search-suggestions-1-font-size: var(--nb-font-size-16);
    --nb-search-suggestions-1-font-weight: var(--nb-font-weight-400);
    --nb-search-suggestions-1-link-line-height: 24px;

    --nb-search-suggestions-1-hover-color: var(--nb-spec-color);
    --nb-search-suggestions-1-hover-bg: var(--nb-color-white);

    --nb-search-suggestions-1-border-color: var(--nb-border-color);
    --nb-search-suggestions-1-bg-color: transparent;

    --nb-search-suggestions-1-icon-font-size: var(--nb-icon-size-l);
}

.nb-search-suggestions-1 {
    background-color: var(--nb-search-suggestions-1-bg-color);
}

.nb-search-suggestions-1 .nb-suggestions-list-title {
    font-size: var(--nb-search-suggestions-1-title-font-size);
    font-weight: var(--nb-search-suggestions-1-title-font-weight);
    line-height: var(--nb-search-suggestions-1-title-line-height);
    border-bottom: var(--nb-border-width) var(--nb-border-style) var(--nb-search-suggestions-1-border-color);
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 5px;
}

.nb-search-suggestions-1 .nb-items-wrapper .nb-link {
    color: var(--nb-search-categories-2-color);
    font-size: var(--nb-search-categories-2-font-size);
    font-weight: var(--nb-search-categories-2-font-weight);
}

.nb-search-suggestions-1 .nb-items-wrapper .nb-link:hover,
.nb-search-suggestions-1 .nb-items-wrapper .nb-link:focus {
    color: var(--nb-search-categories-2-hover-color);
}

.nb-search-suggestions-1 .nb-items-wrapper .nb-link:hover .nb-slider-item,
.nb-search-suggestions-1 .nb-items-wrapper .nb-link:focus .nb-slider-item {
    background-color: var(--nb-search-categories-2-hover-bg);
}

.nb-search-suggestions-1 .nb-items-wrapper {
    max-height: 135px;
    overflow-y: auto;
}

.nb-search-suggestions-1 .nb-items-wrapper .nb-link .nb-icon {
    font-size: var(--nb-search-suggestions-1-icon-font-size);
    color: var(--nb-search-suggestions-1-color);
}

.nb-search-suggestions-1 .nb-items-wrapper .nb-link:hover .nb-custom-text-with-icon-1 .nb-icon {
    color: var(--nb-search-suggestions-1-hover-color);
}

@media screen and (max-width: 992px) {
    :root {
        --nb-search-suggestions-1-title-font-size: var(--nb-font-size-14);
        --nb-search-suggestions-1-link-font-size: var(--nb-link-xs);
    }

    .nb-search-suggestions-1 .nb-suggestions-list-title{
        display: none;
    }

    .nb-search-suggestions-1 .nb-items-wrapper .nb-custom-text-with-icon-1 {
        padding-left: 0;
    }
}