.sidenav {
	height: 0%;
	position: fixed;
	z-index: 1600;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
	-webkit-transition: height 0.3s;
	transition: height 0.3s;
	display: flex;
	flex-direction: column;
	color: white;
	visibility: hidden;
}
.sidenav.open {
	height: 100%;
}
.sidenav > :first-child {
	height: 70%;
}
.sidenav .header {
	display: flex;
	justify-content: flex-end;
	padding: 10px 20px 0 0;
}
.sidenav .header .close {
	width: 46px; height: 46px;
	padding: 10px;
	margin-right: -10px;
}
.sidenav .header .back {
	margin-right: auto;
	margin-left: 10px;
	font-size: 30px;
	transform: rotate(180deg);
}
.sidenav .content {
	display: flex;
	flex-direction: column;
	padding: 16px 0;
	max-height: calc(100% - 56px);
	overflow-y: auto;
}
.sidenav .dropdown {
	display: none;
}
.sidenav .centered {
	width: 70%;
	max-width: 300px;
	margin: 0 auto;
}
.sidenav .list a,
.sidenav .list span{
	padding: 0.8em;
	position: relative;
	font-size: 1.05em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sidenav .dropdown a,
.sidenav .dropdown span {
	padding-left: 2em;
}
.sidenav .list button {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sidenav .social-icons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 16px;
}
.sidenav .social-icons a {
	width: 20px; height: 20px;
}
.sidenav .social-icons :not(:last-child) {
	margin-right: 10px;
}
.sidenav .footer {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding-top: 24px;
	background: white;
	color: var(--c-brand);
}
.sidenav .bottom-links li:not(:last-child) {
	margin-bottom: 2px;
}
@media (max-width: 576px) {
	.sidenav .content {
		padding: 0 0 16px 0;
	}
}