@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:ital,wght@0,400;1,400;0,600;1,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Droid+Serif:ital,wght@0,400;1,400;0,600;1,600;&display=swap');

@font-face {
  font-family: 'theme-icons';
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZoGj3XEAAAFwAAAA3GhlYWQD856/AAACTAAAADZoaGVhBfsDyQAAAoQAAAAkaG10eApyAAAAAAKoAAAAIGxvY2EA3ACgAAACyAAAABJtYXhwAAoACAAAAtwAAAAgbmFtZXFwNTUAAAL8AAABaXBvc3QAAwAAAAAEaAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAA/8cCOQPHAAUAAAEXCQEHAQHRaP6FAWpo/kADx2D+V/5pYAH3AAEAAP/HAjkDxwAFAAAXJwkBNwFoaAF7/pZoAcA5YAGqAZZg/goAAAABAAD/xwIAA8cABQAAARcJAQcBAfAQ/h8BzQ/+IwPHEP4G/hoQAfYAAQAA/8cCAAPHAAUAABcnCQE3ARAQAeH+Mw8B3TkQAfoB5hD+CgAAAAEAAAABAADaqxHcXw889QALBAAAAAAA0U2tGgAAAADRTa0aAAD/xwI5A8cAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAAjkAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAAAjkAAAI5AAACAAAAAgAAAAAAAAAACgAUAB4AMgBGAFoAbgAAAAEAAAAIAAYAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAWAAAAAQAAAAAAAgAOAGMAAQAAAAAAAwAWACwAAQAAAAAABAAWAHEAAQAAAAAABQAWABYAAQAAAAAABgALAEIAAQAAAAAACgA0AIcAAwABBAkAAQAWAAAAAwABBAkAAgAOAGMAAwABBAkAAwAWACwAAwABBAkABAAWAHEAAwABBAkABQAWABYAAwABBAkABgAWAE0AAwABBAkACgA0AIcAdABoAGUAbQBlAC0AaQBjAG8AbgBzAFYAZQByAHMAaQBvAG4AIAAxAC4AMAB0AGgAZQBtAGUALQBpAGMAbwBuAHN0aGVtZS1pY29ucwB0AGgAZQBtAGUALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB0AGgAZQBtAGUALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
    scroll-padding-top: 125px;
}

body {
  color: #213e44;
  font-family: 'Source Sans Pro','Helvetica','Arial',sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  /* overrrides what was in one of the legacy css files */
  background-color: #ffffff;
  /*added to match legacy - ticket #52516*/
  padding-top: 2rem;
}

.container {
  max-width: 1440px;
  padding-left: 80px;
  padding-right: 80px;
}
/* only pad root container */
.container .container {
  padding-left: 0;
  padding-right: 0;
}
.container p {
  font-size: 19px;
}
.container img.float-left {
  margin-right: 20px;
}
.container img.float-right {
  margin-left: 20px;
}

/*Adjusted per 52803*/
.container h4 {
  margin-bottom: 1.5rem; /*this value adjusted per #53435*/
  font-family: 'Source Sans Pro','Helvetica', 'Arial', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #213e44;
}
/*END 52803*/

@keyframes shrink {
  from { transform: scaleY(1) }
  to { transform: scaleY(0); }
}
.main-menu.close {
  animation: shrink .2s ease;
}
.main-menu {
  position: relative;
  height: 0;
  color: #fff;
  background-color: #336e7e;
  overflow: hidden;
  z-index: 2;
  transition: all .2s ease;
}
.main-menu .list-group,
.main-menu .list-group-item {
  background-color: transparent;
  border: none;
  padding: 0;
}
.main-menu .list-group ul {
  list-style-type: none;
  padding: 0;
}
.main-menu .list-group > .list-group-item > .list-group > a {
  padding-left: 35px;
  margin-bottom: 10px;
}
.main-menu .row > .col:nth-child(n + 2) div.list-group .list-group-item ul li a {
  font-size: 14px;
}
.main-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}
.main-menu a:hover {
  color: #e6e6e6
}
.main-menu.open {
  height: auto;
  transition: all .2s ease;
}
.main-menu .row {
  display: grid;
  grid-template-columns: 2fr 5fr 2fr;
  grid-auto-rows: auto;
  margin-bottom: 30px;
}
.main-menu .row > .col:nth-child(n + 2) > div.list-group,
.main-menu .row .col .explore-page-list {
  border-top: 1px solid #fff;
  margin-top: 50px;
}
.main-menu .row > .col:nth-child(n + 2) > div.list-group > .list-group-item a,
.main-menu .row > .col:nth-child(n + 2) > div.list-group > a h2,
.main-menu .row > .col .explore-page-list h2 {
  display: inline-block;
  background-color: #336e7e;
}
.main-menu .row .col:first-child {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  border: none;
  padding: 0 20px;
}
.main-menu .row > .col > a,
.main-menu .row > .col > .list-group > a:first-child,
.main-menu .row > .col:first-child a {
  display: block;
  font-family: 'Droid Serif';
  font-size: 26px;
  font-weight: 400;
}
.main-menu .row > .col:first-child {
  padding-top: 30px;
}
.main-menu .row > .col:first-child a {
  margin-bottom: 1em;
}
/*.main-menu .row > .col:first-child > ul > li > ul {
  display: none;
}*/
.main-menu .row .col .explore-page-list ul {
  display: grid;
  list-style-type: none;
  padding: 0;
}
.main-menu .row > .col:first-child > a {
  flex-direction: column;
  flex-wrap: nowrap;
}
.main-menu .row > .col:nth-child(n + 2) .list-group,
.main-menu .row > .col:nth-child(n + 2) .explore-page-list {
  width: auto;
  margin-left: -15px;
  margin-right: -15px;
}
.main-menu .row > .col:nth-child(n + 2) div.list-group a h2,
.main-menu .row > .col:nth-child(n + 2) > div.list-group > .list-group-item > a,
.main-menu .row > .col:nth-child(n + 2) .explore-page-list h2 {
  position: relative;
  top: -20px;
  margin: 0;
  padding: 0 20px 0;
  font-size: 24px;
  font-style: normal;
}
.main-menu .row > .col:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.main-menu .row > .col:nth-child(n + 2) .explore-page-list ul {
  display: block;
  padding: 0 20px;
  column-count: 2;
  column-gap: 15px;
}
.main-menu .row > .col:nth-child(n + 2) .list-group .list-group-item ul li,
.main-menu .row > .col:nth-child(n + 2) .explore-page-list ul li {
  display: block;
  margin-bottom: 10px;
}
.main-menu .row > .col:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.main-menu .row > .col:nth-child(3) .explore-page-list ul {
  column-count: 1;
  column-gap: 15px;
}
.main-menu .row > .col:nth-child(4) {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row: 2;
}
.main-menu .row > .col:nth-child(4) .explore-page-list ul,
.main-menu .row > .col:nth-child(4) .list-group .list-group-item ul {
  column-count: 3;
  column-gap: 15px;
}
.main-menu .row > .col:nth-child(4) .list-group .list-group-item ul li {
  display: block;
  padding-left: 20px;
}
.tooltip .tooltip-inner {
  background-color: #e9e9e9;
  border-radius: 2px;
  box-shadow: 1px 1px 3px #9c9c9c;
  color: #213e44;
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
  font-size: 24px;
  font-style: italic;
  padding: 10px;
}
.tooltip > .arrow {
  top: -10px;
  width: 15px;
  height: 15px;
}
.tooltip > .arrow::before {
  left: -5px;
  border-width: 12px;
  border-bottom-color: #e9e9e9 !important;
}

.main-content {
  position: relative;
}

a.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.4s;
}
a.skip-to-content:hover {
  color: #336e7e;
  text-decoration: none;
}

header.sticky-header {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100vw;
  background-color: #cadcde;
  box-shadow: 1px 1px 2px #b6b6b6;
  min-height: 58px;
  padding: 8px 0;
  position: fixed;
  transition: top 0.2s;
  z-index: 5;
}
header.sticky-header img {
  float: left;
  display: block;
  width: 50px;
  margin-right: 10px;
}
header.sticky-header a.home {
  display: inline-block;
  color: #336e7e;
  text-indent: -9999px;
  width: 18px;
  margin-left: 45px;
}
header.sticky-header a.home:before {
  float: left;
  position: relative;
  text-indent: 0;
  top: 1px;
  content: '\e929';
  font-family: 'theme-icons';
  font-size: 18px;
  line-height: 18px;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
header.sticky-header h2 {
  font-style: normal;
  margin: 6px 0 5px;
  font-size: 24px;
  font-size: 2.4 rem;
  line-height: 1.2;
}
header.sticky-header.active {
  top: 0;
}
header.sticky-header ol#facet-breadcrumbs {
  list-style: none;
}
header.sticky-header ol#facet-breadcrumbs li {
  display: inline-block;
}
header.sticky-header ol#facet-breadcrumbs li:after {
  content: "/";
  margin-right: 8px;
  margin-left: 8px;
}

header.sticky-header .meeting-arrow-prev {
  bottom: 6px;
  top: auto;
  transform: none;
  left: 15px;
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
}
header.sticky-header .meeting-arrow-next {
  top: auto;
  transform: none;
  display: inline-block;
  float: right;
  margin-top: -30px;
}
header.sticky-header .meeting-arrow-next a,
header.sticky-header .meeting-arrow-prev a {
  color: #eb805f;
  display: inline-block;
  text-indent: -9999px;
  text-decoration: none;
  transition: color 0.2s ease;
}
header.sticky-header .meeting-arrow-prev a:hover,
header.sticky-header .meeting-arrow-next a:hover {
  color: #e55c32;
}
header.sticky-header .meeting-arrow-prev a:after,
header.sticky-header .meeting-arrow-next a:after {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1;
  font-family: 'theme-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  text-indent: 0; 
}
header.sticky-header .meeting-arrow-prev a.arrow-left:after {
  float: left;
  content: '\e901';
}
header.sticky-header .meeting-arrow-next a.arrow-right:after {
  float: right;
  content: '\e904';
  margin-top: -2px;
}
header.sticky-header .meeting-title-next {
  color: #213e44;
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  position: relative;
  right: 40px;
  text-indent: 0;
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
}
header .list-group .list-group-item {
  position: relative;
}
header .col > .list-group > .list-group-item > .list-group {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 300px;
  padding: 20px 15px;
  color: #fff;
  background-color: #336e7e;
  border-radius: 2px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.25);
  transform: translateX(-50%);
  z-index: 1000;
}
header .col > .list-group > .list-group-item > .list-group ul {
  list-style-type: none;
  padding: 0;
  white-space: normal;
}
header .col > .list-group > .list-group-item > .list-group ul li {
  padding: 2px 0;
}
@keyframes fadeOut {
    from { opacity: 1 }
    to { opacity: 0.0000001 }
}
@keyframes fadeIn {
    from { opacity: 0.0000001 }
    to { opacity: 1 }
}
header .col > .list-group > .list-group-item.show > .list-group {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}
header .col > .list-group > .list-group-item.fade-dropdown > .list-group {
  display: block;
  animation-name: fadeOut;
  animation-duration: 0.4s;
}
header .col > .list-group > .list-group-item > .list-group:before {
  content: ' ';
  display: block;
  position: absolute;
  top: -5px;
  left: calc(50% - 15px);
  border-width: 20px 20px 0 0;
  border-style: solid;
  border-color: #336e7e;
  transform: rotateZ(45deg);
}
header .col > .list-group > .list-group-item > .list-group a {
  display: block;
  color: #fff;
  font-family: 'Source Sans Pro','Helvetica','Arial',sans-serif;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: normal;
}
header .col > .list-group > .list-group-item > .list-group a:hover {
  color: #eee;
  text-decoration: none;
}



header {
  position: relative;
  padding: 27px 0;
}
header .col:nth-child(2) {
  flex-grow: 2;
}
header .list-group {
  flex-direction: row;
  justify-content: flex-end;
}
header .close-menu {
  display: none;
  position: absolute;
  bottom: 10px;
  right: -30px;
}
header .close-menu .fas {
  color: #213e44;
  font-size: 36px;
  opacity: 0.5;
}
header p {
  display: none;
  float: left;
  width: 50%;
  padding: 0 10px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}
header form {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 30px;
  width: 50%;
  padding-left: 50px;
  z-index: 5;
}
header form label {
  display: none;
}
header form input[type=text] {
  width: 100%;
  height: 38px;
  padding: 9px;
  color: #213e44;
  border: 1px solid #336e7e;
  background-color: transparent;
  transition: background-color 0.2s ease;
}
header form input[type=text]::-webkit-input-placeholder {
  color: #336e7e;
  font-style: italic;
}
header form input[type=text]:focus {
  background-color: #fff;
}
header form button[type=submit],
header form button[type=submit]:hover {
  position: relative;
  width: 50px;
  color: #336e7e;
  overflow: hidden;
  background-color: #336e7e;
  border-color: #336e7e;
  border-radius: 0;
}
header form button[type=submit]:after {
  content: "\f002";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #bdd3d6;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}
header .list-group.upper a {
  color: #777777;
  font-family: 'Source Sans Pro';
  font-size: 15px;
  text-transform: uppercase;
}
header .list-group.upper a:hover {
  color: #336e7e;
  text-decoration: none;
}
header .list-group.upper a:after {
  color: #777777;
  content: "\2022";
  padding-left: 5px;
  padding-right: 5px;
}
header .list-group.upper a:last-child:after {
  content: '';
}
header .list-group.main {
  padding-top: 30px;
}
header .list-group.main a {
  margin-right: 25px;
  color: #213e44;
  font-family: 'Droid Serif','Georgia',serif;
  font-size: 24px;
  white-space: nowrap;
}
header .list-group.main a:hover {
  text-decoration: none;
}
header .list-group .list-group-item {
  background-color: transparent;
  padding: 0;
  border: none;
}
header .col > .list-group > .list-group-item > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .col > .list-group > .list-group-item > div > div {
  padding: 0 5px;
}
header .col > .list-group > .list-group-item > div i.fas {
  color: #213e44;
  font-size: 20px;
}
header .fa-ellipsis-h {
  /*this makes the ... menu button more clickable and fixes the vibrating cursor problem*/
  z-index: 100;
  min-height: 60px;
  min-width: 60px;
}

header.open {
  background-color: #bdd3d6;
}
header.open .close-menu,
header.open p {
  display: block;
}
header.open form {
  display: flex;
}
header.open .main {
  display: none;
}

.page-header h2.page-subtitle {
  font-style: italic;
  margin-bottom: 1em;
  font-size: 19px;
  font-size: 1.9 rem;
  line-height: 1.2;
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
}
.banner-content-inner {
  padding-left: 10px;
}

table {
  margin-bottom: 4.5em;
}
table.decisions-table td:first-child {
  min-width: 200px;
}
table.decisions-table td:nth-child(2) {
  min-width: 400px;
}
footer {
  background-color: #213e44;
  padding: 40px 0 100px;
}
footer .container img {
  float: left;
  display: block;
  width: 50px;
  margin-right:  12px;
}
footer .container p {
  margin: 0;
  padding: 10px 0 0;
  color: #bdd3d6;
  font-size: 14px;
  line-height: 0.8;
}
footer .list-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
footer .list-group a {
  color: #bdd3d6;
  font-size: 18px;
  text-transform: uppercase;
}
footer .list-group a:after {
  color: #bdd3d6;
  content: "•";
  padding-left: 5px;
  padding-right: 5px;
}
footer .list-group a:last-child:after {
  content: '';
}

iframe {
  max-width: 100%;
}

.upcoming_meetings_slider_header h4 {
  font-size: 24px;
}

.table-wrapper table th, .table-wrapper table td {
  border-top: none;
}

/* overwriting bootstrap's default bg for tables */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
}

/* this styles the 'RTF File template for the file-plugin */
.file-upload {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: #213e44;
  background-color: #bdd3d6;
  padding: 1.5rem 2rem 1.5rem 6rem;
  border-radius: 3px;
  width: 350px;
  margin: 10px 0;
}
.file-upload::before {
  position: absolute;
  content: '\00a0 \00a0 \00a0 \00a0 \00a0 \00a0';
  background-image: url('/static/nwcouncil/img/icon_file_download.svg');
  background-size: cover;
  min-height: 50px;
  width: 40px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) scale(.6);
}

.plugin-blog-calendar {
  margin: 0;
}
.plugin-blog-calendar h3 {
  display: none;
}
.plugin-blog-calendar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.plugin-blog-calendar .blog-archive > li > a {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 5px;
  color: #213e44;
  font-family: 'Source Sans Pro','Helvetica','Arial',sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #336e7e;
  outline: none;
}
.plugin-blog-calendar .blog-archive > li > a:after {
  content: '\e903';
  position: absolute;
  top: 8px;
  right: 0px;
  display: block;
  padding: 3px 4px;
  border-radius: 50%;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-family: "theme-icons";
  font-size: 30px;
  font-weight: 100;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.plugin-blog-calendar .blog-archive > li > a.open:after {
  content: '\e930';
}
.plugin-blog-calendar .blog-archive > li > ul {
  margin-left: -7px;
  margin-right: -7px;
}
.plugin-blog-calendar .blog-archive > li > a + ul {
  display: flex;
  flex-direction: column;
  flex-flow: row-reverse;
  flex-wrap: wrap-reverse;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.plugin-blog-calendar .blog-archive > li > a.open + ul {
  height: 224px;
}
.plugin-blog-calendar .month span {
  display: none;
}
.plugin-blog-calendar .month {
  float: left;
  display: block;
  width: 25%;
  padding: 0 7px 17px;
}
.plugin-blog-calendar .month a {
  display: block;
  padding: 5px 0;
  text-align: center;
  font-family: 'Source Sans Pro','Helvetica','Arial',sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #336e7e;
  transition: all 0.2s ease;
}
.plugin-blog-calendar .month.empty a {
  color: #a8b0b1;
  border-color: transparent;
  background-color: #fff;
}
.plugin-blog-calendar .month.active a,
.plugin-blog-calendar .month a:hover {
  color: #fff;
  border: 1px solid #336e7e;
  background-color: #336e7e;
  text-decoration: none;
}

/* Measures Plugin */
.measure-list ul {
  list-style: none;
  padding: 0 !important;
}
.measure-list ul li {
  margin-bottom: 35px;
  padding: 0 !important;
}
.measure-list h2 {
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-top: 0;
}
.measure-list h2 a,
.measure-list ul.pager li a {
  color: #336e7e !important;
}
.measure-list h2 a:hover,
.measure-list ul.pager li a:hover {
  color: #244e5a !important;
}
.measure-list .featured-item-wrapper {
  margin: 0;
}
.measure-list .feature-node-type {
  direction: rtl;
}
.measure-list ul.pager li {
  font-size: 14px;
  margin-bottom: 35px;
}
.measure-list ul.pager li.pager-ellipsis,
.measure-list ul.pager li.pager-current {
  padding: 4px 10px !important;
}
/* END Measures Plugin */

.btn.btn-secondary {
  background-color: #e8896b;
  color: #fff;
  border-color: #e8896b;
  transition: all 0.4s;
}
.btn.btn-secondary:hover {
  color: #e8896b;
  background-color: #ffffff;
}

.decision--description *:first-child {
  margin-top: 1rem;
}

.main-content .sections .container > h1:first-child {
  color: #9c9c9c;
  font-style: normal;
  font-family: 'Source Sans Pro','Helvetica','Arial',sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-size: 2.4 rem;
  line-height: 1.2;
  margin-top: 24px;
}

.main-content .sections .container h2 {
  margin-bottom: 31.5px;
}

.main-content .sections .container h4 {
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
  margin-top: 40px;
}

.main-content .sections .container p {
  margin: 38px 0;
}

.main-content .sections .row .col {
  margin-bottom: 1.5rem;
}
.main-content .sections .container .cta {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #336e7e;
  border: 2 px solid #336e7e;
  border-radius: 3 px;
  color: #ffffff;
  font-style: italic;
  font-weight: 600;
  padding: 6 px 20 px 7 px;
  transition: all 0.2s ease;
  font-size: 16px;
  font-size: 1.6 rem;
  line-height: 1.2;
  text-decoration: none;
}

.main-content .sections .container a.cta:hover {
  background: #244e5a;
  border-color: #244e5a;
  color: #ffffff;
}

.node-type-subcommittee .container h4 {
  font-family: 'Source Sans Pro','Helvetica','Arial',sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  font-size: 3 rem;
  line-height: 1.2;
  margin-bottom: 0.75em;
}

.main-content .col ul {
  padding: 2rem 20px;
  font-size: 19px;
}
.main-content .col ul li {
  padding: 0.5rem 0;
}
.main-content .col ul li::marker {
  color: rgb(51, 110, 126);
}
.main-content .col ul li a {
  color: #7ca7af;
  transition: all 0.2s;
}
.main-content .col ul li a:hover {
  color: #244e5a;
  text-decoration: none;
}


.main-content .list-group.striped img {
  display: inline-block;
  vertical-align: middle;
  height: 48px;
  margin-left: 20px;
  margin-right: 40px;
}
.main-content .list-group.striped p {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color: #7ca7af;
}
.main-content .list-group.striped a {
  padding: 10px;
}
.main-content .list-group.striped a:hover {
  color:  #244e5a;
  text-decoration: none;
}
.main-content .list-group.striped > *:nth-child(even) {
  background-color: #e5edef;
  border-radius: 5px;
}

/* fixes for 52460 */
.container.meeting ul {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.6;
  padding-left: 18px;
  margin: 1.25em 0;
}
.container.meeting ul li {
  margin-bottom: 5px;
  padding-left: 20px;
}
/* END fixes for 52460 */


.proposer-info-wrapper .proposer-info-primary .proposer-details-wrapper .field.category {
  text-transform: capitalize;
}
.proposer-info-wrapper .proposer-info-secondary .description p {
  font-size: 14px;
}

.pager {
  padding: 20px 0;
  text-align: center;
}
.pager a {
  padding: 4px 10px;
}
.pager a:hover {
  color: #244e5a;
}

/*fix for 51698 also see 'add missing links' in measure_page.js*/
.filter-link-width {
  width: 9rem;
}
.filter-link {
  position: relative;
  display: inline-block;
}
.measure-filter .filter-link div::after {
  content: '\25b2';
  position: absolute;
  margin-left: 6px;
}
.measure-filter .filter-down-link div::after {
  content: '\25bc';
  position: absolute;
  margin-left: 6px;
}
/*END fix for 51698*/

/* SPECIFIC PAGE STYLES */

/* PROPOSAL FORM STYLES */
div[data-form="propose_form"] {
  position: relative;
}

div[data-form="propose_form"] legend {
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
  font-size: 38px;
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
  position: relative;
  top: 30px;
}

div[data-form="propose_form"] fieldset {
  background-color: white;
  border-style: none;
  margin: 50px 0;
  padding-left: 20px;
}

div[data-form="propose_form"] label {
  color: #9c9c9c;
  display: block;
  font-style: italic;
  font-weight: 600;
  padding-top: 8px;
  padding-right: 15px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 20px;
}

div[data-form="propose_form"] label abbr {
  border-bottom: none;
  text-decoration: none;
}

div[data-form="propose_form"] ul {
  list-style: none;
  padding-left: 0;
}
div[data-form="propose_form"] li {
  display: inline-block;
}
div[data-form="propose_form"] li label {
  color: #213e44;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  margin-top: 0;
}
div[data-form="propose_form"] li label input[type="radio"]{
  position: relative;
  top: 2px;
}

div[data-form="propose_form"] button[type="submit"] {
    background-color: #336e7e;
    border: 2px solid #336e7e;
    border-radius: 3px;
    color: #ffffff;
    font-style: italic;
    font-weight: 600;
    padding: 6px 20px 7px;
    transition: all 0.2s ease;
    font-size: 16px;
    font-size: 1.6 rem;
    line-height: 1.2;
    display: inline-block;
    margin-bottom: 3em;
}

div[data-form="propose_form"] textarea {
  width: 100%;
}

/* END PROPOSAL FORM STYLES */

/* LUNCH FORM STYLES */

#lunch_form form {
  width: 40%;
}

#lunch_form form label {
  margin: 18px 0 0;
}

#lunch_form form textarea {
  width: 100%;
  min-height: 100px;
}

#lunch_form form button {
  margin: 18px 0;
}

#lunch_form form abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.hint-text {
  font-size: small!important;
  margin-bottom: 0;
}


/* END LUNCH FORM STYLES */

/* END SPECIFIC PAGE STYLES */

/* resize videos for work-products page */
#block-bean-video-understanding-measure-1755 h2, #block-bean-existing-work-products-212 h2, #block-bean-new-measures-1553 h2, #block-bean-bean-rte-rte-1552 h2 {
  margin-bottom: 30px;
}
#block-bean-video-understanding-measure-1755 iframe,  #block-bean-bean-rte-rte-1552 iframe {
  width: 625px;
}
#block-bean-video-understanding-measure-1755, #block-bean-existing-work-products-212 {
  margin-top: -3em;
}
/*end resize videos for work-products page*/

/*spacing about-rtf page*/
#block-bean-formation-of-rtf-291 > div :nth-child(n+3) {
  margin-bottom: 4rem;
}
#block-bean-we-want-you-to-participate-2829 > div > h2, #block-bean-we-want-you-to-participate-2829 > div > h2 + p {
  margin-bottom: 5rem;
}
#block-bean-we-want-you-to-participate-2829 > div > p + p + h3, #block-bean-we-want-you-to-participate-2829 :nth-child(n+7) {
  margin-bottom: 4rem;
}
#block-bean-we-want-you-to-participate-2829 > p > a {
  margin-bottom: 5rem;
} 
#block-bean-bean-rte-rte-295 > div > h2, #block-bean-bean-rte-rte-295 > div > h2 + p {
  margin-bottom: 4rem;
}
#block-bean-bean-rte-rte-295, #block-bean-bean-container-1547 {
  max-height: 710px;
}
#block-bean-bean-rte-rte-1548 > div > ul > li > a {
  margin-left: 2rem;
}
#block-bean-policy-advisory-committee-307 > div > * {
  margin-bottom: 4rem;
}
/*end spacing about-rtf page*/

/*resize videos on about-rtf page*/
#block-bean-formation-of-rtf-291 > div > p > iframe {
  width: 102.5%;
}
#block-bean-we-want-you-to-participate-2829 > div > p > iframe {
  width: 102%;
}
#block-bean-bean-rte-rte-1548 > div > h2 > iframe {
  width: 97%;
}
/*end resize videos about-rtf*/

/*spacing right side about-rtf page*/
#block-bean-we-want-you-to-participate-2829 > h2, #block-bean-we-want-you-to-participate-2829 > h2 + p, #block-bean-we-want-you-to-participate-2829 > p + p + h3 {
  margin-bottom: 5rem;
}
/*end spacing right side about-rtf page*/

/*fix text spacing for 2020 conservation achievments*/
#block-bean-cumulative-conservation-ach-3363, #block-bean-cumulative-conservation-ach-3363 + div {
  padding-top: 4rem;
}
#block-bean-cumulative-conservation-ach-3363 > div > h2 {
  margin-bottom: 3rem;
}
#block-bean-cumulative-conservation-ach-3363 > div > p + p {
  margin-top: 4rem;
  margin-bottom: 3rem;
}
#block-bean-covid-impacts-3376 > div > h2, #block-bean-program-savings-and-expendi-3378 > div > h2 {
  margin-bottom: 4rem;
}
#block-bean-program-savings-and-expendi-3378 {
  margin-bottom: 12rem;
}
#block-bean-bean-rte-rte-3371 {
  margin-bottom: 3rem;
}
#block-bean-bean-rte-rte-3373 > div > h2, #block-bean-historical-regional-savings-3369 > div > h2 {
  margin-bottom: 4rem;
}
#block-bean-codes--standards-3370 > div > img, #block-bean-regional-capacity-savings-3381 > div > h2 {
  margin-bottom: 5rem;
}
#block-bean-historical-regional-savings-3369 {
  padding-bottom: -10rem;
  margin-bottom: -7rem;
}
/*end fix text spacing for 2020 conservation achievments*/

/*fix spacing for ELCAP page*/
.node-38 > p {
  font-size: 19px;
  margin-bottom: 2em;
}
.node-38 > h4 {
  font-family: 'Source Sans Pro','Helvetica','Arial',sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2.20em;
}
.node-38 > ul {
  position: relative;
  margin-top: 2em;
  margin-bottom: 4em;
  list-style: none;
}
.node-38 > ul > li {
  margin-top: .35em;
  margin-left: -1.25em;
  font-size: 19px;
}
.node-38 > ul > li::before {
  content: ".   ";
  color: #336e7e;
  left: 0;
  position: absolute;
  font-size: 2.5em;
  line-height: 0;
}
.node-38 > ul > li > a {
  margin-left: 1.5em;
  color: rgb(51, 110, 126);
  opacity: .75;
}
.node-38 > ul > li > a:hover {
  text-decoration: none;
  color: #213e44;
}
.node-38 {
  max-width: 1440px;
  display: block;
  margin: auto;
  padding: 0 70px;
}
/*END fix spacing for ELCAP page*/

/*adjust text size for <li> elements on archives page*/
.node-37 h2 {
  margin-bottom: 3rem;
}
.node-37 ul > li {
  font-size: 2rem;
  margin-bottom: 5px;
  list-style: none;
}
.node-37 ul {
  position: relative;
}
.node-37 ul > li::before {
  content: ".   ";
  color: #336e7e;
  left: 0;
  position: absolute;
  font-size: 3em;
  line-height: 0;
}
.node-37 ul > li > a {
  margin-left: .75rem;
  color: #7ca7af;
}
.node-37 > :nth-child(6) {
  margin-bottom: 6rem;
}
/*END adjust text size for <li> elements on archives page*/

/* fix for 52269, figure float */
.node-6392 figure {
  clear: both;
  padding-left: 20px;
}
/* end 52269 */

/*restyle "close navigation" button for subcommittees page menu*/
.dismss-nav {
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
  margin-bottom: 21px;
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
}
.dismss-nav::before {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  content: '\e902';
  font-family: 'theme-icons';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
}
/*END restyle "close navigation" button for subcommittees page menu*/

/*fix for #52453 ordered list positioning*/
.description-wrapper ol li::before {
  position: absolute;
  margin-left: -40px;
  margin-top: -4px;
  font-size: 23px;
}
.description-wrapper ol li {
  margin-left: 40px;
}
/*END fix for #52453 ordered list positioning*/

/*styling for 52229 missing icons about-rtf page */
.callout-link a {
  display: block;
}
.callout-link img {
  width: 75px;
  margin-right: 2rem;
}
.callout-link em {
  font-size: 1.15em;
  margin-bottom: 20px;
}
/*END styling for 52229 missing icons about-rtf page */

/*fix for 52214*/
#block-bean-rtf-staff-287 .node-21 {
  margin-top: -2rem;
}
#block-bean-rtf-staff-287 h2 {
  margin-top: -4rem;
}
#block-bean-rtf-staff-287 p {
  margin-top: 4rem;
}
.node-21 {
  margin: 2rem 0 5rem 0;
}
#block-bean-mailing-address--2275 h2 {
  margin-bottom: 3rem;
}
/*END fix for 52214*/

/*fix for 52212*/
.close-menu {
  position: relative;
}
.close-menu > i {
  visibility: hidden;
  position: absolute;
  right: 15px;
  bottom: 7px;
}
.close-menu > i:before  {
  visibility: visible;
  padding: 5px;
  content: '\e922';
  font-family: 'theme-icons';
  font-weight: bold;
  font-size: 15px;
}
/*END fix for 52212*/

/*fix for 52452 AND 52254 AND 53729*/
.node-type-measure + .sections .container .row  div {
  display: flex;
  flex-direction: column;
}
.node-type-measure + .sections ul li {
  list-style: none;
}
.node-type-measure + .sections a {
  position: relative;
  margin: 5px 0;
  font-size: 16px;
  padding-left: 45px;
  color: #213e44;
}
#block-bean-archived-documents-3082 a {
  padding-left: 30px;
}
.node-type-measure + .sections a:before {
  position: absolute;
  content: '\00a0 \00a0 \00a0 \00a0 \00a0 \00a0';
  background-image: url('/static/nwcouncil/img/icon_file_download.svg');
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 60px;
  width: 30px;
  left: 4px;
  top: 70%;
  transform: translateY(-50%) scale(.55);
}
#block-bean-archived-documents-3082 a:before {
  left: -7px;
}
/*END fix for 52452 AND 52254 AND 53729*/

/*52668*/
.node-2042 {
  position: relative;
  padding-bottom: 3rem;
}
.node-2042 + a {
  display: none;
} 
.node-2042 > a:nth-child(2) {
  position: absolute;
  max-width: 350px;
  bottom: -10rem;
  background-color: #cadcde;
  color: rgb(33, 62, 68);
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  padding: 15px 10px 15px 50px;
  margin: 300px 0 20px 0;
}
.node-2042 > a:nth-child(2):before {
  content: '\e927';
  font-family: 'theme-icons';
  color: rgb(51, 110, 126);
  font-style: normal;
  font-size: 28px;
  font-weight: 200;
  position: absolute;
  top: 22%;
  left: 10px;
}
.node-2042 > p:nth-child(3) {
  position: absolute;
  right: 10rem;
  bottom: -4rem;
}
/*END 52668*/

/*52254 only*/
#block-bean-archived-documents-3082 > h2:nth-child(1) {
  display: none;
}
/*END 52254 only*/

/*52860*/
.agenda-item-content a {
  color: rgb(33, 62, 68);
}
.agenda-item-content a:hover {
  color: rgb(51, 110, 126);
  text-decoration: none;
}
/*END 52860*/

/*52865*/
.meeting-tab {
  z-index: 1;
}
/*END 52865*/

/*#52879 - styling for associated meeting-arrow-prev and meeting-arrow-next is in calendar.css*/
.subcommitee-name {
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}
.subcommittee-breadcrumb-header {
  width: 85%;
  display: block;
  margin: 5px auto;
}
.subcommittee-breadcrumb-header h2 {
  margin-bottom: 1rem!important;
}
/*END 25879*/

/*53112 charter and bylaws page*/
.node-15 {
  max-width: 1440px;
  display: block;
  margin: 0 auto 80px auto;
  padding: 0 80px;
}
.node-15 p {
  margin: 38px 0;
  font-size: 19px;
}
.node-15 hr {
  color: rgb(33, 62, 68);
  border: inset 1px;
}
.node-15 ul li {
  font-size: 19px;
  padding-left: 20px;
  margin-left: -20px;
}
.node-15 ul li a {
  transition: color 0.2s ease;
  font-size: 19px;
  color: rgb(124, 167, 175);
}
.node-15 ul li a:hover {
  text-decoration: none;
  color: #336e7e;
}
/*END 53112*/

/*53089*/
#block-bean-individual-supporting-docum-2852 > h2{
  display: none;
}
/*END 53089*/

/* fixes for 53109 */
.node-2153, .node-1759 {
  max-width: 1440px;
  padding-left: 80px;
  padding-right: 80px;
  margin-left: auto;
  margin-right: auto;
}
.node-2153 p,
.node-1759 p {
  font-size: 19px;
}
/* END 53109 */

/* hide captcha label for #53454 */
label[for="id_recaptchafieldplugin_1"] {
  display: none !important;
}
/* END #53454 */

@media only screen and (max-width: 1000px) {
  header .container {
    padding: 0;
  }
  header .container img.img-fluid {
    width: 200px;
  }
  header .row {
    flex-direction: column;
    padding-left: 40px;
  }
  header .list-group.main {
    justify-content: space-between;
    padding-top: 10px;
    max-width: 50%;
  }
  header .list-group.main a {
    margin-right: 10px;
    font-size: 14px;
  }
  header form {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin: 10px -15px 0;
    height: 0;
    padding: 0 15px;
    overflow: hidden;
    background-color: #bdd3d6;
    box-sizing: content-box;
  }
  header form.open {
    display: flex;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 10;
  }
  header .list-group.upper,
  header.open p {
    display: none;
  }
  header .list-group.main a:last-child {
    position: absolute;
    top: -50px;
    right: 0px;
    padding: 10px;
    margin-right: 0;
    font-size: 20px;
    opacity: 0.8;
  }
  header .list-group.main a.open:last-child {
    background-color: #bdd3d6;
  }
  header.open .close-menu {
    bottom: -83px;
    right: 20px;
    z-index: 10;
  }
  header .close-menu .fas {
    color: #fff;
    font-size: 24px;
    opacity: 0.9;
  } 
  .main-menu .container {
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .main-menu .row {
    display: block;
  }
  .main-menu .row .col {
    margin-top: 15px;
    border: none;
  }
  .main-menu .row > .col .explore-page-list h2 a,
  .main-menu .row > .col:first-child a {
    color: #fff;
    font-size: 21px!important;
  }
  .main-menu .row > .col:nth-child(n + 2) .explore-page-list,
  .main-menu .row > .col:nth-child(n + 2) .list-group {
    border: none;
  }
  .main-menu .row > .col:nth-child(n + 2) .explore-page-list h2 a:before,
  .main-menu .row > .col:nth-child(n + 2) .list-group a h2:before {
    content: "\f067";
    position: absolute;
    top: 4px;
    left: -10px;
    display: block;
    border: 1px solid #fff;
    padding: 3px 4px;
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  .main-menu .row > .col:nth-child(n + 2).open .explore-page-list h2 a:before,
  .main-menu .row > .col:nth-child(n + 2).open .list-group a h2:before {
    content: "\f068";
  }
  .main-menu .row > .col:nth-child(n + 2) ul {
    height: 0;
    margin-top: -15px;
    margin-bottom: 40px;
    column-count: 1!important;
    overflow: hidden;
  }
  .main-menu .row > .col:nth-child(n + 2).open ul {
    height: auto;
  }
  footer > .container {
    padding-left: 0;
    padding-right: 0;
  }
  footer > .container > .row {
    flex-direction: column-reverse;
  }
  footer > .container > .row .col {
    margin-bottom: 10px;
  }
  footer .list-group {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  footer .list-group a {
    white-space: nowrap;
  }
  .homepage-hero {
    display: flex;
    flex-direction: column-reverse;
    margin-top: -50px;
  }
  .homepage-hero .hero-text {
    padding: 20px 15px;
    width: 100%;
  }
  .homepage-hero .hero-text h2 {
    font-size: 19px;
    width: 100%;
    margin: 0;
  }
  .homepage-hero .hero-text h2:after {
    bottom: 18px;
    border-bottom: solid #ffffff 1px;
    width: 57px;
  }
  .homepage-hero .hero-image {
    height: 58px;
    width: 100%;
  }

  /*styling for homepage box near bottom with icons - tablet*/
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) {
    flex-wrap: wrap;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div {
    margin: 10px 0;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(odd) {
    display: flex;
    justify-content: flex-start;
    align-items: center;

  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(even) {
    margin-left: -5rem;
    margin-right: 50vw;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(even) > p {
    font-size: 14px;
    white-space: nowrap;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(even) > h4 {
    font-size: 19px;
    white-space: nowrap;
  }
  /*END styling for homepage box near bottom with icons*/

  /*styling for meetings tile - desktop*/
  #tns1 > .tns-item {
    width: unset!important;
    min-width: 22rem;
    max-width: 22rem;
    height: auto;
  }
  .tns-item a {
    padding-left: 2rem;
    max-width: 12rem;
  }
  /*END styling for meetings tile - desktop*/
}

@media screen and (max-width: 768px) {
  header .row {
    padding-left: 0;
  }
  .homepage-hero + .container {
    padding-left: 0;
    display: flex;
  }
  .homepage-hero + .container > div {
    display: flex;
    height: 100%;
    width: 90vw;
  }
  .homepage-hero + .container > div > div:nth-child(2) {
    width: 90vw;
  }
  .homepage-hero + .container .list-group {
    display: flex;
    width: 90vw;
  }
  .homepage-hero + .container .list-group a {
    min-width: 290px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 0;
  }
  .homepage-hero + .container .list-group a p {
    font-size: 19px;
    margin-left: -20px;
    white-space: nowrap;
  }
  .main-content .container {
    /*this was done for ticket 53160 hoping it's not too general!*/
    padding: 0 0;
  }

  /*styling for homepage box near bottom with icons - mobile*/
  .rtf-site.upcoming_meetings_tile + div {
    padding: 0;
    width: 100vw;
  }
  .rtf-site.upcoming_meetings_tile + div > div {
    padding: 0 0 0 5vw;
  }
  .rtf-site.upcoming_meetings_tile + div > div p {
    width: 90vw;
    font-size: 16px;
  }
  .rtf-site.upcoming_meetings_tile + div > div h2 {
    width: 90vw;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) {
    display: flex;
    margin-top: -10px;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(odd) {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 65px;
    padding: 0 0 0 20px;
    margin-left: 10px;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(odd) figure img {
    height: auto;
    max-width: 50px;
    margin-left: 10px;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(even) {
    width: 50vw;
    padding: 0 0 0 0;
    margin: 0 28% 0 0;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(even) > p {
    white-space: unset;
    padding: 0;
    width: 23rem;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    margin-right: 3rem;
  }
  .rtf-site.upcoming_meetings_tile + div > div > div:nth-child(5) > div:nth-child(even) > h4 {
    padding-top: 25px;
  }
  /*END styling for homepage box near bottom with icons*/

  /*styling for meetings tile - tablet*/
  .rtf-site.upcoming_meetings_tile > div:nth-child(2) > div {
    width: 100vw;
    margin-left: -80px;
  }
  #tns1 > .tns-item {
    min-width: 30rem;
  }
  /*END styling for meetings tile - tablet*/

  /*53211 & 53223*/
  #block-bean-existing-work-products-212,
  #block-bean-new-measures-1553 {
    min-width: 100%;
    margin-bottom: 3rem;
  }
  /*END 53211 & 53223*/

  header.sticky-header .meeting-arrow-prev,
  header.sticky-header .meeting-arrow-next,
  header.sticky-header .home {
    display: none !important;
  }
  header.sticky-header h2 {
    font-size: 16px;
    margin: 10px 0 0;
  }
  header.sticky-header .sticky-logo img {
    margin-left: 15px;
    width: 35px;
  }
}


@media screen and (max-width: 522px) {
  /*styling for meetings tile - mobile*/
  #tns1 > .tns-item {
    min-width: 25rem;
  }
  /*END styling for meetings tile - mobile*/
  
  /*53087 ... menu button*/
  .fa-ellipsis-h {
    padding-top: 3px;
  }
  .fa-ellipsis-h::before {
    font-size: 1.75rem;
  }

  /*this part for mobile breadcrumbs*/
  .breadcrumb-header-open ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
  }
  /*END 53087*/

}

@media screen and (max-width: 335px) {
  /*53145 fix for ... menu button xtra small screen*/
  .list-group.main {
    min-width: 200px;
    flex-wrap: wrap;
  }
  .fa-ellipsis-h {
    top: 34px;
    left: 120px;
    margin-left: 0;
  }
  /*END 53145*/
}

/*add contact picture at subcommittee/ci-fans-subcommittee*/
#block-nwcrtf-base-page-contact-full > div > .page-contact-headshot-wrapper {
  width: 80px;
  height: 105px;
  background-position: center;
  background-size: cover;
}
  /*additional fix for the other contact pictures*/
.page-contact-headshot-wrapper img {
  min-height: 105px;
  object-fit: cover;
}
/*end add contact picture at subcommittee/ci-fans-subcommittee*/
.page-contact-rich-wrapper .page-contact-info.no-headshot .page-contact-details {
  padding-left: 0;
}
@media (min-width: 992px) {
  .page-header h2.page-subtitle {
    margin-bottom: 1.25em;
    margin-top: -0.5em;
    font-size: 26px;
    font-size: 2.6 rem;
    line-height: 1.2;
  }

}
