/** Shopify CDN: Minification failed

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

**/
.centered{
  margin-top: 1em;
   text-align: center;
}

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

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

.tabs {
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  width: 100%;
  background-color: whitesmoke;
  color:black;
  
}


.tab {
  width: 100%;
  color: black;
  overflow: hidden;
  border-top: 10px solid white;
}

.tab-label {
  width: 100%;
  display: flex;
  justify-content: center;
  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)