details > summary::-webkit-details-marker {
  display: none;
}

.aus-faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  transition: transform 0.3s ease;
}

.aus-faq-icon::before,
.aus-faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--aus-blue);
  transition: transform 0.3s ease;
}

.aus-faq-icon::before {
  width: 2px;
  height: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.aus-faq-icon::after {
  width: 14px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

/* Rotate the plus icon when details is open */
details[open] .aus-faq-icon::before {
  transform: translateX(-50%) rotate(90deg);
}

.aus-faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  visibility: hidden;
}

details[open] .aus-faq-answer {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in;
}
