.accrdion-header {
	background: linear-gradient(to right, #03aff5 0%,#02f6ff 100%);
	border-radius: 5px;
	margin-bottom: 1px;
	color: #fff;
	cursor: pointer;
	padding: 10px 10px 10px 40px;
	font-size: 17px;
	position: relative;
}
.accrdion-header:before {
	position: absolute;
	content: "+";
	display: block;
	left: 20px;
}
.accrdion-active .accrdion-header:before {
	content: "-";
}
.accrdion-content {
	padding: 10px;
	line-height: 1.7rem;
}
