ul#menu-footer-menu {
    padding: 0;
    margin: 0;

    li {
      margin: 0;
    }
}
#toc_container {
    display: none;
}
.toc-fixed #toc_container {
    display: block;
}
.toc_list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.toc_list li {
  margin: 0;
}

.toc_list a {
    color: #8e95a0;
    font-family: Barlow;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
    text-decoration: none;
    position: relative;

    &:hover {
      color: #20ea65;
      text-decoration: none;
    }
}

.toc_list a.active {
  color: #20ea65;
  font-weight: 600;

  &::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 14px;
    background: linear-gradient(to bottom, #ffa100, #ffcc00);
  }
}