/* FAQ module — sbhk122 light theme */
.t15-faq.faq {
  --question-bg-color: var(--t15-bg, #f7f9fb);
  --question-round-color: var(--t15-brand, #720891);
  --question-desc-color: var(--t15-muted, #6a7391);
  --title-color: var(--t15-title, #6a7391);
  --title-split-line: var(--t15-line, rgba(114, 8, 145, 0.12));
  --title-split-bg: var(--t15-brand, #720891);
  --text-color: var(--t15-text, #424a66);
  --desc-color: var(--t15-muted, #6a7391);
  --button-color: #fff;
  --icon_expand: url("../img/faq/icon_expand.png");
  --icon_putaway: url("../img/faq/icon_putaway.png");

  width: 100%;
  min-height: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
  box-sizing: border-box;
}

.t15-faq .titleCell {
  width: min(100% - 2rem, 1200px);
  padding-top: 64px;
  margin-bottom: 24px;
}

.t15-faq .faq-container {
  height: auto;
  margin-top: 12px;
  width: min(100% - 2rem, 1200px);
  display: flex;
}

.t15-faq .faq-list {
  width: 100%;
  height: auto;
}

.t15-faq .faq-item {
  display: flex;
  padding: 15px 20px;
  border-radius: 2px;
}

.t15-faq .faq-item:nth-child(odd) {
  background: transparent;
}

.t15-faq .faq-item:nth-child(even) {
  background: transparent;
}

.t15-faq .round-global-content {
  background-color: #fff;
  box-shadow: 10px 10px 20px rgba(24, 25, 86, 0.17);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t15-faq .round-global-content.round-global-md {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
}

.t15-faq .round-global-content.round-global-md .inner {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: var(--question-round-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.t15-faq .round-global-content span {
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: var(--button-color);
  line-height: 1;
}

.t15-faq .faq-item-desc {
  margin-left: 30px;
  flex: 1;
  min-width: 0;
}

.t15-faq .faq-item-desc h3 {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: var(--title-color);
  margin: 0 0 0.5em;
}

.t15-faq .faq-item-desc h3 span {
  flex: 1;
  display: block;
}

.t15-faq .faq-item-desc h3 i {
  display: none;
}

.t15-faq .faq-item-desc p {
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
  letter-spacing: 2px;
  color: var(--question-desc-color);
  margin: 0 0 1em;
}

@media screen and (max-width: 1200px) {
  .t15-faq.faq {
    min-height: 0;
    height: auto;
    padding-bottom: 40px;
  }

  .t15-faq .titleCell {
    padding-top: 48px;
    margin-bottom: 16px;
  }

  .t15-faq .faq-container {
    width: auto;
    margin: 28px 20px 0;
  }

  .t15-faq .faq-item {
    background: none !important;
    padding: 16px 0;
    border-bottom: 1px solid rgba(106, 115, 145, 0.18);
  }

  .t15-faq .round-global-content.round-global-md {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    margin-top: 2px;
    background: var(--question-round-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
  }

  .t15-faq .round-global-content.round-global-md .inner {
    width: 100%;
    height: 100%;
    background: none;
  }

  .t15-faq .round-global-content span {
    font-size: 12px;
  }

  .t15-faq .faq-item-desc {
    margin-left: 12px;
  }

  .t15-faq .faq-item-desc h3 {
    font-size: 14px !important;
    line-height: 20px !important;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0 !important;
    cursor: pointer;
  }

  .t15-faq .faq-item-desc h3 span {
    word-wrap: break-word;
  }

  .t15-faq .faq-item-desc h3 i {
    display: block;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: var(--icon_expand);
  }

  .t15-faq .faq-item-desc h3 i.is-open,
  .t15-faq .faq-item-desc h3 i.active {
    background-image: var(--icon_putaway);
  }

  .t15-faq .faq-item-desc p {
    display: none;
    margin-top: 10px;
    font-size: 13px !important;
    line-height: 20px;
    letter-spacing: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 20px;
  }

  .t15-faq .faq-item-desc p.is-open,
  .t15-faq .faq-item-desc p.active {
    display: block;
  }
}
