/** Shopify CDN: Minification failed

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

**/
@media screen and (min-width: 768px) {
  .faq-desktop-hide {
    display: none;
  }
}

.faq-description {
  margin-top: 0;
  margin-bottom: 0;
}

.main-page-title {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #300053;
  font-size: 24px;
  font-weight: 600;
}



.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tabs {
  margin-top: 1px;
  border: 1px solid #3000531F;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 0px 0px #4141416e;
}
.tab {
  width: 100%;
  color: #221E24;
  overflow: hidden;
  border-bottom: 1px solid #3000531F;
  
}
.tab-label {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Text left, SVG right */
  padding: 1em;
  font-size: 14px;
  background-color: #fff;
  color: #221E24;
}

.faq-arrow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-checkbox:checked + .tab-label .faq-arrow-icon {
  transform: rotate(180deg);
}




.tab-content {
  max-height: 0;
  padding: 0 1em;
  background-color: white;
  transition: all 0.5s ease;
  color: #221E24;
  font-weight: 400;
  font-size: 14px;
  
}
.tab-content p {
  margin: 0;
}
.faq-checkbox:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
.faq-checkbox:checked + .tab-label {
  border-left: 4px solid #300053;
  box-shadow: inset 0 0 4px rgba(48, 0, 83, 0.2);
}


.tab-label:hover {
  background-color: #f3eaff;
  color: #300053;
  border: 1px solid #3000531F; /* Custom border */
  outline: none;
  box-shadow: none;
}



Code language: CSS (css)