.cpap__product-parts {
  /* 👇 The following are Bootstrap Accordion (https://getbootstrap.com/docs/5.3/components/accordion/) overrides and therefore can't utilize the BEM naming convention */
  .accordion {
    margin-top: 43px;

    .accordion-item {
      &:first-child {
        border-top: none;
      }
    }

    .accordion-button {
      &::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232E2E2E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        --bs-accordion-btn-icon-width: 20px;
      }

      &:not(.collapsed)::after {
        transform: var(--bs-accordion-btn-icon-transform);
        --bs-accordion-btn-icon-width: 20px;
      }
    }

    .accordion-body {
      flex-wrap: wrap;
      justify-content: start;
      align-items: center;

      @media only screen and (max-width: 712px) {
        justify-content: center;
        align-items: center;
      }
    }
  }

  .cpap__product-parts__breadcrumbs.cpap__breadcrumbs-generic {
    margin-top: 1.5rem;

    .cpap__breadcrumbs-generic__item--non-link {
      white-space: nowrap;
      text-overflow: ellipsis;
      width: 100%;
      display: block;
      overflow: hidden;
    }
  }

  .cpap__product-parts__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 62px;
    gap: 0;

    @media only screen and (max-width: 992px) {
      margin-top: 40px;
      flex-direction: column;
      gap: 24px;
    }
  }

  .cpap__product-parts__header-column-1 {
    display: flex;
    flex-direction: column;
    gap: 19px;

    p {
      color: var(--cpap-text-text-gray);
    }
  }

  .cpap__product-parts__header-column-2 {
    flex: 1 0 auto;
  }

  .cpap__product-parts__header-back-link {
    padding-bottom: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-decoration: none;
    border-bottom: solid 1px #ff600a;

    &:hover {
      opacity: 0.7;
    }
  }

  .cpap__product-parts__card-container {
    padding: 0 16px;

    @media only screen and (max-width: 579.98px) {
      padding: 0 8px;
    }
  }

  .cpap__product-parts__card {
    padding: 24px;
    border-radius: 16px;
    background: var(--cpap-primary-white);
    display: flex;
    flex-direction: column;
    position: relative;

    @media only screen and (max-width: 579.98px) {
      width: 278px;
      padding: 50px 16px 32px 16px;
    }

    &:hover {
      box-shadow: 0px -4px 30px 0px var(--cpap-overlay-box-multicolumn-shadow2);

      .cpap__product-parts__image {
        animation: cpap-slide-up 7s linear infinite;
      }

      .cpap__product-parts__button-container {
        opacity: 1;
        visibility: visible;
      }

      @media only screen and (max-width: 767.98px) {
        .cpap__product-parts__image {
          animation: none;
        }

        .cpap__product-parts__image-container {
          margin-bottom: 16px;
        }
      }

      @media only screen and (max-width: 1024px) {
        box-shadow: none;
      }
    }
  }

  .cpap__product-parts__button-container {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    overflow: hidden;
  }

  .cpap__product-parts__image-container {
    max-width: 233px;
    height: 175px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }

  .cpap__product-parts__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .cpap__product-parts__text-container {
    min-height: 125px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 2rem;
  }

  .cpap__product-parts__title {
    color: var(--cpap-primary-soft-black);

    @media only screen and (max-width: 767.98px) {
      width: 335px;
    }
  }

  .cpap__product-parts__price {
    color: var(--cpap-primary-soft-black);
    margin-bottom: 8px;
  }

  .cpap__product-parts__vendor {
    color: var(--cpap-text-text-gray);
  }
}
