.dropdown_items_container{
	--dropdown-item-spacing: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: var(--dropdown-item-spacing);
	color: var(--blauw_100);
}

.dropdown_item{
	border-bottom: solid 0.1rem var(--beige_100);
	padding-bottom: var(--dropdown-item-spacing);
}

.dropdown_item_title{
	display: flex;
	position: relative;
	text-decoration: none !important;
	color: var(--blauw_100) !important;
	font-family: "Instrument Serif";
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.1;
	justify-content: space-between;
	gap: 1.3rem;
	width: 100%;
	transition: 0.3s color;
}

.dropdown_item_title:hover{
	color: var(--lichtblauw) !important;
}

.dropdown_item_title:after{
	content: "\f068";
	font-family: 'Font Awesome 6 Pro';
	color: var(--blauw_100);
	font-size: 2.4rem;
	font-weight: 300;
	line-height: 1.1;
	text-align: right;
	white-space: nowrap;
}

.dropdown_item_title.collapsed:after{
	content: "\f067";	
}

.dropdown_item_content{
	
}

.dropdown_item_content_inner{
	padding-top: 0.8rem;
	color: var(--blauw_100);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.3;
	max-width: 85rem;
}

.dropdown_item_content_inner :last-child{
	margin-bottom: 0;
}

@media (max-width:767px)
{		
	.dropdown_item_title{
		font-size: 2.6rem;
	}
	
	.dropdown_item_title:after{
		font-size: 2.2rem;
	}
}

@media (min-width:768px) and (max-width:991px)
{
	
}

@media (min-width:992px) and (max-width:1199px)
{
	
}

@media (min-width:1200px) and (max-width:1399px)
{
    
}

@media (min-width:1400px)
{
    
}
