/* ---------------------------------------- 
 *
 *	Sidebar
 *
 * ---------------------------------------- */
 .manifesto-sidebar {
	display: flex;
	flex-direction: column;
}
.manifesto-sidebar > h4 {
	margin-top: 0;
	margin-bottom: 15px;
}
.manifesto-sidebar .chapters .sidebar-link {
	background-color: var(--brand-beige);
	border-radius: 5px;
	color: var(--brand-black);
	margin-bottom: 10px;
	display: flex;
}
.manifesto-sidebar .chapters .sidebar-link.active,
.manifesto-sidebar .chapters .sidebar-link:hover,
.manifesto-sidebar .chapters .sidebar-link:active {
	background-color: #E1DCD4;
}
.manifesto-sidebar .chapters .sidebar-link .number {
	background-color: var(--brand-green);
	flex: 0 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-white);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	font-weight: 700;
	/* height: 100%; */
}
.manifesto-sidebar .chapters .sidebar-link .content {
	padding: 18px 15px 15px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px; /* 125% */
	width: 100%;
}
.manifesto-sidebar .manifesto-download {
	margin-bottom: 0px;
}
.manifesto-sidebar .manifesto-download > .wp-block-buttons > .wp-block-button {
	width: 100%;
}
.manifesto-sidebar .manifesto-download > .wp-block-buttons > .wp-block-button > a.wp-block-button__link {
	min-width: auto;
}
.manifesto-sidebar .document-info p {
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 1.6;
}



/* 
 *
 *	MOBILE
 *
 */
@media screen and (max-width: 768px) {

	.manifesto-sidebar .chapters,
	.manifesto-sidebar .manifesto-download,
	.manifesto-sidebar .document-info
	{
		display: none !important;
	}

}