/** Shopify CDN: Minification failed

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

**/
.faq-description {
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
}
.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faq-container{
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 60px;
  border-radius: 24px;
  background: #F4F9F9;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}
.tabs {
  max-width: 80%
  overflow: hidden;
  box-shadow: 0px 0px 6px #4141416e;
  padding: 6px;
}
.tab {
  width: 70%; /* Set width to 70% */
  color: white;
  overflow: hidden;
  margin: 0 auto;
  /*padding: 49px 36px;*/
}

.tab-separator {
  height: 1px;
  background: #C8C8C8;
}

.tab-label {
  width: 80%;
  display: flex;
  justify-content: space-between;
  padding: 1em;
  font-weight: bold;
  color: black;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  background-color: #F4F9F9;
  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 ~ .tab {
  background-color: #298A91;
  /* Other styles for the selected tab (optional) */
}
.tab:nth-child(3) .tab-separator {
    display: none;
}
Code language: CSS (css)