
  /* -- Section Layout Alignment Styles -- */
  [data-vertical-gap="false"] { gap: 0; }

  [data-flex-justify="stretch"] { justify-content: stretch }
  [data-flex-align="stretch"] { align-items: stretch }

  [data-flex-justify="start"] { justify-content: start }
  [data-flex-align="start"] { align-items: start }

  [data-flex-justify="center"] { justify-content: center }
  [data-flex-align="center"] { align-items: center }

  [data-flex-justify="end"] { justify-content: end }
  [data-flex-align="end"] { align-items: end }

  [data-flex-justify="space-between"] { justify-content: space-between }
  [data-flex-justify="space-around"] { justify-content: space-around }
  [data-flex-justify="space-evenly"] { justify-content: space-evenly }

  /* TABLET */
  @media ( max-width: 991px ) {
    [data-flex-justify-tablet="stretch"] { justify-content: stretch }
    [data-flex-align-tablet="stretch"] { align-items: stretch }

    [data-flex-justify-tablet="start"] { justify-content: start }
    [data-flex-align-tablet="start"] { align-items: start }

    [data-flex-justify-tablet="center"] { justify-content: center }
    [data-flex-align-tablet="center"] { align-items: center }

    [data-flex-justify-tablet="end"] { justify-content: end }
    [data-flex-align-tablet="end"] { align-items: end }

    [data-flex-justify-tablet="space-between"] { justify-content: space-between }
    [data-flex-justify-tablet="space-around"] { justify-content: space-around }
    [data-flex-justify-tablet="space-evenly"] { justify-content: space-evenly }
  }

  /* LANDSCAPE */
  @media ( max-width: 767px ) {
    [data-flex-justify-landscape="stretch"] { justify-content: stretch }
    [data-flex-align-landscape="stretch"] { align-items: stretch }

    [data-flex-justify-landscape="start"] { justify-content: start }
    [data-flex-align-landscape="start"] { align-items: start }

    [data-flex-justify-landscape="center"] { justify-content: center }
    [data-flex-align-landscape="center"] { align-items: center }

    [data-flex-justify-landscape="end"] { justify-content: end }
    [data-flex-align-landscape="end"] { align-items: end }

    [data-flex-justify-landscape="space-between"] { justify-content: space-between }
    [data-flex-justify-landscape="space-around"] { justify-content: space-around }
    [data-flex-justify-landscape="space-evenly"] { justify-content: space-evenly }
  }

  /* PORTRAIT */
  @media ( max-width: 479px ) {
    [data-flex-justify-portrait="stretch"] { justify-content: stretch }
    [data-flex-align-portrait="stretch"] { align-items: stretch }

    [data-flex-justify-portrait="start"] { justify-content: start }
    [data-flex-align-portrait="start"] { align-items: start }

    [data-flex-justify-portrait="center"] { justify-content: center }
    [data-flex-align-portrait="center"] { align-items: center }

    [data-flex-justify-portrait="end"] { justify-content: end }
    [data-flex-align-portrait="end"] { align-items: end }

    [data-flex-justify-portrait="space-between"] { justify-content: space-between }
    [data-flex-justify-portrait="space-around"] { justify-content: space-around }
    [data-flex-justify-portrait="space-evenly"] { justify-content: space-evenly }
  }
