/** Shopify CDN: Minification failed

Line 16:16 Unexpected "{"
Line 16:25 Expected ":"
Line 16:32 Unexpected "{"
Line 25:16 Unexpected "{"
Line 25:25 Expected ":"
Line 31:16 Unexpected "{"
Line 31:25 Expected ":"
Line 37:16 Unexpected "{"
Line 37:25 Expected ":"
Line 41:16 Unexpected "{"
... and 29 more hidden warnings

**/
  #faq-section-{{ section.id }} {
    width: 100%;
    
  } 

 .faq-section{
  padding:50px 0;
 }
 
  #faq-section-{{ section.id }} .faq-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }

  #faq-section-{{ section.id }} .faq-title {
    margin: 0 0 25px;
    padding: 0;
    color: #044b61;
  }

  #faq-section-{{ section.id }} .faq-list {
    width: 100%;
  }

  #faq-section-{{ section.id }} .faq-item {
    width: 100%;
    border-bottom: 1px solid #dddddd;
  }

  #faq-section-{{ section.id }} .faq-question {
    width: 100%;
    min-height: 58px;
    padding: 18px 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border: 0;
    background: transparent;
    cursor: pointer;

    text-align: left;
    font: inherit;
    color: inherit;

    appearance: none;
    -webkit-appearance: none;
  }

  #faq-section-{{ section.id }} .faq-question:hover {
    background: transparent;
  }

  #faq-section-{{ section.id }} .faq-text {
    flex: 1;
    display: block;

    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }

  #faq-section-{{ section.id }} .faq-icon {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #000000;
  }

  #faq-section-{{ section.id }} .faq-icon svg {
    display: block;
    width: 14px;
    height: 14px;
  }

  #faq-section-{{ section.id }} .faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    opacity: 0;

    transition:
      grid-template-rows 0.3s ease,
      opacity 0.25s ease;
  }

  #faq-section-{{ section.id }} .faq-answer-inner {
    overflow: hidden;

    padding: 0 45px 0 8px;

    font-size: 16px;
    line-height: 1.7;
  }

  #faq-section-{{ section.id }} .faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  #faq-section-{{ section.id }} .faq-item.active .faq-answer-inner {
    padding-bottom: 20px;
  }

  /* Turn + into - when opened */
  #faq-section-{{ section.id }} .faq-item.active .vertical-line {
    opacity: 0;
  }

  #faq-section-{{ section.id }} .vertical-line {
    transition: opacity 0.2s ease;
  }

  @media screen and (max-width: 749px) {
    #faq-section-{{ section.id }} .faq-question {
      min-height: 55px;
      padding: 16px 4px;
    }

    #faq-section-{{ section.id }} .faq-text {
      font-size: 16px;
    }

    #faq-section-{{ section.id }} .faq-answer-inner {
      padding-left: 4px;
      padding-right: 30px;
      font-size: 15px;
    }
  }