@charset "UTF-8";
/* Accordion styles */
.accordion-tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
.accordion-tab {
  width: 100%;
  color: #262626;
  overflow: hidden;
}
.accordion-tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #262626;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.accordion-tab-label:hover {
  background: #1a252f;
}
.accordion-tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.accordion-tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #262626;
  background: #fff;
  transition: all 0.35s;
}
.accordion-tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #262626;
  color: #fff;
  cursor: pointer;
}
.accordion-tab-close:hover {
  background: #1a252f;
}

.accordion-tab.active .accordion-tab-label {
  background: #1a252f;
}
.accordion-tab.active .accordion-tab-label::after {
  transform: rotate(90deg);
  color: #fc4f4f;
}
.accordion-tab.active .accordion-tab-content {
  max-height: unset;
  padding: 1em;
  overflow: hidden;
  overflow-x: auto;
}
