@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #17658D;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}

#body-pd{background-color: #f8f9fa!important;}
.l-navbar{box-shadow:1px 1px 1px #d2cbee;}

a {text-decoration: none}
.title-section{color:var(--first-color);}


.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s;
    background-color:var(--first-color);
}

.header_toggle {color: white;font-size: 1.5rem;cursor: pointer}
.header_title{color: white;font-weight:lighter}

.header_img {width: auto;height:30px;display: flex;justify-content: center;}
.header_img img { width: 80px}

.l-navbar {
    position: fixed;
    top: 0;
    left: -2%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 0 0 0;
    z-index: var(--z-fixed)
}

.main-nav {
    height: 100%;
    display: block !important;
    flex-direction: column;
    overflow-x: hidden;
	overflow-y: scroll;
	-ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.nav_name{
	font-size: 13px;
	padding-left: 10px;
}

.nav_logo,.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {margin-bottom: 2rem}
.nav_logo-icon {font-size: 1.25rem;color: var(--white-color)}
.nav_logo-name {color: var(--white-color);font-weight: 700;padding-left: 10px;max-width: 150px;}
.nav_link {position: relative;color: var(--white-color);margin-bottom: 0.5rem;}
.nav_link:hover {color: var(--white-color); background-color:#1c999f;}
.nav_icon {font-size: 1.25rem}
.show {left: 0}

.active {color: var(--white-color)}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {height: 100vh}

#header-annonce{
	display: flex;
	color:white;
	position: relative;
	padding-left: 35px;
	min-height: 24px;
}

#header-annonce p{
	padding-right: 5px;
	padding-left: 5px;
	margin-bottom: 0px;
}

#header-annonce a{
	color: #fb9941;
}

#header input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

#header input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

#header input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

#header input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

#header input[type="checkbox"]:checked ~ .logo{
  display: none;
}

#header .checkbox {
  position: absolute;
  display: block;
  height: 22px;
  width: 22px;
  top: 5px;
  left: 5px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

#header .hamburger-lines {
  display: block;
  height: 18px;
  width: 22px;
  position: absolute;
  top: 2px;
  left: 5px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#header .hamburger-lines .line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background: #fff;
}

.slide-right{
	margin-left: 150px;	
}

#header .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

#header .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

#header .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

@media screen and (min-width: 768px) {
	.l-navbar {
		left: -30%;
	}
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem)
    }

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

  /*  .header_img img {
        width: 45px
    }
*/
    .l-navbar {
        left: 0;
        padding: 1rem 0 0 0
    }

    .l-navbar.show {
        width: calc(var(--nav-width) + 156px)
    }

}
