.table-of-content {
  min-height: var(--box-min-height);
  border: var(--box-border-width, 1px) solid var(--box-border-color, #a4afb7);
  border-radius: var(--box-border-radius, 3px);
  background-color: var(--box-background-color);
  -webkit-transition: min-height 0.4s;
  -o-transition: min-height 0.4s;
  transition: min-height 0.4s;
  overflow: hidden;
}
.table-of-content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: var(--box-padding, 20px);
  background-color: var(--header-background-color);
  border-bottom: var(--separator-width, 1px) solid var(--box-border-color, #a4afb7);
}
.table-of-content-header-title {
  font-size: 18px;
  margin: 0;
  color: var(--header-color);
}
.table-of-content-body {
  padding: var(--box-padding, 20px);
  max-height: var(--toc-body-max-height);
  overflow-y: auto;
}
.table-of-content-body::-webkit-scrollbar {
  width: 7px;
}
.table-of-content-body::-webkit-scrollbar-thumb {
  background-color: #c2cbd2;
  border-radius: 10px;
}
.table-of-content-list-item {
  counter-increment: item;
}
.table-of-content-list-item.elementor-item-active {
  font-weight: 700;
}
.table-of-content-list-wrapper {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0.5em;
  margin-left: var(--nested-list-indent, 1em);
}
.table-of-content-list-wrapper > li {
  border-bottom: solid #ccc 1px;
  margin-bottom: 0.5em;
}
.table-of-content-list-item-text {
  white-space: nowrap;
}
.table-of-content-list-item-text:hover {
  color: var(--item-text-hover-color);
  -webkit-text-decoration: var(--item-text-hover-decoration);
  text-decoration: var(--item-text-hover-decoration);
}
.table-of-content .table-of-content-list-item-text {
  color: var(--item-text-color);
  -webkit-text-decoration: var(--item-text-decoration);
  text-decoration: var(--item-text-decoration);
}

.table-of-content-word-wrap .table-of-content-list-item-text {
  overflow: hidden;
  white-space: normal;
}

.table-of-content-list-item-text-wrapper:before,
.table-of-content-list-item-text-wrapper i {
  margin-right: 8px;
  color: var(--marker-color);
}
.table-of-content-list-item-text-wrapper svg {
  margin-right: 8px;
  fill: var(--marker-color);
  height: var(--marker-size, 0.5em);
  width: var(--marker-size, 0.5em);
}
.table-of-content-list-item-text-wrapper i {
  font-size: var(--marker-size, 0.5em);
}
.table-of-content-list-item-text-wrapper:before {
  font-size: var(--marker-size, 1em);
}
.list-bullet .table-of-content-list-item-text-wrapper {
  display: flex;
  align-items: center;
}

.table-of-content .table-of-content-list-item-active {
  font-weight: 700;
  color: var(--item-text-active-color);
  -webkit-text-decoration: var(--item-text-active-decoration);
  text-decoration: var(--item-text-active-decoration);
}

.table-of-content-menu-anchor {
  scroll-margin-top: 185px;
}


