/* Common */
  .faq {
      position: relative;
  }

  .faq-item {
      margin: 0 0 0 19px;
  }

  .faq-question:before {
      content: '?';
      display: block;
      width: 16px;
      height: 16px;
      border: 2px solid grey;
      border-radius: 50%;
      position: absolute;
      left: -18px;
      top: 1px;
      text-align: center;
      color: gray;
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
  }

  .faq-question {
      position: relative;
      padding: 0 0 0 24px;
      color: #153B81;
      font-weight: 500;
      font-size: 22px;
      width: 40%;
      margin: 0 0 28px 0;
      line-height: 23px;
      cursor: pointer;
  }

  .faq-question span {
      border-bottom: 1px dashed #153B81;
      font-size: 18px;
  }

  .faq-answer {
      display: none;
      position: absolute;
      right: 0;
      top: -30px;
      width: 53%;
      background: #EFF2F9;
      padding: 28px 32px;
      box-sizing: border-box;
  }

  .faq-answer a {
      font-weight: 600;
  }

  .faq-item.active .faq-answer {
      display: block;
  }

  .faq-item.active .faq-question {
      color: #000;
  }

  .faq-item.active .faq-question:after {
      content: '';
      width: 0px;
      height: 0px;
      border-top: 24px solid transparent;
      border-bottom: 24px solid transparent;
      border-right: 40px solid #EFF2F9;
      position: absolute;
      top: -11px;
      right: -40px;
  }

  .faq-item.active .faq-question span {
      border-color: transparent;
  }

  .faq-answer .btn-container {
      text-align: center;
  }

  .faq-answer .btn {
      margin-top: 12px;
      font-size: 20px !important;
  }
/* Adapt */
  @media (max-width:979px) {
    .faq {
      height: auto !important;
    }
    .faq-item {
      padding-bottom: 30px;
    }
    .faq-question {
      width: 100%;
    }
    .faq-item.active .faq-question:after {
        border-width: 0 40px 24px 40px;
        border-color: transparent transparent #EFF2F9 transparent;
        right: auto;
        top: auto;
        left: 30px;
        bottom: -30px;
    }
    .faq-answer {
      position: relative;
      top: auto;
      right: auto;
      width: 100%;
    }
  }