/* line 1, _elements.faq.scss */
.faq-page {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start; }
  @media (max-width: 1024px) {
    /* line 1, _elements.faq.scss */
    .faq-page {
      grid-template-columns: 1fr; } }
  /* line 11, _elements.faq.scss */
  .faq-page .tabs,
  .faq-page .faq {
    min-width: 0; }

/* line 17, _elements.faq.scss */
.faq {
  display: flex;
  flex-direction: column;
  margin: 0 0 -20px; }
  /* line 23, _elements.faq.scss */
  .faq__item + .faq__item {
    border-top: 1px solid var(--border-grey); }
  /* line 29, _elements.faq.scss */
  .faq__item.is-open .faq__title {
    color: var(--color-secondary); }
    /* line 33, _elements.faq.scss */
    .faq__item.is-open .faq__title .icon-new[data-icon="plus"] {
      transform: rotate(225deg); }
  /* line 42, _elements.faq.scss */
  .faq__title {
    font-size: 16px;
    line-height: 20px;
    position: relative;
    padding: 20px 32px 20px 0;
    cursor: pointer;
    transition: color 0.2s ease; }
    /* line 49, _elements.faq.scss */
    .faq__title .icon-new {
      position: absolute;
      right: 0;
      top: 19px;
      color: var(--color-grey-l);
      transition: transform 0.4s ease; }
      /* line 56, _elements.faq.scss */
      .faq__title .icon-new[data-icon="plus"] {
        opacity: 1;
        transform: rotate(0); }
    @media (hover: none) {
      /* line 42, _elements.faq.scss */
      .faq__title {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } }
    @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      /* line 25, _mixins.scss */
      .faq__title:hover {
        color: var(--color-secondary); } }
  /* line 67, _elements.faq.scss */
  .faq__content {
    display: none; }
    /* line 70, _elements.faq.scss */
    .faq__content .text {
      padding-bottom: 20px; }

/* line 76, _elements.faq.scss */
.faq-form {
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  display: flex;
  gap: 20px;
  flex-direction: column; }
  /* line 84, _elements.faq.scss */
  .faq-form__title {
    font-size: 24px;
    line-height: 28px;
    font-weight: var(--font-normal); }
  /* line 89, _elements.faq.scss */
  .faq-form__description {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-grey-d); }
  /* line 94, _elements.faq.scss */
  .faq-form__button {
    white-space: nowrap; }
    @media (min-width: 1025px) {
      /* line 97, _elements.faq.scss */
      .faq-form__button .button {
        width: 100%; } }
    @media (max-width: 575px) {
      /* line 97, _elements.faq.scss */
      .faq-form__button .button {
        width: 100%; } }
