.accordion {
  flex: 1;
  width: 100%;

  .accordion-expand {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;

    img {
      transition: transform 0.3s ease;
      transform: rotate(0deg);
    }

    &.rotated img {
      transform: rotate(90deg);
    }
  }

  .accordion-content {
    padding-top: 8px;
    flex: 1;
  }
}
