/** Shopify CDN: Minification failed

Line 56:14 Expected identifier but found whitespace
Line 56: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: FCFCFC;
  overflow: hidden;
}

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

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

.tab-content p {
  margin: 1;
}

.faq-checkbox:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
Code language: CSS (css)