/* Стили сайта */

.searchContainerInner {
    position: relative;
}

#searchResult, #searchOverlap {
    display: none !important;
}

/* Стили компонента */

.live-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}

.live-search.active {
    display: block;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1); 
    padding: 8px 0 8px 0;
    height: 400px;
    overflow-y: auto;
}

.live-search__item {
    display: block;
    line-height: 1.2;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: 500ms linear; 
}

.live-search__item:hover {
    color: #d30000;
    transition: 500ms linear;
}

.live-search__line {
    background-color: #efefef;
    height: 1px;
    margin: 8px 0;
}

.live-search__title {
    font-weight: bold;
    color: #666;
    padding: 8px 15px;
    line-height: 1.2;
}

.live-search::-webkit-scrollbar {
    width: 7px;
}

.live-search::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 4px;
}

.live-search::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.live-search::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}
