.dropdown_items_container{
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	color: var(--groen);
}

.dropdown_item{
	border-bottom: solid 0.1rem rgba(0, 0, 0, 0.15);
	padding-bottom: 1.5rem;
}

.dropdown_item_title{
	display: flex;
	position: relative;
	text-decoration: none !important;
	color: var(--groen) !important;
	font-family: var(--heading_font);
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1.05;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.3rem;
}

.dropdown_item_title:after{
	content: "\f068";
	font-family: 'Font Awesome 6 Pro';
	color: var(--groen);
	font-size: 2.4rem;
	font-weight: 300;
	line-height: normal;
	margin-top: -0.1rem;
}

.dropdown_item_title.collapsed:after{
	content: "\f067";	
}

.dropdown_item_content_inner{
	color: var(--groen);
	font-size: 1.5rem;
	line-height: 1.4;
	padding-top: 1.6rem;
}

.dropdown_item_content_inner > :last-child{
	margin-bottom: 0;
}

.dropdown_item_content_inner ul{
	margin-bottom: 0;
	padding-left: 2.2rem;
}

.dropdown_item_content_inner li::marker{
	font-size: 1.2rem;
}

.dropdown_item_content_inner strong,
.dropdown_item_content_inner b{
	color: var(--groen);
	font-weight: 700;
}

@media (max-width:767px)
{		
	.dropdown_item_title{
		font-size: 2.6rem;
		line-height: 1.05;
	}
	
	.dropdown_item_title:after{
		font-size: 2.4rem;
	}
}

@media (min-width:768px) and (max-width:991px)
{
	
}

@media (min-width:992px) and (max-width:1199px)
{
	
}

@media (min-width:1200px) and (max-width:1399px)
{
    
}

