 .toc-wrapper {
	 transform: translateX(0);
    left: calc((100% - 77rem - 4rem) / 2);
 
  display: block;
  position: absolute;
  width: 240px;
  height: 100%;
  margin: 20px;
  padding: 20px;
  top: 0px;
  z-index: 99999999;
  line-height: 1.5;
  color: #333;
  transition: all 500ms ease-out;
}
#toc.fixed {
  position: fixed;
	padding-top: 4rem;
	left: 0px;
	    top: 50%;
    transform: translateY(-30%);
	overflow: auto!important;
}
.toc-container {
  display: block;
  float: left;
  position: relative;
  width: 100%;
  margin: 0px 0px;
  padding-top: 4rem;
}
.toc-open {
  display: block;
  float: left;
  position: relative;
  margin: 13px 9px;
  padding: 0px 8px;
  font-weight: Bold;
  font-size: 16px;
  left: 0px;
  background-color: none;
  border: none;
  cursor: default;
  border-radius: 3px;
  transition: all 500ms ease-out;
  z-index: 100;
}
.toc-close {
  display: block;
  position: absolute;
  text-align: center;
  color: #666;
  top: 0px;
  right: 0px;
  font-size: 2rem;
  padding: 0px 1rem;
  cursor: pointer;
  opacity: 0;
  transition: all 500ms ease-out;
  z-index: 100;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
}
.toc-close:hover {
  color: #333;
}
.toc-closed {
  left: -280px;
  background-color: rgba(255, 255, 255, 0.15);
}
.toc-closed .toc-open {
  display: block;
  position: fixed;
  left: 100%;
  transition: all 300ms ease-out;
  border: 1px solid #999;
  border-radius: 3px;
  cursor: pointer;
  background-color: #eee;
  margin: 12px 8px;
}
.toc-mobile .toc-close {
  opacity: 1;
}
.toc-list {
  display: block;
  position: relative;
  margin: 0;
  padding-left: 10px !important;
  overflow: hidden;
}
.toc-link {
  list-style: none;
  color: currentColor;
  height: 100%;
  text-decoration: none;
  transition: all 300ms ease-in-out;
		margin-bottom: 0em !important;

}
.toc-link.current {
  font-weight: bold !important;
  background-color: none !important;
}
.toc-link.active {
  background-color: transparent !important;
}
.toc-link + ul {
  max-height: 0;
}

.toc-link.active + ul {
  max-height: 100%;
}

.toc-top-level > .toc-list:first-child {
  padding: 0;
}
.is-collapsible {
  max-height: 1000px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.is-collapsed {
  max-height: 0;
}
.is-active-link {
  font-weight: 700;
}
#toc-button {
  display: none;
}
.toc-close {
  display: none;
}
@media (max-width: 768px) {
  #toc-button {
    display: block;
    position: fixed;
    top: 0;
  }
  .toc-close {
    display: block;
  }
  #toc {
    position: fixed;
  }
}
#toc.toc-wrapper.toc-mobile {
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 300ms ease-in-out;
  z-index: 999999;
  padding: 2rem;
}
.toc-link a {
  color: currentColor;
  height: 100%;
  text-decoration: none;
  font-size: 14px;
}
/*
.toc-link::before {
  background-color: rgb(160, 39, 39);
  content: " ";
  display: inline-block;
  height: inherit;
  left: 0;
  margin-top: -1px;
  position: absolute;
  width: 2px;
}
li.toc-link.current.active::before {
  background-color: #54bc4b;
}
*/