

/* Start:/bitrix/components/mycomponent/tableofcontents/templates/.default/style.css?17797024632094*/
.table-of-contents-wrapper {
    display: block;
    width: 100%;
    margin: 20px 0 30px;
    padding: 20px 24px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    clear: both;
}

.table-of-contents-wrapper p {
    margin: 0 0 14px;
    padding: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
}

#table-of-contents {
    display: block;
}

.toc-list {
    counter-reset: toc-h2;
}

.toc-item {
    position: relative;
    margin: 7px 0;
    line-height: 1.45;
}

.toc-item a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.toc-item a:hover {
    color: #000;
    border-bottom-color: #000;
}

/* Уровни вложенности */
.toc-level-2 {
    margin-left: 0;
    font-weight: 600;
    counter-increment: toc-h2;
    counter-reset: toc-h3;
}

.toc-level-2::before {
    content: counter(toc-h2) ". ";
    font-weight: 600;
}

.toc-level-3 {
    margin-left: 20px;
    counter-increment: toc-h3;
    counter-reset: toc-h4;
}

.toc-level-3::before {
    content: counter(toc-h2) "." counter(toc-h3) ". ";
}

.toc-level-4 {
    margin-left: 40px;
    counter-increment: toc-h4;
    counter-reset: toc-h5;
}

.toc-level-4::before {
    content: counter(toc-h2) "." counter(toc-h3) "." counter(toc-h4) ". ";
}

.toc-level-5 {
    margin-left: 60px;
    counter-increment: toc-h5;
}

.toc-level-5::before {
    content: counter(toc-h2) "." counter(toc-h3) "." counter(toc-h4) "." counter(toc-h5) ". ";
}

/* Отступ при переходе к заголовку */
.text_blok h2,
.text_blok h3,
.text_blok h4,
.text_blok h5 {
    scroll-margin-top: 120px;
}

@media (max-width: 767px) {
    .table-of-contents-wrapper {
        padding: 16px;
        margin: 16px 0 24px;
    }

    .table-of-contents-wrapper p {
        font-size: 16px;
    }

    .toc-level-3 {
        margin-left: 14px;
    }

    .toc-level-4 {
        margin-left: 24px;
    }

    .toc-level-5 {
        margin-left: 34px;
    }
}
/* End */
/* /bitrix/components/mycomponent/tableofcontents/templates/.default/style.css?17797024632094 */
