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

/** -------------------------------------------------- *
**    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: #e5e5e5;
	padding: 15px;
	color: #404144;
	font-family: var(--body-font);
	font-size: 18px;
	font-weight: 600;
	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(--accent);
}
.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: 18px;
	height: 18px;
	/* position: absolute;
  left: 10px;
  top: 50%; */
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
	content: "\f0da";
	color: var(--accent);
	font-size: 24px;
	font-weight: 700;
	font-family: var(--font-awesome);
	display: inline-block;
	/** if using plus minus */
	/* content: '\2b';
  font-size: 18px; */
}
.smk_accordion .accordion_in.acc_active .acc_head .acc_icon_expand::before {
	color: var(--primary);
	transform: rotate(90deg);
	/** if using minus */
	/* content: '\f068';
  font-size: 12px; */
}

/** ------------------------------------------------------ *
**    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;
	}
}

/** ------------------------------------------------------- *
**  General
** -------------------------------------------------------- */
/* .smk_accordion .accordion_in:first-of-type,
.smk_accordion .accordion_in:first-of-type .acc_head {
}
.smk_accordion .accordion_in:last-of-type,
.smk_accordion .accordion_in:last-of-type .acc_content {
} */

/** ------------------------------- *
**  Attorney Accordions
** ------------------------------- */
/** head */
.single-attorney .smk_accordion .accordion_in .acc_head {
	position: relative;
	background: var(--secondary-light);
	padding: 15px 25px;
	color: #242145;
	font-family: var(--heading-font);
	font-size: 24px;
	font-weight: 700;
	display: block;
	cursor: pointer;
	margin-top: 20px;
	border-radius: 5px;
}
.single-attorney .smk_accordion .accordion_in.acc_active > .acc_head {
	color: #ffffff;
	background: var(--primary);
}
.single-attorney .smk_accordion .accordion_in.acc_active > .acc_head .title {
	font-weight: 700 !important;
}
.single-attorney .smk_accordion .accordion_in > .acc_head .title {
	font-size: 24px;
	font-weight: 700;
}

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

@media screen and (max-width: 400px) {
  .single-attorney .acc_content .editor-content ul {
    padding-left: 20px;
  }
} */

/** --------------------------------
**  Practice Area Accordions
** ------------------------------- */
/* .single-practice-area .smk_accordion .tmf-post:first-child .acc_head {
  margin-top: 10px;
} */

/** head */
/* .single-practice-area .smk_accordion .accordion_in .acc_head {
  position: relative;
  background: #edefee;
  padding: 15px;
  color: #000;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  display: block;
  cursor: pointer;
  margin-top: 20px;
}
.single-practice-area .smk_accordion .accordion_in.acc_active > .acc_head {
  color: #ffffff;
  background: var(--primary);
}
.single-practice-area
  .smk_accordion
  .accordion_in.acc_active
  > .acc_head
  .title {
  font-weight: 500 !important;
} */
/* .single-practice-area .smk_accordion .accordion_in > .acc_head .title {
  font-size: 18px;
  font-weight: 500;
} */

/** content*/
/* .single-practice-area .smk_accordion .accordion_in .acc_content {
  background: transparent;
  color: #000;
  font-size: 17px;
  font-family: var(--body-font);
  font-weight: 400;
  padding: 15px 10px;
  line-height: 20px;
}

@media screen and (max-width: 400px) {
  .single-practice-area .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(--body-copy-color);
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 500;
	display: block;
	cursor: pointer;
	margin-top: 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: var(--accent);
	background: transparent;
	font-size: 16px;
	font-weight: 700;
}
#home-faq .smk_accordion .accordion_in > .acc_head .title {
	font-size: 16px;
	font-weight: 500;
}
#home-faq .smk_accordion .accordion_in.acc_active > .acc_head .title {
	font-weight: 700;
}

/** icon */
#home-faq .smk_accordion .accordion_in .acc_head .acc_icon_expand {
	display: block;
	width: 13px;
	height: 13px;
	position: absolute;
	left: 0;
	top: 5px;
	margin-top: 0;
}
#home-faq .smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--icon-sprite);
	background-size: 450px;
	background-position: -359px 1px;
	width: 13px;
	height: 13px;
}
#home-faq .smk_accordion .accordion_in.acc_active .acc_head .acc_icon_expand::before {
	background-position: -332px 0;
}

/** 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 25px;
	line-height: 20px;
}
