.id-filter {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 16px;
    border-radius: 16px;
    background-color: #fff;
    color:  #0076ff;
    min-height: 74px;
    max-width: 500px;
    text-decoration: none;

    border: 1px solid #dfe3eb;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.08), 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    cursor: default;

    padding: 24px 24px 16px 24px;
    margin-bottom: 16px;
}

/* Mobile + */
@media (max-width: 805px) {

    .id-filter {
        border-radius: 8px;
    }
}


/* Title (с logo) */
.id-filter-title-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;
}

.id-filter-title-logo > div {
    display: flex;
    align-items: center;
    gap: 16px;

    font-family: SF Pro Display;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #242a46;
}

.id-filter-title-logo img {
    width: 40px; /*56px;**/
    height: 40px; /*56px;**/
}

.id-filter-title-logo-title {
    font-family: SF Pro Display;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #242a46;
    margin-bottom: 3px; /*6px;*/
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.id-filter-title-logo-subtitle {
    font-family: SF Pro Display;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #888888;
}

/* Кнопка Закрыть */
.id-filter-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    z-index: 10;
}


/* Tabs (segmented control) */
.id-filter-tabs {
    margin-bottom: 16px;
}

.id-filter-segmented {
    display: flex;
    background: #f5f5f5;     /* общий светлый фон */
    border-radius: 16px;    /* капсула */
    overflow: hidden;        /* чтобы углы не вылезали */
}

.id-filter-tab {
    flex: 1;
    height: 40px;
    border: none;
    background: transparent;
    color: #242b4b;
    cursor: pointer;
    /*transition: background 0.2s, color 0.2s;*/

    font-family: SF Pro Display;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

.id-filter-tab[aria-selected="true"] {
    background: #242b4b;     /* тёмный активный */
    color: #fff;
    border-radius: 16px;    /* <-- скругление у активного таба */

    font-family: SF Pro Display;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

.id-filter-panel { display: none; }
.id-filter-panel[aria-hidden="false"] { display: block; }
