*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:sans-serif;
}
:root{
    --secondary : #fff;
    --primary : #df8717;
    --icone : black;
    --focus : #fece2f;
   
}
.container{
    position:relative;
    width: 100%;
}
.navigation{
	display:flex;
	flex-direction: column;
	justify-content: space-between;
    position : absolute;
    width: 200px;
    background: var(--primary);
    transition: 0.5s;
  	min-height: 100%;
  	overflow: auto;
    direction: rtl; 
    padding-top:11px;
    top:90px;
   
}
.navigation.active{
    width:68px;
     z-index:3;
}

.navigation ul{
    position : relative;
    top: 0px;
    left: 0px;
    width: 100%;
    direction: ltr;
}
.navigation ul li{
    position : relative;
    width :100%;
    list-style: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;

}
.navigation ul li.hovered,
.navigation ul li:hover{
    background : var(--secondary);
}
.navigation ul li:focus{
    background : yellow;
}
.navigation ul li:nth-child(1){
   margin-bottom: 40px;
}
.navigation ul li a {
    display: flex;
    position : relative;
    width : 100%;
    text-decoration: none;
    color : var(--icone);
}
.navigation ul li.hovered a,
.navigation ul li:hover a{
    color : var(--icone);
}
.navigation ul li a .icone{
    position: relative;
    display : flex;
    align-items : center;
    justify-content: center;
    min-width: 60px;
    height: 40px;
    line-height: 65px;
    text-align: center;
}
.navigation ul li a .icone ion-icon {
    font-size: 1.75em;
}
.navigation ul li a .titre{
    position : relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 52px;
    white-space: nowrap;
}
/*curve outside */
.navigation ul li.hovered a::before,
.navigation ul li:hover a::before
{
    content: '';
    position:absolute;
    right: 0;
    top: -50px;
    width: 50px;
    height: 50px;
    background : transparent;
    border-radius: 50%;
    box-shadow: 35px 35px 0 10px var(--secondary);
    
}
.navigation ul li.hovered a::after,
.navigation ul li:hover a::after
{
    content: '';
    position:absolute;
    right: 0;
    bottom: -50px;
    width: 50px;
    height: 50px;
    background : transparent;
    border-radius: 50%;
    box-shadow: 35px -35px 0 10px var(--secondary);
    
}
.toggle{
    display: flex;
	flex-direction: row;
	width: 136px;
	height: 90px;
	justify-content: space-between;
	align-items: center;
	font-size: 2.5em;
	cursor: pointer;
	color: var(--icone);
}

/*main*/
.main{
  	position : absolute;
    width :calc(100% - 200px);
    left: 200px;
    height : auto;
    min-height: 100vh;
    background: var(--secondary);
    transition: 0.5s;
}
.topbar{
    display: flex;
    position: absolute;
    width: 100%;
    height:90px;
    justify-content :space-between;
    align-items: center;
    padding : 0 10px; 
    background : var(--primary);
}
.search{
    position : relative;
    width : 400px;
    margin: 0 10px;
}
.search label{
    position : relative;
    width:100%;
}
.search label input{
    width:100%; 
    height:40px;
    border-radius: 40px;
    padding: 5px 20px;
    padding-left: 30px;
    outline: none;
    border: 1px solid var(--black2);
}
.search label ion-icon{
    position : absolute;
    top:10px;
    left:10px;
    font-size: 1.2em;
}
.user{
    display :flex;
    align-items:center;
    justify-content: center;
    width: 40px;
    height:40px;
    overflow: hidden;
    cursor: pointer;
}
.dropdown-menu.show{
	left: auto;
	right: 0; 
}
.btn-inventaire{
	margin : 10px 0px;
}
#page-content-wrapper {
  	position: relative;
	width: calc(100% - 186px);
	left: 185px;
	top: 91px;
	transition: 0.5s;
	padding: 15px;
	
  }
#page-content-wrapper.active{
    width :calc(100% - 68px);
    left: 68px;
}

/*responsive */
@media (max-width:992px){
	.navigation{
		left:-200px;
	}
	.navigation.active{
		width:200px;
		left:0px;
	}
	 #page-content-wrapper{
		width:100%;
		left:0px;
	}
	 #page-content-wrapper.active{
		left:200px;
	}
}
/*responsive */
@media (max-width:410px){
	.navigation{
		top:160px;
	}
	#page-content-wrapper{
		top:145px
	}
	#page-content-wrapper.active{
		top:145px
	}
}