#sidebar{
	max-width: var(--sidebar);
	height: 100vh;
	background: var(--second-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	overflow: hidden;
}

#sidebar div:nth-child(1){
	height: fit-content;
	max-width: var(--sidebar);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px 0;
}

#sidebar div:nth-child(1) h1, 
#sidebar:nth-child(1) h2{
	font-family: heavitas;
	color: var(--first-color);
	font-size: 20px;
}

#sidebar div:nth-child(1) h2{
	color: var(--fourth-color);
	font-size: 12px
}

#sidebar div:nth-child(1) img{
	height: 145px;
	z-index: 1;
}

#sidebar > div:nth-child(2){
	display: flex;
	padding: 0;
	margin: auto 0;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: fit-content;
	z-index: 1;
}

#sidebar div:nth-child(2) > div,
.active_sidebar_button{
	height: auto;
	padding: 10px 0 10px 15px;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	cursor: pointer;
	width: var(--sidebar);
	max-width: var(--sidebar);
}

#sidebar div:nth-child(2) > div:hover,
.active_sidebar_button{
	background: var(--first-color);
}

#sidebar div:nth-child(2) > div:hover *,
.active_sidebar_button *{
	color: var(--second-color);
}

#sidebar > div:nth-child(2) p{
	font-family: renault;
	white-space: nowrap;
	font-size: 14px;
}

.inactive_sidebar_button *{
	color: var(--first-color);
}

#sidebar div:nth-child(2) i{
	font-size: 19px;
	height: 18px;
	width: 32px;
	margin: auto 0;
	text-align: center;
}

#sidebar div:nth-child(3){
	max-width: var(--sidebar);
	text-align: center;
	font-size: 11px;
	font-family: heavitas;
	color: var(--first-color);
	margin-bottom: 3px;
}

.freeze_menu{
	opacity: 0;
	height: 100vh;
	max-width: var(--sidebar);
	left: 0;
	z-index: 1000;
	margin: auto;
	position: absolute;
}