.dropdown_items_container{
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
}

.dropdown_item{
	border-bottom: solid 0.1rem #d9d9d9;
	padding-bottom: 1.5rem;
}

.dropdown_item_title{
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 1.3rem;
	width: 100%;
	text-decoration: none !important;
	color: #000 !important;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1.3;
}

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

.dropdown_item_title.collapsed:after{
	content: "\2b";
}

.dropdown_item_content_inner{
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-top: 1.5rem;
	color: #000;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.4;
}

.dropdown_item_content_inner > *{
	margin-top: 0;
	margin-bottom: 0;
}

.dropdown_item_content_inner .button-group,
.dropdown_item_content_inner p.button-group{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (max-width:767px)
{
	.dropdown_items_container{
		gap: 1.2rem;
	}

	.dropdown_item{
		padding-bottom: 1.2rem;
	}

	.dropdown_item_title{
		font-size: 2rem;
	}
	
	.dropdown_item_title:after{
		font-size: 2.2rem;
	}
}
