/* Frecuently Answer Question */

:root {
  --tg-schema-faq-background: #f2f2f2;
  --tg-schema-faq-link-color: #157edc;
}

.tg-schema-faq {
  background-color: var(--tg-schema-faq-background);
  padding: 30px 15px;
}

.tg-schema-toc + .tg-schema-faq {
  padding-top: 0;
}

.tg-schema-faq-wrap {
  margin: 0 auto;
  width: 100%;
}

.tg-schema-faq-toggle {
  align-items: center;
  background-color: transparent;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #626262;
  display: flex;
  position: relative;
  text-align: left;
  padding-right: 24px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.tg-schema-faq-item:first-child .tg-schema-faq-toggle {
  border-top: 1px solid #626262;
  padding-top: 8px;
}

.tg-schema-faq-toggle-icon {
  line-height: 1;
  position: absolute;
  right: 5px;
  transform: rotate(0);
  transition: all .3s linear;
}

.expanded .tg-schema-faq-toggle-icon {
  transform: rotate(-180deg);
}

.tg-schema-faq-toggle-icon::before {
  content: "\61";
  font-family: "idx-boost-icons";
  font-size: 12px;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-transform: none;
}

.tg-schema-faq-question {
  display: inline;
  font-size: 14px;
  font-weight: 600;
}

.tg-schema-faq-answer {
  font-size: 14px;
  line-height: 1.6;
  clear: both;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.tg-schema-faq-answer.expanded {
  max-height: 100%;
  opacity: 1;
  padding-bottom: 20px;
  transition: all 0.35s ease 0.15s;
}

.tg-schema-faq-answer a {
  color: var(--tg-schema-faq-link-color);
}

.tg-schema-faq-answer p {
  margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  .tg-schema-faq-answer {
    line-height: 1.8;
  }
}