
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	background-color: white;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
	padding: 0;
	padding-bottom: 8px;

	/* M / Bold */
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;

	/* Black/60 */
	color: #4B5562;

	/* Inside auto layout */
	flex: none;
	order: 0;
	flex-grow: 0;
 }

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion.active, .accordion:hover {
	color: #00A658;
}

.accordion:after {
	content: '\2295';
	font-size: 25px;
	font-weight: 500;
	color: #4B5562;
	float: right;
	margin-left: 5px;
  }

.accordion.active:after {
	content: "\2296";
	color: #00A658;
}
  
  /* Style the accordion panel. Note: hidden by default */
  /*
 	max-height: 0, overflow: hidden and a transition property are needed for transition 
  */
.accordion-panel {
	padding: 0;
	background-color: white;
	border-style: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
} 

.accordion-button-wrapper {
	padding-bottom: 16px;
}