@media (max-width:767px)
{	
	#navbar.showmenu:after{
		content: "";
		background: rgba(0,0,0,0.5);
		position: fixed;
		top: 0;
		right: 240px;
		height: 100%;
		width: -webkit-calc(100% - 240px);
		width: calc(100% - 240px);
		z-index: 1;
	}
	
	#navbar:after{
		content: "";
		background: rgba(0,0,0,0);
		position: fixed;
		top: 0;
		right: 0;
		height: 100%;
		width: 0%;
		z-index: -1;
		
		-webkit-transition:all 0.4s ease-in-out;
		transition:all 0.4s ease-in-out;
	}
	
	.navbar-header {
		position: relative;
		width: auto;
	}
	
	#navbar.collapse{
		display: block;
	}
	
	#navbar.showmenu{
		right: 0;
		
		-webkit-transition:all 0.4s ease-in-out;
		transition:all 0.4s ease-in-out;
	}
	
	#navbar .navbar-toggle {
		position: absolute;
		right: 15px;
		border: none;
		top: 15px;
		background: none !important;
		margin-top: 0;
		margin: 0;
        z-index: 1800;
	}
	
	#navbar{
		position: fixed;
		top: 0;
		height: 100vh;
		width: 240px;
		right: -240px;
		padding: 0;
		margin: 0;
		background: #fff;
		
		-webkit-transition:all 0.4s ease-in-out;
		transition:all 0.4s ease-in-out;
	}
    
    #hoofdmenu li.groen a{
        margin: 15px;
        color: #fff !important;
    }
	
	#hoofdmenu{
		width: 240px;
		position: static;
		border-radius: 0;
		padding-top: 70px;
		height: 100vh;
		margin: 0 0 0 0;
		right: 0;
		background: #fff;
		overflow-y: auto;
		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}
	
	#hoofdmenu.showmenu{
		right: 0px;
	    z-index: 15;
	}
    
    #hoofdmenu > li:hover > a:after, #hoofdmenu > li.current-menu-item > a:after, #hoofdmenu > li.current-menu-ancestor > a:after, #hoofdmenu > li.current-menu-parent > a:after, .single-vraag #menu-item-1373 > a:after{
        display: none !important;
    }
	
	#hoofdmenu > li{
		border-top: solid 1px #e3e3e3;
	}
	
	#hoofdmenu > li > a{
		padding: 0 30px;
	}
	
	#hoofdmenu > li:last-child{
		border-bottom: solid 1px #e3e3e3;
	}		
	
	#hoofdmenu li a {
		line-height: 60px;
		text-shadow: none;
		color: #021b78 !important;
	}
	
	#hoofdmenu li ul li{
		margin-bottom: 10px;
		padding: 0 30px;
	}
	
	#hoofdmenu li ul li:last-of-type{
		margin-bottom: 20px;
	}
	
	#hoofdmenu li ul li a{
		color: #8f97b9 !important;
		text-transform:none;
		font-size: 16px;
		line-height: 20px;
		white-space: normal;
	}
	
	#hoofdmenu li.dropdown ul{
		opacity: 1;
		background: none;
		padding: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	    border: none;
		max-height: 0;
		overflow: hidden;
		
		-webkit-transition:max-height 0.8s ease-in-out !important;
		transition:max-height 0.8s ease-in-out !important;
	}
	
	#hoofdmenu li.dropdown.open ul{
		max-height: 500px;
	}
	
	.navbar-default .navbar-toggle .icon-bar,
	#navbar .navbar-toggle .icon-bar{
		background: #021b78;
	}
	
	.navbar-default .navbar-toggle.collapsed .icon-bar {
		background: #021b78;
	}
	
	body{
		left: 0%;
		position: relative;
		
		-webkit-transition:left 0.4s ease-in-out;
		transition:left 0.4s ease-in-out;
	}
	
	body.collapsed{
		left: -25%;
		position: relative;
		overflow: hidden;
		
		-webkit-transition:left 0.4s ease-in-out;
		transition:left 0.4s ease-in-out;
	}
}