/* TAC Product FAQ Frontend CSS */

.tac-faq-wrap * {
  box-sizing: border-box;
}

.tac-faq-wrap .faq-sec {
  background: var(--white, #ffffff);
}

.tac-faq-wrap .faq-title {
  font-family: "Fot Tsukuardgothic Std", Sans-serif !important;
  font-size: 28px;
  font-weight: 700;
  color: var(--forest, #162721);
  margin-bottom: 6px;
}

.tac-faq-wrap .faq-sub {
  font-size: 13.5px;
  color: var(--f50, #737373);
  margin-bottom: 24px;
  font-weight: 300;
  font-family: "Futura", Sans-serif !important;
}

.tac-faq-wrap .faq-item {
  border-bottom: 1px solid var(--f20, #e0e0e0);
}

.tac-faq-wrap .faq-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  text-align: left !important;
  gap: 12px !important;
  box-shadow: none !important;
  outline: none !important;
}

.tac-faq-wrap .faq-btn:hover,
.tac-faq-wrap .faq-btn:focus,
.tac-faq-wrap .faq-btn:active,
.tac-faq-wrap .faq-btn.open {
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.tac-faq-wrap .faq-q {
  font-size: 14px;
  line-height: 22px;
  color: var(--forest, #162721);
  font-weight: 400;
  font-family: "Futura", Sans-serif !important;
}

.tac-faq-wrap .faq-plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--forest, #162721);
  color: var(--cream, #fdfbd4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .25s;
}

.tac-faq-wrap .faq-btn.open .faq-plus {
  transform: rotate(45deg);
}

.tac-faq-wrap .faq-body {
  display: none;
  padding-bottom: 16px;
  font-size: 14px;
  line-height: 22px;
  color: var(--f50, #737373);
  font-weight: 300;
  font-family: "Futura", Sans-serif !important;
}

.tac-faq-wrap .faq-body.open {
  display: block;
}

/* Tablet (768px - 991px) */
@media(min-width: 768px) and (max-width: 991px) {
  .tac-faq-wrap .faq-sec {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .tac-faq-wrap .faq-q,
  .tac-faq-wrap .faq-body {
    font-size: 15px;
    line-height: 24px;
  }
}

/* Desktop (>=992px) */
@media(min-width: 992px) {
  .tac-faq-wrap .faq-sec {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .tac-faq-wrap .faq-q,
  .tac-faq-wrap .faq-body {
    font-size: 16px;
    line-height: 26px;
  }
}