/* SCSS Framework boilerplate from Ristretto: https://github.com/kylelarkin/ristretto */
* {
  box-sizing: border-box;
}

body, select, input, textarea {
  color: #333;
}

::-moz-selection {
  background: #ccc;
  color: #000;
  text-shadow: none;
}

::selection {
  background: #ccc;
  color: #000;
  text-shadow: none;
}

a:link {
  -webkit-tap-highlight-color: transparent;
}

ins {
  background-color: #ccc;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ccc;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

.faq .faq-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .faq .faq-list {
    width: 66%;
  }
}
.faq h3.toggle-name {
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
  padding-left: 2rem;
}
.faq h3.toggle-name.open svg {
  transform: rotate(135deg);
}
.faq h3.toggle-name svg {
  margin-right: 1.25rem;
  position: absolute;
  left: 0;
  top: 0.18rem;
  transition: all 0.35s ease-in;
}
.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
  margin: 0 0 1rem 2rem;
}
.faq .faq-answer hr {
  border: 0;
  border-top: 1px solid #c2c2c2;
}
.faq .faq-answer.open {
  max-height: 3000px;
}

.editor-styles-wrapper .faq .faq-answer {
  max-height: inherit;
}
