/** Shopify CDN: Minification failed

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

**/
.faq-description {
  margin-top: 2em;
  margin-bottom: 2em;
}
.main-page-title.page-title.h0{
  font-size: 50px;
  font-weight:bold;
  text-align: center;
  padding-bottom: 10px;
}

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

.tabs {
  overflow: hidden;
}

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

.tab-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1em;
  font-weight: bolder;
  color: black;
  background: white;
  border-top: 2px solid #D3D3D3;
}

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

.tab-content p {
  margin: 0;
  background: white;
}

.faq-checkbox:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
  background: white;
}




Code language: CSS (css)