.ik-toc-wrapper {
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    color: #333;
    height: auto;
    box-shadow: 1px 1px 7px rgba(0,0,0,.2);
    -moz-box-shadow: 1px 1px 7px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 2px 8px rgba(28,76,156,.15);
    -ms-box-shadow: 1px 1px 7px rgba(0,0,0,.2);
    -o-box-shadow: 1px 1px 7px rgba(0,0,0,.2);
    border-radius: 5px !important;
    transition-duration: .2s;
    margin: 10px 0 !important;
    background: url(../../assets/images/lw-wave.png) !important;
    background-repeat: repeat;
    background-size: auto;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    margin: 25px 0 !important;
}
.ik-toc-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	cursor: pointer;
}
.ik-toc-title {
	font-weight: 600;
	font-size: 17px;
	color: #333;
}
.ik-toc-toggle {
	background: #f2f2f2;
    transition: all .3s;
	color: #5f5f5f;
	/* border: none; */
	border-radius: 4px;
	padding: 2px 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	outline: none !important;
	border: none !important;
	width: 60px;
	text-align: center;
}
.ik-toc-toggle:hover { 
    background: #d3d3d3; 
}
.ik-toc-toggle-icon {
	transition: transform .3s;
	font-size: 10px;
	line-height: 0;
}
.ik-toc-toggle-icon i {
	vertical-align: middle;
}
.ik-toc-wrapper.collapsed .ik-toc-toggle-icon { 
    transform: rotate(90deg); 
}
.ik-toc-content {
	padding: 10px;
	transition: all .3s;
	opacity: 1;
}
.ik-toc-wrapper.collapsed .ik-toc-content {
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
}
.ik-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.ik-toc-item {
	margin: 0 10px !important;
}
.ik-toc-item a {
	text-decoration: none;
	color: #007cba;
	display: block;
	padding: 2px 0;
	color: #666;
	font-weight: 100;
}
.ik-toc-item a:hover { 
    color: #005a87; 
    border-bottom: 1px dotted !important;
}
.ik-toc-level-2 { padding-right: 0; }
.ik-toc-level-3 { padding-right: 15px; }
.ik-toc-level-4 { padding-right: 30px; }
.ik-toc-level-5 { padding-right: 45px; }
.ik-toc-level-6 { padding-right: 60px; }
.ik-toc-item::before  {
	display: none !important;
}
.ik-toc-item a::before  {
	content: '●' !important;
	margin-left: 7px !important;
	margin-right: 0 !important;
	color: #06ce00 !important;
	font-size: 16px !important;
	transition: all .3s !important;
	text-align: right !important;
}
.ik-toc-item a.iktoc-clicked::before {
	color: #ffa700 !important;
}
.ik-toc-item a.iktoc-clicked {
	color: #000394 !important;
}