/** ------------------------------------------------- *
**    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: var(--secondary);
	padding: 15px 25px;
	color: var(--primary);
	font-family: var(--heading-font);
	font-size: 20px;
	font-weight: 700;
	/* display: block; */
	cursor: pointer;
	margin-top: 20px;
	/** if using icon */
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.smk_accordion .accordion_in.acc_active > .acc_head {
	color: #ffffff;
	background: var(--primary);
}
.smk_accordion .accordion_in > .acc_head .title {
	font-size: 20px;
	font-weight: 700;
}
.smk_accordion .accordion_in.acc_active > .acc_head .title {
	font-weight: 700;
}

.smk_accordion .accordion_in .acc_head .acc_icon_expand {
	display: block;
	width: 10px;
	height: 11px;
	margin-top: 0;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
	display: inline-block;
	position: absolute;
	vertical-align: middle;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	background: var(--icon-sprite);
	background-size: 300px;
	background-position: -24px -25px;
	width: 10px;
	height: 11px;
}
.smk_accordion .accordion_in.acc_active .acc_head .acc_icon_expand::before {
	background-position: -50px -24px;
}

/** ------------------------------------------------------ *
**    Content
** ------------------------------------------------------- */
.smk_accordion .accordion_in .acc_content {
	background: #ffffff;
	color: #000;
	font-size: 16px;
	font-family: var(--body-font);
	font-weight: 400;
	padding: 15px 10px;
	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: 0 15px 0 25px;
	color: var(--secondary-dark);
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 700;
	display: block;
	cursor: pointer;
	margin-top: 20px;
}
#home-faq .smk_accordion .tmf-post.first-post .acc_head {
	margin-top: 0;
}
#home-faq .smk_accordion .accordion_in.acc_active > .acc_head {
	color: var(--secondary-dark);
	background: transparent;
}
#home-faq .smk_accordion .accordion_in > .acc_head .title {
	font-size: 16px;
	font-weight: 700;
}

/** icon */
#home-faq .smk_accordion .accordion_in .acc_head .acc_icon_expand {
	display: block;
	width: 10px;
	height: 11px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
}
#home-faq .smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
	display: inline-block;
	position: absolute;
	vertical-align: middle;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	background: var(--icon-sprite);
	background-size: 300px;
	background-position: -24px -25px;
	width: 10px;
	height: 11px;
}
#home-faq .smk_accordion .accordion_in.acc_active .acc_head .acc_icon_expand::before {
	background-position: -50px -24px;
}

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