/** Shopify CDN: Minification failed

Line 18:6 Unexpected "{"
Line 18:15 Expected ":"
Line 18:21 Unexpected "{"
Line 24:6 Unexpected "{"
Line 24:15 Expected ":"
Line 35:6 Unexpected "{"
Line 35:15 Expected ":"
Line 41:6 Unexpected "{"
Line 41:15 Expected ":"
Line 47:6 Unexpected "{"
... and 22 more hidden warnings

**/
/* SECTION */

#faq-{{ section.id }}{
  padding:80px 0;
}

/* TITLE */

#faq-{{ section.id }} .faq-title{
  font-size:34px;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:40px;
  font-weight:500;
  margin-top:60px;
}

/* ACCORDION */

#faq-{{ section.id }} .faq-accordion{
  border-top:1px solid #e5e5e5;
}

/* ITEM */

#faq-{{ section.id }} .faq-item{
  border-bottom:1px solid #e5e5e5;
}

/* QUESTION */

#faq-{{ section.id }} .faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:none;
  border:none;
  cursor:pointer;
  padding:26px 0;
  font-size:22px;
  font-weight:500;
  text-align:left;
  letter-spacing:0.4px;
}

/* CARET */

#faq-{{ section.id }} .faq-caret{
  transition:transform .3s ease;
  flex-shrink:0;
  margin-left:20px;
}

/* ROTATION WHEN OPEN */

#faq-{{ section.id }} .faq-item.active .faq-caret{
  transform:rotate(180deg);
}

/* ANSWER */

#faq-{{ section.id }} .faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

#faq-{{ section.id }} .faq-answer-inner{
  padding-bottom:26px;
  font-size:18px;
  line-height:1.7;
  opacity:.85;
}

#faq-{{ section.id }} .faq-answer-inner p{
  margin-bottom:16px;
}

/* LINKS */

#faq-{{ section.id }} .faq-answer a{
  color:#D9B372;
  text-decoration:none;
}

/* MOBILE */

@media (max-width:768px){

  #faq-{{ section.id }}{
    padding:50px 0;
  }

  #faq-{{ section.id }} .faq-title{
    font-size:24px;
    margin-bottom:25px;
  }

  #faq-{{ section.id }} .faq-question{
    font-size:18px;
    padding:20px 0;
  }

  #faq-{{ section.id }} .faq-answer-inner{
    font-size:15px;
  }

}