.gbp-toc-sidebar{
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	width:360px;
	z-index:9999;
	pointer-events:none;
}

.gbp-toc-sidebar-content{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:360px;
	padding:80px 30px 30px;
	background:#fff;
	box-shadow:5px 0 20px rgba(0,0,0,.15);
	overflow-y:auto;
	transform:translateX(-100%);
	transition:transform .35s ease;
	pointer-events:auto;
}

.gbp-toc-sidebar.is-open .gbp-toc-sidebar-content{
	transform:translateX(0);
}

.gbp-toc-toggle{
	position:absolute;
	top:50%;
	left:0;
	width:46px;
	height:70px;
	margin-top:-35px;
	padding:0;
	border:0;
	background:#f98d29;
	color:#fff;
	cursor:pointer;
	border-radius:0 6px 6px 0;
	font-size:22px;
	z-index:2;
	pointer-events:auto;
	transition:left .35s ease,background .2s ease;
	border-style:solid;
	border: 1px 1px 1px 1px;
	border-color:#fff;
}

.gbp-toc-toggle:hover{
	background:#4d858d;
}

.gbp-toc-sidebar.is-open .gbp-toc-toggle{
	left:360px;
}

.gbp-toc-toggle-icon{
	display:block;
	line-height:1;
}

.gbp-toc-toggle-text{
	display:block;
	font-size:11px;
	line-height:1;
}

.gbp-toc-title{
	font-size:20px;
	font-weight:700;
	margin-bottom:20px;
}

.gbp-toc-list{
	margin:0;
	padding:0;
	list-style:none;
}

.gbp-toc-list li{
	margin:0;
	padding:0;
}

.gbp-toc-list a{
	display:block;
	padding:10px 12px;
	color:inherit;
	text-decoration:none;
	border-radius:4px;
	transition:background .2s ease,color .2s ease;
}

.gbp-toc-list a:hover{
	background:rgba(0,0,0,.05);
}

.gbp-toc-list a.active{
	font-weight:600;
	background:rgba(0,0,0,.08);
}

@media(max-width:991.98px){

	.gbp-toc-sidebar{
		width:100%;
	}

	.gbp-toc-sidebar-content{
		width:min(360px,calc(100% - 46px));
	}

	.gbp-toc-sidebar.is-open .gbp-toc-toggle{
		left:min(360px,calc(100% - 46px));
	}

	.gbp-toc-toggle{
	width:35px;
	font-size:18px;
}

}