/* Sticky / fixed right sidebar on single blog posts */
@media (min-width: 992px) {
	.single-post .blog-details-section .row > .col-lg-4 {
		align-self: flex-start;
	}

	.single-post .blog-side-bar {
		position: sticky;
		top: 110px;
		z-index: 50;
		max-height: calc(100vh - 130px);
		overflow-y: auto;
		scrollbar-width: thin;
	}

	.single-post .blog-side-bar.is-fixed {
		position: fixed;
		overflow-y: auto;
	}

	.single-post .blog-side-bar::-webkit-scrollbar {
		width: 6px;
	}

	.single-post .blog-side-bar::-webkit-scrollbar-thumb {
		background: rgba(0, 0, 0, 0.15);
		border-radius: 3px;
	}

	/* TOC hidden on load; shown after scrolling past inline TOC */
	.single-post .blog-side-bar .table-of-content {
		display: none;
		padding: 28px 30px;
		background: #ffffff;
		box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
		border-radius: 10px;
		margin-bottom: 30px;
	}

	.single-post .blog-side-bar .table-of-content.is-visible {
		display: block;
	}
}

.single-post .blog-side-bar .table-of-content .article-toc-title,
.single-post .blog-side-bar .table-of-content > h4 {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 18px;
	color: #000000;
}

.single-post .blog-side-bar .table-of-content nav.article-toc {
	display: block;
}

.single-post .blog-side-bar .table-of-content ul,
.single-post .blog-side-bar .table-of-content ol {
	list-style: disc;
	padding-left: 1.25rem;
	margin: 0;
}

.single-post .blog-side-bar .table-of-content li {
	margin-bottom: 10px;
	line-height: 1.45;
}

.single-post .blog-side-bar .table-of-content a {
	color: #4D9400;
	text-decoration: underline;
	font-size: 17px;
}

.single-post .blog-side-bar .table-of-content a:hover,
.single-post .blog-side-bar .table-of-content a.active {
	color: #000000;
}

@media (max-width: 991.98px) {
	.single-post .blog-side-bar .table-of-content {
		display: none !important;
	}
}
