.accordion {
	cursor: pointer;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	font-weight: 700;
	background: none;
	border-radius: 5px;
	cursor: pointer;
	z-index: 20;
	position: relative;
	font-size: 18px;
	color: #222222;
	font-weight: 400;
	/* padding: 35px; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px;
}

@media (max-width: 768px) {
	.accordion {
		font-size: 16px;
	}
}

.accordion:after {
	content: "\002B";
	color: #222222;
	font-weight: 500;
	float: right;
	margin-left: 5px;
	font-size: 20px;
}

.accordion.active:after {
	content: "\2212";
	color: var(--primary-color);
}

.panel {
	padding-left: 25px;
	padding-right: 25px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	border-radius: 0px 0px 4px 4px;
	font-size: 14px;
	color: #777777;
	font-weight: 300;
	/* padding: 0 35px 0 35px; */
	z-index: 10;
}

.panel p {
	padding-bottom: 25px;
}

.faq-acc {
	margin-bottom: 20px;
	background: white;
	border-radius: 4px;
}

@media (max-width: 768px) {
}
