.faq-accordion .content_container {
  display: flex;
}
.faq-accordion .accordion-text {
  width: 35%;
}
.faq-accordion .accordion-content {
  padding-left: 130px;
  width: 65%;
}
.faq-accordion img {
  width: unset;
}
.faq-accordion .tab1 {
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.faq-accordion .tab1:last-child {
  border-bottom: 0;
}
/* (B) HIDE CHECKBOX */
.faq-accordion .tab1 input { display: none; }
/* (C) TAB LABEL */
.faq-accordion .tab1 label {
  /* (C1) DIMENSIONS */
  position: relative; /* required for (f2) position:absolute */
  display: block;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  font-size: 22px;
  line-height: 28px;
}
/* (D) TAB CONTENT - HIDDEN BY DEFAULT */
/* css animation will not work with auto height */
/* this is why we use max-height instead */
.faq-accordion .tab1 .content {
  overflow: hidden;
  transition: max-height 0.3s;
  max-height: 0;
}
.faq-accordion .tab1 .content a {
  display: block;
  margin-bottom: 30px;
}
/* (E) OPEN TAB ON CHECKED */
.faq-accordion .tab1 input:checked ~ .content { max-height: 200vh; padding-right: 50px; }
/* (F) EXTRA - ADD ARROW INDICATOR */
.faq-accordion .tab1 label::after {
  background: url('../../../../img/chev-down.svg');
  background-repeat: no-repeat;
  content: '';
  width: 10px;
  height: 7px;
  position: absolute;
  right: 0;
  top: 35px;
  transition: all 0.4s;
}
/* (F4) ROTATE ARROW ON CHECKED */
.faq-accordion .tab1 input:checked ~ label::after { transform: rotate(180deg); }

.faq-accordion.rl {
  background-color: #F2F0ED;
  padding: 60px 0;
}
.faq-accordion .asterix {
    position: absolute;
    max-width: 560px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

@media only screen and (max-width: 1200px) {
  .faq-accordion .asterix {
    max-width: 260px;
  }
}

@media only screen and (max-width: 768px) {
  .faq-accordion .content_container {
    flex-direction: column;
  }
  .faq-accordion .accordion-text,
  .faq-accordion .accordion-content {
    width: 100%;
    padding: 0;
  }
  .faq-accordion .tab1 label {
    font-size: 17px;
    line-height: 1.4;
    padding-right: 30px;
  }
  .faq-accordion .asterix {
    display: none;
  }
}


.faq-accordion.hc {
    color: #6A6C9D;
}
