/** Shopify CDN: Minification failed

Line 71:14 Expected identifier but found whitespace
Line 71:19 Unexpected "("

**/
.faq-description {
  margin-top: 2em;
  margin-bottom: 2em;
}

.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tabs {
  border-radius: 10px;
  overflow: hidden;

}

.tab {
  width: 100%;
  color: red;
  overflow: hidden;
  
}

.tab-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1em;
  font-weight: bold;
  color: black;
    border-radius: 0px;
}

.tab-content {
  max-height: 0;
  padding: 0 1em;
  background-color: white;
  transition: all 0.5s ease;
  color: black;
}

.tab-content p { margin: 0; font-family: 'SemplicitaPro'; font-style: normal; font-weight: 400; font-size: 16px; line-height: 26px; }

.faq-checkbox:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
.fa-solid .fa-plus {color:red;}
.faq-container { max-width: 65%; margin: 0 auto; padding: 20px 20px; padding-bottom: 5%; }

/* .sec-faqhead { float: left; width: 20%; } */
h1.main-page-title.page-title.h0 {
    text-align: center;
    font-family: 'SemplicitaPro';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
  padding-top: 50px;
}
label.tab-label.button.button--primary { font-family: 'SemplicitaPro'; font-style: normal; font-weight: 600; font-size: 16px; line-height: 26px; text-transform: capitalize; }
i.fa-solid.fa-plus { font-size: 16px; }

Code language: CSS (css)