*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.sidebar{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 260px;
	background: white;
	visibility : hidden;
}

.sidebar.open{
	visibility: visible;
	z-index: 999;
	padding: 5px 0px;
	overflow-y:auto;
}

.sidebar .logo-details{
	height: 60px;
	width: 100%;
	padding: 0px 10px 0 23px;
}

.logo_name {
	float:left;
	font-weight:bolder;
	margin-top:16px;
	font-size:19px;
}

#closeMenu {
	float:right;	
	text-align:right;
	font-size: 40px;
	padding-top:5px;
}

.sidebar .logo-details i{
	font-size: 30px;
	height: 40px;
	min-width: 63px;
	text-align: center;
	line-height: 40px;
	color:black;
}

ul {
	list-style-type: none;
	gap: 14px;
	display:flex;
	flex-direction: column;
}

.nav-links .icon-link i.fa {
	color: gray;
	font-size: 20px;
	width: 24px;
	margin-right: 9px;
}

.nav-links .icon-link .link_name {
	color: gray;
	font-weight: bolder;
	font-size: 15px;
}

.nav-links li {
	height: 34px;
}

.nav-links li:hover {
	background : #dedede;
}

.icon-link {
	height: 34px;
	padding: 6px 10px 0 23px;
}

@media screen and (max-width: 400px){
	.sidebar{
		width: 240px;
	}
}

@media only screen and (max-width: 768px){
	.sidebar{
		width: 260px;
		
	}
}


