/** Shopify CDN: Minification failed

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

**/
/** Shopify CDN: Minification failed

Line 59:14 Expected identifier but found whitespace
Line 59: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;
/*   box-shadow: 0px 0px 12px #4141416e; */
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
  margin: 20px 0px;
  border: 2px solid black;
  border-radius: 20px;
}

.tab-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1em;
  font-weight: bold;
  color: black;
  background-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;
}

.faq-checkbox:checked + label> span.faq-title {
    will-change: transform;
    transform: rotateZ(45deg) !important;
}
Code language: CSS (css)