/* -------------------------------- */
/* --- FAQ ACCORDION -------------- */
/* -------------------------------- */
#cig__faq_accordion {
  padding-top: 2rem;
}
ul.cig-flex-ul {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 20px;
}
li.cig__accordion {
  list-style: none;
  background: #fff;
}

.cig__accordion--head {
  position: relative;
  background: var(--color-blue-light-bg);
  border-radius: var(--border-radius-5);
}
.cig__accordion-heading {
  position: relative;
  color: var(--color-blue-light);
  display: block;
  font-size: 18px;
  margin: 0;
  padding: 1rem 3rem 1rem 1.5rem;
  z-index: 9;
  cursor: pointer;
}
.cig__accordion-body {
  display: none;
  padding: 20px 30px;
  position: relative;
  z-index: 3;
}

span.cig__accordion-chev {
  content: "";
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9 8L5 9.94332L13.0851 18.2128L21.1702 9.94332L19.2702 8L13.0851 14.3123L6.9 8Z' fill='%23112D51'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
  transition: 0.3s;
  z-index: 3;
}

li.cig__accordion.cig__open .cig__accordion--head .cig__accordion-chev {
  transform: rotate(180deg);
  transition: 0.3s;
}
