@charset "UTF-8";
.faq-page .faq-container .container .faq-content {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
}
.faq-page .faq-container .container .faq-content .faq-col {
  width: 50%;
}
.faq-page .faq-container .container .faq-content .faq-col .heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  height: -moz-max-content;
  height: max-content;
  border-left: 3px solid var(--primary);
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab {
  width: 100%;
  overflow: hidden;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab label {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab label::after {
  content: "❯";
  width: 10px;
  height: 10px;
  text-align: center;
  transition: all 0.35s;
  font-size: 0.7rem;
  margin-right: -1rem;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab label:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
  line-height: 1.6;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab .tab-content ul {
  margin-top: 1rem;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab .tab-content ul li {
  list-style-type: none;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab .tab-content ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab input:checked + .tab-label {
  background: var(--primary);
  color: var(--white);
  margin-left: 0;
  margin-top: 0;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab input:checked + .tab-label::after {
  transform: rotate(90deg);
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
.faq-page .faq-container .container .faq-content .faq-col .tabs .tab input:not(:checked) ~ div {
  border: none;
}

@media (max-width: 768px) {
  .faq-page .faq-container .container .faq-content {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0;
  }
  .faq-page .faq-container .container .faq-content .faq-col {
    width: 100%;
  }
}/*# sourceMappingURL=faq.css.map */