.b-search-error {
    color: #DF2A57;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0px 3px 16px rgba(58, 154, 243, 0.17);
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    max-width: 1564px;
    margin: 0 auto;
}

.b-search-result {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 88px;
    background: #ededed;
    padding: 24px !important;
    box-shadow: 0px 3px 16px rgba(58, 154, 243, 0.17);
    max-width: 1564px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-height: 600px;
    overflow-y: auto;
  overflow-x: hidden;
    max-height: 80vh;
    z-index: 9999;
}

.b-search-result::-webkit-scrollbar {
    width: 3px;
    border-radius: 8px;
}

.b-search-result::-webkit-scrollbar-track {
    background-color: #fff;
}

.b-search-result::-webkit-scrollbar-thumb {
    background-color: #cc0000;
    border-radius: 8px;
}

.b-search-result img {
    width: 45px;
    object-fit: contain;
    height: 45px;
}

.b-search-result .b-search-result__row {
    margin: 0;
    border-bottom: 1px solid #7586A7;
    padding-bottom: 12px;
}

.b-search-result .b-price {
    font-size: 18px;
    padding: 20px 0 0;
}

.--position-relative {
    position: relative;
}

.b-search-title {
    color: #333;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;

}

.b-search-result__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    background: #ffffff;
    margin-bottom: 1px;
}

.b-search-result__item {
    position: relative;
}

.b-search-result__item .__img {
    display: flex;
    justify-content: center;
}

.b-search-result__item .__content .__content_row {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.b-search-result__item .__content .__content_row .__name {

}

.b-search-result__item .__content .__content_row .__name a {
    color: #333;
    font-size: 14px;
}

.b-search-result__item .__content .__content_row .__count {
    background: #ededed;
    padding: 3px;
    border-radius: 4px;
    font-size: 14px;
    width: auto;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.--mb-24 {
    margin-bottom: 21px;
}

.--red-text {
    color: #cc0000;
    font-weight: bold;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 991px) {
    .b-search-result {
        grid-template-columns: 1fr;
        max-height: max-content;
        min-height: auto;
        top: 62px;
        height: calc(100vh - 88px);
        align-content: flex-start;
        box-shadow: none;
    }

    .b-search-error {
        top: 62px;
    }

    .b-products-item {
        align-self: start;
    }

    .b-search-result__sections {
        align-self: start;
    }

    .inline-search-block.fixed.inline-search-block--big .search .search-input {
        height: 62px;
        font-size: 1em;
    }
}


