<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "variables";
@import "vendor/bootstrap/bootstrap/variables";

.content-container {
  background-color: $pricing-gray-bg;
}

.faq-title {
  margin-top: 0;
  margin-bottom: 0;
  color: $color-secondary;
  font-size: 30px;

  @media (min-width: $screen-md-min) {
    font-size: 47px;
  }

  ~ .faq-holder {
    margin-top: 15px;
  }
}

.faq-subtitle {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 20px;

  @media (min-width: $screen-sm-min) {
    margin-bottom: 35px;
  }

  a {
    color: inherit;
    border-bottom: 1px solid;
    font-weight: inherit;

    &amp;:hover {
      color: $color-primary;
      text-decoration: none;
      border-bottom-color: transparent;
    }
  }
}

.faq-holder {
  @media (min-width: $screen-md-min) {
    margin-left: -30px;
    margin-right: -30px;
  }
}

.faq-container {
  margin-bottom: 0;

  @media (min-width: $screen-md-min) {
    float: left;
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.faq-item {
  width: 100%;
  color: $text-color-light;
  font-size: 18px;

  &amp;.is-open {
    .faq-answer {
      display: block;
    }

    .faq-question {
      .fa {
        color: $color-secondary;
        transform: rotate(180deg);
      }
    }
  }
}

.faq-inner-item {
  padding-top: 25px;
  border-bottom: 1px solid $navbar-default-border;
}

.faq-question {
  display: block;
  margin-bottom: 25px;
  color: inherit;

  &amp;:hover,
  &amp;:focus,
  &amp;:active {
    color: inherit;
    text-decoration: none;
    outline: 0;
  }

  .fa {
    color: $blueish-gray;
    transition: all .2s;
  }
}

.faq-answer {
  display: none;
  padding-bottom: 25px;
  transition: all .25s;

  &gt; p:last-child {
    margin-bottom: 0;
  }

  a {
    color: inherit;
    text-decoration: underline;

    &amp;:hover {
      color: $color-secondary;
    }
  }
}
</pre></body></html>