/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.accordion_in {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid rgb(251 184 41 / 30%);
  border-radius: 4px;
}

.faq_accordion {
  max-width: 1100px;
  margin: 0 auto;
}

/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */

.accordion_in .acc_head .acc_icon_expand {
  position: relative;
  display: block;
}

.accordion_in .acc_head .acc_icon_expand::after {
  display: block;
  position: absolute;
  right: 40px;
  left: auto;
  top: 40px;
  bottom: 0;
  margin: auto;
  content: "";
  background: url(../images/faq-arrow.svg);
  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;
  color: #33333a;
  z-index: 1;
  width: 19px;
  height: 15px;
  cursor: pointer;
}

.accordion_in.acc_active > .acc_head .acc_icon_expand::after {
  content: "";
  transform: translateZ(10px) rotate(-40deg);
}

.prod_tit {
  text-transform: inherit;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  line-height: 22px;
  color: #373737;
  padding: 29px 40px;
  margin: 0;
}

.smk_accordion .accordion_in:last-child {
  margin-bottom: 0;
}

/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */
.accordion_in .acc_content {
  /* margin: 0px 35px 0px; */
  font-size: 16px;
  padding: 0px 40px 40px;
  border-top: 0;
}

.accordion_in .acc_content p:last-child {
  margin-bottom: 0;
}

.accordion_in.acc_active .prod_tit {
  background: #e8eef5;
  border-color: #e8eef5;
  font-size: 16px;
}

.accordion_in.acc_active {
  border-color: #e8eef5;
}

.accordion_in.acc_active .acc_content {
  background: #e8eef5;
}

.accordion_in .acc_content p {
  line-height: 30px;
  font-weight: normal;
  color: #373737;
  font-size: 14px;
  letter-spacing: 0.1px;
}

.accordion_in .acc_content h1:first-of-type,
.accordion_in .acc_content h2:first-of-type,
.accordion_in .acc_content h3:first-of-type,
.accordion_in .acc_content h4:first-of-type,
.accordion_in .acc_content h5:first-of-type,
.accordion_in .acc_content h6:first-of-type {
  margin-top: 5px;
}

.accordion_in.acc_active > .acc_content {
  display: block;
}

.sidebar_accordion .accordion_in .acc_content {
  background: transparent;
  border-bottom: none;
  padding-top: 0;
  padding: 0px 0px 0px 0;
}

.sidebar_accordion .accordion_in .acc_content {
  padding-top: 18px;
  display: inline-block;
  width: 100%;
}

.sidebar_accordion .acc_with_icon .accordion_in a {
  color: #000;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-transform: capitalize;
  position: relative;
}

.sidebar_accordion .acc_with_icon .accordion_in a:hover {
  color: #000;
}

@media screen and (max-width: 1199.98px) {
  .prod_tit {
    line-height: 20px;
    padding: 24px 30px;
  }

  .accordion_in .acc_head .acc_icon_expand::after {
    right: 15px;
  }

  .accordion_in .acc_content {
    padding: 0px 30px 20px;
  }
}

@media screen and (max-width: 991.98px) {
  .prod_tit {
    padding: 18px 30px;
  }

  .accordion_in .acc_head .acc_icon_expand::after {
    top: 27px;
  }

  .accordion_in {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767.98px) {
  .accordion_in .acc_content {
    padding: 0px 15px 15px;
  }

  .prod_tit {
    line-height: 20px;
    padding: 15px 40px 15px 15px;
    font-size: 16px;
  }

  .accordion_in .acc_head .acc_icon_expand::after {
    top: 18px;
    right: 11px;
    bottom: auto;
  }

  .accordion_in {
    margin-bottom: 15px;
  }
}
