/* Universal Reset
--------------------------------------------------------------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
.root {
  font-size: 62.5%;

  @media only screen and (max-width: 48em) {
    font-size: 50%;
  }
}

body.webstorm-level,
body.webstorm-level .content {
  padding: 0;
  font-family: var(--font-stack--body) !important;
}

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

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

  --color--blue: #1565c0;
  --color--blue--active: #2196f3;
  --color--blue--midnight: #153e5c;

  --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--gray--light--1: #fafafa;
  --color--gray--light--2: #e0e0e0;
  --color--gray--med: #616161;
  --color--gray--dark: #212121;

  --color--green: #2ecc71;

  --gradient--blue: linear-gradient(
    90deg,
    rgba(21, 101, 192, 1) 0%,
    rgba(33, 150, 243, 1) 100%
  );

  --color--titles: #212121;
  --color--text: #616161;

  --color--primary: #1565c0;
  --color--secondary: #3498db;

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

  --section--padding--small: 9.6rem 4rem;
  --section--padding--standard: 12rem 4rem;
  --section--padding--extra: 18rem 4rem;

  --box-shadow-standard: 0px 8px 24px 4px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0px 0px 8px 0px rgba(0, 0, 0, 0.12),
    0px 8px 8px 0px rgba(0, 0, 0, 0.24);

  --border-radius--standard: 20px;

  --font-size--standard: 1.6rem;
  --line-height--standard: 1.6;

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

  --hero--home--bg: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD13064/DAB8D65E.jpg);
  --hero--browse--bg: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD13064/DAB8D65E.jpg);
  --hero--form--bg: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD13064/DAB8D65E.jpg);
}

/* Element Updates
--------------------------------------------------------------------------------------------------------------------*/

.row {
  margin: 0;
}

.fractal-backtotop {
  z-index: 1;
}

/* Typography
--------------------------------------------------------------------------------------------------------------------*/

.h1 {
  font-size: 6.4rem;
  line-height: 7.2rem;
  font-weight: 700;
}

.h2 {
  font-size: 4.8rem;
  line-height: 6.4rem;
}

.h3 {
  font-size: 3.2rem;
  line-height: 4rem;
}

.h4 {
  font-size: 2.4rem;
  line-height: 3.6rem;
}

.h5 {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.h6 {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 700;
}


.superscript {
  font-size: 50%;
  vertical-align: super;
}


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

.button {
  display: inline-block;
  padding: 1.5rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 8px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: 0.2s ease;

  &.button--filled {
    background-color: var(--color--blue);
    border-color: var(--color--blue);
    color: var(--color--white);
  }

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

  &:hover {
    background-color: var(--color--white);
    color: var(--color--blue);
    border-color: var(--color--white);
    text-decoration: none;
    transform: scale(1.02);
    box-shadow: var(--box-shadow-standard);
  }
}

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

.grid {
  display: grid;

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

  &::after {
    display: none;
  }

  table {
    display: flex;
    align-items: flex-start;

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

      tr {
        display: block;
        height: auto;

        td {
          display: block;
          height: 100%;

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--border-radius--standard);
          }
        }
        .grid__header {
          font-size: 3.2rem;
          line-height: 4rem;
          color: var(--color--titles);
          margin-bottom: 2.4rem;
          display: block;
          font-weight: 700;
        }

        .grid__supertitle {
          font-size: 1.4rem;
          line-height: 2.8rem;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

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

        .grid__description {
          font-size: 1.8rem;
          line-height: 2.8rem;
          color: var(--color--text);
        }

        .grid__button {
          padding-top: 4rem;
        }
      }
    }
  }

  &.grid__2-col--33-66 {
    grid-template-columns: 1fr 2fr;
    gap: 2.4rem;

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

    table > tbody > tr > td > img {
      @media only screen and (max-width: 40em) {
        max-height: 32rem;
      }
    }
  }

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

  &.grid--cards {
    > table {
      background-color: var(--color--white);
      box-shadow: var(--box-shadow-standard);
      border-radius: var(--border-radius--standard);
      overflow: hidden;

      tbody > tr:not(:nth-child(1)) > td {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
      }

      .grid__description {
        font-size: 1.6rem;
        line-height: 2.4rem;
      }

      .grid__button {
        padding-top: 2rem;
        padding-bottom: 2.4rem;
        margin-top: 2rem;
        border-top: 1px solid var(--color--silver--l40);
        font-size: 1.6rem;

        a {
          font-weight: 400;
        }
      }
    }
  }
}

/* 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 66%;

      @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.9rem;
        line-height: 1.2;
        font-weight: 700;
        font-family: var(--font-stack--header);
        padding-bottom: 4rem;
      }

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

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

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

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

/* Initiative-Level
--------------------------------------------------------------------------------------------------------------------*/
body.webstorm-level {
  /* Initiative: 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%;

        .f-nav-search-wrapper {
          display: none;
        }

        .f-nav-logo {
          width: 8.8rem;
          height: 1.8rem;

          &::before {
            content: "";
            width: 100%;
            height: 100%;
            background-size: contain;
            background-image: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD13064/360B3C8F.png);
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
          }
        }

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

        .f-nav-right {
          .f-user-menu {
            .f-user-menu-display {
              .f-user-menu-edit {
                display: none;
              }

              .f-user-menu-links {
                ul {
                  li {
                    a[href*="apps"] {
                      display: none;
                    }
                  }
                }
              }
            }
          }
        }

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

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

      .fa-search {
        color: var(--color--text);
      }

      .fractal-input {
        input {
          color: var(--color--text);

          &::placeholder {
            color: var(--color--text);
          }
        }
      }
    }
  }

  /* Initiative-Level: Containers
--------------------------------------------------------------------------------------------------------------------*/
  .all_container {
    width: 100%;

    .content {
      width: 100%;

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

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

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

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

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

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

                &:first-child {
                  a {
                    padding-left: 0;
                  }
                }

                a {
                  font-size: 1.4rem;
                  font-weight: 500;
                  font-family: var(--font-stack--body);
                  margin: 0;
                  padding: 8px;
                  line-height: 1;
                  background-color: transparent;
                  border-radius: 8px;
                  text-transform: none;
                  letter-spacing: 0;
                }

                .nav-item-hover {
                  display: none;
                }
              }
            }
          }

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

              .nav-logo-link {
                width: 8.8rem;
                height: 1.8rem;

                &::before {
                  content: "";
                  width: 100%;
                  height: 100%;
                  background-size: contain;
                  background-image: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD13064/360B3C8F.png);
                  background-repeat: no-repeat;
                  background-position: center;
                  display: inline-block;
                }

                img {
                  max-width: 18rem;
                  max-height: 4rem;
                  display: none;
                }
              }

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

      /* Initiative-Level: Main Content
--------------------------------------------------------------------------------------------------------------------*/
      #main_content {
        max-width: 100%;

        /* Initiative-Level: Main Content: Widgets
--------------------------------------------------------------------------------------------------------------------*/
        /* Initiative-Level: Main Content: Widgets: Categories
--------------------------------------------------------------------------------------------------------------------*/
        .categories_widget,
        .mini_tag_cloud_widget {
          .title_back {
            &::after {
              padding: 0 2.4rem;
            }
          }
        }

        .categories_widget {
          .boxcontent {
            > p {
              border-radius: 20px;
              background-color: var(--color--silver--l40) !important;

              &:hover {
                background-color: var(--color--silver--l20) !important;
              }
            }
          }
        }

        /* Initiative-Level: Main Content: Widgets: Updates
--------------------------------------------------------------------------------------------------------------------*/

        .widget_container.updates_widget {
          > .boxcontent {
            padding: 0 !important;

            #ws_updates_area {
              > div {
                padding: 0 !important;
                border: none !important;

                .pl_feed_note_photo {
                  padding: 2.4rem;
                  border-top: none !important;
                  border-bottom: 1px solid var(--color--silver--l40);

                  > a {
                    margin-right: 12px;
                  }

                  > div > div {
                    font-size: 1.4rem;
                    line-height: 2rem;
                    margin: 0 !important;

                    > div {
                      width: 100% !important;
                      margin: 0 !important;
                    }
                  }

                  #display_note_attachment {
                    padding-left: 6.4rem !important;
                  }
                }
              }
            }
          }
        }

        /* Initiative-Level: Main Content: Widgets: Top Contributors
--------------------------------------------------------------------------------------------------------------------*/

        .mini_top_contributors_widget {
          .boxcontent {
            padding: 0 !important;

            .mini-top-contributors-container {
              > table {
                display: block;

                tbody {
                  display: block;

                  tr {
                    display: flex;
                    justify-content: space-between;
                    width: 100%;
                    padding: 0.8rem 2.4rem;
                    box-sizing: border-box;
                    border-bottom: 1px solid var(--color--silver--l20);

                    > td {
                      font-size: 1.4rem;
                      padding: 0;
                      background-color: transparent;

                      &.mini-top-contributors-header {
                        font-weight: 400;
                        color: var(--color--silver--40);
                      }
                    }
                  }
                }
              }
              .mini-top-contributors-footer {
                margin: 0;
                padding: 1.6rem 2.4rem;
              }
            }
          }
        }

        /* Initiative-Level: Main Content: Widgets: Criteria
--------------------------------------------------------------------------------------------------------------------*/

        .grid--criteria {
          margin-top: 1.6rem;

          .criteria__title {
            margin: 0 0 8px 0;
          }

          .criteria__icon {
            display: inline-block;
            background-color: var(--color--silver--l60);
            border-radius: 50%;
            font-size: 2.4rem;
            text-align: center;
            width: 6.4rem;
            height: 6.4rem;
            position: relative;
            margin-bottom: 1.6rem;

            & > span::before {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              color: var(--color--secondary);
            }
          }
        }

        /* Initiative-Level: Main Content: Widgets: Custom Grid
--------------------------------------------------------------------------------------------------------------------*/

        .grid--lg-column {
          table > tbody > tr {
            height: 100%;
          }
        }

        /* Initiative-Level: Main Content: Widgets: Phases
--------------------------------------------------------------------------------------------------------------------*/
        .phase_widget_widget {
          .phase-content {
            display: grid;
            grid-template-columns: 1fr;

            .phase-name {
              color: var(--color--titles);
            }

            .phase-start {
              margin-top: 6px;
            }

            .phase-desc {
              grid-row: 2;
              margin: 0;
            }
          }
        }
      }
    }

    /* Initiative-Level: Home
--------------------------------------------------------------------------------------------------------------------*/
    #bi-page-s {
      background-color: unset;

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

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

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

      #container_homepage_header {
        max-width: 100%;

        .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 4rem;
            box-sizing: border-box;
            max-width: var(--container--max-width--padded);

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

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

              h1 {
                margin-top: 0;
              }

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

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

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

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

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

              .fractal-htmlpreview {
                div {
                  font-size: 1.8rem;
                  line-height: 2.8rem;
                  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;
                  text-align: left;

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

                    @media only screen and (max-width: 48em) {
                      justify-content: center;
                    }

                    .f-btn-md {
                      margin: 0;
                      font-size: 1.4rem;
                      line-height: 4rem;
                      height: auto;
                      padding: 0 2rem;
                      border: 1px solid;
                    }
                  }
                }
              }
            }
          }
        }
      }

      /* Initiative-Level: Home: Content
--------------------------------------------------------------------------------------------------------------------*/
      #main_content {
        max-width: 100%;
        background-color: var(--color--silver--l60);
        padding: 7.2rem 0;

        display: grid;
        grid-template-columns:
          minmax(4rem, 1fr) minmax(
            10rem,
            calc(var(--container--max-width) / 12 * 9)
          )
          2.4rem minmax(10rem, calc(var(--container--max-width) / 12 * 3))
          minmax(4rem, 1fr);

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

        .grid::after {
          display: none;
        }

        .widget_container {
          background-color: var(--color--white);
          border-radius: 8px;
          overflow: hidden;
          box-shadow: var(--box-shadow-standard);

          .title_back {
            margin-bottom: 0;
            padding: 0;
            border-radius: 0;

            .widget_title_container {
              min-height: 0;

              .widget_title {
                padding: 0;
                font-size: 1.4rem;
                text-transform: uppercase;
                letter-spacing: 1px;
                padding: 1.6rem 2.4rem;
                border-bottom: 1px solid var(--color--silver);

                h2 {
                  font-weight: 700 !important;
                }
              }
            }
          }

          & > .boxcontent {
            padding: 2.4rem;
          }

          &.rich_texthtml_widget > .boxcontent {
            padding: 1.8rem 1.6rem;
          }
        }

        /* Initiative-Level: Home: Left Column
--------------------------------------------------------------------------------------------------------------------*/
        #container_2 {
          background-color: transparent !important;
          grid-column: 2;
          max-width: 100%;
          min-width: 100px;
          margin: 0;
          padding: 0 !important;

          .widget_container {
            &:first-child {
              margin-top: 0 !important;
            }

            &:not(:first-child) {
              margin-top: 2.4rem !important;
            }

            .boxcontent table {
              border: none;

              tbody > tr > td {
                border: none;
              }
            }
          }
        }

        /* Initiative-Level: Home: Right Column
--------------------------------------------------------------------------------------------------------------------*/
        #container_3 {
          grid-column: 4;
          margin: 0;
          width: 100%;
          max-width: 100%;
          padding: 0 !important;

          @media only screen and (max-width: 48em) {
            grid-column: 2;
            margin-top: 2.4rem !important;
          }

          .widget_container {
            &:first-child {
              margin-top: 0 !important;
            }

            &:not(:first-child) {
              margin-top: 2.4rem !important;
            }

            .boxcontent table {
              border: none;

              tbody > tr > td {
                border: none;
              }
            }
          }
        }

        .widget--contact-us {
          .contact__image > img {
            max-height: 16rem;
            margin-bottom: 2.4rem;
          }
          .contact__description {
            margin: 0 0 2.4rem;
            display: block;
          }
        }
      }
    }

    #custom_footer {
      display: none;
    }

    /* Initiative-Level: Browse Boards
--------------------------------------------------------------------------------------------------------------------*/

    #bi-page-ct-list {
      padding-bottom: 0;
      background-color: var(--color--gray--light--1);

      #custom_footer {
        display: block;
      }

      .nav-desktop {
        .desktop-nav-core-items {
          li {
            a[href*="boards"] {
              color: var(--color--blue) !important;
            }
          }
        }
      }

      /* Browse Ideas: Hero
  ----------------------------------------------------------*/

      .section__hero--browse-ideas {
        display: flex;
        height: 36rem;
        top: -36rem;
        position: absolute;
        width: 100%;
        padding: 0 4rem;
        justify-content: center;
        align-items: center;
        background-image: var(--hero--browse--bg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: var(--color--white);

        .hero__container {
          z-index: 1;
        }

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

      /* Browse Ideas: Content
  ----------------------------------------------------------*/

      #main_content {
        margin-top: 36rem;
        position: relative;
        max-width: 100%;
        margin-bottom: 0;

        .fractal-widget-ideaboard {
          .ideaboard-top {
            background-color: var(--color--white);
            padding: 1.6rem 0;
            border-top: 1px solid var(--color--silver--l20);
            border-bottom: 1px solid var(--color--silver--l20);

            .ideaboard-filter-bar,
            .ideaboard-filter-bar-placeholder {
              max-width: var(--container--max-width);
              margin: 0 auto;
              padding: 0 1.6rem;
            }

            .fractal-button.f-btn-link-animated {
              font-family: var(--font-stack--body);

              &:not(.active) {
                color: var(--color--silver--20);
              }

              &::after {
                border-bottom: solid 4px var(--color--secondary);
                margin: 21px 0 0;
              }
            }
          }

          .ideaboard-filter-bar {
            .ideaboard-filter-left {
              .ideaboard-filter-button-sidebar {
                color: var(--color--silver--20);
                border: 1px solid var(--color--silver);
                border-radius: 4px;
                font-family: var(--font-stack--body);
                font-weight: 500;
                margin-left: 0;
                height: auto;
                line-height: 1;
                padding: 16px;
                text-transform: uppercase;

                &:hover {
                  color: var(--color--white);
                  background-color: var(--color--blue);
                  border-color: var(--color--blue);
                }
                &.active {
                  color: var(--color--white);
                  background-color: var(--color--blue);
                  border-color: var(--color--blue);
                }
                &.filtering {
                  color: var(--color--white);
                  background-color: var(--color--blue);
                  border-color: var(--color--blue);
                }
              }
            }
          }

          .ideaboard-bottom {
            max-width: var(--container--max-width--padded);
            padding: 0 4rem;
            margin: 3.2rem auto 6.4rem;
            position: relative;

            .ideaboard-sidebar {
              margin: 0;
              background: transparent;

              &.show {
                margin-right: 2.4rem !important;
                overflow: visible;
              }

              .ideaboard-sidebar-float {
                border-radius: var(--border-radius--standard);
                box-shadow: var(--box-shadow-standard);
                background-color: var(--color--white);
                border: none;
              }

              .f-idea-filters-section {
                padding: 2.4rem;

                #filter-tab-search {
                  padding-top: 0;
                }

                .filter-category,
                .filter-question {
                  .fractal-ideafilters-tab {
                    .filter-generic-checkboxes-wrapper,
                    .fractal-collapse {
                      max-height: 100%;
                    }
                  }
                }
              }
            }

            .ideasviewGrid {
              .fractal-secondary-ideas-view-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
                gap: 2.4rem;

                .ideaboard-card.f-nov-2019-card-redesign {
                  width: 100%;
                  margin: 0;
                  border-radius: var(--border-radius--standard);
                  position: relative;
                  overflow: hidden;
                  min-height: 100px;
                  box-shadow: var(--box-shadow-standard);

                  &::before {
                    content: "";
                    width: 100%;
                    height: 1.2rem;
                    background-color: var(--color--blue);
                    position: absolute;
                    top: 0;
                    left: 0;
                    display: inline-block;
                    z-index: 10;
                  }

                  .f-card-absolute-elements {
                    display: none;
                  }

                  .f-card-image {
                    margin-top: 1.2rem;
                    height: 20rem;
                    background-size: contain;

                    .f-card-member {
                      display: none;
                    }
                  }

                  .f-card-top {
                    padding-top: 2.4rem;
                    display: none;

                    .f-card-title {
                      display: flex;
                      align-items: center;
                    }
                  }

                  .f-card-description {
                    height: auto;
                    margin: 0;
                    padding: 2.4rem;

                    .f-card-info-row {
                      display: none;
                    }

                    .fractal-htmlpreview {
                      font-size: 1.3rem;
                      line-height: 1.6;
                      line-clamp: 5;
                      -webkit-line-clamp: 5;
                      height: auto;
                      margin: 0;
                    }
                  }
                }
              }
            }

            &.ideaboard-sidebarred {
              .ideasviewGrid {
                .fractal-secondary-ideas-view-grid {
                  .ideaboard-card.f-nov-2019-card-redesign {
                    width: 100% !important;
                  }
                }
              }
            }
          }
        }
      }
    }

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

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

      #custom_footer {
        display: block;
      }

      /* 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);
        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;
      }

      /* 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: 0;
            border: none;
            margin: 0;

            .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: 0 auto 4.8rem;
            background-color: var(--color--white);
            border-radius: var(--border-radius--standard);
            transform: translateY(-3.2rem);
            position: relative;
            z-index: 1;
            box-shadow: var(--box-shadow-standard);

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

            .col-lg-12 {
              padding: 0;

              #form-section {
                max-width: 100% !important;

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

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

                  .redactor-box {
                    max-width: 100% !important;
                  }

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

              #side-preview-section {
                width: 100%;
                max-width: 100%;
                margin: 0;

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

                    #sidebar-actions {
                      .btn-primary,
                      .btn {
                        font-size: 1.6rem;
                        text-transform: unset;
                        font-weight: 700;

                        &:hover,
                        &:focus,
                        &:active,
                        &.fractal-drop-open {
                          box-shadow: none;
                        }
                      }

                      #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;
                          }

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

    /* Initiative-Level: Top Contributors
--------------------------------------------------------------------------------------------------------------------*/

    .section__hero--topParticipants {
      display: flex;
      justify-content: center;
      align-items: center;
      background-image: var(--hero--form--bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 40rem;
      color: var(--color--white);
      padding: 0 4rem;
    }

    #bi-page-ct-top-contributors {
      #main_content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;

        #container_top_contributors_1 {
          width: 100%;
          min-height: 12rem;
          flex: 0 0 100%;

          .boxcontent {
            padding: 0;
          }
        }

        #container_top_contributors_2 {
          margin: 0;
          min-height: 20rem;
          width: 100%;
          padding: 7.2rem 4rem;
          max-width: 100%;
          float: none;
          flex: 0 0 100%;
          display: flex;
          justify-content: center;

          .top_contributors_widget {
            max-width: var(--container--max-width);
            width: 100%;

            .boxcontent {
              padding: 0;

              > table {
                display: block;
                border: none !important;

                > tbody {
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
                  gap: 2.4rem;

                  & > tr:nth-child(1) {
                    display: none;
                  }

                  & > tr {
                    display: grid;
                    grid-template-columns: 6.4rem 1.6rem 1fr;
                    align-items: center;
                    background-color: var(--color--white);
                    border: none;
                    border-radius: 8px;
                    position: relative;
                    padding: 2.4rem 2.4rem 1.6rem 2.4rem;
                    box-shadow: var(--box-shadow-standard);
                    position: relative;

                    &::after {
                      content: "";
                      width: 100%;
                      height: 1px;
                      background-color: var(--color--silver--l20);
                      position: absolute;
                      bottom: 4.8rem;
                      display: inline-block;
                    }

                    & > td {
                      padding: 0 !important;
                      text-align: center;
                      border: none !important;

                      &:nth-child(1) {
                        display: none;
                      }

                      &:nth-child(2) {
                        grid-column: 1;
                        grid-row: 1 / span 2;
                        padding: 0;
                        width: auto;
                        height: auto;

                        img {
                          width: 100%;
                          height: 100%;
                          object-fit: cover;
                          border-radius: 50%;
                        }
                      }

                      &:nth-child(3) {
                        font-size: 1.8rem;
                        margin: 0;
                        grid-column: 3;
                        text-align: left;
                        color: var(--color--silver--40);
                        font-weight: 600;
                        overflow: hidden;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        width: 100%;
                      }

                      &:nth-child(4) {
                        font-size: 1.6rem;
                        margin: 0;
                        grid-column: 3;
                        text-align: left;
                        margin-top: -1.6rem;

                        &::after {
                          content: "Points";
                          display: inline-block;
                          margin-left: 4px;
                        }
                      }

                      &:nth-child(5) {
                        grid-row: 3;
                        grid-column: 1 / -1;
                        width: 100%;
                        padding-top: 3.2rem !important;

                        > table {
                          width: 100%;
                          display: block;

                          > tbody {
                            display: flex;
                            justify-content: space-between;

                            td {
                              font-size: 1.4rem;
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }

            #display_groups {
              display: inline-block;
              margin-top: 4rem;
            }
          }
        }

        #container_top_contributors_3 {
          display: none;
        }
      }
    }

    /* Initiative-Level: Search
--------------------------------------------------------------------------------------------------------------------*/
    #bi-page-c-search {
      #main_content {
        padding: 0;

        #container_ent_search_1 {
          margin-top: 4.8rem;

          #enterprise_search {
            width: 100%;
            padding: 0 4rem;
            max-width: 120.8rem;
            margin: 0 auto;

            > table {
              display: block;

              > tbody {
                display: block;

                > tr {
                  display: grid;
                  grid-template-columns: calc(100% / 12 * 3) 1fr;
                  gap: 4rem;

                  > td {
                    display: block;
                    width: 100%;

                    &:nth-child(2) {
                      > div:nth-child(2) {
                        margin: 0;
                        text-transform: none !important;
                        font-size: 1.8rem !important;
                        line-height: 2.8rem;
                        padding-top: 0;
                        color: var(--color--silver--40) !important;
                        font-weight: 400 !important;
                        letter-spacing: 0;

                        &::before {
                          content: "\f022";
                          font-family: var(--font-icons);
                          margin-right: 8px;
                        }
                      }
                    }

                    .ent_search_bar_type,
                    .ent_search_bar_type_selected {
                      margin: 0;
                      font-size: 1.4rem;
                      height: auto;
                      line-height: 18px;
                      padding: 8px 18px;
                      text-indent: 0;

                      a {
                        color: var(--color--silver--40) !important;
                      }

                      &::before {
                        font-family: var(--font-icons);
                        color: var(--color--silver--20);
                        margin-right: 1.2rem;
                        font-size: 1.1rem;
                      }

                      &#all {
                        &::before {
                          content: "\f57d";
                        }
                      }

                      &#blog {
                        &::before {
                          content: "\f781";
                        }
                      }
                      &#idea {
                        &::before {
                          content: "\f0eb";
                        }
                      }
                      &#whiteboard {
                        &::before {
                          content: "\f0eb";
                        }
                      }
                      &#project_room {
                        &::before {
                          content: "\f0eb";
                        }
                      }
                      &#comment {
                        &::before {
                          content: "\f086";
                        }
                      }
                      &#member {
                        &::before {
                          content: "\f007";
                        }
                      }
                      &#update {
                        &::before {
                          content: "\f1ea";
                        }
                      }
                    }

                    .ent_search_bar_type_selected {
                      background-color: var(--color--silver--l40);
                      color: var(--color--silver--40);

                      & span {
                        color: var(--color--silver--40);
                      }
                    }
                  }

                  > td:first-child::before {
                    font-size: 1.4rem;
                    line-height: 2rem;
                    color: var(--color--silver--40);
                    margin-bottom: 1.6rem;
                    text-transform: uppercase;
                    display: block;
                    font-weight: 600;
                    letter-spacing: 1px;
                  }
                }
              }
            }

            #search_results {
              font-size: 1.4rem;
              margin-top: 8px;

              > div:not(:last-child) {
                padding: 2.4rem;
                border: none !important;
                box-shadow: var(--box-shadow-standard);
                width: 100%;
                border-radius: 8px;

                table {
                  > tbody {
                    > tr {
                      > td:nth-child(1) {
                        display: block;

                        & > img {
                          display: none;
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

/* Initiative-Level: View Idea
--------------------------------------------------------------------------------------------------------------------*/

.f-idea-page-wrapper {
  width: 100%;
  border-radius: 0;
  margin: 0;

  .f-idea-page-content {
    .f-idea-header {
      position: relative;
      align-items: center;

      &::before {
        content: "";
        height: 22rem;
        background-color: var(--color--blue);
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;

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

      > .f-idea-row {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        height: auto;
        max-width: var(--container--max-width);

        > .f-idea-column {
          &:first-of-type {
            grid-column: 6 / span 2;
            grid-row: 2;
            align-items: center;

            > .f-idea-image-container {
              margin: 0;
              width: 14rem;
              height: 14rem;
              padding: 1.6rem;
              background-color: var(--color--white);
              border-radius: 50%;
              overflow: hidden;
              box-shadow: var(--box-shadow-standard);

              & .f-idea-image {
                width: 100%;
                height: 100%;

                &::after {
                  display: none;
                }
              }

              > img {
                width: 100%;
                height: 100%;
              }
            }
          }
          &:nth-of-type(2) {
            grid-row: 1;
            grid-column: 2 / span 10;
            width: 100%;
            max-width: 100%;
            text-align: center;

            .f-idea-extras {
              position: relative;
              padding: 0;
              top: unset;
              right: unset;
              justify-content: center;
              margin-bottom: 4rem;
            }

            > .f-idea-inner-row:nth-of-type(3) {
              display: none;
            }

            .f-title-container {
              justify-content: center;

              .f-static-title {
                font-size: 4rem;
                line-height: 1.2;
                font-weight: 700;
                color: var(--color--white);
              }

              .link {
                display: none;
              }
            }
          }
        }
      }
    }

    > .f-idea-row {
      flex-direction: column;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;

      > .f-idea-column {
        width: 100%;
        max-width: 72rem;
        display: flex;
        align-items: center;

        #f-edit-description {
          margin: 0;

          div {
            > p {
              font-size: 1.6rem;
              line-height: 1.6;
              color: var(--color--text);
            }

            a {
              display: inline-block;
              padding: 1.5rem 1.6rem;
              font-size: 1.6rem;
              line-height: 1;
              text-transform: uppercase;
              border: 1px solid;
              border-radius: 8px;
              font-weight: 400;
              letter-spacing: 0.5px;
              transition: 0.2s ease;
              background-color: var(--color--blue);
              border-color: var(--color--blue);
              color: var(--color--white);
              margin-top: 2.4rem;

              &:hover {
                background-color: var(--color--white);
                color: var(--color--blue);
                border-color: var(--color--white);
                text-decoration: none;
                transform: scale(1.02);
                box-shadow: var(--box-shadow-standard);
              }
            }
          }
        }
      }
    }
  }
}

.fractal-body {
  .view-idea-3 {
    padding: 0;

    .fractal-idea-page {
      /* Initiative-Level: View Idea 3.0: Global Nav
--------------------------------------------------------------------------------------------------------------------*/

      .fractal-global-nav#global-nav-bar {
        box-shadow: none;
        padding: 0 4rem;
        box-sizing: border-box;

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

          @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);

        .fa-search {
          color: var(--color--text);
        }

        .fractal-input {
          input {
            color: var(--color--text);

            &::placeholder {
              color: var(--color--text);
            }
          }
        }
      }

      /* Initiative-Level: View Idea 3.0: Nav
--------------------------------------------------------------------------------------------------------------------*/

      .f-dynamic-nav-wrapper {
        height: 4.8rem;

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

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

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

                &:first-child {
                  a {
                    padding-left: 0;
                  }
                }

                a {
                  font-size: 1.4rem;
                  font-weight: 500;
                  font-family: var(--font-stack--body);
                  margin: 0;
                  padding: 8px;
                  line-height: 1;
                  background-color: transparent;
                  border-radius: 8px;
                  text-transform: none;
                  letter-spacing: 0;
                }

                .nav-item-hover {
                  display: none;
                }
              }
            }
          }

          .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);
                }
              }
            }
          }
        }
      }

      .f-idea-page-main {
        .f-idea-page-wrapper {
          width: 100%;
          min-height: 100vh;
          margin-top: 0;
        }

        .f-idea-page-footer {
          margin: 0;
        }
      }
    }
  }
}

.webstorm-level .f-idea-modal {
  .ReactModal__Content {
    border-radius: 20px !important;
    max-width: 760px;
    height: auto;
    max-height: 90vh;
    overflow: scroll;

    @media screen and (max-width: 48em) {
      max-height: 100vh;
      max-width: 100%;
      border-radius: 0 !important;
    }
  }
}
