/*******************************************************************************
Hides profile tooltips
********************************************************************************/
#f-card-member-tooltip {
  display: none !important;
}
.f-member-wrapper .react-tooltip {
  display: none !important;
}

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

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

body.webstorm-level {
  font-family: var(--font-stack--body);
  margin: auto;
  box-sizing: border-box;
  width: 100%;
  font-size: unset;
}

body {
  overscroll-behavior-y: none;
  -ms-scroll-chaining: none;
}

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

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

  --color--text: #2c2e35;

  --color-gray--light: #f2f2f2;
  --color-gray--med: #666;
  --color-gray--dark: #5b6770;

  --color-blue: #07679b;
  --color-blue--light: #0089c4;
  --color-yellow: #fbbb36;
  --color-green: #749d25;

  --box-shadow--standard: 0px 6px 32px 0px rgba(27, 28, 29, 0.15);
  --box-shadow--hover: 0px 12px 40px 0px rgba(27, 28, 29, 0.3);

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

  --u-spacing--small: 2.4rem;
  --u-spacing--med: 4rem;
  --u-spacing--large: 7.2rem;

  --container--max-width: 128rem;
  --container--max-width--bb: 132.8rem;

  --container--full: 100%;
  --container--narrow: 104rem;
  --container--wide: 160rem;

  --container--padding: 0 2.4rem;

  --column-gap--standard: 4rem;
}

/* Flexbox
  --------------------------------------------------------------------------------------------------------------------*/
.full-flex {
  height: 100vh;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
}

/* Rows */
.row,
.full {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.collapse > .cell,
.full.collapse > .cell {
  padding-left: 0;
  padding-right: 0;
}

.row.collapse > .row,
.full.collapse > .row {
  margin-left: 0;
  margin-right: 0;
}

.row {
  min-width: 100%;
}

.row.inside {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

/* Justify Row */
.justify-start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.justify-end {
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify-center {
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-space {
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/* Row Direction */
.reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.column {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.column-reverse {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* Cells */
.cell {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}

.cell.fit {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.cell.collapse {
  padding-left: 0;
  padding-right: 0;
}

.cell.content-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  min-width: 100%;
}

.one,
.two,
.three,
.four,
.five,
.six,
.seven,
.eight,
.nine,
.ten,
.eleven,
.twelve,
.fifths,
.half,
.third,
.noflex {
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.twelve {
  width: 100%;
}

.eleven {
  width: calc(100% / 12 * 11);
}

.ten {
  width: calc(100% / 12 * 10);
}

.nine {
  width: 75%;
}

.eight {
  width: calc(100% / 12 * 8);
}

.seven {
  width: calc(100% / 12 * 7);
}

.six,
.half {
  width: 50%;
}

.five {
  width: calc(100% / 12 * 5);
}

.four,
.third {
  width: calc(100% / 12 * 4);
}

.three {
  width: 25%;
}

.two {
  width: calc(100% / 12 * 2);
}

.one {
  width: calc(100% / 12);
}

.fifths {
  width: 20%;
}

.offset-1 {
  margin-left: calc(100% / 12);
}

.offset-2 {
  margin-left: calc(100% / 12 * 2);
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: calc(100% / 12 * 4);
}

.offset-5 {
  margin-left: calc(100% / 12 * 5);
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: calc(100% / 12 * 7);
}

.offset-8 {
  margin-left: calc(100% / 12 * 8);
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: calc(100% / 12 * 10);
}

.offset-11 {
  margin-left: calc(100% / 12 * 11);
}

/* clears */
.clear:before,
.clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  zoom: 1;
}

/* ALIGNMENT */
.align-top {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.align-bottom {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.align-center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.align-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.align-stretch .cell {
  background-clip: content-box;
}

/* Media Queries */
@media only screen and (max-width: 64em) and (min-width: 48.063em) {
  .medium-twelve {
    width: 100%;
  }

  .medium-eleven {
    width: calc(100% / 12 * 11);
  }

  .medium-ten {
    width: calc(100% / 12 * 10);
  }

  .medium-nine {
    width: 75%;
  }

  .medium-eight {
    width: calc(100% / 12 * 8);
  }

  .medium-seven {
    width: calc(100% / 12 * 7);
  }

  .medium-six,
  .half {
    width: 50%;
  }

  .medium-five {
    width: calc(100% / 12 * 5);
  }

  .medium-four,
  .third {
    width: calc(100% / 12 * 4);
  }

  .medium-three {
    width: 25%;
  }

  .medium-two {
    width: calc(100% / 12 * 2);
  }

  .medium-one {
    width: calc(100% / 12);
  }

  .medium-fifths {
    width: 20%;
  }

  .medium-one,
  .medium-two,
  .medium-three,
  .medium-four,
  .medium-five,
  .medium-six,
  .medium-seven,
  .medium-eight,
  .medium-nine,
  .medium-ten,
  .medium-eleven,
  .medium-twelve,
  .medium-fifths,
  .medium-half,
  .medium-third {
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

/* smaller than 768px */
@media only screen and (max-width: 40em) {
  /* Typography */
  h1.super-header.vw {
    font-size: 7vw;
  }

  h1.vw {
    font-size: 6vw;
  }

  h2.vw {
    font-size: 5vw;
  }

  h3.vw {
    font-size: 4.5vw;
  }

  h4.vw {
    font-size: 4vw;
  }

  h5.vw {
    font-size: 3.5vw;
  }

  .small-text-center {
    text-align: center;
  }

  .small-text-left {
    text-align: left;
  }

  .small-text-right {
    text-align: right;
  }

  .hide-small {
    display: none !important;
  }

  .hide-large {
    display: inherit !important;
  }

  .cell {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .hold > .cell,
  .column > .cell,
  .column-reverse > .cell {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .hold > .cell.fit,
  .column > .cell.fit,
  .column-reverse > .cell.fit {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .hold > .one,
  .hold > .two,
  .hold > .three,
  .hold > .four,
  .hold > .five,
  .hold > .six,
  .hold > .seven,
  .hold > .eight,
  .hold > .nine,
  .hold > .ten,
  .hold > .eleven,
  .hold > .twelve,
  .hold > .fifths,
  .hold > .half,
  .hold > .third {
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }

  .small-twelve {
    width: 100%;
  }

  .small-eleven {
    width: calc(100% / 12 * 11);
  }

  .small-ten {
    width: calc(100% / 12 * 10);
  }

  .small-nine {
    width: 75%;
  }

  .small-eight {
    width: calc(100% / 12 * 8);
  }

  .small-seven {
    width: calc(100% / 12 * 7);
  }

  .small-six,
  .half {
    width: 50%;
  }

  .small-five {
    width: calc(100% / 12 * 5);
  }

  .small-four,
  .third {
    width: calc(100% / 12 * 4);
  }

  .small-three {
    width: 25%;
  }

  .small-two {
    width: calc(100% / 12 * 2);
  }

  .small-one {
    width: calc(100% / 12);
  }

  .small-fifths {
    width: 20%;
  }

  .small-one,
  .small-two,
  .small-three,
  .small-four,
  .small-five,
  .small-six,
  .small-seven,
  .small-eight,
  .small-nine,
  .small-ten,
  .small-eleven,
  .small-twelve,
  .small-fifths,
  .small-half,
  .small-third {
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

/* Colors
  --------------------------------------------------------------------------------------------------------------------*/

.bg--light-gray {
  background-color: #f4f5f6;
}

/* Typography
  --------------------------------------------------------------------------------------------------------------------*/
body.webstorm-level .cell p {
  margin-top: 2.4rem;
  text-rendering: optimizeLegibility;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

body.webstorm-level .cell p.small,
body.webstorm-level .widget_container p,
.webstorm-level .widget_container .rich_text_widget span {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-family: var(--font-stack--body) !important;
}

body.webstorm-level .p--small {
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.text--left {
  text-align: left;
}

.text--right {
  text-align: right;
}

.text--center {
  text-align: center;
}

.text--block {
  text-align: justify;
}

em,
i,
.em {
  font-style: italic;
  line-height: inherit;
}

.uppercase {
  text-transform: uppercase;
}

strong,
b,
.strong {
  font-weight: bold;
  line-height: inherit;
}

small,
.small {
  font-size: 80%;
}

.large {
  font-size: 140%;
}

.super,
.sub {
  font-size: 1.2rem !important;
  line-height: 1.7rem !important;
  letter-spacing: 0.2rem;
  font-weight: 400 !important;
  color: #888;
  text-transform: uppercase;
}

.super {
  top: -0.5em;
}

.sub {
  bottom: -0.5em;
}

.ellipsis,
.ellipsis li {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text-clip,
.text-clip li {
  text-overflow: clip;
  white-space: nowrap;
  overflow: hidden;
}

.h1 {
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: 500;
  display: block;
  font-family: var(--font-stack--header);
  color: var(--color--text);
}

.h2 {
  font-family: var(--font-stack--header);
  color: var(--color--text);
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 5.8rem;
  display: block;
  margin-bottom: 2.4rem;
}

.h3 {
  font-family: var(--font-stack--header);
  font-size: 3.2rem;
  line-height: 4.2rem;
  font-weight: 500;
  display: block;
}

.h4 {
  font-family: var(--font-stack--header);
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 500;
  display: block;
}

.h5 {
  font-size: 1.8rem;
  line-height: 2.8rem;
  display: block;
  font-weight: 400;
  font-family: var(--font-stack--body);
}

.jump-link {
  position: absolute;
}

.redactor-placeholder:before {
  font-family: var(--font-stack--body);
}

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

.button,
a.button {
  display: inline-block;
  border-radius: 4px;
  transition: 0.2s ease;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 700;
  padding: 1.2rem 3.2rem;
  border: 1px solid;

  &.button--solid--blue,
  &.button--solid--blue {
    background-color: var(--color-blue);
    color: var(--color--white) !important;
    border-color: var(--color-blue);
  }

  &.button--outline--white,
  &.button--outline--white {
    color: var(--color--white) !important;
    border-color: var(--color--white);
    background-color: transparent;
  }

  &.button--outline--color,
  &.button--outline--color {
    color: var(--color-blue);
    border-color: var(--color-blue);
    background-color: transparent;
  }

  &:hover {
    text-decoration: none;
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color--text);
  }

  &.button--left-aligned {
    margin-right: 0.8rem;
  }
}

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

/* Global Navigation
--------------------------------------------------------------------------------------------------------------------*/

.webstorm-level #global-nav-bar {
  box-shadow: none;
}

body.webstorm-level .fractal-global-nav .f-nav-wrapper .f-nav-left,
body.webstorm-level .fractal-global-nav .f-nav-wrapper .f-nav-right {
  margin: 0;
}

body.webstorm-level .fractal-global-nav .f-nav-search .fractal-input input {
  color: var(--color--text);
}

body.webstorm-level .f-nav-wrapper,
body.webstorm-level .f-global-nav-center .f-nav-wrapper,
body.webstorm-level .f-nav-wrapper {
  max-width: var(--container--wide);
  padding: 0 2.4rem;
  height: 6.4rem;
}

body.webstorm-level .fractal-global-nav .f-nav-search.f-focus {
  background-color: #fff;
}

body.webstorm-level .fractal-dynamic-nav-v1 ul.desktop-nav-core-items {
  height: 7.2rem;
  max-width: var(--container--wide);
  padding: 0 2.4rem;

  &::before {
    content: "";
    width: 4.8rem;
    height: 4.8rem;
    display: inline-block;
    background-image: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD15050/54DB37E6.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

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

  & li:first-of-type {
    margin-left: auto;
  }
}

body.webstorm-level .fractal-dynamic-nav-v1 .nav-mobile .nav-mobile-bar {
  background-color: var(--color-white);
  height: 7.2rem;

  .nav-logo-link {
    img {
      display: none;
    }
    &::before {
      content: "";
      width: 4.8rem;
      height: 4.8rem;
      display: inline-block;
      background-image: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD15050/54DB37E6.png);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
  }
}

.fractal-global-nav.f-fixed#global-nav-bar {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.webstorm-level #global-nav-bar #nav-bar,
body.webstorm-level #global-nav-bar,
body.webstorm-level #banner #global-nav-bar.stick-to-top {
  background-color: #fff;
}

body.webstorm-level #nav-bar .global-nav-btn button,
body.webstorm-level #nav-bar #profile-button button,
body.webstorm-level #nav-bar #profile-caret button {
  color: #ccc;
}

body.webstorm-level
  .fractal-dynamic-nav-v1
  .nav-desktop
  .fractal-subscribe-button
  button.subscribe-button {
  border: 1px solid var(--color--text);
  color: var(--color--text);
}

body.webstorm-level .fractal-dynamic-nav-v1 .nav-desktop {
  height: 7.2rem;

  .nav-children {
    z-index: 1;
  }
}

body.webstorm-level .fractal-dynamic-nav-v1 .nav-desktop .nav-campaign-image {
  margin-right: 0;
}

body.webstorm-level .fractal-global-nav .f-nav-wrapper .f-nav-right {
  margin: 0;
}

body.webstorm-level .f-nav-icons .f-nav-icon .f-main-icon,
body.webstorm-level
  .fractal-global-nav
  .f-nav-wrapper
  .f-nav-right
  .fa-plus-circle {
  color: var(--color--text);
  font-weight: 300;
  transition: 0.2s ease;

  &:hover,
  &:active {
    color: var(--color--blue--5);
  }
}

body.webstorm-level #google_translate_element {
  margin-right: 2.4rem;
}

/* Global Nav: Search
----------------------------------------------------------*/

.webstorm-level #nav-bar #global-search-input {
  color: var(--color--text);
}

.webstorm-level .f-nav-search-wrapper-v2 .f-nav-search {
  background: none;
  border: 1px solid var(--color--text);
  border-radius: 24px;

  .fa-search {
    color: var(--color--text);
    font-size: 1.2rem;
  }
}

.webstorm-level
  .fractal-dynamic-nav-v1
  .nav-mobile
  .nav-mobile-bar
  .nav-icon::after,
.webstorm-level
  .fractal-dynamic-nav-v1
  .nav-mobile
  .nav-mobile-bar
  .nav-icon::before,
.webstorm-level
  .fractal-dynamic-nav-v1
  .nav-mobile
  .nav-mobile-bar
  .nav-icon
  div,
.fractal-dynamic-nav-v1 .nav-mobile .nav-mobile-bar .nav-icon::after,
.fractal-dynamic-nav-v1 .nav-mobile .nav-mobile-bar .nav-icon::before,
.fractal-dynamic-nav-v1 .nav-mobile .nav-mobile-bar .nav-icon div {
  background-color: var(--color-blue);
}

.fractal-body .fractal-dynamic-nav-v1 .nav-parent a,
.fractal-body .fractal-dynamic-nav-v1 .nav-children.li a {
  text-transform: none;
}

/* Page Navigation
--------------------------------------------------------------------------------------------------------------------*/

#navbar {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  top: 0;
  padding: 0 2.4rem;
}

.enterprise-level #dynamic_navigation_bar {
  margin: 0 auto !important;
  > li {
    font-size: 1.4rem;
  }
}

body.webstorm-level {
  #navbar.OPT_FEATURE_NEW_NAV_AND_ADMIN_BAR {
    height: 7.2rem;
  }
}

.webstorm-level .fractal-dynamic-nav-v1 .nav-children.li a,
.webstorm-level .fractal-dynamic-nav-v1 .nav-parent a {
  font-weight: 700;
  letter-spacing: 0;
}

body.webstorm-level .fractal-dynamic-nav-v1 .nav-children.li,
body.webstorm-level .fractal-dynamic-nav-v1 .nav-parent {
  margin: 0 15px;
}

body.webstorm-level .fractal-dynamic-nav-v1 .nav-desktop .nav-children {
  top: 4.8rem;
  box-shadow: none;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  width: auto;
  padding: 4px;

  li a {
    font-size: 12px;
    font-weight: 700;
    padding: 0 10px;
    min-width: 200px;
  }
}

body.webstorm-level
  .fractal-dynamic-nav-v1
  .nav-desktop
  .nav-parent
  i.fa-angle-down {
  color: #888;
}

body.webstorm-level .fractal-dynamic-nav-v1 .nav-children.li a,
body.webstorm-level .fractal-dynamic-nav-v1 .nav-parent a {
  text-transform: none;
  font-size: 1.4rem;
  font-weight: 700;
}

body.webstorm-level
  .fractal-dynamic-nav-v1
  .nav-desktop
  .nav-parent
  .nav-item-hover {
  border-bottom: 3px solid var(--color-blue);
  bottom: 0px;
}

body.webstorm-level
  #bi-page-s
  #navbar.OPT_FEATURE_NEW_NAV_AND_ADMIN_BAR:not(
    .OPT_WS_ENABLE_CHALLENGE_TOPIC_DISABLED
  ) {
  background-color: var(--color--white);
  position: relative;
  top: 0;
  height: 7.2rem;
}

/* Containers: Sections
  ----------------------------------------------------------*/
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.container-block {
  width: 100%;
  flex: 1;
  flex-wrap: wrap;
  max-width: 120rem;
  margin: 0;
  display: flex;
  justify-content: center;
}

.container--no-padding {
  padding: 0;
}

.container--no-top-padding {
  padding-top: 0;
}

.container--no-bottom-padding {
  padding-bottom: 0;
}

.container--negative-top-margin {
  margin-top: -9.6rem;
}

/* Home Page: Content
    ----------------------------------------------------------*/

body.webstorm-level .content {
  font-family: var(--font-stack--body);
}

.webstorm-level #bi-page-s #main_content {
  min-height: 500px;
  max-width: 1440px;
  width: 100%;
  background-color: #fff;
  display: flex;
  padding: 0 0 7.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Home Page: Containers
    ----------------------------------------------------------*/

body.webstorm-level #bi-page-s .boxcontent {
  overflow: visible;
}

body.webstorm-level .widget_container p,
body.webstorm-level .widget_container table td,
body.webstorm-level .widget_container .rich_text_widget span {
  color: unset;
  letter-spacing: unset;
}

body.webstorm-level #bi-page-s #main_content {
  padding: 0;
  text-align: left;
  max-width: 100%;
}

body.webstorm-level #bi-page-s #main_content #container_1,
body.webstorm-level #bi-page-s #main_content #container_2,
body.webstorm-level #bi-page-s #main_content #container_3,
body.webstorm-level #bi-page-s #main_content #container_4,
body.webstorm-level #bi-page-s #main_content #container_5,
body.webstorm-level
  #bi-page-s
  #main_content
  #container_6
  body.webstorm-level
  #bi-page-s
  #main_content
  #container_7
  body.webstorm-level
  #bi-page-s
  #main_content
  #container_8 {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  min-height: 100px;

  display: flex !important;
  flex: 0 1 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  padding-left: 2.4rem !important;
  padding-right: 2.4rem !important;
}

/* Hero Widget
--------------------------------------------------------------------------------------------------------------------*/
body.webstorm-level #container_homepage_header.wide {
  max-width: 100%;
}

body.webstorm-level .f-homepage-hero-image {
  background-position: center top;

  @media only screen and (max-width: 48em) {
    background-position: left;
  }
}

#container_homepage_header .f-homepage-hero .f-homepage-hero-overlay {
  background: rgb(9, 30, 66);
  background: linear-gradient(
    270deg,
    rgba(9, 30, 66, 0.1) 0%,
    rgba(9, 30, 66, 1) 100%
  );

  @media only screen and (max-width: 48em) {
    background: rgba(9, 30, 66, 0.8);
  }
}

body #container_homepage_header .f-homepage-hero .f-homepage-hero-clickarea {
  max-width: var(--container--max-width--bb);
  padding: var(--container--padding);
  bottom: unset;
  box-sizing: border-box;

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

  .f-homepage-hero-name,
  .f-homepage-hero-description,
  .side {
    margin: 0;
    max-width: 100%;
    width: 100%;
    text-align: left;

    @media only screen and (max-width: 68.75em) {
      max-width: calc(100% / 12 * 8);
    }

    @media only screen and (max-width: 62.5em) {
      max-width: 100%;
      text-align: center;
    }
  }

  .side {
    /* padding: 2.4rem 4.8rem 4.8rem; */
    margin-top: 2.4rem;

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

    .action-buttons {
      text-align: left;
      padding: 0;
      @media only screen and (max-width: 48em) {
        display: flex;
        justify-content: center;
      }

      .navigate-container {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap-reverse;
        gap: 8px;
        justify-content: flex-end;
        padding-bottom: 0;

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

        .f-btn-md {
          border-radius: 4px;
          margin: 0;
          font-size: 1.6rem !important;
          font-family: var(--font-stack--body);
          line-height: 1;
          font-weight: 700;
          padding: 1.2rem 3.2rem;
          box-shadow: none;

          &.f-homepage-browse-button {
            color: var(--color--white) !important;
            background: transparent !important;
            border: 2px solid var(--color--white) !important;
            box-shadow: none;
          }

          &.f-join-event-btn {
            color: var(--color--white) !important;
            background: transparent !important;
            border: 2px solid var(--color--white);
            border-radius: 24px;
            box-shadow: none;

            &:hover {
              box-shadow: none;
            }
            &::after {
              display: none;
            }
          }

          &:hover {
            background-color: var(--color-yellow) !important;
            border-color: var(--color-yellow) !important;
            color: var(--color--text) !important;
            box-shadow: none;
          }
        }

        & .fractal-clickoutside {
          div .f-dropdown-btn {
            background-color: transparent;
            border: 2px solid var(--color--text);
            border-radius: 0 24px 24px 0;

            &:hover {
              background-color: var(--color--text);

              i {
                color: var(--color--white);
              }
            }

            i {
              color: var(--color--text);
            }
          }
        }
      }
    }
  }

  .f-homepage-hero-name {
    @media only screen and (max-width: 48em) {
      max-width: 100%;
    }

    h1 {
      margin: 0;
      .fractal-htmlpreview div {
        padding: 0;

        font-size: 5.6rem;
        line-height: 6.6rem;
        font-weight: 500;
        padding-top: 0;
        font-family: var(--font-stack--header) !important;

        &::before {
          content: "September 23 - 25, 2025";
          font-size: 1.8rem;
          line-height: 2.8rem;
          font-weight: 400;
          font-family: var(--font-stack--body);
          display: block;
          color: var(--color-white);
          margin-bottom: 8px;
        }
      }
    }
  }

  .f-homepage-hero-description {
    /* padding: 0 4.8rem; */

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

    .fractal-htmlpreview div {
      font-family: var(--font-stack--header) !important;
      font-size: 2.2rem;
      line-height: 3.2rem;
      padding-top: 1.6rem;
    }
  }
}

/* Sub-Page Hero
  ----------------------------------------------------------*/

.section__hero {
  background: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD15050/CEE953D3.jpg)
    no-repeat center;
  background-size: cover;
  height: 32rem;

  .h1,
  .h5 {
    color: var(--color-white);
  }

  .h5 {
    margin-top: 1.6rem;
  }
}

/* Home Page
  ----------------------------------------------------------*/

body.webstorm-level {
  .section {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 8rem 2.4rem;
    box-sizing: border-box;

    &.section--no-padding {
      padding: 0;
    }

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

      /* Grids
  ----------------------------------------------------------*/
      & .grid {
        display: grid;

        &::after {
          display: none;
        }

        .section__title {
          font-family: var(--font-stack--header);
          color: var(--color--text);
          font-weight: 500;
          font-size: 4.8rem;
          line-height: 5.8rem;
          display: block;
          margin-bottom: 2.4rem;
        }
        .section__text {
          font-size: 1.8rem;
          line-height: 2.8rem;
          color: var(--color--text);
        }
        .section__buttons {
          margin-top: 3.2rem;
        }

        &.grid__2-col {
          grid-template-columns: repeat(auto-fill, minmax(40rem, 1fr));
          gap: 8rem;
          align-items: center;

          .section__column {
            .section__image {
              img {
                height: 100%;
                width: 100%;
                object-fit: cover;
              }
            }
          }
        }

        &.grid__3-col {
          grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
          gap: 3.2rem;
        }

        &.grid__4-col {
          grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
          gap: 3.2rem;
        }

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

  /* Home Page: Grids: Cards
  ----------------------------------------------------------*/
  .grid__cards {
    grid-row: 2;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
    gap: 3.2rem;

    .card {
      background-color: var(--color-white);
      color: var(--color--text);
      box-shadow: var(--box-shadow--standard);
      padding-bottom: 3.2rem;
      transition: 0.2s ease;

      &:hover {
        text-decoration: none;
        box-shadow: 0px 12px 40px 0px rgba(27, 28, 29, 0.3);
      }

      .card__image {
        img {
          width: 100%;
          object-fit: cover;
          height: 16rem;
        }
      }

      .card__title {
        margin-bottom: 1.6rem;
        margin-top: 3.2rem;
        padding: 0 3.2rem;
      }

      .card__text {
        padding: 0 3.2rem;
        font-weight: 400;
      }

      .card__link {
        font-size: 1.8rem;
        color: var(--color-blue--light);
        margin-top: 3.2rem;
        padding: 0 3.2rem;
      }
    }
  }

  .criteria__cards {
    grid-column: 2 / span 10;
    grid-row: 2;
    margin-top: 4.8rem;
    align-items: normal !important;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 3.2rem !important;

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

    .criteria__card {
      background-color: var(--color-white);
      padding: 3.2rem;
      box-shadow: var(--box-shadow--standard);

      .criteria__title {
        margin-bottom: 1.6rem;
        padding-bottom: 1.6rem;
        position: relative;

        &::after {
          content: "";
          display: inline-block;
          width: 8rem;
          height: 4px;
          background-color: var(--color-green);
          position: absolute;
          left: 0;
          bottom: 0;
        }
      }
    }
  }

  /* Home Page: Grids: Powering What's Next
  ----------------------------------------------------------*/
  .grid__powering-whats-next {
    .column__intro {
      grid-column: 1 / span 7;

      @media only screen and (max-width: 62.5em) {
        text-align: center;
        grid-column: 2 / span 10;
      }

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

    .column__image {
      height: 100%;
      grid-column: 9 / span 4;

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

      .section__image {
        height: 100%;
        position: relative;

        img {
          width: 100%;
          object-fit: cover;
          position: absolute;
          top: -12rem;
          box-shadow: var(--box-shadow--standard);
        }
      }
    }
  }

  /* Home Page: Grids: Problem Statements
  ----------------------------------------------------------*/
  .grid__problem-statements {
    .grid__introduction {
      grid-column: 1 / span 8;
      margin-bottom: 4rem;

      @media only screen and (max-width: 62.5em) {
        grid-column: 2 / span 10;
        text-align: center;
      }

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

  /* Home Page: Grids: Timeline
  ----------------------------------------------------------*/
  .grid__timeline {
    .grid__introduction {
      grid-column: 2 / span 10;

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

    .container__timeline {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
      grid-row: 2;
      grid-column: 1 / -1;
      margin-top: 4rem;
      position: relative;

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

      &::before {
        content: "";
        width: 84%;
        height: 1px;
        background-color: var(--color-blue--light);
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);

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

      .container__event {
        text-align: center;

        .event__dot {
          display: inline-block;
          width: 1.6rem;
          height: 1.6rem;
          margin-bottom: 3.2rem;
          border-radius: 50%;
          background-color: var(--color-blue--light);

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

        .event__title {
          font-size: 1.8rem;
          line-height: 2.8rem;
          font-weight: 700;
          font-family: var(--font-stack--body);

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

        .event__date {
          font-size: 1.4em;
          line-height: 2.4rem;
          font-family: var(--font-stack--body);
          color: var(--color-blue);

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

  /* Home Page: Grids: Criteria
  ----------------------------------------------------------*/
  .grid__criteria {
    .grid__introduction {
      grid-column: 2 / span 10;

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

  /* Home Page: Grids: Awards
  ----------------------------------------------------------*/
  .grid__awards {
    grid-row: 2;
    grid-column: 1 / -1;

    .grid__introduction {
      grid-column: 1 / span 8;
      margin-bottom: 4rem;

      @media only screen and (max-width: 62.5em) {
        grid-column: 2 / span 10;
        text-align: center;
      }

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

    .award__title {
      margin-bottom: 1.6rem;
    }

    .award__image {
      img {
        width: 100%;
        min-height: 24rem;
        object-fit: cover;
        margin-bottom: 2.4rem;
      }
    }
  }

  /* Home Page: Grids: Get in Touch
  ----------------------------------------------------------*/

  .grid__get-in-touch {
    @media only screen and (max-width: 62.5em) {
      text-align: center;
      grid-template-columns: repeat(12, 1fr) !important;
      gap: 0 !important;

      .section__column:nth-child(1) {
        display: none;
      }
      .section__column:nth-child(2) {
        grid-column: 2 / span 10;
      }
    }

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

  /* Home Page: Containers
  ----------------------------------------------------------*/

  #bi-page-s {
    #main_content {
      #container_1,
      #container_3 {
        padding: 0 !important;

        .widget_container {
          max-width: 100%;

          .boxcontent {
            padding: 0;
          }
        }
      }

      #container_2 {
        background-color: var(--color-white) !important;

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

      #container_4 {
        #my_idea_drafts_container {
          text-align: center;
        }
      }

      #container_5,
      #container_6 {
        display: none !important;
      }
    }
  }
}

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

.section--hero--submission-form {
  display: none;
}

.section--hero--submission-form .container-block {
  position: relative;
  display: flex;
  width: 100%;
}

.section--hero--submission-form.visible {
  display: flex;
  justify-content: center;
  height: 32rem;
  width: 100%;
  background-color: var(--color-blue);
  background: url(https://d1dxeoyimx6ufk.cloudfront.net/uploads/NA5/OD15050/CEE953D3.jpg)
    no-repeat center;
  background-size: cover;
  position: absolute;
  top: 7.2rem;
  left: 0;
  color: var(--color-white);

  .h1 {
    color: var(--color-white);
    margin-bottom: 2.4rem;
  }
}

body.webstorm-level {
  #main_idea_container {
    .set-section {
      &.question-section-6D7C02A1-5541-11F0-A11F-0ED5C2D8E0FF,
      &.question-section-96E52916-553C-11F0-A11F-0ED5C2D8E0FF,
      &.question-section-96E5FB38-553C-11F0-A11F-0ED5C2D8E0FF,
      &.question-section-96E6C29E-553C-11F0-A11F-0ED5C2D8E0FF,
      &.question-section-96E78B85-553C-11F0-A11F-0ED5C2D8E0FF,
      &.question-section-6D7E3E82-5541-11F0-A11F-0ED5C2D8E0FF {
        background-color: transparent !important;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
        margin-top: 4rem;
      }
    }
  }
}

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

#bi-page-ct-a-enter-idea #custom_footer {
  display: block;
}

body.webstorm-level #bi-page-ct-a-enter-idea #main_content {
  padding: 0;
  max-width: 100%;
  margin-top: 22rem;
  background-color: var(--color-gray-1);
}

body.webstorm-level #main_idea_container {
  position: relative;
  background-color: var(--color-gray--light);
}

body.webstorm-level #main_idea_container .set-section {
  padding: 2.4rem;
  border: none;
  margin: 2.4rem 0 0;
  background-color: #fff !important;
  box-shadow: var(--box-shadow--standard);
}

body.webstorm-level #main_idea_container .set-section .form-control {
  height: 4rem;
  color: var(--color-gray-5);
  font-family: var(--font-stack--body);
  font-size: 1.4rem;
}

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

body.webstorm-level #main_idea_container #form legend {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gray-6);
  font-family: var(--font-stack--body);
}

body.webstorm-level
  .fractal-fileupload-v2
  .f-dropzone-wrapper
  .f-dropzone
  .f-dropzone-dnd-text {
  font-weight: 400;
}

body.webstorm-level #main_idea_container #idea-layout #form-section {
  max-width: 80rem !important;
  position: relative;
}

body.webstorm-level #main_idea_container #idea-layout #form-section form {
  margin-top: 2.4rem;
}

body.webstorm-level #main_idea_container #idea-layout #side-preview-section {
  width: 100%;
  max-width: 80rem;
}

body.webstorm-level
  #idea-layout
  #side-preview-section
  #sidebar-actions
  .btn-primary,
#main_idea_container #idea-layout #idea-sidebar #sidebar-actions .btn {
  font-size: 1.6rem;
  text-transform: unset;
  font-weight: 700;
}

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

body.webstorm-level
  #main_idea_container
  #f-submit-idea-button
  .f-submit-idea-button-container
  .f-submit-idea-btn.btn-primary {
  border-radius: 40px 0 0 40px !important;
  padding: 1.6rem 1.6rem 1.6rem 3.2rem !important;
}

body.webstorm-level
  #f-submit-idea-button
  .f-submit-idea-button-container
  .f-dropdown-submit-idea-btn.btn-primary {
  border-radius: 0 40px 40px 0 !important;
  padding: 1.6rem 3.2rem 1.6rem 1.6rem;
}

body.webstorm-level
  #f-submit-idea-button
  .f-submit-idea-button-container
  .f-submit-idea-btn {
  width: auto;
}

body.webstorm-level #main_idea_container #form .redactor-box {
  max-width: 100% !important;
}

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

body.webstorm-level
  #idea-layout
  #side-preview-section
  #sidebar-actions
  .btn-primary:hover,
body.webstorm-level
  #main_idea_container
  #idea-layout
  #idea-sidebar
  #sidebar-actions
  .btn:hover,
body.webstorm-level#idea-layout
  #side-preview-section
  #sidebar-actions
  .btn-primary:focus,
body.webstorm-level
  #main_idea_container
  #idea-layout
  #idea-sidebar
  #sidebar-actions
  .btn:focus,
body.webstorm-level#idea-layout
  #side-preview-section
  #sidebar-actions
  .btn-primary:active,
body.webstorm-level
  #main_idea_container
  #idea-layout
  #idea-sidebar
  #sidebar-actions
  .btn:active,
body.webstorm-level
  #main_idea_container
  #idea-layout
  #idea-sidebar
  #sidebar-actions
  .fractal-drop-open {
  box-shadow: none;
}

body.webstorm-level #main_idea_container .set-section .form-control:focus,
body.webstorm-level #main_idea_container .bootstrap-tagsinput.focused,
body.webstorm-level #main_idea_container .redactor-box.focus {
  border-color: #4d91fe !important;
}

body.webstorm-level #main_idea_container .set-section .form-control:hover,
body.webstorm-level #main_idea_container .bootstrap-tagsinput:hover,
body.webstorm-level #main_idea_container .redactor-box:hover {
  border-color: #4d91fe !important;
}

/* Preview Idea
  ----------------------------------------------------------*/

#bi-page-ct-a-enter-idea {
  #main_content {
    #preview-section {
      margin-top: 12rem;

      .question-answer {
        font-size: 1.4rem;
      }
    }
    #main_idea_container {
      #preview {
        #preview-content {
          .title {
            font-size: 2.4rem;
            font-family: var(--font-stack--header);
            font-weight: 500;
            max-width: 48rem;
          }
          .meta {
            margin-top: 3.2rem;

            .authors {
              margin-right: 0;
            }
            .category {
              font-size: 1.2rem;
            }
          }
          .questions {
            font-size: 1.4rem;
            padding: 0;
            margin-bottom: 4rem;

            .question-title {
              font-family: var(--font-stack--header);
              margin-top: 2.4rem;
            }
          }
        }
      }
    }
  }
}

/* Browse Ideas: Hero
  ----------------------------------------------------------*/
body.webstorm-level {
  .section__hero--browse-ideas {
    display: none;
  }

  .section__hero--browse-ideas .container-block {
    position: relative;
    width: 100%;
  }

  .section__hero--browse-ideas.visible {
    height: 32rem;
    display: flex;
    top: -32rem;
    position: absolute;
    width: 100%;
    background-color: var(--color-blue--dark);
  }

  .section__hero--browse-ideas .row {
    height: 100%;
    color: var(--color-white);
  }
}

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

body.webstorm-level #bi-page-ct-list {
  padding-bottom: 0;
  background-color: var(--color-gray--light);
}

body.webstorm-level #bi-page-ct-list #main_content {
  margin-top: 32rem;
  position: relative;
  max-width: 100%;
  margin-bottom: 0;
}

body.webstorm-level #bi-page-ct-list .ideaboard-top {
  background-color: var(--color-white);
  padding: 0.8em 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

body.webstorm-level .fractal-widget-ideaboard .ideaboard-filter-bar,
.fractal-widget-ideaboard .ideaboard-filter-bar-placeholder {
  max-width: 1200px;
  margin: 0 auto;
}

body.webstorm-level .fractal-widget-ideaboard .ideaboard-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.4rem 0;
  position: relative;
  background-color: var(--color-gray--light);
}

body.webstorm-level .fractal-button.f-btn-link-animated:after {
  border-bottom: solid 3px var(--color-blue);
  margin-top: 14px;
}

body.webstorm-level
  #bi-page-ct-list
  .ideaboard-filter-bar
  .ideaboard-filter-left
  .ideaboard-filter-button-sidebar {
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  border-radius: 4px;
  font-family: var(--font-stack--body);
  font-weight: 600;
}

body.webstorm-level
  #bi-page-ct-list
  .ideaboard-filter-bar
  .ideaboard-filter-left
  .ideaboard-filter-button-sidebar:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}

body.webstorm-level
  #bi-page-ct-list
  .ideaboard-filter-bar
  .ideaboard-filter-left
  .ideaboard-filter-button-sidebar.active {
  color: var(--color-white);
  background-color: var(--color-blue);
}

body.webstorm-level
  #bi-page-ct-list
  .ideaboard-filter-bar
  .ideaboard-filter-left
  .ideaboard-filter-button-sidebar.filtering {
  color: var(--color-white);
  background-color: var(--color-blue);
}

body.webstorm-level
  #bi-page-ct-list
  .fractal-secondary-ideas-view-grid
  .ideaboard-card-placeholder.f-nov-2019-card-redesign,
body.webstorm-level
  #bi-page-ct-list
  .fractal-secondary-ideas-view-grid
  .ideaboard-card.f-nov-2019-card-redesign {
  border-radius: 8px;
  box-shadow: var(--box-shadow--standard);
}

body.webstorm-level
  #bi-page-ct-list
  .fractal-secondary-ideas-view-grid
  .ideaboard-card-placeholder.f-nov-2019-card-redesign:hover,
body.webstorm-level
  #bi-page-ct-list
  .fractal-secondary-ideas-view-grid
  .ideaboard-card.f-nov-2019-card-redesign:hover {
  box-shadow: var(--box-shadow--hover);
}

body.webstorm-level #bi-page-ct-list .ideaboard-sorts .fractal-button.active {
  font-weight: 700;
}

body.webstorm-level
  .fractal-widget-ideaboard
  .ideaboard-filter-bar
  .ideaboard-filter-left
  .ideaboard-filter-total {
  text-transform: lowercase;
}

body.webstorm-level
  .fractal-secondary-ideas-view-grid
  .ideaboard-card.f-nov-2019-card-redesign
  .f-card-absolute-elements
  .f-hidden-indicator {
  border: none;
  transform: rotate(180deg);
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  background-color: #bdc3c7;
  width: 48px;
  height: 48px;
  border-radius: 0 0 0 8px;
  right: 0;
  top: 0;
}

body.webstorm-level
  .fractal-secondary-ideas-view-grid
  .ideaboard-card.f-nov-2019-card-redesign
  .f-card-absolute-elements
  .f-hidden-indicator
  i {
  background: none;
  left: 8px;
  bottom: 8px;
  transform: rotate(0deg);
}

body.webstorm-level .fractal-backtotop {
  z-index: 10;
}

/* FAQs (a.bix)
  ----------------------------------------------------------*/

body.webstorm-level #bi-page-a {
  padding: 0;
}

body.webstorm-level #bi-page-a #main_content {
  width: 100%;
  max-width: 100%;
}

body.webstorm-level #bi-page-a.content #container_1 {
  padding: 0 !important;
}

body.webstorm-level #bi-page-a #container_1 .widget_container {
  max-width: 100%;
  padding: 0;
  margin: 0;

  &:nth-child(3) {
    margin-top: 0 !important;
  }

  .boxcontent {
    padding: 0;
  }
}

body.webstorm-level #bi-page-a.content #container_2 {
  background-color: var(--color-white);
}

body.webstorm-level #bi-page-a #container_3 {
  height: 0;
  min-height: 0;
  display: none !important;
}

.section__hero--faq {
  height: 32rem;
  color: var(--color-white);
  background-color: var(--color-blue--dark);
}

body.webstorm-level #bi-page-a .widget_container {
  width: 100%;
  padding: 0;
}

.widget_container .question-container ul li,
.widget_container .question-container ol li {
  font-size: 1.4rem;
  line-height: 2rem;
}

.widget_container .question-container h5 {
  color: var(--color-gray--dark);
  font-weight: 700;
  font-family: var(--font-stack--body);
  font-size: 1.8rem;
  max-width: 90%;
}

.section__faq .arrow {
  margin-left: auto;
  font-family: var(--font-icons);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-blue--links);

  i {
    transition: ease 0.4s;
  }
}

.section__faq .arrow.rotate i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.question-container {
  padding: 2.4rem 4rem;
  box-sizing: border-box;
  background-color: var(--color-gray--light);
  cursor: pointer;
  text-align: left;
  transition: 0.2s ease;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.question-container:not(:first-of-type) {
  margin-top: 1.6rem;
}

.question-container:hover {
  background-color: #eee;
}

.question-container ul,
.question-container ol {
  margin-top: 1.6rem;
  margin-left: 1.6rem;
  padding-left: 1.6rem;
}

.question-container ul li,
.question-container ol li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-family: var(--font-stack--body);
}

.question-container ul {
  list-style: disc;
}

.question-container ul li {
  margin-top: 0.8rem;
}

.question-container ol {
  list-style: decimal;
}

.question-container ol li {
  margin-top: 1.6rem;
}

.question-container h5 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.question-list {
  margin: 0;
}

.answer-container {
  display: none;
  flex: 0 0 100%;
}

.question-container p {
  margin-top: 1.6rem;
}

#bi-page-a #container_1 {
  width: 100%;
  margin: 0;
  padding: 7.2rem 0;
}

#bi-page-a #container_1 .widget_container .boxcontent {
  overflow: visible;
}

#bi-page-a #container_1 .widget_container .cell {
  padding: 0;
}

#bi-page-a #container_1 .widget_container .title_back,
#bi-page-a #container_1 .section.faq {
  text-align: center;
}

/* Journey Details (b.bix)
  ----------------------------------------------------------*/

body.webstorm-level #bi-page-b {
  padding: 0;
}

body.webstorm-level #bi-page-b #main_content {
  width: 100%;
  max-width: 100%;
}

body.webstorm-level #bi-page-b.content #container_1 {
  padding: 0 !important;
}

body.webstorm-level #bi-page-b #container_1 .widget_container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;

  .boxcontent {
    padding: 0;
  }
}

body.webstorm-level #bi-page-b.content #container_2 {
  background-color: var(--color-white);
}

body.webstorm-level #bi-page-b #container_3 {
  height: 0;
  min-height: 0;
  display: none !important;
}

.section__hero--journey {
  height: 32rem;
  color: var(--color-white);
  background-color: var(--color-blue--dark);
}

body.webstorm-level #bi-page-b .widget_container {
  width: 85%;
  padding: 0;
}

/* Wildfire(c.bix)
  ----------------------------------------------------------*/

body.webstorm-level #bi-page-c {
  padding: 0;
}

body.webstorm-level #bi-page-c #main_content {
  width: 100%;
  max-width: 100%;
}

body.webstorm-level #bi-page-c.content #container_1 {
  padding: 0 !important;
}

body.webstorm-level #bi-page-c #container_1 .widget_container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;

  .boxcontent {
    padding: 0;
  }
}

body.webstorm-level #bi-page-c.content #container_2 {
  background-color: var(--color-white);
}

body.webstorm-level #bi-page-c #container_2 .widget_container {
  width: 100%;
  max-width: var(--container--max-width);
  padding: 0;
  margin: 0;
}

body.webstorm-level #bi-page-c #container_3 {
  height: 0;
  min-height: 0;
  display: none !important;
}

.section__hero--ps1 {
  height: 32rem;
  color: var(--color-white);
  background-color: var(--color-blue--dark);
}

body.webstorm-level #bi-page-c .widget_container {
  width: 85%;
  padding: 0;
}

/* Electrification(d.bix)
  ----------------------------------------------------------*/

body.webstorm-level #bi-page-d {
  padding: 0;
}

body.webstorm-level #bi-page-d #main_content {
  width: 100%;
  max-width: 100%;
}

body.webstorm-level #bi-page-d.content #container_1 {
  padding: 0 !important;
}

body.webstorm-level #bi-page-d #container_1 .widget_container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;

  .boxcontent {
    padding: 0;
  }
}

body.webstorm-level #bi-page-d.content #container_2 {
  background-color: var(--color-white);

  .widget_container {
    width: 100%;
    max-width: var(--container--max-width);
    padding: 0;
    margin: 0;
  }
}

body.webstorm-level #bi-page-d #container_3 {
  height: 0;
  min-height: 0;
  display: none !important;
}

.section__hero--ps1 {
  height: 32rem;
  color: var(--color-white);
  background-color: var(--color-blue--dark);
}

body.webstorm-level #bi-page-d .widget_container {
  width: 85%;
  padding: 0;
}

/* Load Management(e.bix)
  ----------------------------------------------------------*/

body.webstorm-level #bi-page-e {
  padding: 0;
}

body.webstorm-level #bi-page-e #main_content {
  width: 100%;
  max-width: 100%;
}

body.webstorm-level #bi-page-e.content #container_1 {
  padding: 0 !important;
}

body.webstorm-level #bi-page-e #container_1 .widget_container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;

  .boxcontent {
    padding: 0;
  }
}

body.webstorm-level #bi-page-e.content #container_2 {
  background-color: var(--color-white);

  .widget_container {
    width: 100%;
    max-width: var(--container--max-width);
    padding: 0;
    margin: 0;
  }
}

body.webstorm-level #bi-page-e #container_3 {
  height: 0;
  min-height: 0;
  display: none !important;
}

.section__hero--ps1 {
  height: 32rem;
  color: var(--color-white);
  background-color: var(--color-blue--dark);
}

body.webstorm-level #bi-page-e .widget_container {
  width: 85%;
  padding: 0;
}

/* Cost Management(f.bix)
  ----------------------------------------------------------*/

body.webstorm-level #bi-page-f {
  padding: 0;
}

body.webstorm-level #bi-page-f #main_content {
  width: 100%;
  max-width: 100%;
}

body.webstorm-level #bi-page-f.content #container_1 {
  padding: 0 !important;
}

body.webstorm-level #bi-page-f #container_1 .widget_container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;

  .boxcontent {
    padding: 0;
  }
}

body.webstorm-level #bi-page-f.content #container_2 {
  background-color: var(--color-white);

  .widget_container {
    width: 100%;
    max-width: var(--container--max-width);
    padding: 0;
    margin: 0;
  }
}

body.webstorm-level #bi-page-f #container_3 {
  height: 0;
  min-height: 0;
  display: none !important;
}

.section__hero--ps1 {
  height: 32rem;
  color: var(--color-white);
  background-color: var(--color-blue--dark);
}

body.webstorm-level #bi-page-f .widget_container {
  width: 85%;
  padding: 0;
}
