/** Shopify CDN: Minification failed

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

**/
.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tabs {
  border-radius: 10px;
  overflow: hidden;
}
.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.tab-label {
  width: 100%;
  display: block;
  text-align: left;
  cursor: pointer;
  outline: none;
  text-transform: initial;
  justify-content: space-between;
  padding: 24px 20px 24px 40px;
  font-weight: bold;
  color: black;
  background-color: transparent;
  position: relative;
  border-bottom: 1px solid #cccccc;
  min-height: auto;
  height: auto;
  line-height: inherit;
  font-weight: 700;
  box-shadow: none;
  border-radius: 0;
}
.tab-label:after {
  content: "+";
  transform: translateY(-50.1%);
  position: absolute;
  top: 45%;
  left: 15px;
  font-size: 25px;
  color: #296799;
  box-shadow: none;
  --border-opacity:none !important;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  background-color: white;
  transition: all 0.5s;
  color: black;
}
.tab-content p {
  margin: 0;
}
.faq-checkbox:checked + .tab-label:after {
  content: "-";
}
.faq-checkbox:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
Code language: CSS (css)