.sticky-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .sticky-wrapper {
    display: block;
  }
}

.toc-container .toc-list {
  position: relative;
  margin: 0 0 2rem 24px;
  padding: 0;
}

.toc-container .toc-list .item.is-active .link {
  color: #1ea7fd;
}

.toc-container .toc-list .item.is-active .link:hover {
  color: #1ea7fd;
}

.toc-container .toc-list .item.is-active .link::after {
  background: #1ea7fd;
}

.toc-container .toc-list .item .link {
  display: inline-block;
  position: relative;
  padding: 8px 0;
  z-index: 1;
  line-height: 1.5;
  text-decoration: none;
  color: #707070;
  transition: all 150ms ease-out 0s;
}

.toc-container .toc-list .item .link:hover {
  color: #333333;
}

.toc-container .toc-list .item .link::after {
  content: '';
  position: absolute;
  top: 15px;
  right: auto;
  bottom: auto;
  left: -23px;
  box-shadow: var(--background_color) 0 0 0 4px;
  height: 8px;
  width: 8px;
  background: #bdbdbd;
  border-radius: 2rem;
}

.toc-container .toc-list::after {
  position: absolute;
  top: 12px;
  right: auto;
  bottom: 12px;
  left: -20px;
  width: auto;
  height: auto;
  content: "";
  z-index: 0;
  border-left: 1px solid #bdbdbd;
}

.stuck {
  position: fixed;
  top: 0;
}
