.faq-container {
  display: flex;
  width: 100%;
}

.faq-sidebar {
  width: 100%;
}

.faq-body {
  width: 100%;
}

.faq-sticky {
  position: sticky;
  top: 150px;
}

.category-triggers {
  font-size: 13px;
  letter-spacing: 0;
  padding: 0 5px 10px 0;
  text-align: left;
  background-color: transparent;
  width: 100%;
  margin-top: 0;
}

.category-triggers.active-category {
  font-weight: 600;
}

.faq-body-portion.hidden-body {
  display: none;
}

@media (min-width: 768px) {
  .faq-sidebar {
    width: 20%;
  }

  .faq-body {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .faq-sidebar {
    width: 33.33%;
    max-width: 33.33%;
    flex-basis: 33.33%;
  }

  .faq-body {
    width: 66.66%;
    max-width: 66.66%;
    flex-basis: 66.66%;
  }

  .faq-body > div {
    width: 100%;
    max-width: 100%;
  }
}

@keyframes panelShow {
  from {
    opacity: 0;
    transform: translateY(50%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Accordion {
  margin: 0;
  padding: 0;
  width: 100%;
}

.Accordion h3 {
  margin: 0;
  padding: 0;
}

.Accordion-trigger {
  padding: 17px 25px;
  margin: 0;
  font-family: "Chronicle Display A", "Chronicle Display B";
  line-height: 1.3;
  letter-spacing: 0.75px;
  font-size: 18px;
  border-top: 1px solid black;
  border-radius: 0;
  position: relative;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  outline: none;
  font-weight: normal;
}

.option__icon {
  width: 25px;
  height: 25px;
  position: relative;
}

.option__icon svg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: ease-in-out all 150ms;
}

.Accordion-trigger.opened svg.opened-icon {
  opacity: 1;
}

.Accordion-trigger:not(.opened) svg.closed-icon {
  opacity: 1;
}

.faq-body-portion details:first-child .Accordion-trigger {
  border-top: 0;
}

.Accordion-trigger::marker,
.Accordion-trigger::-webkit-details-marker {
  display: none;
}

.Accordion h3:first-child .Accordion-trigger {
  padding-top: 0;
  border-top: 0;
}

button {
  border-style: none;
}

.Accordion button::-moz-focus-inner {
  border: 0;
}

.Accordion-title {
  display: block;
  pointer-events: none;
  border: transparent 2px solid;
  border-radius: 5px;
  padding: 0.25em;
  outline: none;
}

.Accordion-panel {
  margin: 0;
  padding: 1em 1.5em;
  animation: 300ms forwards panelShow;
}

/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.Accordion-panel[hidden] {
  display: none;
}

.Accordion-panel div ul {
  list-style: disc;
  padding-left: 30px;
}
