.accordion {
	background-color: #45475a;
	color: #cdd6f4;
	cursor: pointer;
	padding: 18px;
  margin: 2px;
	width: 100%;
	text-align: left;
	border: 2px solid #f5c2e7;
	border-radius: 5px;
	outline: none;
	transition: 0.2s;
}
.accordion:hover {
	color: #1e1e2e;
	background-color: #cba6f7;
	border: 2px solid #1e1e2e;
	border-radius: 5px;
}
.accordionactive {
	background-color: #89dceb;
	color: #1e1e2e;
}
.accordionactive:hover {
	background-color: #89b4fa;
	color: #1e1e2e;
}
.accordion:after {
	content: '\02795';
	color: #eff1f5;
	font-size: 13px;
	float: right;
	margin-left: 5px;
}
button.accordionactive:after {
	content: "\2796";
}
.accordionpanel {
	padding: 0 18px;
	background-color: #313244;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}
