.b_nav_by_founded_publications{
    margin: 0 0 1px 0;
    .nav_header{
        --caret_rotate: 270deg;

        width: 100%;
        background: #ebf0ef;
        padding: 6px 11px;
        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;

        font-size: 15px;
        line-height: 16px;

        img{
            height: 22px;
            display: block;

            rotate: var(--caret_rotate);
            transition: 0.3s ease all;
        }

        &:hover{background: #dbe0df;}
    }

    .nav_body{
        width: 100%;
        max-height: calc(100svh - var(--header_heigth) - 34px - 56px - 40px);
        overflow: auto;
        margin: 10px 0;
        display: none;
        .nav_subtitle{
            font-size: 12px;
            color: #333333;
            margin-bottom: 10px;
        }
    }

    &.open{
        .nav_body{display: block;}
        .nav_header{--caret_rotate: 180deg}
    }

    @media(max-width: 1024px){display: none;}
}