/** Shopify CDN: Minification failed

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

**/
.shopify-section.spaced-section{
	padding: 55px 0;
}

.faq-description {
  margin-top: 2em;
  margin-bottom: 2em;
}

.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tabs {
	padding: 0 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 12px #4141416e;
}

.tab {
  	position: relative;
    width: 100%;
    color: #333232;
    overflow: hidden;
    font-family: var(--font-stack-body);
      border-bottom: solid 1px #ebebeb;
}

.tab-label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-weight: bold;
    color: #333232;
}

.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_and_bonuses_button_sign{
	position: absolute;
    top: 30px;
    width: 18px px;
    height: 8px;
    right: 10px;
  	cursor: pointer;
    transform: translate(50%, -50%) rotate(180deg);
}


Code language: CSS (css)