@charset "UTF-8";
/* CSS Document */

.nav-responsive {
	justify-content: flex-end;
	background-color: var(--white);
}

.nav-responsive ul.menu {
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-responsive li.menu-item {
	display: flex;
}

.nav-responsive .menu a {
	color: var(--black);
	text-decoration: none;
	padding: 5px 0;
}

.nav-responsive .menu li:not(.button) {
	margin: 4px 15px 0 15px;
}

.nav-responsive .menu li:not(.button) a {
	font-size: 16px;
}

.nav-responsive .menu .button {
	padding: 5px 20px;
}

.nav-responsive .menu .button a {
	color: var(--white);
}

.nav-responsive .menu .current-menu-item:not(.button) a {
	border-bottom: 5px solid var(--act-primary);
}

.nav-responsive .nav-ham-icon {
	display: none;
	z-index: 1000;
	font-size: 25px;
}

.nav-responsive .nav-ham-icon svg {
	color: var(--act-primary);
}

@media screen and (min-width: 1181px) and (orientation: portrait),
screen and (min-width: 1171px){
	.nav-responsive .menu-hoofdmenu-container {
		display: block!important;
	}
}


@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1170px){ /* original breakpoint 1024px */
	.nav-responsive .menu-hoofdmenu-container {
		display: none;
		position: absolute;
		margin-top: 50px;
		left: 0;
		width: 100%;
		background-color: var(--shd-light);
	}
	
	.nav-responsive .menu li:not(.button) {
		margin: 0;
	}
	
	.nav-responsive ul.menu {
		display: grid;
		justify-items: end;
		padding: 20px;
	}
	
	.nav-responsive .nav-ham-icon {
		display: grid;
		justify-content: center;
		align-content: center;
		width: 30px;
		height: 30px;
		cursor: pointer;
	}
}