
/*_________________________________________________________________

					  $RESET
____________________________________________________________________*/
*,
*:before,
*:after {
  /* margin: 0; */
  /* padding: 0; */
  box-sizing: border-box;
}

/*_________________________________________________________________

					 General styles 
____________________________________________________________________*/
ul {
  list-style-type: none;
  /*padding-left:10px;*/
  /*padding-inline-start: 0px;*/
}

a.a_nav,
label {
  display: block;
  text-decoration: none;
  color: #e5e5e5;
  padding: 0.5vh 0.5vh 1vw 1vw;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid rgba(255, 255, 255, 0);
}
a.a_nav:hover,
label:hover {
  color: #0399ff;
  border-left: 4px solid #ffbc1d;
}

.chk-nav {
  display: none;
}
/*_________________________________________________________________

					  $NAV <nav class"nav"></nav>
____________________________________________________________________*/
.nav {
  z-index: 10;
}

/*_________________________________________________________________

					  $NAVBAR <ul class"nav-bar"></ul> 
____________________________________________________________________*/
.navbar .sub_nav {
  display: block;
}

.sub_nav a {
  padding-left: 2vw;
}

.navbar > li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
	z-index: 500;
}

/*_________________________________________________________________

Styles of sub-menus
____________________________________________________________________*/
.navbar .fa {
  /* position: absolute; */
  left: 1rem;
}

.lbl-nav:after {
  content: "\25BC";
  position: absolute;
  width: 100%;
  text-align: right;
  left: 0;
  padding-right: 0.75rem;
  line-height: 1.5rem;
}

/*_________________________________________________________________

    Styles to modify main label or burger icon
____________________________________________________________________*/
label[for="btn-navbar"] {
  padding: 0.5vw 1vw 0.5vh 1vw;
  text-align: left;
  color: #e5e5e5;
  background-color: #055daa;
}
label[for="btn-navbar"]:hover {
  color: #e5e5e5;
  border-left: 4px solid rgba(0, 0, 0, 0);
}

/*_________________________________________________________________

    Style to hide the main list of the menu
____________________________________________________________________*/
.navbar {
  /* margin-left: -100%; */
  /* height: 100vh; */
  transition: all 0.5s ease;
  background-color: #055daa;
}
/*
.chk-nav:checked ~ .navbar {
  margin-left: 0;
}
*/
/*_________________________________________________________________

     Styles to hide sub-menus
____________________________________________________________________*/
.navbar .sub_nav {
  display: none;
}
/*
.chk-nav:checked ~ .sub_nav {
  display: block;
}
*/
#container {
  max-width: 90vw;
  /* padding: 1rem; */
  /* padding-bottom: 1rem; *//* width: 80%; */
  margin: 0 auto;
}

/************************************************************************
	Styles for desktop 
**************************************************************************/
@media all and (min-width: 900px) {
  a.a_nav {
    display: block;
    padding: 1.5vh 1.25vw;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .appli_title {
    display:block;
  }
  /* Styles for navbar  */
  .navbar {
    width: 100%;
    max-width: 983px;
    height: auto;
    display: table;
    table-layout: auto;
    margin: auto;
  }

  .navbar > li {
    display: table-cell;
  }
/*
  .chk-nav:checked ~ .navbar {
    margin: auto;
  }
*/
  /*_________________________________________________________________

			Style to hide the hamburger icon
____________________________________________________________________*/
  label[for="btn-navbar"] {
    display: none;
  }

  /*_________________________________________________________________

		  Styles for the sub-menus
____________________________________________________________________*/
  .navbar .sub_nav {
    display: none;
  }

  .navbar > ul > li {
    position: relative;
  }

  /* Sub-menus style */
  .navbar .sub_nav {
    background-color: #055daa;
    position: absolute;
  }

  .sub_nav a {
     border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  /*_________________________________________________________________

				  Icons styles
____________________________________________________________________*/
  .navbar .fa {
    position: static;
    padding-right: 0.3rem;
  }

  .lbl-nav:after {
    top: 0;
    height: 100%;
    padding-right: 0.75rem;
    line-height: 3.5rem;
  }

  /*_________________________________________________________________

				  Styles for the main menu
____________________________________________________________________*/
  .navbar > li {
    position: static;
    border-top: 4px solid #ffb503;
    
  }

  .navbar > li > a:hover,
  label:hover {
    border-left: 4px solid rgba(0, 0, 0, 0);
  }
  .appli_title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 2.5vh;
    font-weight: bold;
    color: #055daa;
    background-color: #ddeeff;
  }
  .appli_title a:visited{
    color :#055daa;
  }
}
