
.toc {
	margin:2em 0 2em;
	padding:0;
	border: 1px solid #cecece;
}

.toc_title {
	font-size:14px;
	font-weight:bold;
	text-transform: uppercase;
	text-align: left;
	padding: 5px;
	background: #f7f7f7;
	cursor:pointer;
	position:relative;
}

.toc_title:before {
	font-family: "Font Awesome 5 Free";
	padding-right: 8px;
	content: "\f03a";
}


.toc_toggle {
	margin: auto;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	height: 2px;
	width: 10px;
	background: #000000;
	display: block;
	content: "";
	transition: all 0.3s;
	transform: none;
}

.toc_toggle::before {
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 10px;
	width: 2px;
	background: #000000;
	display: block;
	content: "";
}

.active .toc_toggle {
	transform: rotate(-45deg);
}

.toc ol {
	/*margin:0 0 0.5em;*/
	margin:0;
	line-height: 1.5;
	list-style: none;
	counter-reset: section;
}

.toc > ol {
	padding: 10px 0;
}

.toc > ol ol {
	padding-left: 10px;
}

.toc > ol ol ol {
	padding-left: 10px;
}

.toc ol>li:before {
	counter-increment: section;
	content: counters(section, "-") ".";
}

.toc ol>li {
	border-bottom:none;
}
