.fixed-table {
  position: fixed;
  top: 30%;
  left: 10px;
  background: #f9f9f9;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: 1px solid #aaa;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 15px;
  opacity: 0;
  visibility: hidden;
  z-index: 3434;
  margin: 0; }
  .fixed-table.show {
    opacity: 1;
    visibility: visible; }
  .fixed-table.active {
    height: auto;
    width: auto; }
    .fixed-table.active .table-of-contents {
      transform: rotate3d(1, 1, 1, 0deg); }
  .fixed-table .table-of-contents {
    box-shadow: none;
    padding-top: 5px;
    position: fixed;
    left: 10px;
    top: 30%;
    max-width: 400px;
    transform: rotate3d(0, 1, 0, -90deg);
    transform-origin: 0 0 0;
    transition: all .3s;
    margin-right: 10px; }
    .fixed-table .table-of-contents .title-table .title-table {
      margin-bottom: 5px; }
    .fixed-table .table-of-contents .toc_toggle {
      display: none; }
  .fixed-table .btn-fixed-table-content {
    font-size: 19px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    outline: none;
    float: left;
    border: none;
    z-index: 9;
    position: relative;
    background: none;
    color: black;
    text-align: center;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center; }
    .fixed-table .btn-fixed-table-content i {
      padding: 0;
      margin: 0; }
  .fixed-table .close-table {
    position: absolute;
    right: 5px;
    top: 5px;
    background: none;
    font-size: 0;
    border: none;
    width: 26px;
    height: 26px; }
    .fixed-table .close-table img {
      width: 15px;
      height: 15px; }

.table-of-contents {
  background: #f9f9f9;
  border: 1px solid #cacaca;
  border-radius: 4px;
  box-shadow: 0 0px 10px #ccc;
  display: table;
  margin-bottom: 1em;
  padding: 5px;
  position: relative;
  width: auto;
  margin: 0;
  margin-bottom: 15px; }

.title-table {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  align-items: center; }

.title-table .title-table {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 0;
  color: black; }

.title-table .toc_toggle {
  font-size: 14px;
  margin-left: 5px; }

.title-table .toc_toggle a {
  font-size: 13px;
  color: #158ed4;
  font-weight: bold; }

#table-content-container ul {
  padding-left: 5px;
  padding-right: 5px;
  list-style: none;
  counter-reset: item;
  margin: 0;
  margin-top: 5px; }

#table-content-container > ul {
  display: none; }

#table-content-container ul li {
  list-style: none;
  margin-bottom: 5px !important; }

.table-of-contents ul {
  list-style-type: none; }

.table-of-contents > ul {
  counter-reset: listStyle; }

.fixed-table .table-of-contents > ul {
  max-height: 350px;
  overflow-y: auto; }

.table-of-contents ul li::before {
  color: black; }

.table-of-contents > ul > li {
  counter-increment: listStyle; }

.table-of-contents > ul > li li {
  counter-increment: nav1;
  counter-reset: nav2; }

.table-of-contents > ul > li li li {
  counter-increment: nav2;
  counter-reset: nav3; }

.table-of-contents > ul > li li li li {
  counter-increment: nav3;
  counter-reset: nav4; }

.table-of-contents > ul > li li li li li {
  counter-increment: nav4;
  counter-reset: nav5; }

.table-of-contents > ul > li li li li li li {
  counter-increment: nav5;
  counter-reset: nav6; }

.table-of-contents > ul > li::before {
  content: counter(listStyle) ". ";
  text-transform: uppercase; }

.table-of-contents > ul > li li::before {
  content: counter(listStyle) "." counter(nav1) " - "; }

.table-of-contents > ul > li li li::before {
  content: counter(listStyle) "." counter(nav1) "." counter(nav2) " - "; }

.table-of-contents > ul > li li li li::before {
  content: counter(listStyle) "." counter(nav1) "." counter(nav2) "." counter(nav3) " - "; }

.table-of-contents > ul > li li li li li::before {
  content: counter(listStyle) "." counter(nav1) "." counter(nav2) "." counter(nav3) "." counter(nav4) " - "; }

.table-of-contents > ul > li li li li li li::before {
  content: counter(listStyle) "." counter(nav1) "." counter(nav2) "." counter(nav3) "." counter(nav4) "." counter(nav5) " - "; }

.table-of-contents > ul > li li li li li li li::before {
  content: counter(listStyle) "." counter(nav1) "." counter(nav2) "." counter(nav3) "." counter(nav4) "." counter(nav5) "." counter(nav6) " - "; }

.table-of-contents li a {
  color: #158ed4; }

#table-content-container .close-table {
  display: none; }

.fixed-table.active .table-of-contents ul {
  display: block !important; }
