.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
}

/*****--------------------| SECTION |--------------------*****/
.smk_accordion .accordion_in {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* border-bottom: 1px solid #e8e8e8; */
  margin-bottom: 10px;
}

/*****--------------------| HEAD |--------------------*****/
.smk_accordion .accordion_in .acc_head {
  position: relative;
  padding: 20px 40px 20px 20px;
  font-family: "Lora";
  font-size: 22px;
  display: block;
  cursor: pointer;
  color: #363636;
  line-height: 100%;
  text-transform: uppercase;
  background: #f9f9f9;
}
.smk_accordion .accordion_in .acc_head h3 {
  margin-bottom: 0;
  text-transform: capitalize;
}
.smk_accordion .accordion_in.acc_active .acc_head {
  background: #e4e4e4;
}

.sidebar_accordion.smk_accordion
  .accordion_in
  .acc_head
  .acc_icon_expand:before {
  display: block;
  position: absolute;
  right: 28px;
  content: "\f107";
  border-radius: 50%;
  background: #fff;
  width: 24px;
  height: 24px;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  font-family: "FontAwesome";
}

.sidebar_accordion.smk_accordion.acc_with_icon .accordion_in .acc_head span {
  padding-left: 30px;
  display: inline-block;
}

.sidebar_accordion.smk_accordion
  .accordion_in.acc_active
  .acc_head
  .acc_icon_expand {
  background: #f7941e;
}

.sidebar_accordion.smk_accordion
  .accordion_in.acc_active
  .acc_head
  .acc_icon_expand:before {
  content: "\f106";
}

/*****--------------------| CONTENT |--------------------*****/
.smk_accordion .accordion_in .acc_content {
  padding: 30px;
  background: #f9f9f9;
}
.accordion_in:last-of-type .acc_content {
  border-bottom: none;
}

.smk_accordion .accordion_in .acc_head .acc_icon_expand::after {
  position: absolute;
  right: 24px;
  left: auto;
  content: "\f101";
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 20px;
  height: 20px;
  top: 18px;
  color: var(--dark-color);
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  text-align: center;
  transform: rotate(90deg);
  transform-origin: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand::after {
  /* content: "\f101"; */
  transform: rotate(270deg);
}
/*****--------------------| RSPONSIVE |--------------------*****/
@media screen and (max-width: 768px) {
}
