.toc__wrapper {
    background-color: var(--ultraDark);
}
.toc__container {
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 24px; */
    /* flex-wrap: nowrap; */
    padding: 9.5px 0 !important;
    max-width: 940px;
}
.toc__container > ul a {
    color: var(--textMain) !important;
    border-radius: 100px !important;
    font-weight: 400 !important;
    opacity: 0.5;
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
    width: max-content;
}

.toc__container > ul {
    /* display: flex; */
    /* flex-direction: row; */
    /* flex-wrap: nowrap; */
    /* align-items: center; */
    /* gap: 20px; */
    /* justify-content: space-between; */
}
.toc__container > ul li {
    width: max-content;
    /* width: max-content; */
    /* min-width: max-content; */
}

.toc__container > ul a::after {
    bottom: -9.5px !important;
}
.toc__container > ul a:active,
.toc__container > ul a:focus,
.toc__container > ul a:hover {
    opacity: 1 !important;
}
.toc__container > ul a:active::after,
.toc__container > ul a:focus::after,
.toc__container > ul a:hover::after {
    opacity: 1 !important;
}

.toc_mobile {
    display: none;
}
@media (max-width: 1000px) {
    .toc__container {
        max-width: 80vw;
    }
}
@media (max-width: 768px) {
    .toc_mobile {
        display: block;
    }
    .toc_header {
        display: none;
    }
}
