.rubellio-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rubellio-accordion-item {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.rubellio-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #0f1729;
  cursor: pointer;
  position: relative;
  padding-right: 48px;
  user-select: none;
  border: 1px solid #d7dfea;
  border-radius: 12px;
}

.rubellio-accordion-header::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="rgb(15, 23, 41)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"></path></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
}

.rubellio-accordion-header[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

.rubellio-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #0f1729;
}

/*# sourceMappingURL=accordion.css.map */

/*# sourceMappingURL=accordion.css.map */