.hidden {
	display: none;
}

#sidebar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	display: flex;
	flex-direction: column;
	width: 14.5rem;
	height: 100%;
	background-color: #2a3647;
	overflow: hidden;
	padding: 4.0rem 0;
	justify-content: space-between;
}

#sidebarLogoDiv {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 3.5rem;
}

#sidebarJoinLogo {
	position: relative;
	width: 6.25rem;
	height: 7.625rem;
}

#navLinksDiv {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 0.9375rem;
	margin-bottom: 100px;
}

.sidebarIcon {
	width: 1.875rem;
	height: 1.875rem;
}

.sidebarLink {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	font-size: 1.0rem;
	font-weight: 400;
	color: #cdcdcd;
	padding: 0.6562rem 0;
	padding-left: 3.625rem;
	transition: background-color 100ms ease-in-out;
}

.sidebarLink svg path {
	fill: #cdcdcd;
}

.sidebarLink:hover {
	background-color: #2a3d59;
}
#legalAndPolicyDiv {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	padding-left: 3.25rem;
	gap: 0.25rem;
}
#legalAndPolicyDiv a {
	padding: 0.5rem;
	gap: 0.5rem;
	color: #a8a8a8;
	font-family: "inter", sans-serif;
	font-size: 1.0rem;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 0;
	transition: color 100ms ease-in-out, font-weight 100ms ease-in-out;
}

#legalAndPolicyDiv a:hover {
	color: #29abe2;
	font-weight: 500;
}

.highlighted a {
	color: white;
}

.highlighted .sidebarLink {
	background-color: #091931;
}
.highlighted svg path {
	fill: white;
}

.navLinkWrapper {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

@media(max-width: 1100px){
	#sidebarLogoDiv{
		padding-left: 35px;
	}
	#sidebar{
		width: 180px;
	}
	.sidebarLink{
		padding-left: 35px;
	}
	#legalAndPolicyDiv{
		padding-left: 35px;
	}
}

@media (max-width: 53.125rem) {
	#sidebar {
		position: fixed;
		bottom: 0;
		left: auto;
		top: auto;
		right: 0;
		display: flex;
		flex-direction: row;
		width: 100%;
		height: 8.75rem;
		background-color: #2a3647;
		overflow: hidden;
		justify-content: space-around;
		align-items: center;
		padding: 0;
	}

	#sidebarJoinLogo {
		width: 5.0rem;
		height: 5.625rem;
	}

	#sidebarLogoDiv {
		display: none;
	}


	#legalAndPolicyDiv {
		display: none;
	}

	#navLinksDiv {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: clamp(0.03125rem, -2.9688rem + 15vw, 5rem);
		justify-content: center;
		margin: 0;
	}

	.navLinkWrapper {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.sidebarLink {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		white-space: nowrap;
		padding: 0;
		border-radius: 1.0rem;
		padding: 0.9375rem;
	}
}

@media (max-width: 40rem) {

	#sidebar {
		height: 80px;
	}
}

@media(max-width: 28.125rem){
	.sidebarIcon{
		width: 1.25rem;
		height: 1.25rem;
	}

	.sidebarLink{
		padding: 5px;
		font-size: 15px;
	}
}