.tiqva-accordion {
  border-top: 1px solid #ddd;

  .accordion-item {
    border-bottom: 1px solid #ddd;
    overflow: hidden;

    .accordion-toggle {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      padding: 1rem;
      cursor: pointer;
      outline: none;
      display: flex;
      align-items: center;
      justify-content: space-between;

      font-family: Familjen Grotesk;
      font-weight: 500;
      font-size: 28px;
      line-height: 100%;
      letter-spacing: 0%;

      color: #fff;

      svg {
        transition: transform 0.3s ease;
      }
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      /* display: none; */
      padding: 0 1rem;
      opacity: 0;
      transition: all 0.4s ease;

      font-family: Montserrat;
      font-weight: 400;
      font-size: 16px;
      line-height: 26px;
      letter-spacing: 0%;
      color: #fff;
    }

    &.active {
      .accordion-toggle {
        padding-bottom: 0;
      }
      .accordion-content {
        max-height: fit-content;
        opacity: 1;
      }
      svg {
        transform: rotate(180deg);
      }
    }
  }
}
