.dropdown_items_container{
	--dropdown-item-spacing: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: var(--dropdown-item-spacing);
}

.dropdown_item{
	border-bottom: solid 0.1rem var(--grijs10);
	padding-bottom: var(--dropdown-item-spacing);
}

.dropdown_item_title{
	display: flex;
	position: relative;
	text-decoration: none !important;
	color: var(--bruin) !important;
	font-weight: 480;
	font-size: 2.4rem;
	line-height: 3.4rem;
	justify-content: space-between;
	gap: calc(var(--dropdown-item-spacing) * 2);
}

.dropdown_item_title:after{
	content: "\f068";
	font-family: 'Font Awesome 6 Pro';
	color: var(--oranje);
	font-size: 2.4rem;
	font-weight: 900;
}

.dropdown_item_title.collapsed:after{
	content: "\f067";	
}

.dropdown_item_content{
	
}

.dropdown_item_content_inner{
	padding-top: 0.5rem;
}

@media (max-width:767px)
{		
	.dropdown_item_title{
		font-size: 2.2rem;
		line-height: 3rem;
	}
	
	.dropdown_item_title:after{
		font-size: 2rem;
	}
}