/** Shopify CDN: Minification failed

Line 104:34 Expected "]" to go with "["
Line 107:27 Expected "]" to go with "["

**/
.faq-section {
  padding: 50px 0;
}

.faq-heading {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 30px;
  text-align: center;
  color: #222;
 }

.faq-list {
  max-width: 80%;
  margin: 0 auto;
}

.faq-item:not(:last-child) {
  margin-bottom: 15px;
}
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: rgb(0 0 0 / 5%);
  color: #000000a6;
  padding: 14px 14px 16px 14px;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question{
  background: #ff8900;
}
.faq-item.active .faq-question h4 {
  color: #fff;
}

.faq-question h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000a6;
}

.faq-answer {
  max-height: 0;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  padding: 0;
  overflow: auto;
  border-radius: 4px;
  transition: max-height .5s ease-in-out;
  background: #fff;
}
.faq-item.active .faq-answer {  
  max-height: 210px;
}

.faq-answer span {
  padding: 10px 14px;
  margin: 0;
  display: block;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.faq-icon svg {
    width: 15px;
    height: 15px;
    stroke: rgb(255 255 255);
    transition: opacity .2s ease;
    fill: #888;
    border-radius: 50%;
}
.faq-item.active svg g[Attributes Style] {
    fill: #fff;
}
.faq-icon svg g[Attributes Style]{
  fill: #888;
}

.faq-icon .icon-minus {
  display: none;
}

.faq-item.active .faq-icon .icon-plus {
  display: none;
}

.faq-item.active .faq-icon .icon-minus {
  display: inline;
}
.collection-faqs h2.faq-heading {
    text-align: start;
}
.collection-faqs .faq-list {
    max-width: 100%;
}
.collection-faqs.faq-section.page-width {
    padding-right: 50px;
    padding-left: 50px;
}
@media(max-width: 1199px){
.collection-faqs.faq-section.page-width {
    padding-right: 9rem;
    padding-left: 9rem;
}

}

@media(max-width: 1000px){
.collection-faqs.faq-section.page-width {
    padding-right: 0;
    padding-left: 0;
}

}


@media(max-width: 767.98px){
  .faq-heading{
    font-size: 25px;
  }
  .faq-list {
      max-width: 100%;
  }
  .faq-section {
    padding: 50px 20px;
}
.faq-item.active .faq-answer {
    max-height: 350px;
}
.collection-faqs.faq-section.page-width {
    padding-right: 20px;
    padding-left: 20px;
}
}