.search-count-filters {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-count-filters>div {
    flex: 1;
}

.search-count-filters label {
    margin-right: 8px;
}
.search-page #search-form-btns {
  z-index: 99;
}
.search-page #search-form-btns button {
    width: 117px;
}
.search-form-wrapper {
    width: 100%;
}

.search-page #search-form-btns button img {
    height: 16px;
    filter: invert(82%) contrast(107%);
}

.search-page ul.search-results li {
    background-color: #e7e7e7;
    width: 100%;
    margin: 30px 0;
}

.search-page .search-result_block {
    padding: 10px 30px;
}

.search-page .search-result_block h4 {
    font-size: 20px;
    line-height: 170%;
    font-weight: 700;
    letter-spacing: 7%;
    padding: 10px 0;
}

.search-page .search-result_block p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 7%;
    line-height: 170%;
    margin: 10px 0 0 0;
}

.search-page .result-breadcrumbs {
    padding-bottom: 10px;
}

.search-page .result-breadcrumbs span,
.search-page .result-breadcrumbs a {
    color: #707070;
}

.search-page .result-breadcrumbs span {
    display: inline-block;
    max-width: 400px;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    line-height: normal;
}

.search-page .result-breadcrumbs span::after {
    content: attr(data-fulltext);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: transparent;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    margin-bottom: 6px;
    font-size: 12px;
    z-index: 10;
}

.search-page .result-breadcrumbs span:hover::after {
    opacity: 1;
    pointer-events: auto;
}