.cpap__prescription-required-flyout {
  .cpap__prescription-required-flyout__inner-container {
    z-index: 9999999999;
  }

  .cpap__prescription-required-flyout__header {
    height: 64px;
    background-color: var(--cpap-primary-beige);
    padding: 5px 20px;
    color: var(--cpap-primary-soft-black);
  }

  .cpap__prescription-required-flyout__content {
    padding: 32px 40px 16px 40px;
    height: calc(100vh - 64px);

    @media (max-width: 580px) {
      height: calc(100vh - 124px);
      padding: 24px 20px 16px 20px;
      @supports (-webkit-touch-callout: none) {
        /* CSS specific to iOS devices */
        height: calc(100vh - 194px);
      }
    }
    p {
      font-size: var(--bs-body-font-size-16);
      font-weight: var(--bs-body-font-weight);
      color: var(--cpap-primary-soft-black);
      margin-bottom: 40px;
      line-height: var(--bs-body-line-height-24);
    }
    h3 {
      color: var(--cpap-primary-soft-black);
      margin-bottom: 20px;
      font-size: var(--bs-body-font-size-18);
      line-height: var(--bs-body-line-height-24);
      font-weight: var(--bs-body-font-weight);

      strong {
        font-weight: var(--bs-body-font-weight);
      }
    }
  }
  .cpap__prescription-required-flyout__button-container {
    padding-bottom: 16px;

    .cpap__prescription-required-flyout__button {
      height: 56px;
    }
  }

  .cpap__prescription-required-flyout__body {
    @media (max-width: 580px) {
      border-radius: 16px 16px 0 0;
      overflow: hidden;
    }

    ol {
      padding: 0;
      margin: 0;

      li {
        font-size: var(--bs-body-font-size-16);
        line-height: var(--bs-body-line-height-24);
        gap: 12px;
        margin-bottom: 32px;
        list-style: none;
        position: relative;
        padding-left: 52px;

        &::before {
          color: var(--cpap-primary-orange);
          content: counter(list-item, number);
          width: 40px;
          height: 40px;
          border: 1px solid;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 35px;
          position: absolute;
          top: 0;
          left: 0;
        }
      }
    }
  }
}
