.toc__wrapepr {
    background-color: var(--blackSecond);
    padding: 52px 0;
}
.toc__wrapepr_odd {
    background-color: unset !important;
}
.toc__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.toc__container > ul a {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}
.toc__container > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.toc__container > ul::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--graySecond);
}
.toc__container > ul a::after {
    height: 3px;
    bottom: -13px;
}
.toc__container > ul a::after {
    background-color: var(--greenPrimary);
    z-index: 5;
}

.toc__container > ul > li {
    /* width: 100%; */
    min-width: max-content;
}

@media (max-width: 1340px) {
    .toc__container {
        overflow-x: scroll;
        overflow-y: visible;
        margin-top: 0;
        padding: 0 0 0 12%;
        margin-left: -12%;
        margin-right: -7%;
        -webkit-overflow-scrolling: touch;
        height: 38px;
    }
    .toc__container > ul {
        gap: 24px;
        width: max-content;
    }
    .toc__wrapepr {
        padding: 44px 0;
    }
    .toc__container > ul > li {
        width: max-content;
    }
    .toc__container > ul a {
        width: max-content;
    }
}
