#menu-state {
	display: none;
}

#menu-state:checked ~ #header-wrap .burger:after {
	background-color: orange;
	top: 0;
	transform: rotate(45deg);
}

#menu-state:checked ~ #header-wrap .burger:before {
	background-color: orange;
	top: 0;
	transform: rotate(-45deg);
}

#menu-state:checked ~ #header-wrap .burger {
	background-color: transparent;
}

.header-menu {
	display: none;
}

#header-dropdown-mobile {
	display: none;
}

#header-dropdown-mobile a {
	cursor: pointer;
}

.fixed {
	z-index: 99;
}

#header-dropdown-mobile .submenu a {
	color: #333;
}

.burger-wrapper {
	cursor: pointer;
	display: inline-block;
	width: 100px;
	height: 100%;
	float: left;
	position: relative;
}

.burger {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	
	background-color: #ffecb6;
	height: 6px;
	border-radius: 4px;
	width: 60px;
	margin: auto;

	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.burger:before,
.burger:after {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;

	content: '';
	display: block;
	background-color: #ffecb6;
	height: 6px;
	width: 60px;
	border-radius: 4px;

	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}

.burger:after {
	top: 14px;
}

.burger:before {
	top: -14px;
}

#header-dropdown-mobile ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#header-dropdown-mobile > ul > li {
	font-size: 2.5rem;
}

#header-dropdown-mobile a {
	border-bottom: 1px solid red;
	display: block;
	padding: .6em 1.2em;

	position: relative;
}

#header-dropdown-mobile a:hover {
	color: #edb43d;
}

#header-dropdown-mobile .has-children > a:after {
	content: '+';
	display: block;
	position: absolute;
	right: 40px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 0;
	line-height: 0; 
}

#header-dropdown-mobile li {
	font-size: .9em;
}

#header-dropdown-mobile li:last-child {
	border-bottom: 0;
}

#header-dropdown-mobile ul.submenu {
	display: none;
	background-color: #ffecb6;
	border-left: 10px solid orange;
}


@media (min-width: 1250px){
	
	.burger-wrapper {
		display: none;
	}

	.header-menu {
		display: inline;
	}

}