section.fixed-table-content-post {
  position: relative;
  padding: 50px 15px;
  --sidebar: 360px;
}
section.fixed-table-content-post .post-sidebar {
  max-width: var(--sidebar);
  -ms-flex-preferred-size: var(--sidebar);
      flex-basis: var(--sidebar);
}
@media (max-width: 768px) {
  section.fixed-table-content-post .post-sidebar {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
section.fixed-table-content-post .post-sidebar .toc {
  padding: 25px 15px;
}
section.fixed-table-content-post .post-sidebar .title {
  font-size: 18px;
  font-weight: 400;
  color: #0133c4;
  margin-bottom: 20px;
  font-style: italic;
}
@media (max-width: 768px) {
  section.fixed-table-content-post .post-sidebar .title {
    display: none;
  }
}
section.fixed-table-content-post .post-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  section.fixed-table-content-post .post-sidebar ul li {
    padding: 15px;
    border-left: 1px solid #6887a0;
  }
  section.fixed-table-content-post .post-sidebar ul li a {
    color: #6887a0;
    text-decoration: none;
    font-weight: 500;
  }
  section.fixed-table-content-post .post-sidebar ul li a:hover {
    text-decoration: underline;
  }
  section.fixed-table-content-post .post-sidebar ul li.active {
    color: #0133c4;
    border-width: 4px;
    border-color: #0133c4;
    margin-left: -1px;
  }
  section.fixed-table-content-post .post-sidebar ul li.active a {
    color: #0133c4;
  }
}
@media (max-width: 768px) {
  section.fixed-table-content-post .post-sidebar .toc {
    border: 1px solid black;
    background-color: white;
    position: relative;
    padding: 0;
  }
  section.fixed-table-content-post .post-sidebar .toc::after {
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid black;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 20px;
    right: 10px;
  }
  section.fixed-table-content-post .post-sidebar .toc ul {
    border-left: 4px solid #4d93f7;
    padding: 15px;
    position: relative;
  }
  section.fixed-table-content-post .post-sidebar .toc ul li {
    display: none;
  }
  section.fixed-table-content-post .post-sidebar .toc ul li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 25px;
  }
  section.fixed-table-content-post .post-sidebar .toc ul .active {
    display: block;
  }
}
section.fixed-table-content-post .post-sidebar .active-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 100;
  border: none !important;
}
section.fixed-table-content-post .post-sidebar .active-dropdown li {
  display: block !important;
}
section.fixed-table-content-post .post-sidebar .active-dropdown li a {
  padding: 15px;
  border-left: 2px solid #6887a0;
  display: block;
}
section.fixed-table-content-post .post-sidebar .active-dropdown li .active {
  color: #0133c4;
  border-width: 4px;
  border-color: #0133c4 !important;
  margin-left: -1px;
}
section.fixed-table-content-post .post-sidebar .active-dropdown li .active a {
  color: #0133c4;
}
section.fixed-table-content-post .post-content {
  max-width: calc(100% - var(--sidebar));
  -ms-flex-preferred-size: calc(100% - var(--sidebar));
      flex-basis: calc(100% - var(--sidebar));
  padding: 25px 15px;
}
@media (max-width: 768px) {
  section.fixed-table-content-post .post-content {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
section.fixed-table-content-post .post-content h1,
section.fixed-table-content-post .post-content h2,
section.fixed-table-content-post .post-content h3,
section.fixed-table-content-post .post-content h4,
section.fixed-table-content-post .post-content h5,
section.fixed-table-content-post .post-content h6 {
  color: #0133c4;
  font-weight: 500;
}
section.fixed-table-content-post .post-content h1 {
  font-size: 40px;
}
section.fixed-table-content-post .post-content h2 {
  font-size: 34px;
}
section.fixed-table-content-post .post-content h3 {
  font-size: 24px;
}
section.fixed-table-content-post .post-content h4 {
  font-size: 20px;
}
section.fixed-table-content-post .post-content h5 {
  font-size: 18px;
}
section.fixed-table-content-post .post-content h6 {
  font-size: 16px;
}
section.fixed-table-content-post .post-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
section.fixed-table-content-post .post-content a {
  color: #4d93f7;
  text-decoration: none;
}
section.fixed-table-content-post .post-content a:hover {
  text-decoration: underline;
}
section.fixed-table-content-post .post-content img {
  max-width: 100%;
  height: auto;
}
section.fixed-table-content-post .post-content blockquote {
  border-left: 4px solid #0133c4;
  padding: 10px 20px;
  margin: 20px 0;
  background: #f9f9f9;
}
section.fixed-table-content-post .post-content pre {
  background: #f9f9f9;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  overflow-x: auto;
}
section.fixed-table-content-post .post-content code {
  background: #f9f9f9;
  padding: 5px;
  border-radius: 5px;
}
section.fixed-table-content-post .post-content ul,
section.fixed-table-content-post .post-content ol {
  margin-bottom: 20px;
}
section.fixed-table-content-post .post-content ul {
  list-style: disc;
}
section.fixed-table-content-post .post-content ol {
  list-style: decimal;
}
section.fixed-table-content-post .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
section.fixed-table-content-post .post-content table th,
section.fixed-table-content-post .post-content table td {
  padding: 10px;
  border: 1px solid #f9f9f9;
}