/**
 * Layout customizations.
 */
/* z-index stuff */
 .grid-container {
    width: 100%;
    max-width: 1388px;
    margin-left: auto;
    margin-right: auto;
    /* Safari/Chrome, other WebKit */
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
 }


/**
 * Page Regions
 */
.abovecontent {
  padding-bottom: 0.5rem;
}

.highlight {
  font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #444343;
  margin: 2.5rem 0;
  background-image: linear-gradient(to right,white,#f7f7f3,white);
  padding: 0.75rem;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #e6e6e6;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.content {
  padding: 3rem 0 1.5rem 0;
  display: flex;
  flex-flow: row nowrap;
  line-height: 1.5rem;
}

/* We need some components to expand full width */
/* Replaces overflow: hidden with min-width: 0 */
.middle {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.left {
  display: flex;
  gap: var(--fdic-spacing-xl);
  padding-right: 2rem;
  flex: 0 0 25%; /* Safari/Chrome, other WebKit */    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  line-height: 1.5rem;
}

.right {
  padding-left: 2rem;
  flex: 0 0 25%; /* Safari/Chrome, other WebKit */    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  line-height: 1.5rem;
}
/* end page regions */

/***
  Mobile styles
***/
@media all and (max-width: 64em) {
  /* Page Regions */
  .content {
      flex-flow: column nowrap;
      padding-left: 1rem;
      padding-right: 1rem;
  }

  .highlight {
      margin-left: 0;
      margin-right: 0;
  }

  .left {
      padding-right: 0;
  }

  .right {
      padding-left: 0;
  }
  /* end page regions */
}
