header {
  width: 100%;
	height: 5rem;
	display: flex;
  position: fixed; 
	background: var(--snow);
	box-shadow: 0px 23px 13px -26px rgba(108,108,108,0.52);
	z-index: 1; 
	border-width: 0px 0px 1px 0px;
	border-style: solid;
	border-color: #b5b5b5; }

.header {
	width: 100%;
	height: 5rem;
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	top: 0;
	display: flex; }

.header > small {
	font-size: 0.6rem;
	color: var(--groen_d);
	position: absolute;
	top: 1rem;
	left: 1rem; }

	/* a .logo:not(footer a .logo) */
header a .logo {
	width: 11rem;
	position: absolute;
	top: 1.3rem;
	left: 4rem;
}

.toggler { 
	width: 2rem;
	display: none;
	position: relative;
	left: 0.9rem;
	top: -0.2rem; }

.burger {
  font-size: 1.7rem;
  color: var(--groen);
  height: 2rem;
  position: absolute;
	top: 1.53rem;
  left: 1rem;
	cursor: pointer;
	transition: all 300ms ease-in; }

.burgerlines {
	display: block;
	width: 1.53rem;
	height: 0.2rem;
	margin-top: 0.3rem;
	border-radius: 3px;;
	background: var(--gray_d);
	transition: all 200ms ease-in;
}

.burger:hover .burgerlines { 
	background: var(--groen);
	transform: scale(0.95); }

nav ul {
	width: 0;
	max-height: 0;
	position: absolute; 
	top: 5rem;
	left: 1rem;
	overflow: hidden; 
	display: flex;
	flex-flow: column;
	background: #efefef;
	border-bottom-right-radius: 100%;
	border-bottom-left-radius: 100%;
	box-shadow: 0px 3px 6px rgba(162, 162, 162, 0.3); 
	transition: left 2s, width .3s, max-height .2s ease-out; 
	border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: var(--gray_l);

}

.toggler:checked ~ nav ul { 
	width: 13rem;
	max-height: 20rem;
	left: 3rem;
	transition: left 3s, width .4s, max-height .3s ease-in; }

nav li:last-child { padding-bottom: 2rem; }

nav li a {
	width: 100%;
	display: block;
	line-height: 1.5;
  color: var(--bruin);
  padding: 0.4rem 0.5rem 0.4rem 4rem;
  transition: padding 100ms ease-in; }

.selected { color: var(--groen); padding-left: 5rem; }

nav li a:hover:not(.active) {
	color: var(--rood);
	padding-left: 4.8rem;
	transition: padding 150ms ease-out; }

/*===============================================*/
   /* MEDIA QUERIE 768 */
/*===============================================*/
@media screen and (min-width: 768px){
	
	.header > small { font-size: 0.6rem; top: 1rem; }

	.logo   { width: 12rem; }
	.burger { font-size: 1.85rem; }

}




