.accordion {
  @apply relative;

  &-wrapper {
    @apply relative flex flex-col;
  }

  &-item {
    @apply relative flex border-t-2 py-4 w-full;

    &-button {
      @apply cursor-pointer w-full;
    }
    &-panel {
      @apply flex overflow-hidden;
      .text {
        @apply p-10;
      }
    }
  }

  &-close {
    @apply absolute top-1/3 right-0;
  }
}
