@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

/*
:root {
	--primaer-color: #fff;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body{
	display: flex;
	width: 100%;
	height: auto;
	align-items: center;
	justify-content: center;
	background-image: url('/img/win4.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
*/




.ccontainer{
	display: flex;
	flex-direction: column;
	width: 200px;
	height: 100vh;
	border-radius: 10px;
	align-items: center;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transition: 1s;
	background: rgb(255 255 255 / 25%);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 30px );
    -webkit-backdrop-filter: blur( 3px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.ccontainer .bbrand{
	display: flex;
	width: 100%;
	height: 40px;
	padding: 0 10px;
	margin: 10px 0;
	align-items: center;
	justify-content: space-between;
}
.ccontainer .bbrand h3{
	font-weight: 300;
	font-size: 20px;
	color: var(--primaer-color);
}

.ccontainer .bbrand a i{
	color: var(--primaer-color);
	font-size: 30px;
}
.ccontainer .nnavbar {
	display: flex;
	width: 90%;
	height: auto;
	margin: 10px 0;
	align-items: center;
	justify-content: center;
}

.ccontainer .nnavbar ul{
	list-style-type: none;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	align-items: flex-start;
	justify-content: center;
}
.ccontainer .nnavbar ul li{
	height: 40px;
	width: 100%;
	margin: 5px 0;
}
.ccontainer .nnavbar ul li a{
	display: flex;
	width: 100%;
	height: 100%;
	text-decoration: none;
	border-radius: 7px;
	align-items: center;
	justify-content: left;
}
.aadd .nnavbar:nth-child(4) {
	margin: 0;
}
.ccontainer .nnavbar ul li a {
	color: var(--primaer-color);
}
.ccontainer .nnavbar ul li a span{
	font-size: 14px;
	font-weight: 300;
}
.ccontainer .nnavbar ul li a i{
	display: flex;
	font-size: 20px;
	margin: 0 15px;
}
.ccontainer .nnavbar ul li a:hover,.ccontainer .nnavbar ul li a:hover span,.ccontainer .nnavbar ul li a:hover i{
    background: #8a8a8a14;
    backdrop-filter: blur(63px);
	
}
.ccontainer .uuser{
    display: flex;
    flex-direction: column;
	gap: 4px;
    width: 100%;
    height: 78px;
    align-items: center;
	text-align: center;
}


.ccontainer .uuser img{
	width: 50px;
	height: 50px;
	border-radius: 50%;
}
.ccontainer .uuser .nname{
    display: flex;
    flex-direction: column;
}
.ccontainer .uuser .nname h5{
	color: #fff;
	font-size: 12px;
	
}
.ccontainer .uuser .nname span{
	color: #fff;
	font-size: 10px;
}
.ccontainer.active{
	width: 70px;
}
.ccontainer.active .bbrand{
	justify-content: center;
}
.ccontainer.active .nnavbar ul{
	width: 90%;
}
.ccontainer.active .uuser{
	width: 80%;
	height: 100%;
}
.ccontainer.active .nnavbar ul li a{
	justify-content: center;
}
.ccontainer.active .bbrand .llogo,.ccontainer.active .bbrand h3,.ccontainer.active .nnavbar ul li a span,.ccontainer.active .uuser .nname{
	display: none;
}
