h1 {
    padding-top: var(--spacing-h1);
}
.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%;
}
.to-basket-btn.act {
    display: initial;
}
.prices-list__item.hidden {
    display: none;
}
.popup-basket {
    border-radius: 16px !important;
    padding: 32px 48px !important;
}
.popup-basket h2 {
    font-size: 27px;
    line-height: 36px;
    color: #0E131B;
    margin-bottom: 16px;
    padding-bottom: 0;
    text-align: center;
}
.popup-basket p {
    padding-bottom: 0;
    margin-bottom: 32px;
}
.popup-basket button {
    width: 100%;
}
.popup-basket button:not(:last-child) {
    margin-bottom: 12px;
}
.popup-basket .f-button.is-close-btn {
    display: none;
}
.prices-table .prices-table__item {
    columns: initial !important;
    gap: initial !important;
}
#basket {
    display: grid;
    grid-gap: 80px;
    grid-template-columns: 1fr 1fr;
}
.basket__count {
    margin-bottom: 12px;
}
.basket__total {
    font-size: 27px;
    line-height: 36px;
    font-weight: 600;
    color: #0E131B;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #E8EFF5;
}
#basket-clear {
    background-color: white;
    border: 0;
    text-decoration: underline;
    padding: 0;
}
#create-order {
    max-width: 570px;
    display: flex;
    margin-bottom: 16px;
}
#create-order.hide {
    display: none;
}
#create-order .input-text-field {
    margin-right: 16px;
}
#create-order .input-text {
    min-height: 52px;
    background-color: white;
    border: 1px solid #CBD3DC;
}
#create-order .input-text-field {
    flex-grow: 1;
}
#create-order .button {
    font-size: 17px;
    line-height: 24px;
    padding-left: 24px;
    padding-right: 24px;
}
.success-text {
    display: none;
    margin-bottom: 12px;
}
.success-text.activate {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.success-text__inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.search-empty-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

@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;
    }
    .popup-basket {
        border-radius: 12px !important;
        padding: 16px 24px !important;
    }
    .accordion__item-header {
        pointer-events: none;
    }
    .accordion__item .accordion__item-content {
        max-height: 500px;
    }
    #basket {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}