@media (max-width:767px)
{	
	#navbar-hoofdmenu{
		position: fixed;
     	z-index: 100;
		top: 0;
		height: 100vh;
		width: 85%;
		right: -85%;
		padding: 0;
		margin: 0;
		background: #1c3784;
		
		-webkit-transition:all 0.4s ease-in-out;
		-moz-transition:all 0.4s ease-in-out;
		-o-transition:all 0.4s ease-in-out;
		transition:all 0.4s ease-in-out;
	}
	
	#hoofdmenu{
		width: 100%;
		position: static;
		border-radius: 0;
		padding-top: 69px;
		height: 100vh;
		margin: 0;
		right: 0;
		background: #1c3784;
		overflow-y: auto;
		-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}
	
	#hoofdmenu > li{
		border-top: solid 1px #2e478e;
	}
	
	#hoofdmenu > li > a{
		padding: 0 30px;
	}
	
	#hoofdmenu > li:last-child{
		border-bottom: solid 1px #2e478e;
	}		
	
	#hoofdmenu li a {
		line-height: 60px;
		text-transform: uppercase;
		text-shadow: none;
		color: #fff !important;
	}
	
	#hoofdmenu li ul li{
		margin-bottom: 0;
		padding: 0 30px;
	}
	
	#hoofdmenu li ul li:last-of-type{
		margin-bottom: 0;
	}
	
	#hoofdmenu li ul li a{
		color: #8f97b9 !important;
		text-transform:none;
		font-size: 16px;
		line-height: 20px;
		white-space: normal;
	}
	
	.navbar-default .navbar-toggle .icon-bar,
	#navbar-hoofdmenu .navbar-toggle .icon-bar{
		background: #fff;
	}
	
	.navbar-default .navbar-toggle.collapsed .icon-bar {
		background: #1c3784;
	}
    
    .showmenu-bg{
		background: rgba(0,0,0,0.5);
		position: fixed;
		top: 0;
		right: 0%;
		height: 100%;
		width: 100%;
        opacity: 0;
		z-index: 1;
        -webkit-transition:background 0.4s ease-in-out;
		transition:background 0.4s ease-in-out;
	}
    		
	#navbar-hoofdmenu .navbar-toggler {
		float: right;
		margin: 15px;
		border: solid #fff 1px;
		position: absolute;
		z-index: 1800;
	}
	
	#navbar-hoofdmenu .navbar-toggler-icon{		
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,102,203, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}
	
	.navbar-header {
		position: relative;
		width: auto;
	}
	
	#navbar-hoofdmenu.collapse{
		display: block;
	}
	
	#navbar-hoofdmenu.showmenu{
		right: 0;
		
		-webkit-transition:all 0.4s ease-in-out;
		-moz-transition:all 0.4s ease-in-out;
		-o-transition:all 0.4s ease-in-out;
		transition:all 0.4s ease-in-out;
	}
    
    #navbar{
        border: none;
    }
	
	#hoofdmenu.showmenu{
		right: 0px;
	    z-index: 15;
	}
	
	#hoofdmenu li.dropdown ul{
		opacity: 1;
		background: none;
		padding: 0;
		box-shadow: none;
	    border: none;
		max-height: 0;
		overflow: hidden;
		
		-webkit-transition:max-height 0.8s ease-in-out !important;
		-moz-transition:max-height 0.8s ease-in-out !important;
		-o-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;
	}
	
	body{
		left: 0%;
		position: relative;
		
		-webkit-transition:left 0.4s ease-in-out;
		-moz-transition:left 0.4s ease-in-out;
		-o-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;
		-moz-transition:left 0.4s ease-in-out;
		-o-transition:left 0.4s ease-in-out;
		transition:left 0.4s ease-in-out;
	}
}