/** ------------------------------------------------- *
**    SMK Accordion
** -------------------------------------------------- */
.smk_accordion {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

/** -------------------------------------------------- *
**    Section
** --------------------------------------------------- */
.smk_accordion .accordion_in {
	position: relative;
	overflow: hidden;
}
.smk_accordion .accordion_in:last-child {
	border-bottom: none;
}

/** -------------------------------------------------- *
**    Head
** --------------------------------------------------- */
.smk_accordion .accordion_in .acc_head {
	position: relative;
	/* background: transparent; */
	background: var(--secondary-dark);
	padding: 10px 15px;
	/* color: #676767; */
	color: #fff;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 28px;
	/* border: 1px solid var(--accent); */
	border-radius: 3px;
	display: flex;
	gap: 10px;
}
.smk_accordion .tmf-post.first-post .acc_head {
	margin-top: 15px;
}
.smk_accordion .accordion_in.acc_active > .acc_head {
	/* color: #676767; */
	/* background: transparent; */
	color: #fff;
	background: var(--secondary-dark);
}
.smk_accordion .accordion_in > .acc_head .title {
	font-size: 18px;
	font-weight: 600;
}
.smk_accordion .accordion_in.acc_active > .acc_head .title {
	font-weight: 700;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 0;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
	display: inline-block;
	font-family: var(--font-awesome);
	font-size: 12px;
	font-weight: 600;
	content: '\2b';
	/* color: var(--accent); */
	color: #fff;
}
.smk_accordion .accordion_in.acc_active .acc_head .acc_icon_expand::before {
	content: '\f068';
	font-size: 10px;
	transform: unset;
}

/** ------------------------------------------------------ *
**    Content
** ------------------------------------------------------- */
.smk_accordion .accordion_in .acc_content {
	background: transparent;
	color: #676767;
	font-size: 16px;
	font-family: var(--body-font);
	font-weight: 400;
	padding: 15px 40px;
	line-height: 20px;
}
.smk_accordion .accordion_in.acc_active > .acc_content {
	display: block;
}
.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
	margin-top: 5px;
}
.smk_accordion.acc_with_icon .accordion_in .acc_content .editor-content ul li ul {
	margin: 0;
}
.at-accordion-views {
	margin-top: 25px;
}

@media screen and (max-width: 500px) {
	.smk_accordion .accordion_in .acc_content .editor-content ul {
		padding-left: 20px;
	}
}

/** --------------------------------
**  FAQ Accordions
** ------------------------------- */
.tmf-post.faq.accordion {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

/**  head */
#home-faq .smk_accordion .accordion_in .acc_head {
	position: relative;
	background: transparent;
	padding: 10px 15px;
	color: #676767;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 28px;
	border: 1px solid var(--accent);
	border-radius: 3px;
	display: flex;
	gap: 10px;
}
#home-faq .smk_accordion .tmf-post.first-post .acc_head {
	margin-top: 0;
}
#home-faq .smk_accordion .accordion_in.acc_active > .acc_head {
	color: #676767;
	background: transparent;
}
#home-faq .smk_accordion .accordion_in > .acc_head .title {
	font-size: 18px;
	font-weight: 600;
}

/** icon */
#home-faq .smk_accordion .accordion_in .acc_head .acc_icon_expand {
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 0;
}
#home-faq .smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
	display: inline-block;
	font-family: var(--font-awesome);
	font-size: 12px;
	font-weight: 600;
	content: '\2b';
	color: var(--accent);
}
#home-faq .smk_accordion .accordion_in.acc_active .acc_head .acc_icon_expand::before {
	content: '\f068';
	font-size: 10px;
	transform: unset;
}

/** content */
#home-faq .smk_accordion .accordion_in .acc_content {
	background: transparent;
	color: #676767;
	font-size: 16px;
	font-family: var(--body-font);
	font-weight: 400;
	padding: 15px 40px;
	line-height: 20px;
}
