
.fi_pros_cons__wrapper {
    display: flex;
    flex-wrap: wrap;
    border-radius: 24px;
    background: var(--surface-3, #F2F6FA);
    padding: 24px;
    column-gap: 16px;
    margin: 24px 0;
    overflow: hidden;
}

.fi_pros_cons__wrapper.fi_pros_cons__wrapper--no-desk > h3 {
    margin-bottom: 24px;
}

.fi_pros_cons__description {
    width: 100%;
}

.fi_pros_cons__wrapper-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    row-gap: 24px;
    color: var(--text-secondary, #757575);
}

.fi_pros_cons__wrapper > div:not(.fi_pros_cons__section),
.fi_pros_cons__wrapper > h2, .fi_pros_cons__wrapper > h3 {
    width: 100%;
}

.fi_pros_cons__wrapper h2, .fi_pros_cons__wrapper h3 {
    margin-top: 0;
    margin-bottom: 4px;
}

.fi_pros_cons__section {
    width: calc(50% - 8px);
    min-width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/*.fi_pros_cons__buttons {*/
/*    display: none;*/
/*}*/

/*.fi_pros_cons__button {*/
/*    padding: 12px 6px;*/
/*    border-radius: 24px;*/
/*    color: var(--text-primary, #000);*/
/*    font-size: 16px;*/
/*    font-style: normal;*/
/*    font-weight: 700;*/
/*    line-height: 20px;*/
/*    width: calc(50% - 4px);*/
/*    background: white;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    text-align: center;*/
/*    overflow: hidden;*/
/*    white-space: nowrap;*/
/*    text-overflow: ellipsis; /*/
/*}*/

/*.fi_pros_cons__button.active {*/
/*    background: var(--accent-primary, #005293);*/
/*    color: white;*/
/*}*/

.fi_pros_cons__item {
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--text-primary, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.fi_pros_cons__item-title {
    color: var(--text-primary, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 4px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.fi_pros_cons__item-title::before {
    content: '';
    display: flex;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-image: url("../images/pros.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.fi_pros_cons__section_cons .fi_pros_cons__item-title::before {
    background-image: url("../images/cons.png");
}

@media screen and (max-width: 991px) {
    .fi_pros_cons__wrapper  {
        padding: 16px;
        flex-flow: column;
    }

    .fi_pros_cons__wrapper h2,
    .fi_pros_cons__wrapper h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .fi_pros_cons__section {
        width: 100%;
    }

    .fi_pros_cons__wrapper-items {
        margin-top: 0;
        flex-direction: column;
        row-gap: 16px;
    }

    .fi_pros_cons__wrapper.fi_pros_cons__wrapper--no-desk > h3 {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 298px) {
    .fi_pros_cons__buttons {
        flex-direction: column;
    }

    .fi_pros_cons__button {
        width: 100%;
    }
}