.d1{
	background-color: #2C3E50;
	color: white;
	grid-column:1/-1;
}
#sidebar{
	margin: 0;
	width: 250px;
	height: 100%;
	background-color: #0aac99;
	position: fixed;
	left: -250px;
	transition: 0.3s;
	z-index: 10;
	display: inline-block;
}
#sidebar.active{
	left: 0;
}
.close_btn{
	float: right;
	font-size: 24px;
	padding: 0 5px 7px 0;
	cursor: pointer;
}
.nav_toggle_btn{
	position: absolute;
	top:8px;
	left:1vw;
	cursor: pointer;
}
.nav_toggle_btn span{
	min-width: 40px;
	height: 4px;
	background: #fff;
	display: block;
	margin-top: 5px;
}
.logo{
	background-color: #ffffff50;
	width: 100%;
	height: 50px;
}
.logo img{
	position: absolute;
	width: 85%;
	height: 40px;
	left: 5px;
	top: 5px;
}
.profile_image{
	position: absolute;
	top:40px;
	left: 18px;
}
.profile_image img{
	height: 210px;
	width: 210px;
}
.user-name-on-sidebar{
	position: absolute;
	top: 225px;
	width: 250px;
}
.user-name-text{
	width: 100%;
	text-align: center;
}
#log_btn{
	position: absolute;
	top: 270px;
	left: 63px;
}
#sidebar #menu{
	position: absolute;
	width: 100%;
	top: 320px;
	margin: 0;
	padding: 0;
	list-style: none;
}
#menu a{
	color: #fff;
}
#menu li{
	background-color: #ffffff50;
	padding: 18px;
	font-size: 2rem;
	margin: 2px 0;
}
#menu li:hover{
	background: #222;
}

@media only screen and (max-height: 650px) {
	#sidebar{
		overflow: scroll;
	}
}