/** Shopify CDN: Minification failed

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

**/

.faq-checkbox {

  position: absolute;

  opacity: 0;

  z-index: -1;

}


.tabs {

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0px 0px 12px #4141416e;

}


.tab {

  width: 100%;

  color: white;

  overflow: hidden;

}


.tab-label {

  width: 100%;

  display: flex;

  justify-content: space-between;

  padding: 1em;

  font-weight: bold;

  color: white;

}


.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)

