/** Shopify CDN: Minification failed

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

**/
/* Added by Weboost Yuan */
.faq-container {
  max-width: 1350px;
  margin: 0 auto;
}
.faq-title {
  text-align: center;
}
.faq-description {
  margin-top: 2em;
  margin-bottom: 2em;
}
.faq-checkbox {
  position: absolute;
  
  z-index: -1;
}
.tabs {
  
}
.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.tab-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1em;
  font-weight: bold;
  color: black;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  background-color: white;
  transition: all 0.5s ease;
  color: black;
}
.tab-content p {
  margin: 0;
}
.faq-checkbox:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
Code language: CSS (css)