#sticky-toc {
  display: none;
}
@media (min-width: 993px) {
  #sticky-toc {
    display: block;
    position: fixed;
    top: 0;
    right: 20px;
    width: 250px;
    height: 40px;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    font-size: 0.8em;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
  }
  #sticky-toc.visible {
    opacity: 1;
    transform: translateY(0);
  }
  #sticky-toc:hover {
    height: auto;
    max-height: 80vh;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}
#sticky-toc .toc-content {
  padding: 10px;
}
#sticky-toc h4 {
  font-weight: bold;
  font-size: 1.1em;
  color: rgb(37.8571428571, 121.1428571429, 49.2142857143);
  padding: 10px;
  background-color: rgb(240.1428571429, 250.3571428571, 241.5357142857);
  margin: -10px;
  margin-bottom: 10px;
  cursor: default;
}
#sticky-toc ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
#sticky-toc ul li {
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}
#sticky-toc ul li:last-child {
  margin-bottom: 0;
}
#sticky-toc ul li:hover {
  transform: translateX(5px);
}
#sticky-toc a {
  display: block;
  padding: 5px;
  text-decoration: none;
  color: #32a041;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
#sticky-toc a:hover {
  text-decoration: none;
  color: rgb(31.7857142857, 101.7142857143, 41.3214285714);
  background-color: rgb(240.1428571429, 250.3571428571, 241.5357142857);
  transform: scale(1.05);
}
#sticky-toc a.active {
  font-weight: bold;
  background-color: rgb(220.7142857143, 244.2857142857, 223.9285714286);
}

/*# sourceMappingURL=sticky-toc.css.map */
