/* Variables
--------------------------------------------------------------------------------------------------------------------*/

:root {
  --color--white: #fff;
  --color--black: #000;

  --color--blue--peter-river: #3498db;
  --color--blue--midnight: #153e5c;

  --color--orange--1: #c75000;
  --color--orange--2: #dd5900;
  --color--orange--3: #fceee6;

  --color--silver--60: #1e1f20;
  --color--silver--40: #444647;
  --color--silver--20: #797d7f;
  --color--silver--10: #999ea1;
  --color--silver: #bdc3c7;
  --color--silver--l20: #d5d9db;
  --color--silver--l40: #e7e9eb;
  --color--silver--l60: #f5f5f6;

  --color--green: #2ecc71;

  --color--titles: #343a40;
  --color--titles--dark: #212529;
  --color--text: #6c757d;

  --color--primary: #153e5c;
  --color--secondary: #3498db;

  --container--max-width: 128.4rem;
  --container--max-width--padded: 120.8rem;
  --container--full: 100%;

  --section--padding--standard: 12rem 4rem;

  --box-shadow-standard: 0 2px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0px 0px 8px 0px rgba(0, 0, 0, 0.12),
    0px 8px 8px 0px rgba(0, 0, 0, 0.24);
  --box-shadow-top: 0 -12px 20px rgba(0, 0, 0, 0.08);

  --border-radius--standard: 8px;

  --font-stack--header: "Arial", "Open Sans", sans-serif;
  --font-stack--body: "Arial", "Open Sans", sans-serif;
  --font-icons: "FontAwesome5_Regular", Font Awesome\5 Pro, FontAwesome;

  --hero--browse--bg: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD15040/711652A5.jpg);
  --hero--form--bg: url(https://xplor.bhp.com/ct/getfile.php?f=2C55E90D-81B6-11F0-8A06-0AFFFA3D2D0B&a=OD15129);
}

/* Buttons
--------------------------------------------------------------------------------------------------------------------*/

.button {
  display: inline-block;
  padding: 1.5rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1;
  border: 1px solid;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s ease;

  &.button--outlined {
    background-color: var(--color--white);
    border-color: var(--color--orange--2);
    color: var(--color--orange--1);
  }

  &:hover {
    background-color: var(--color--orange--3);
    text-decoration: none;
  }
}

.container__buttons {
  margin-top: 4rem;
}

/* Grids
--------------------------------------------------------------------------------------------------------------------*/

.section__grid {
  display: grid;
  width: 100%;

  &.section--text-centered {
    text-align: center;
  }

  *:not(.button, .testimonial) {
    border: none;
  }

  &::after {
    display: none;
  }

  /* Grids: Typography
--------------------------------------------------------------------------------------------------------------------*/

  .grid__title {
    font-size: 4rem !important;
    line-height: 4.8rem;
    color: var(--color--titles);
    display: block;
    margin-bottom: 1.6rem;
    font-weight: 700;
  }

  .grid__text {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--color--text);
    display: block;
    margin-top: 2.4rem;
  }

  table {
    display: flex;

    tbody {
      display: block;
      flex: 0 0 100%;

      tr {
        display: block;

        td {
          display: block;
        }
      }
    }
  }

  /* Grids: Columns
--------------------------------------------------------------------------------------------------------------------*/

  &.grid__5-col {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    column-gap: 2.4rem;
    row-gap: 4rem;
  }

  &.grid__4-col {
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    column-gap: 2.4rem;
    row-gap: 4rem;
  }

  &.grid__3-col {
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    column-gap: 2.4rem;
    row-gap: 4rem;
  }

  &.grid__2-col {
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    column-gap: 9.6rem;
    row-gap: 7.2rem;
    align-items: center;

    @media only screen and (max-width: 40em) {
      grid-template-columns: 1fr;
    }
  }

  &.grid__12-col {
    grid-template-columns: repeat(12, 1fr);

    &.grid__intro {
      & .section__grid__container {
        grid-column: 3 / span 8;
        margin-bottom: 6.4rem;

        @media only screen and (max-width: 48em) {
          grid-column: 1 / -1;
        }

        &.grid__container--no-margin {
          margin-bottom: 0;
        }
      }
    }
  }
}

/* Grids: Containers (Non-RTE)
--------------------------------------------------------------------------------------------------------------------*/

.section__container--outer {
  display: flex;
  justify-content: center;
  padding: 12rem 4rem;

  &.half-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  &.padding--sm {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section__container--inner {
  max-width: var(--container--max-width);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;

  position: relative;
}

.section__container--buttons {
  margin-top: 4rem;
}

/* Heroes
--------------------------------------------------------------------------------------------------------------------*/

.section__hero {
  .hero__container {
    max-width: var(--container--max-width);
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;

    .hero__column {
      flex: 0 1 60%;

      @media only screen and (max-width: 62.5em) {
        flex: 0 1 66%;
      }

      @media only screen and (max-width: 48em) {
        flex: 0 0 100%;
      }

      .hero__title {
        font-size: 4.8rem;
        line-height: 5.6rem;
        font-weight: 900;
        font-family: var(--font-stack--header);
        padding-bottom: 2.4rem;
      }

      .hero__text {
        font-family: var(--font-stack--body);
        font-size: 1.8rem;
        line-height: 2.8rem;
      }

      .hero__buttons {
        display: flex;
        gap: 1.6rem;
        padding-top: 4.8rem;
      }
    }
  }
}

.section__hero--browse-ideas {
  display: none;
}

.section__hero--submission-form {
  display: none;
}

/* Challenge: Pages and Containers
--------------------------------------------------------------------------------------------------------------------*/
body.webstorm-level {
  font-family: var(--font-stack--body);

  .all_container {
    .content {
      font-family: var(--font-stack--body);

      .widget_container {
        p,
        span {
          font-family: unset;
          font-size: 1.6rem;
          line-height: 1.6;
        }
      }
      .fractal-button {
        font-family: var(--font-stack--body);
      }
    }

    /* Challenge: Global Navigation
--------------------------------------------------------------------------------------------------------------------*/
    .f-global-nav {
      .fractal-global-nav#global-nav-bar {
        box-shadow: none;
        padding: 0 4rem;
        box-sizing: border-box;

        .f-nav-wrapper {
          max-width: 100%;
          margin: 0;

          @media screen and (max-width: 48em) {
            width: 100%;
            margin: 0;
          }

          .f-nav-logo img {
            max-height: 1.8rem;
          }

          .f-nav-left,
          .f-nav-right {
            margin: 0;
          }
        }
      }
      .f-nav-search {
        background: var(--color--silver--l40);
      }
    }

    /* Initiative-Level: Navigation
--------------------------------------------------------------------------------------------------------------------*/

    #navbar.OPT_FEATURE_NEW_NAV_AND_ADMIN_BAR {
      height: 6.4rem;
      max-width: 100%;

      @media only screen and (max-width: 62.5em) {
        height: 8rem;
      }

      .fractal-dynamic-nav-v1 {
        .nav-desktop {
          height: 6.4rem;

          .desktop-nav-core-items {
            max-width: 100%;
            padding: 0 4rem;
            align-items: center;
            gap: 1.6rem;

            .desktop-nav-last-item {
              margin-left: 0;
            }

            &::before {
              content: "";
              background-image: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD15040/2033613B.png);
              background-size: contain;
              background-repeat: no-repeat;
              height: 2.8rem;
              width: 11rem;
              display: inline-block;
              margin-right: 4rem;
            }

            .nav-parent {
              height: auto;
              margin: 6px 0 0 0;
              border-radius: 8px;

              a {
                text-transform: none;
                letter-spacing: 0;
                padding: 8px 12px;
                line-height: 1;
                font-weight: 700;
              }

              .nav-item-hover {
                margin: 0;
                bottom: -14px;
                border-bottom: 2px solid var(--color--orange--1) !important;
              }
            }

            a[href*="logout"] {
              text-transform: capitalize;
              border: 1px solid var(--color--orange--2);
              height: 3.2rem;
              display: flex;
              box-sizing: border-box;
              border-radius: 4px;
              align-items: center;
              padding: 0 1.6rem;
              background-color: var(--color--white);
              transition: 0.2s ease;
              margin-left: auto;

              &:hover {
                text-decoration: none;
                background-color: var(--color--orange--3);
              }
            }
          }
        }

        .nav-mobile {
          .nav-mobile-bar {
            height: 8rem;

            .nav-logo-link {
              img {
                max-width: 18rem;
                max-height: 4rem;
              }
            }

            .nav-icon {
              &::before,
              &::after,
              & div {
                background-color: var(--color--silver);
              }
            }
          }
        }
      }
    }

    /* Initiative-Level: Home
--------------------------------------------------------------------------------------------------------------------*/
    #bi-page-s {
      /* Initiative-Level: Home: Navigation
--------------------------------------------------------------------------------------------------------------------*/
      #navbar.OPT_FEATURE_NEW_NAV_AND_ADMIN_BAR {
        position: relative;
        top: unset;

        background-color: var(--color--white) !important;
      }

      /* Initiative-Level: Home: Hero
--------------------------------------------------------------------------------------------------------------------*/

      #container_homepage_header {
        max-width: 100%;
        z-index: 1;

        .f-homepage-hero {
          @media only screen and (max-width: 35em) {
            justify-content: center;
          }

          div {
            font-family: var(--font-stack--header) !important;
          }

          .f-homepage-hero-center {
            text-align: left;
            width: 100%;
            bottom: unset;
            padding: 0 2.4rem;
            box-sizing: border-box;
            max-width: var(--container--max-width);

            @media only screen and (max-width: 48em) {
              padding: 0 2.4rem;
            }

            .f-homepage-hero-name {
              width: 60%;
              margin: 0;

              padding-top: 4rem;

              h1 {
                margin-top: 0;
              }

              @media only screen and (max-width: 62.5em) {
                width: 100%;
                min-width: 100px;
              }

              h1 > div > div {
                font-size: 5.6rem;
                line-height: 6.4rem;
                font-weight: 700;
                width: 100%;
                padding: 0;

                @media only screen and (max-width: 48em) {
                  font-size: 4.8rem;
                  line-height: 5.6rem;
                }
              }
            }

            .f-homepage-hero-description {
              width: 60%;
              margin: 0;

              @media only screen and (max-width: 62.5em) {
                width: 100%;
                min-width: 100px;
              }

              .fractal-htmlpreview {
                div {
                  font-size: 1.8rem;
                  line-height: 1.6;
                  width: 100%;
                  padding: 0;
                  margin: 1.6rem 0 2.4rem;
                }
              }
            }

            .side {
              margin-bottom: 0;
              margin-top: 1.6rem;

              .f-homepage-header-buttons {
                .action-buttons {
                  padding: 0 0 4rem 0;
                  text-align: left;

                  .navigate-container {
                    display: flex;
                    gap: 1.6rem;
                    flex-direction: row-reverse;
                    justify-content: flex-end;

                    .fractal-button:nth-child(1) {
                      margin-left: 0;
                    }

                    @media only screen and (max-width: 48em) {
                      justify-content: flex-end;
                    }
                  }
                }
              }
            }
          }
          .fractal-button {
            font-family: var(--font-stack--body) !important;
          }
          .f-homepage-submit-button {
            background-color: var(--color--white) !important;
            color: var(--color--orange--2) !important;
            border: 1px solid var(--color--orange--1);
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.6rem;
            padding: 0 1.6rem;
            box-shadow: none;

            /* &::after {
              content: "\f061";
              font-family: var(--font-icons);
              margin-left: 1.6rem;
              color: var(--color--orange--1);
              display: inline-block;
              transition: 0.2s ease;
            } */

            &:hover {
              background-color: var(--color--orange--3) !important;
              box-shadow: none;

              /* &::after {
                transform: translateX(8px);
              } */
            }
          }
        }
      }

      #main_content {
        max-width: 100%;
        width: 100%;

        /* Initiative-Level: Home: Containers
--------------------------------------------------------------------------------------------------------------------*/
        #container_1 {
          width: 100%;
          padding: 12rem 2.4rem !important;
          box-sizing: border-box;

          .widget_container {
            max-width: var(--container--max-width);

            .widget_title_container {
              z-index: 10;
            }

            .boxcontent {
              padding: 0;
            }
          }
        }

        #container_2 {
          width: 100%;
          box-sizing: border-box;
          padding: 0 !important;
          background-color: var(--color--white) !important;

          display: grid;
          grid-template-columns:
            minmax(2.4rem, 1fr) repeat(
              12,
              minmax(60px, calc(var(--container--max-width) / 12))
            )
            minmax(2.4rem, 1fr);

          align-items: center;

          @media only screen and (max-width: 62.5em) {
            grid-template-columns: 2.4rem 1fr 2.4rem;
          }

          .widget_container {
            width: 100%;
            max-width: 100%;

            .widget_title {
              text-align: left;
              margin-left: 0;
              padding-left: 0;

              &::after {
                content: "If you have saved a draft application, it will appear below. Click the link to access, edit and submit your saved form.";
                font-size: 1.6rem;
                line-height: 1.6;
                color: var(--color--text);
                margin-top: 2.4rem;
                display: block;
              }

              .widget_title_text {
                font-family: var(--font-stack--body);
                font-weight: 700;
                font-size: 4rem;
                line-height: 4.8rem;
              }
            }

            .boxcontent {
              padding: 0;
            }
          }

          .widget_container:first-of-type {
            grid-column: 2 / span 10;
            grid-row: 1;

            @media only screen and (max-width: 48em) {
              display: none;
            }
          }

          .my_idea_drafts_widget {
            grid-column: 9 / span 5;
            grid-row: 1;
            background-color: var(--color--white);
            box-shadow: var(--box-shadow-standard);
            min-height: 32rem;
            padding: 4rem;
            border-radius: 20px;
            box-sizing: border-box;

            @media only screen and (max-width: 48em) {
              grid-column: 2;
            }
          }
        }

        #container_3 {
          width: 100%;
          padding: 12rem 2.4rem !important;
          box-sizing: border-box;

          .widget_container {
            max-width: var(--container--max-width);

            .boxcontent {
              padding: 0;
            }
          }
        }
        #container_4 {
          width: 100%;
          padding: 0 2.4rem 12rem !important;
          box-sizing: border-box;
          background-color: var(--color--white) !important;

          .widget_container {
            max-width: var(--container--max-width);

            .boxcontent {
              padding: 0;
            }
          }
        }
      }

      /* Initiative-Level: Home: Why Participate?
--------------------------------------------------------------------------------------------------------------------*/

      .grid--participate {
        box-shadow: var(--box-shadow-top);
        border-radius: 20px 20px 0 0;

        @media only screen and (max-width: 35.5em) {
          box-shadow: none;
          border-radius: 0;
        }

        .participate__container {
          padding: 4rem;

          @media only screen and (max-width: 35.5em) {
            box-shadow: var(--box-shadow-standard);
            border-radius: 20px;
          }

          .participate__title {
            font-size: 2.4rem;
            line-height: 3.1rem;
            font-weight: 700;
            color: var(--color--titles);
            display: block;
            margin-bottom: 2.4rem;
          }

          .participate__img {
            width: 4rem;
            height: 4rem;
            display: inline-block;
            margin-bottom: 2.4rem;
          }
        }
      }

      /* Initiative-Level: Home: Drafts
--------------------------------------------------------------------------------------------------------------------*/
      .container__drafts__image {
        border-radius: 20px;
        overflow: hidden;
        max-height: 60rem;

        .drafts__image {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      /* Initiative-Level: Home: FAQ
--------------------------------------------------------------------------------------------------------------------*/

      .grid--faq {
        align-items: flex-start;
        row-gap: 2.4rem;

        &:not(:first-child) {
          margin-top: 7.2rem;
        }

        .column--faq {
          .faq__item {
            padding: 2.6rem 0 2.9rem;
            border-bottom: 1px solid #b7b9bb;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            cursor: pointer;

            .faq__question {
              font-size: 1.8rem;
              line-height: 2.4rem;
              transition: 0.2s ease;

              &.selected,
              &:hover {
                color: var(--color--titles);
              }
            }
            .faq__arrow {
              font-size: 1.8rem;
              font-family: var(--font-icons);
              margin-left: auto;
              color: var(--color--orange--1);

              i {
                font-style: normal;
              }
            }
            .faq__answer {
              margin-top: 1.6rem;
              display: none;
            }
          }
        }
      }

      .rotate {
        transform: rotate(180deg);
        transition: 0.2s ease;
      }

      /* Initiative-Level: Home: Callout
--------------------------------------------------------------------------------------------------------------------*/
      .title--link {
        text-decoration: underline;
      }

      /* Initiative-Level: Home: Login Widget
--------------------------------------------------------------------------------------------------------------------*/

      .login_widget {
        display: none;
        .loginbox {
          #logincontent {
            .logout {
              > a {
                text-transform: capitalize;
              }
            }
          }
        }
      }
    }

    /* Initiative-Level: Submission Form
--------------------------------------------------------------------------------------------------------------------*/

    #bi-page-ct-a-enter-idea {
      #main_content {
        position: relative;
      }

      #custom_footer {
        display: block;
        width: 100%;

        > tbody {
          display: block;
          width: 100%;
          > tr {
            display: block;
            width: 100%;
            > td {
              display: block;
              width: 100%;
            }
          }
        }
      }

      /* Submit Idea: Navigation
  ----------------------------------------------------------*/
      #navbar.OPT_FEATURE_NEW_NAV_AND_ADMIN_BAR {
        max-width: 100%;
      }

      /* Submit Idea: Hero
  ----------------------------------------------------------*/

      .section__hero--submission-form {
        color: var(--color--white);
        background-color: #dd5900;
        display: flex;
        padding: 0 4rem;
        height: 40rem;
        width: 100%;
        background-image: var(--hero--form--bg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: -40rem;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;

        &::before {
          content: "";
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.33);
          display: block;
          position: absolute;
          top: 0;
          left: 0;
        }

        .hero__container {
          z-index: 1;
          position: relative;
        }

        .hero__column {
          flex: 0 1 80%;
        }
      }

      /* Submit Idea: Content
  ----------------------------------------------------------*/

      #main_content {
        padding: 0;
        max-width: 100%;
        margin-top: 40rem;
        background-color: var(--color--silver--l60);

        #main_idea_container {
          position: relative;
          padding: 0;

          .set-section {
            padding: 2.4rem;
            border: none;
            margin: 0 0 2.4rem;
            border: 1px solid #e4e4e4;

            .form-control {
              height: 4rem;
              color: var(--color-gray-5);
              font-family: var(--font-stack--body);
              font-size: 1.4rem;
            }
          }

          .f-submission-image-modal {
            margin: 0;
          }

          .checkbox,
          .radio {
            label {
              color: var(--color-gray-5);
              font-family: var(--font-stack--body);
              font-size: 1.4rem;
            }
          }

          #idea-layout {
            max-width: 93rem !important;
            padding: 4rem;
            margin: 4rem auto 4.8rem;
            position: relative;
            z-index: 1;

            @media only screen and (max-width: 62.5em) {
              transform: none;
              max-width: 100% !important;
            }

            .col-lg-12 {
              padding: 0;

              #form-section {
                max-width: 88rem !important;

                #form {
                  form {
                    display: flex;
                    flex-direction: column;
                    margin-top: -2.4rem;

                    & > fieldset {
                      padding: 0 4rem;
                      box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0),
                        0px 2px 2px 0px rgba(0, 0, 0, 0.2);
                      background-color: #fff;
                    }

                    legend,
                    .f-file-upload-title {
                      font-size: 1.6rem;
                      font-weight: 600;
                      color: var(--color--silver--40);
                      font-family: var(--font-stack--header);
                    }
                  }

                  .redactor-box {
                    max-width: 88rem !important;
                  }

                  .drop-zone .instructions p {
                    line-height: 2rem;
                    color: var(--gray-4);
                    font-family: var(--font-stack--body);
                  }
                }
              }

              #side-preview-section {
                width: 100% !important;
                max-width: 88rem;
                margin: 4rem 0 0;

                #idea-sidebar {
                  #idea-sidebar-actions {
                    height: auto;

                    #sidebar-actions {
                      .btn-primary,
                      .btn {
                        font-size: 1.6rem;
                        text-transform: unset;
                        font-weight: 700;
                        background-color: #fff;
                        color: var(--color--orange--1);
                        border: 1px solid var(--color--orange--2);
                        transition: 0.2s ease;

                        &:hover,
                        &:focus,
                        &:active,
                        &.fractal-drop-open {
                          box-shadow: none;
                          background-color: var(--color--orange--3);
                          color: var(--color--orange--1) !important;
                        }
                      }

                      #f-submit-idea-button {
                        .f-submit-idea-button-container {
                          justify-content: center;
                          margin: 0;

                          .f-submit-idea-btn.btn-primary {
                            border-radius: 8px 0 0 8px !important;
                            padding: 1.6rem 1.6rem 1.6rem 3.2rem !important;
                            font-weight: 400;
                            border-right: none;
                          }

                          .f-dropdown-submit-idea-btn.btn-primary {
                            border-radius: 0 8px 8px 0 !important;
                            padding: 1.6rem 3.2rem 1.6rem 1.6rem;
                            margin-left: -1px !important;
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }

        /* Sub-Page: Submit Idea: Instructions
--------------------------------------------------------------------------------------------------------------------*/
        #idea-B3E3906F-77AD-11F0-9C71-0AFFFA3D2D0B-region {
          padding: 0 !important;

          > .set-section {
            padding: 0 !important;

            .instructions-body {
              p {
                margin-top: 1.2rem;
              }
            }
          }
        }

        /* Sub-Page: Submit Idea: Section Titles: Container Top Corners
--------------------------------------------------------------------------------------------------------------------*/
        #idea-title-region,
        #idea-B39EC4F7-77AD-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-submitter-region,
        #idea-6CCD8A45-7C56-11F0-8A06-0AFFFA3D2D0B-region {
          border-radius: 8px 8px 0 0;

          #idea-form-title,
          .set-section {
            margin-top: 4rem;
          }
        }

        #idea-submitter-region {
          z-index: -1;
        }

        /* Sub-Page: Submit Idea: Section Titles: Container Bottom Corners
--------------------------------------------------------------------------------------------------------------------*/
        #idea-B3B60CA1-77AD-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-upload-region,
        #idea-C163BE97-77B2-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-7B036E79-8193-11F0-8A06-0AFFFA3D2D0B-region {
          border-radius: 0 0 8px 8px;
          padding-bottom: 1.6rem !important;
        }

        /* Sub-Page: Submit Idea: Section Titles: Terms
--------------------------------------------------------------------------------------------------------------------*/
        #idea-B30546B6-77B6-11F0-9C71-0AFFFA3D2D0B-region {
          border-radius: 8px;
          padding-bottom: 1.6rem;

          #idea-form-title,
          .set-section {
            margin-top: 4rem;
            margin-bottom: 4rem;
          }
        }

        /* Sub-Page: Submit Idea: Section Titles: Additional Text
--------------------------------------------------------------------------------------------------------------------*/

        #idea-B3E5040E-77AD-11F0-9C71-0AFFFA3D2D0B-region {
          legend {
            &::before {
              content: "Section 1";
              font-size: 2.4rem;
              font-weight: 700;
              color: #dd5900;
              display: block;
              text-transform: uppercase;
            }
          }
        }
        #idea-79540AD1-77AF-11F0-9C71-0AFFFA3D2D0B-region {
          legend {
            &::before {
              content: "Section 2";
              font-size: 2.4rem;
              font-weight: 700;
              color: #dd5900;
              display: block;
              text-transform: uppercase;
            }
          }
        }
        #idea-C1866A12-77B2-11F0-9C71-0AFFFA3D2D0B-region {
          legend {
            &::before {
              content: "Section 3";
              font-size: 2.4rem;
              font-weight: 700;
              color: #dd5900;
              display: block;
              text-transform: uppercase;
            }
          }
        }

        #idea-D7A8C6A1-77B3-11F0-9C71-0AFFFA3D2D0B-region {
          legend {
            &::before {
              content: "Section 4";
              font-size: 2.4rem;
              font-weight: 700;
              color: #dd5900;
              display: block;
              text-transform: uppercase;
            }
          }
        }

        /* Sub-Page: Submit Idea: Section Titles: Backgrounds
--------------------------------------------------------------------------------------------------------------------*/
        #idea-B3E3906F-77AD-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-B3E5040E-77AD-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-79540AD1-77AF-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-C1866A12-77B2-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-D7A8C6A1-77B3-11F0-9C71-0AFFFA3D2D0B-region {
          background: transparent !important;
          box-shadow: none !important;
          margin: 0 0 2.4rem;

          & > .set-section {
            background: transparent;
            border: none;
            text-align: center;
            padding-bottom: 0;

            & legend {
              font-size: 3.2rem !important;
              line-height: 4rem !important;
              font-weight: 700 !important;
            }

            & .instructions-body p {
              font-size: 1.6rem;
              line-height: 2.4rem;
            }
          }
        }

        #idea-79540AD1-77AF-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-C1866A12-77B2-11F0-9C71-0AFFFA3D2D0B-region,
        #idea-D7A8C6A1-77B3-11F0-9C71-0AFFFA3D2D0B-region {
          margin: 0 0 2.4rem;

          > .set-section {
            margin: 2.4rem 0;
            margin: 5.6rem 0 4rem;
          }
        }

        /* Sub-Page: Submit Idea: Custom Text
--------------------------------------------------------------------------------------------------------------------*/

        #idea-description-region {
          .set-section {
            > fieldset {
              legend {
                &::after {
                  content: "This question provides an opportunity to present the core technical basis of your idea/opportunity and to showcase what makes it unique: what is it that makes your opportunity exciting, and what is the compelling reason for it to be part of the BHP Xplor program.";
                  font-size: 1.4rem;
                  line-height: 2rem;
                  display: block;
                  margin: 8px 0;
                  font-weight: 400;
                  font-family: var(--font-stack--body);
                  color: #797d7f;
                }
              }
            }
          }
        }

        #idea-category-region {
          .set-section {
            legend {
              &::after {
                content: "Please use the dropdown list to identify which country your opportunity is located in. If you have more than one project location, please submit as separate applications.";
                font-size: 1.4rem;
                line-height: 2rem;
                display: block;
                margin: 8px 0 1.6rem;
                font-weight: 400;
                font-family: var(--font-stack--body);
                color: #797d7f;
              }
            }
          }
        }

        #idea-upload-region {
          .set-section {
            legend {
              &::after {
                content: "You must upload at least one attachment to support your application. If your attachments are in a language other than English, please feel free to upload them in their original language.";
                font-size: 1.4rem;
                line-height: 2rem;
                display: block;
                margin: 8px 0 1.6rem;
                font-weight: 400;
                font-family: var(--font-stack--body);
                color: #797d7f;
              }
            }
          }
        }
      }
    }

    /* Sub-Page: Thank You
--------------------------------------------------------------------------------------------------------------------*/

    #bi-page-a {
      #container_1 {
        min-height: 100vh !important;
        padding: 0 !important;
        background-image: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD15040/F60683B4.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      #container_2,
      #container_3 {
        display: none !important;
      }
    }

    .section__confirmation {
      text-align: center;
      padding: 4rem;
      background-color: var(--color--white);
      box-shadow: var(--box-shadow-standard);
      border-radius: 20px;
      max-width: 64rem;

      .confirmation__icon {
        width: 4.8rem;
        height: 4.8rem;
        margin-bottom: 1.6rem;
      }

      .confirmation__title {
        font-size: 4rem;
        line-height: 1.2;
        color: var(--color--titles);
        font-weight: 700;
      }
      .confirmation__text {
        font-size: 1.6rem;
        line-height: 1.6;
        margin-top: 2.4rem;
        color: var(--color--text);
      }
      .confirmation__button {
        margin-top: 4rem;
      }
    }

    /* Sub-Page: FAQ
--------------------------------------------------------------------------------------------------------------------*/

    #bi-page-f {
      #container_1 {
        padding: 0 !important;
        .widget_container {
          margin: 0;
          max-width: 100%;
          width: 100%;
          padding: 0;

          .boxcontent {
            padding: 0;
          }
        }
      }
      #container_3,
      #container_4 {
        display: none;
      }
    }

    .section__hero--FAQ {
      background-image: var(--hero--form--bg);
      background-size: cover;
      background-position: center;
      padding: 9.6rem 0;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      position: relative;

      &::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.33);
        display: block;
        position: absolute;
        top: 0;
        left: 0;
      }

      .hero__column {
        flex: 0 1 80%;
        position: relative;

        .hero__text {
          p {
            font-size: unset;
            line-height: unset;
            letter-spacing: 0;
          }
        }
      }
    }

    .faq__video {
      display: flex;
      justify-content: center;

      iframe {
        max-width: 52rem;
        max-height: 32rem;
        min-height: 30rem;
        border-radius: 20px;
        margin: 2.4rem 0;
        width: 100%;
        height: 100%;
        box-shadow: var(--box-shadow-standard);
      }
    }

    /* ===== FAQ Container width & typography ===== */
    .section.faq {
      width: 75vw; /* 75% page width */
      max-width: 1400px;
      margin-left: calc(50% - 37.5vw); /* center it */
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px; /* base body size */
      line-height: 1.5;
    }
    @media (max-width: 900px) {
      .section.faq {
        width: 92vw;
        margin-left: calc(50% - 46vw);
      }
    }

    /* ===== Section headers (Application Details, etc.) ===== */
    .section.faq .faq-section {
      font-size: 20px;
      font-weight: 700;
      margin: 28px 0 12px;
      color: #252525; /* requested color */
    }

    /* ===== Accordion container & cards ===== */
    .faq-acc {
      margin: 0 auto;
    }

    .faq-item {
      position: relative;
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
      margin-bottom: 14px;
      overflow: hidden;
    }

    /* Hide checkbox toggles (they drive the CSS-only accordion) */
    .faq-item input.faq-toggle {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    /* ===== Question row (click target) ===== */
    .faq-item label.faq-q {
      display: block;
      padding: 24px 56px 24px 24px; /* space for right chevron */
      cursor: pointer;
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: #666666; /* requested color for questions */
      position: relative;
    }

    /* Optional: subtle hover for questions */
    .faq-item label.faq-q:hover {
      filter: brightness(0.95);
    }

    /* Right-side orange chevron */
    .faq-item label.faq-q::after {
      content: "";
      position: absolute;
      right: 20px;
      top: 50%;
      width: 12px;
      height: 12px;
      border-right: 3px solid #dd5900; /* Brightidea-ish orange */
      border-bottom: 3px solid #dd5900;
      transform: translateY(-50%) rotate(-45deg); /* pointing right */
      transition: transform 0.2s ease;
    }

    /* Rotate chevron when open */
    .faq-item input.faq-toggle:checked label.faq-q::after {
      transform: translateY(-50%) rotate(45deg); /* pointing down */
    }

    /* ===== Answer panels ===== */
    .faq-item .faq-a {
      max-height: 0; /* collapsed */
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
      padding: 0 24px; /* left/right padding; top/btm added when open */
      color: #333333; /* readable body color */
      font-size: 16px;
      line-height: 1.5;
    }
    .faq-item input.faq-toggle:checked ~ .faq-a {
      opacity: 1;
      max-height: 1200px; /* large enough to fit content; animates smoothly */
      padding: 0 24px 16px 24px;
    }
  }
}

/* Login Page
--------------------------------------------------------------------------------------------------------------------*/
body.webstorm-level {
  .all_container {
    #bi-page-ct-login {
      background-image: var(--hero--form--bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      #container_plogin_2 {
        &::before {
          content: "If you are a BHP employee, you will only be able to register via SSO.";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          text-align: center;
          background-color: var(--color--orange--3);
          display: flex;
          align-items: center;
          justify-content: center;
          height: 4.8rem;
          font-size: 1.4rem;
        }

        @media only screen and (max-width: 35em) {
          padding: 0 2.4rem;
          box-sizing: border-box;
        }
      }

      .widget_container.private_login_widget {
        border-radius: 20px;
        margin: 0;
        position: relative;
        margin-top: 0;

        &::before {
          content: "";
          background-image: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD15040/3DC53D7A.png);
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center;
          width: 20rem;
          height: 4rem;
          position: absolute;
          top: -7.2rem;
          left: 50%;
          transform: translateX(-50%);
          display: inline-block;
        }

        &::after {
          content: "BHP Xplor is an accelerator program designed to support early-stage mineral exploration teams developing promising geological concepts in critical minerals. Participants receive US$500,000 in equity-free funding and tailored support across technical development, operational readiness, and business strategy.";
          font-size: 1.6rem;
          line-height: 1.6;
          color: var(--color--white);
          position: absolute;
          bottom: -14rem;
          left: 50%;
          transform: translateX(-50%);
          text-align: center;
          width: 64rem;

          @media only screen and (max-width: 32.5em) {
            width: 100%;
            bottom: -18rem;
            box-sizing: border-box;
          }
          @media only screen and (max-width: 24em) {
            width: 100%;
            bottom: -20rem;
            box-sizing: border-box;
          }
        }

        #private_login_main_content_div {
          td {
            font-family: var(--font-stack--body);
          }

          .rndbox {
            .tabunder {
              tbody {
                display: flex;
                align-items: center;

                tr {
                  &:nth-child(2) {
                    td#auth_0 {
                      float: none;
                      display: block;
                      margin-left: 3.2rem;

                      a {
                        margin: 0;
                        padding: 0;
                      }
                    }
                  }
                  .taboff {
                    a {
                      color: var(--color--text);
                      font-weight: 400;
                    }
                  }
                }
              }
            }

            .login {
              a {
                background-color: var(--color--white);
                border: 1px solid var(--color--orange--2);
                color: var(--color--orange--1) !important;
                transition: 0.2s ease;
                box-shadow: none;
                font-size: 1.6rem !important;

                &:hover {
                  background-color: var(--color--orange--3);
                }
              }
            }

            #page2 {
              table {
                tbody {
                  tr {
                    td {
                      #private_register_button {
                        background-color: var(--color--white);
                        border: 1px solid var(--color--orange--2);
                        color: var(--color--orange--1) !important;
                        transition: 0.2s ease;
                        box-shadow: none;
                        font-size: 1.6rem !important;

                        &:hover {
                          background-color: var(--color--orange--3);
                        }
                      }
                    }
                  }
                }
              }

              form#Form1 {
                #SubmitButton2 {
                  background-color: var(--color--white);
                  border: 1px solid var(--color--orange--2);
                  color: var(--color--orange--1) !important;
                  transition: 0.2s ease;
                  box-shadow: none;
                  font-size: 1.6rem !important;

                  &:hover {
                    background-color: var(--color--orange--3);
                  }
                }
              }
            }

            #forgot_pass {
              .input_button {
                background-color: var(--color--white);
                border: 1px solid var(--color--orange--2);
                color: var(--color--orange--1) !important;
                transition: 0.2s ease;
                box-shadow: none;
                font-size: 1.6rem !important;

                &:hover {
                  background-color: var(--color--orange--3);
                }
              }
            }
          }
        }
      }
    }
  }

  .container__footer__outer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem 0;
    background-color: #f2f4f5;

    .container__footer__inner {
      max-width: var(--container--max-width);
      width: 100%;
      display: flex;
      justify-content: center;

      .footer__logo {
        img {
          max-height: 3.2rem;
        }
      }
    }
  }

  #bi-page-ct-login .container__footer__outer {
    display: none;
  }
}
