.sidebar_page_wrapper {
	padding-bottom: 80px;
}

.sidebar {
	width: 33.333%;
	float: left;
	position: sticky;
	top: 25px;
}

.sidebar_page_wrapper article {
	width: 66.666%;
	float: right;
	padding-bottom: 0;
}

.sidebar_menu {
	width: 278px;
	max-width: calc(100% - 30px);
	border-radius: 4px;
	background-color: #FFFFFF;
	box-shadow: 0 12px 24px -10px rgba(36,48,110,0.2);
	padding: 30px 13px;
}

.sidebar_menu ul.menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar-widget-content {
	margin-bottom: 35px;
}

.sidebar-widget-content:last-child {
	margin-bottom: 0;
}

.sidebar_menu h4 {
	margin-bottom: 19px;
	font-size: 20px;
	line-height: 25px;
	margin-top: 0;
	border-bottom: 1px solid #E2E2E2;
	padding-bottom: 15px;
}

.sidebar_menu ul.menu a {
	text-decoration: none;
	display: block;
	padding: 7px 10px;
}

.sidebar_menu li:not(.current-menu-item) a:hover  {
	text-decoration: underline;
}

.sidebar_menu .current-menu-item a {
	background-color: var(--lighter-blue);
	color: var(--light-blue);
	background-image: url(../img/arrow-right-light-blue.svg);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 6px auto;
}

.sidebar_page_row article p,
.sidebar_page_row article ul,
.sidebar_page_row article ol {
	margin-bottom: 25px;
}

.sidebar_page_row article li {
	line-height: var(--line-height);
}

.sidebar_page_row article h3,
.sidebar_page_row article h4,
.sidebar_page_row article h5 {
	margin-top: 0;
}

@media (max-width: 767px) {
	.sidebar {
		float: none;
		position: fixed;
		width: 331px;
		bottom: 24px;
		top: unset;
		left: 50%;
		transform: translateX(-50%);
		display: none;
		z-index: 2;
	}

	.sidebar.active {
		display: block;
	}

	.mobile_sidebar_open .sidebar_button {
		display: none;
	}

	.sidebar_page_wrapper article {
		width: 100%;
		float: none;
		text-align: left;
	}

	.sidebar_button {
		background-color: var(--dark-blue);
		color: white;
		display: inline-block;
		cursor: pointer;
		font-size: 18px;
		line-height: 23px;
		position: fixed;
		bottom: 24px;
		left: 50%;
		transform: translateX(-50%);
		max-width: calc(100% - 30px);
		border-radius: 4px;
		white-space: nowrap;
		padding: 10px 69px 10px 25px;
		z-index: 1;
		border: 1px solid white;
		background-image: url(../img/list-white.svg);
		background-repeat: no-repeat;
		background-position: right 23px center;
	}

	.sidebar_menu {
		width: 100%;
		max-width: 100%;
		border: 1px solid #E6F8FD;
		position: relative;
		padding: 25px 15px;
	}

	.close_sidebar_button {
		width: 18px;
		height: 18px;
		cursor: pointer;
		position: absolute;
		top: 10px;
		right: 16px;
		background-image: url(../img/mobile-close.svg);
		background-repeat: no-repeat;
		background-position: center;
	}
}
