.collapse{
	border-top: 1px solid var(--border-color);
}

.collapse .collapse-header{
	height: 55px;
	background-color: white;
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	flex-direction: row;
	cursor: pointer;
	align-items: center;
	justify-content: space-between;
}

.collapse .collapse-header h2{
	font-family: var(--primary-font);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--default-color);
}


.collapse .collapse-content{
	max-height: 5000px;
	overflow: hidden;
	height: 0px;
	padding-left: 15px;
	padding-right: 15px;
	transition: all 0.8s ease-in;
	transition: all 0.8s ease-out;
}

.collapse.open .collapse-content{
	max-height: 5000px;
	height: auto !important;
	transition: all 0.8s ease-in;
	transition: all 0.8s ease-out;
}