/* CSS FOR GLOBAL WOOCOMMERCE */

.woocommerce .pk-col_right .wc-faq__wrap .section-heading {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #3c151814;
}

.woocommerce .pk-col_right .wc-faq__wrap h2 {
  font-size: clamp(
    21px,
    21px + (32 - 21) * ((100vw - 320px) / (1215 - 320)),
    32px
  );
  line-height: 1.1;
}

.wc-faq__item {
  color: rgba(7, 36, 69, 0.8);
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid #3c151814;
  transition: all 0.5s ease-in-out;
}

.wc-faq__wrap .wc-faq__item .wc-faq__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
  cursor: pointer;
}

.wc-faq__wrap .wc-faq__item .wc-faq__head h3 {
  font-weight: 400;
  line-height: 1;
}

.wc-faq__wrap .wc-faq__item .wc-faq__head .icon {
  position: relative;
  width: 10px;
}

.wc-faq__wrap .wc-faq__item .wc-faq__head .icon span {
  display: block;
  position: absolute;
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: currentColor;
  transform-origin: center;
  transition: transform 300ms ease-in-out;
}

.wc-faq__wrap .wc-faq__item .icon span:nth-child(2) {
  transform: rotate(90deg);
}

.wc-faq__wrap .wc-faq__item.open .icon span {
  transform: rotate(180deg);
}

.wc-faq__wrap .wc-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  padding-inline: 0px;
  transition: grid-template-rows 300ms ease-in-out,
    padding-block 300ms ease-in-out;
}

.wc-faq__wrap .wc-faq__body .wc-faq__content {
  max-width: fit-content;
  max-width: 767px;
  overflow: hidden;
}

.wc-faq__wrap .wc-faq__item.open .wc-faq__body {
  padding-block: 0px;
  grid-template-rows: 1fr;
  padding-top: 16px;
}
