.prices-content {
    position: relative;
}
.button-inline.search-by-field__button input {
    display: none;
}
.button-inline.search-by-field__button:not(.active) {
    cursor: pointer;
}
.prices-content__alphabet {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: white;
    box-shadow: 0 3px 8px 0 rgba(10, 71, 137, .1);
    z-index: 6;
    padding: 8px;
}
.prices-content__alphabet.hidden {
    display: none !important;
    opacity: 0 !important;
}
.prices-content__char {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    text-align: center;
}
.prices-content__char:not(:last-child) {
    margin-bottom: 12px;
}
.prices-content__alphabet-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.prices-content__alphabet-current {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(calc(-12px + -100%), -50%);
    border-radius: 16px;
    min-width: 55px;
    padding: 8px 16px;
    box-shadow: 0 8px 32px 0 rgba(33, 85, 137, .07);
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    text-align: center;
    background-color: white;
}
.analizes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.analizes-header .custom-select {
    max-width: 428px;
}
.to-basket-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--color-akcent);
    background-color: white;
    cursor: pointer;
    border: 0;
    font-size: 21px;
    line-height: 100%;
    box-shadow: 0 3px 8px 0 rgba(10, 71, 137, .1);
}
.to-basket-btn.act {
    display: initial;
}
.prices-list__item.hidden {
    display: none;
}
#pricesList .accordion__item-content--over::after {
    content: none;
}
.search-empty-result {
    max-width: 350px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.search-empty-result h2 {
    color: #0E131B;
    font-size: 27px;
    line-height: 36px;
    padding-bottom: 16px;
}
/* Изменение цвета строк */
.prices-table__item {
    display: flex !important;
    flex-direction: row !important;
    columns: initial !important;
    flex-wrap: wrap;
}
.accordion .prices-table tr {
    max-width: 49%;
}
.accordion .prices-table tr:nth-child(odd) {
    background-color: white;
}
.accordion .prices-table tr:nth-child(4n-3),
.accordion .prices-table tr:nth-child(4n-2) {
    background-color: var(--color-primary-05);
}

@media screen and (max-width: 990px) {
    .prices-content__alphabet-current {
        border-radius: 12px;
        min-width: 45px;
        padding: 6px 10px;
        font-size: 27px;
        line-height: 35px;
    }
    .prices-content__alphabet {
        display: none !important;
        opacity: 0 !important;
    }
    #pricesList .accordion__item-content--over::after {
        content: "";
    }
    .accordion .prices-table tr {
        max-width: 100%;
    }
    .prices-table .prices-table__item {
        gap: var(--spacing);
    }
    .accordion .prices-table tr:nth-child(4n-3),
    .accordion .prices-table tr:nth-child(4n-2) {
        background-color: white;
    }
    .accordion .prices-table tr:nth-child(odd) {
        background-color: var(--color-primary-05);
    }
}