.toc-wrapper {
	display: none;
	background: #f7fbf9;
	border: 1px solid #e0f1e9;
	border-radius: 6px;
	padding: 8px 16px 12px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	margin: 0 0 24px;
	width: 100%;
}
.toc-wrapper.has-toc {
	display: block;
}
.toc-wrapper .js-toc {
	margin: 0;
}
.toc-title {
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	color: #222;
	display: none;
	margin: 0;
	padding: 10px 0;
	line-height: 1.4;
}
.toc-title.active {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
}
.toc-title svg {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	color: #9aa0a6;
	transition: transform .3s ease-out;
}
.toc-title.open svg {
	transform: rotate(90deg);
}
.toc-wrapper ol.toc-list,
.fixed-toc ol.toc-list {
	counter-reset: none;
	list-style-type: disc !important;
	list-style-position: outside;
	margin: 0 0 4px 18px;
	padding: 0 0 6px;
	font-size: 14px;
}
.toc-wrapper .toc-list .toc-list,
.fixed-toc .toc-list .toc-list {
	margin: 6px 0 0 16px;
	padding: 0;
	list-style-type: circle !important;
}
.toc-wrapper .toc-list li,
.fixed-toc .toc-list li {
	margin: 8px 0 0;
	padding: 0;
	line-height: 1.45;
	list-style: inherit !important;
}
.toc-wrapper .toc-list li::before,
.fixed-toc .toc-list li::before {
	content: none !important;
	counter-increment: none;
}
.toc-wrapper .toc-list li::marker,
.fixed-toc .toc-list li::marker {
	color: var(--primary-color);
}
.toc-link::before {
	content: none !important;
	background: none !important;
}
a.toc-link {
	color: #333 !important;
	font-weight: 400 !important;
	text-decoration: none !important;
	display: inline;
	line-height: 1.45;
}
a.toc-link:hover,
a.toc-link:focus,
a.toc-link.is-active-link {
	color: var(--primary-color) !important;
	font-weight: 400 !important;
}
.fixed-toc {
	position: fixed;
	left: 0;
	top: 50% !important;
	transform: translateY(-50%);
	z-index: 1000;
}
.fixed-toc button.btn.toc-toggle-btn {
	color: var(--primary-color);
	border: 1px solid #e0f1e9;
	padding: 0;
	width: 35px;
	height: 35px;
	line-height: 35px;
	margin-left: 10px;
	background: #fcfcfc;
	border-radius: 4px;
	opacity: 0.85;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.fixed-toc button.btn.toc-toggle-btn:hover {
	opacity: 1;
	background: #fff;
}
.fixed-toc .fixed-toc-content {
	width: 300px;
	background: #f7fbf9;
	position: absolute;
	top: 0 !important;
	z-index: 9999;
	padding: 8px 16px 12px;
	border: 1px solid #e0f1e9;
	border-radius: 6px;
	font-size: 13px;
	max-height: 75vh;
	overflow-y: auto;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
	transform: translateY(-50%) translateX(-100%);
	transition: transform .3s ease-out;
}
.fixed-toc.open .fixed-toc-content {
	transform: translateY(-50%);
}
.fixed-toc .toc-title {
	font-size: 15px;
}
.fixed-toc ol.toc-list {
	font-size: 13px;
}
