.properties.foldable{
	display: flex;
	flex-direction: column;
}

.properties:not(:last-child){
	padding-bottom: 2rem;;
	border-bottom: 2px solid #ececec;
}

.properties h4{
	font-size: 1.5rem;
}

.properties.foldable h4{
	margin-bottom: 0;
	cursor: pointer;
}

.properties.foldable.open h4{
	margin-bottom: 1.5rem;
}

.properties.foldable h4::after{
	content: "\f078";
	margin-left: .5rem;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.properties.foldable.open h4::after{
	content: "\f077";
}

.properties.foldable dl{
	display: none;
}