﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,700;1,400;1,700&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=IBM+Plex+Serif:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
@import url("reset.min.css");
html, * {
  scrollbar-width: thin;
  scrollbar-color: #CECFD4 #F7FBFF;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background-color: #F7FBFF;
  color: #3b4550;
}

.body--home {
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 0.75rem;
}

body::-webkit-scrollbar-track {
  background-color: #F7FBFF;
}

body::-webkit-scrollbar-thumb {
  background-color: #cecfd4;
}

* {
  outline-color: #3b4550;
}

p {
  margin-bottom: 0.75rem;
}

a {
  color: #0054B2;
}

.layout-main {
  min-height: calc(100vh - 28.25rem);
}

.header {
  background-color: #fcfcfc;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 28, 56, 0.07);
  min-height: 4.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header-container {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#menu-toggle {
  visibility: hidden;
  position: absolute;
  left: -10000px;
}

.logo-wrapper {
  display: flex;
  align-content: center;
  margin-left: -0.25rem;
  margin-right: 2.5rem;
  z-index: 1001;
}

.logo-image {
  padding-top: 1.1875rem;
  padding-bottom: 0.90625rem;
  max-width: 15rem;
  max-height: 4.5rem;
  height: 100%;
}

.nav-menu-wrapper {
  padding-top: 4.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-color: #8FC0F7;
  z-index: 1000;
  overscroll-behavior: contain;
}

#menu-toggle:checked ~ .nav-menu-wrapper {
  transition: opacity 300ms;
  opacity: 1;
  pointer-events: auto;
}

#menu-toggle:checked ~ .menu-btn {
  visibility: hidden;
}

#menu-toggle:checked ~ .logo-wrapper .logo-image {
  position: fixed;
}

.nav-menu {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  align-items: flex-end;
}

.menu-btn {
  display: block;
  cursor: pointer;
  padding-top: 1.0625rem;
  margin-right: -1rem;
}

.menu-close {
  display: block;
  cursor: pointer;
  position: absolute;
  right: 0.5rem;
  top: 0;
  margin-top: 1.0625rem;
}

.nav-menu__item {
  border-bottom: solid 0.0625rem rgba(0, 0, 0, 0.05);
}
.nav-menu__item:first-child {
  border-top: solid 0.0625rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 52rem) {
  .header-container {
    justify-content: normal;
  }
  .nav-menu-wrapper {
    padding: 0;
    position: static;
    opacity: 1;
    pointer-events: auto;
    background: none;
    align-self: flex-end;
  }
  .nav-menu {
    display: flex;
    position: relative;
  }
  .nav-menu :first-child .nav-menu__item-link {
    margin-left: -0.75rem;
  }
  .nav-menu__item {
    border: none !important;
  }
  .menu-btn {
    display: none;
  }
  .menu-close {
    display: none;
  }
  .nav-menu > .nav-menu__item:hover .nav-menu__item-link {
    color: #030923;
  }
  .nav-menu > .nav-menu__item:hover .nav-menu__item-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.1875rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    background-color: rgba(0, 50, 109, 0.7);
  }
  .nav-menu__item--parent:hover + .nav-menu__sub-menu {
    display: block;
  }
  .nav-menu__sub-menu {
    display: none;
    position: absolute;
    z-index: 10;
    right: 0.6875rem;
    left: -0.0625rem;
    padding: 2rem 3rem 2rem 1rem;
    background-color: #fff;
    border: solid 1px rgba(0, 28, 56, 0.2);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    grid-template-columns: max-content 1fr;
    box-shadow: inset 0 0.125rem 0.25rem -0.125rem rgba(0, 28, 56, 0.07), 0 0.125rem 0.25rem 0 rgba(0, 28, 56, 0.07);
  }
  .nav-menu__sub-menu:hover {
    display: block;
  }
  .home-wrapper .nav-menu__sub-menu {
    background-color: rgba(214, 232, 255, 0.98);
    border: solid 1px rgba(0, 50, 109, 0.4);
  }
  .nav-menu__sub-menu-title {
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1rem;
    margin-left: 2rem;
  }
  .nav-menu__sub-menu-items {
    position: relative;
  }
  .nav-menu__sub-menu-item {
    font-weight: 500;
    cursor: pointer;
    width: 34ch;
  }
  .nav-menu__sub-menu-item > [href]:hover {
    text-decoration: underline;
  }
  .nav-menu__sub-menu-item:hover {
    background-color: rgba(0, 28, 56, 0.05);
  }
  .nav-menu__sub-menu-item:hover .nav-menu__sub-sub {
    visibility: visible;
  }
  .nav-menu__sub-menu-item:first-child .nav-menu__sub-sub {
    border-top-left-radius: 0;
  }
  .nav-menu__sub-menu-parent {
    display: block;
    padding: 0.75rem 2rem 0.75rem 2rem;
    text-decoration: none;
    color: #3b4550;
  }
  .nav-menu__sub-menu-parent.nav-menu__sub-menu-parent--has-children::after {
    content: "";
    display: inline-block;
    width: 0.25rem;
    height: 0.5rem;
    border-left: solid 0.25rem black;
    border-top: solid 0.25rem transparent;
    border-bottom: solid 0.25rem transparent;
    margin-left: 0.75rem;
  }
  .nav-menu__sub-sub {
    position: absolute;
    visibility: hidden;
    left: 34ch;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 28, 56, 0.01);
    border: solid 1px rgba(0, 28, 56, 0.03);
    border-radius: 0.4rem;
    cursor: auto;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #CECFD4 #F7FBFF;
    overscroll-behavior: none;
  }
  .nav-menu__sub-sub::-webkit-scrollbar {
    width: 0.75rem;
  }
  .nav-menu__sub-sub::-webkit-scrollbar-track {
    background-color: #F7FBFF;
  }
  .nav-menu__sub-sub::-webkit-scrollbar-thumb {
    background-color: #cecfd4;
  }
  .nav-menu__sub-sub:hover {
    visibility: visible;
  }
  .nav-menu__sub-sub .nav-menu__sub-sub-item > * {
    font-weight: 400;
    display: inline-block;
    color: #3b4550;
    text-decoration: none;
    padding: 0.75rem 2rem;
  }
  .nav-menu__sub-sub .nav-menu__sub-sub-item > *:hover {
    text-decoration: underline;
  }
}
.nav-menu__item-link {
  display: block;
  position: relative;
  font-weight: 500;
  color: #757A84;
  color: #0b1337;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.3125;
  padding: 0.71875rem 0.75rem;
}

.nav-menu__sub-menu {
  display: none;
}

.home-wrapper {
  background-color: #8fc0f7;
  background-image: url(/Content/Images/home-bg.png), radial-gradient(36.56% 106.65% at 67.15% 49.94%, #CFE4FC 0%, #8FC0F7 100%);
  background-position: 45% -2rem, top;
  background-size: auto 886px, auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.home-wrapper h1 {
  font-size: 2.125rem;
  line-height: 1.065;
  letter-spacing: -0.01em;
  color: #090f2a;
  margin-bottom: 0.5rem;
}
.home-wrapper h2 {
  color: #090f2a;
  font-size: 1.375rem;
  line-height: 1.154;
  letter-spacing: -0.01em;
  opacity: 0.8;
  margin-top: 0;
  margin-bottom: 0.75rem;
  padding: 0;
}

.home-wrapper__grid {
  display: -ms-grid;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2.375rem;
}
.home-wrapper__grid .header {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.alert {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: -1rem;
}

.alert__heading {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.home__tag {
  margin-top: 3.4375rem;
}

.home__tag-text {
  font-size: 1.0625rem;
}

.home__tag-cta {
  height: 3rem;
  background-color: #2666B1;
  width: 100%;
  color: #fff;
  font-size: 1.0625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
}

.home__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}

#map-svg {
  transform: translateX(-6vw);
}

.home__map::after {
  content: "";
  display: block;
  width: 63%;
  background-color: rgba(6, 42, 85, 0.14);
  height: 1.6875rem;
  border-radius: 100%;
  filter: blur(0.75rem);
  transform: translateY(-1.5vw);
}

.home__figures {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  margin-top: 0.5rem;
  justify-content: center;
}
.home__figures > * {
  flex-grow: 1;
  flex-basis: 8rem;
  padding: 0 1rem;
  text-align: center;
}

.home__lookup-widget {
  margin-top: 2.3125rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.4);
}

.home__news, .home__meetings {
  margin-top: 2rem;
}

.home__news-list, .home__meetings-list {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  max-width: 100vw;
  overflow-x: auto;
  gap: 0.5rem;
}

.home__news-item {
  border-radius: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 9.25rem;
  max-width: 9.25rem;
  height: 9.25rem;
}

.home__news-headline {
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.home__meetings-item {
  border-radius: 0.5rem;
  min-height: 4.125rem;
  min-width: 12rem;
  max-width: 13rem;
  box-shadow: 0px 2px 4px rgba(0, 28, 56, 0.15);
  display: flex;
  gap: 0.5rem;
  background-color: #2666B1;
}
.home__meetings-item:nth-child(3n+2) {
  background-color: #BD354F;
}
.home__meetings-item:nth-child(3n+3) {
  background-color: #25395E;
}

.home__meetings-item-link {
  display: flex;
  padding: 1rem;
  gap: 0.5rem;
  text-decoration: none;
  width: 100%;
}

.home__meeting-date {
  max-width: 4rem;
  text-align: right;
  color: #fff;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
}

.home__meeting-group {
  color: #fff;
  opacity: 0.7;
  letter-spacing: -0.02em;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.1333333333;
  text-transform: uppercase;
}

.show-all-link {
  display: none;
}

.how-it-works-wrapper {
  background: #F7FBFF;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

#how-it-works {
  max-width: 77rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.relationship-graphic-wrapper {
  display: grid;
  place-content: center;
}

.relationship-graphic {
  width: 23rem;
}

.map-legend__title {
  font-weight: 600;
  text-align: center;
  font-size: 0.875rem;
}

.map-legend__items {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1rem);
  border-radius: 0.625rem;
  padding: 0.5rem 1rem;
  margin: 0;
  margin-top: 0.625rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-legend__item {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.875rem;
  color: #586169;
}
.map-legend__item::before {
  content: "";
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--status-fill, #5B6876);
  border: solid 0.125rem var(--status-stroke, #001F43);
}
.map-legend__item.map-legend__item--stripes::before {
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 0.125rem, #a5bbd2, #a5bbd2 0.25rem);
}

@media (min-width: 48rem) {
  .home-wrapper {
    background-position: 60% -14rem, top;
    background-size: auto 1388px, auto;
  }
  .home-wrapper h1 {
    font-size: 2.75rem;
  }
  .home-wrapper h2 {
    font-size: 1.75rem;
  }
  .home-wrapper__grid {
    max-width: 78rem;
    -ms-grid-rows: auto [7];
    -ms-grid-columns: 0.8fr 0.2fr 1fr;
    grid-template-columns: 0.8fr 0.2fr 1fr;
    grid-template-rows: repeat(7, auto);
  }
  .home-wrapper__grid .header {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column-start: 1;
    grid-column-end: -1;
  }
  .home-wrapper__grid .nav-menu__item-link {
    letter-spacing: -0.01em;
  }
  .alert {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 2;
    grid-column: 1/-1;
    grid-row: 2;
    margin-bottom: -1.75rem;
  }
  .home__tag {
    display: block;
    -ms-grid-column: 1;
    -ms-grid-row: 3;
    grid-column-start: 1;
    grid-row-start: 3;
    margin-top: 4.75rem;
  }
  .home__tag-text {
    font-size: 1rem;
    line-height: 1.625;
    margin-top: 1rem;
  }
  .home__tag-cta {
    font-size: 1rem;
    font-weight: normal;
    display: inline;
    color: #2666B1;
    background-color: transparent;
    text-decoration: underline;
  }
  .home__map {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 3;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 6;
    display: flex;
    padding-top: 4rem;
    justify-content: start;
    margin-left: -3rem;
  }
  .home__map::after {
    transform: none;
    margin-top: -1.5rem;
    margin-left: 12%;
  }
  .home__map .map__live-state {
    cursor: pointer;
    transition: transform ease-out 45ms;
    transform-box: fill-box;
    transform-origin: center;
  }
  .home__map .map__live-state:hover {
    transform: scale(1.04);
    filter: brightness(85%) saturate(175%);
  }
  .map-legend {
    margin-left: 7vw;
  }
}
@media (min-width: 48rem) and (min-width: 48rem) {
  .map__live-state {
    animation: slide-down 750ms ease-in-out none;
  }
}
@media (min-width: 48rem) {
  @keyframes slide-down {
    0% {
      transform: translateY(-3rem) scale(1.3);
      transform-origin: top;
      transform-box: fill-box;
      fill: #29588e;
    }
    100% {
      transform: translateY(0) scale(1);
      transform-origin: top;
      transform-box: fill-box;
    }
  }
}
@media (min-width: 48rem) {
  #map-svg {
    transform: translateX(0);
  }
}
@media (min-width: 48rem) {
  .home__figures {
    -ms-grid-column: 1;
    -ms-grid-row: 4;
    grid-column-start: 1;
    grid-row-start: 4;
    margin-top: 1rem;
    justify-content: flex-start;
  }
  .home__figures > * {
    text-align: left;
    padding-left: 0;
  }
}
@media (min-width: 48rem) {
  .home__lookup-widget {
    -ms-grid-column: 1;
    -ms-grid-row: 5;
    grid-row-start: 5;
    grid-column-start: 1;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 4.625rem;
    padding-left: 0;
    padding-right: 0;
    padding-top: 3.125rem;
    padding-bottom: 0;
    background-color: transparent;
  }
}
@media (min-width: 48rem) {
  .home__news, .home__meetings {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 6;
    grid-row-start: 6;
    grid-column-start: 1;
    grid-column-end: 4;
    overflow: hidden;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    display: flex;
    align-items: center;
    background-color: #314468;
    border-radius: 0.5rem;
    box-shadow: 0px 0.125rem 0.25rem rgba(0, 28, 56, 0.25);
  }
  .home__news h2, .home__meetings h2 {
    color: #fff;
    opacity: 1;
    padding-right: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0;
  }
}
@media (min-width: 48rem) {
  .home__news-list, .home__meetings-list {
    max-height: 8.25rem;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
    width: 100%;
    overflow: hidden;
    gap: 0;
  }
}
@media (min-width: 48rem) {
  .home__meetings-list {
    max-height: 6.125rem;
    gap: 0;
  }
}
@media (min-width: 48rem) {
  .home__news-item, .home__meetings-item {
    background: none !important;
    align-items: center;
    max-width: 12rem;
    width: 100%;
    min-width: auto;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-radius: 0;
    max-height: 8.25rem;
  }
}
@media (min-width: 48rem) {
  @supports (display: grid) {
    .home__news-item, .home__meetings-item {
      max-width: none;
      min-width: auto;
      width: auto;
    }
  }
}
@media (min-width: 48rem) {
  .home__news-headline {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .home__news-headline:hover {
    background-color: rgba(0, 28, 56, 0.3);
  }
}
@media (min-width: 48rem) {
  .home__meetings {
    -ms-grid-column: 1;
    -ms-grid-row: 7;
    grid-row-start: 7;
    margin-top: 1rem;
    margin-bottom: -4rem;
    background-color: #25395E;
  }
}
@media (min-width: 48rem) {
  .home__meetings-item {
    align-items: start;
    padding: 0;
  }
}
@media (min-width: 48rem) {
  .home__meetings-item-link {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .home__meetings-item-link:hover {
    background-color: rgba(0, 28, 56, 0.3);
  }
}
@media (min-width: 48rem) {
  .show-all-link {
    display: flex;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    max-width: none;
    min-width: auto;
    height: 100%;
    align-items: center;
    padding-left: 1.5rem;
  }
  .show-all-link:hover {
    text-decoration: underline;
  }
}
@media (min-width: 48rem) {
  .how-it-works-wrapper {
    padding-top: 6.5625rem;
  }
}
@media (min-width: 48rem) {
  #how-it-works {
    flex-direction: row;
  }
}
@media (min-width: 48rem) {
  .home__copy {
    order: 1;
    max-width: 34.5625rem;
  }
}
@media (min-width: 48rem) {
  .relationship-graphic-wrapper {
    order: 2;
    flex-shrink: 0;
    place-content: start;
  }
}
/*.home-section {
    text-align: center;
    font-size: 1.125rem;
    padding-top: 5.375rem;
    padding-bottom: 5.375rem;
    display: grid;
    place-content: center;

    .home-section__wrapper {
        max-width: 75rem;
        margin-left: auto;
        margin-right: auto;
    }

    .home-section__heading {
        font-size: 3.1875rem;
        line-height: 1.065;
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 1.3125rem;
    }

    &.home-section--light {
        background-color: #fcfcfc;
    }

    &.home-section--hero {
        padding-top: 4rem;
        padding-bottom: 4rem;

        .home-section__wrapper {
            max-width: 46rem;
        }
    }

    &.home-section--inline-widgets {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        & .ktc-widget-zone {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
    }
}*/
.lookup-widget__heading {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.lookup-widget__form-wrapper {
  max-width: 42.5rem;
  text-align: left;
}

@keyframes spin {
  from {
    transform: rotateZ(1deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
.lookup-widget__query-wrapper {
  position: relative;
  width: 100%;
  max-width: 30rem;
}
.lookup-widget__query-wrapper::before {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 0.8rem;
  opacity: 0;
  background-image: url(/Content/Images/search-loader.png);
  background-size: contain;
  height: 24px;
  width: 24px;
  animation: spin 1000ms linear infinite;
}

.lookup-widget__query {
  width: 100%;
  background: none;
  border: solid 0.125rem #043974;
  border-radius: 0.625rem;
  background-color: #f2f6fc;
  padding-left: 1.375rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(0, 50, 109);
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.lookup-widget__query::placeholder {
  color: rgb(0, 50, 109);
  opacity: 0.5;
}

.lookup-widget__search {
  height: 2.75rem;
  width: 2.75rem;
  padding: 0.625rem;
  color: transparent;
  background-color: transparent;
  border: none;
  background-image: url(/Content/Images/search-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0.125rem;
  top: 0.125rem;
  cursor: pointer;
}
.lookup-widget__search:hover {
  filter: drop-shadow(0 0 0.375rem rgba(0, 117, 255, 0.65));
}

.lookup-widget__terms-check {
  height: 1rem;
  width: 1rem;
  margin-left: 0;
  accent-color: #00326D;
}

.lookup-widget__terms-label {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.25rem 0;
}

.lookup-widget__tertiary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 30rem;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  line-height: 1.154;
  flex-wrap: wrap;
  gap: 0.2em;
}
.lookup-widget__tertiary a {
  color: #1F61AF;
}

.lookup-widget--loading .lookup-widget__search {
  visibility: hidden;
}
.lookup-widget--loading .lookup-widget__query-wrapper::before {
  opacity: 1;
}
.lookup-widget--loading .lookup-widget__query-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0.625rem;
}

.lookup-widget__search-results-wrapper {
  text-align: left;
  margin-top: 1rem;
  border-radius: 0.5rem;
}
.lookup-widget__search-results-wrapper.show-results .lookup-widget__search-results:not(.lookup-widget__search-results--has-ptp) {
  animation: show-results 400ms;
}
.lookup-widget__search-results-wrapper.show-results .lookup-widget__search-results.lookup-widget__search-results--has-ptp {
  animation: show-results--has-ptp 400ms;
}
.lookup-widget__search-results-wrapper.hide-results {
  opacity: 0;
}
.lookup-widget__search-results-wrapper.hide-results .lookup-widget__search-results {
  overflow: hidden;
  max-height: 0;
}

.lookup-widget__search-results {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0 3px rgba(146, 0, 28, 0.7), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  padding: 1.2rem 1.8125rem;
  font-size: 1rem;
}
.lookup-widget__search-results.lookup-widget__search-results--has-ptp {
  box-shadow: inset 0 0 0 3px #007a64, 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.lookup-widget__no-results-template, .lookup-widget__disclaimer-template {
  display: none;
}

@keyframes hide-results {
  0% {
    border-width: 0;
    overflow-y: hidden;
    max-height: 30rem;
  }
  100% {
    max-height: 0;
    overflow-y: hidden;
    border-width: 0;
  }
}
@keyframes show-results {
  0% {
    box-shadow: inset 0 0 0 3px transparent, 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow-y: hidden;
  }
  80% {
    max-height: 40rem;
    overflow-y: hidden;
  }
  81% {
    box-shadow: inset 0 0 0 3px transparent, 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  }
  100% {
    box-shadow: inset 0 0 0 3px #cecfd4, 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    overflow-y: auto;
  }
}
@keyframes show-results--has-ptp {
  0% {
    box-shadow: inset 0 0 0 3px transparent, 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow-y: hidden;
  }
  80% {
    max-height: 40rem;
    overflow-y: hidden;
  }
  81% {
    box-shadow: inset 0 0 0 3px transparent, 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  }
  100% {
    box-shadow: inset 0 0 0 3px #007a64, 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    overflow-y: auto;
  }
}
.lookup-widget__label {
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
  font-size: 0.875em;
}

.lookup-widget__provider-name {
  font-weight: 700;
  font-size: 1.4em;
}

.lookup-widget__provider-emsid,
.lookup-widget__license-number {
  font-family: "IBM Plex Mono", monospace;
}

.lookup-widget__licenses {
  margin-top: 2rem;
}

.lookup-widget__licenses-title {
  text-transform: uppercase;
  font-weight: 700;
}

.lookup-widget__license + .lookup-widget__license {
  margin-top: 0.5rem;
  border-top: solid 0.0625rem #f2f3f5;
  padding-top: 0.5rem;
}

.lookup-widget__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.85;
}

.count-widget__data {
  color: #090F2A;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.875rem;
  opacity: 0.7;
}

.count-widget__caption {
  color: #090F2A;
  opacity: 0.7;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.info-for-link {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.info-for-link:hover {
  text-decoration: underline;
  text-decoration-color: #3b4550;
}

.info-for-link__wrapper {
  display: flex;
  align-items: center;
  text-align: left;
}

.info-for-link__icon-wrapper {
  border-radius: 50%;
  background-color: #DCDDE0;
  width: 4rem;
  height: 4rem;
  margin-right: 1.125rem;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.06);
}

.info-for-link__caption {
  font-size: 1.5rem;
  text-decoration: none;
  color: #3b4550;
}

.meetings-widget__list {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  border: solid 1px #e6e6e6;
  list-style-type: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 0.625rem 1.25rem -0.625rem rgba(0, 28, 56, 0.2);
}

.meetings-widget__item {
  text-align: left;
}
.meetings-widget__item a {
  text-decoration: none;
  color: #3b4550;
  display: block;
  padding: 1.5625rem 2.0625rem;
}
.meetings-widget__item a:hover {
  background-color: #f9fafc;
}
.meetings-widget__item:not(:last-child) {
  border-bottom: solid 1px #ECEDEE;
}

.meetings-widget__date {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.625rem;
}
.meetings-widget__date::after {
  opacity: 0.7;
  content: " · ";
}

.meetings-widget__description {
  color: #767B85;
  text-transform: uppercase;
  line-height: 1.625rem;
  font-size: 1rem;
}

.meetings-widget__schedule-link {
  display: inline-block;
  margin-top: 1rem;
  color: #00326d;
}

.article-detail {
  max-width: 43rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: min(11vw, 5rem);
  padding-left: 1rem;
  padding-right: 1rem;
}
.article-detail.article-detail--wider {
  max-width: 55rem;
}
.article-detail.article-detail--full-width {
  max-width: 77rem;
}

.breadcrumb {
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.breadcrumb [href] {
  color: #3b4550;
  text-decoration: none;
}
.breadcrumb [href]:hover {
  text-decoration: underline;
}

.breadcrumb__back {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.125rem;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  border-bottom-left-radius: 0.0625rem;
  border-left: solid #3b4550 0.0625rem;
  border-bottom: solid #3b4550 0.0625rem;
  transform: rotate(45deg);
}

.article__meta {
  margin-top: 1rem;
}

.article__title {
  font-size: 3rem;
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1.065;
  letter-spacing: -0.01em;
  max-width: 41rem;
}

.article__byline {
  font-style: italic;
  font-family: "IBM Plex Serif";
  margin-top: 0.5rem;
  opacity: 0.7;
  font-size: 1rem;
}

.article__dateline {
  font-family: "IBM Plex Serif", monospace;
  font-size: 1rem;
  opacity: 0.7;
  max-width: 41rem;
  margin-top: 0.5em;
}

.article__byline + .article__dateline::before {
  content: "·";
  display: inline-block;
  width: 2ch;
  text-align: center;
}

.article__caption {
  text-transform: uppercase;
  font-family: "IBM Plex Sans", monospace;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 1em;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.article__text {
  font-size: 1.125rem;
  font-size: clamp(1.0625rem, 3vw, 1.125rem);
  line-height: 1.555;
  margin-top: min(7vw, 3.5rem);
}
.article__text h2:first-child {
  margin-top: 0;
  padding-top: 0;
}
.article__text h2:target {
  display: flex;
  margin-left: -1.1875rem;
}
.article__text h2:target::before {
  content: "";
  border-radius: 0.1875rem;
  width: 0.1875rem;
  margin-right: 1rem;
  background-color: rgba(219, 0, 42, 0.6);
}

.article-sidebar {
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1rem 1rem 0.5rem 1rem;
  border-top: solid 1px #DDDEDF;
  border-bottom: solid 1px #DDDEDF;
}

.article-sidebar__list-item {
  min-width: 12rem;
  border-left: solid 1px rgba(0, 0, 0, 0.2);
  padding-left: 1rem;
}

.article-sidebar__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  overflow-x: auto;
  align-items: stretch;
  gap: 1rem;
  padding-bottom: 1rem;
}

.article-sidebar__list-item:first-child {
  border-left: 0;
  padding-left: 0rem;
}

.article-sidebar__title {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 1.125rem;
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 1.111;
  color: #747983;
}

.article-sidebar__list-item {
  font-size: 0.9375rem;
  font-family: "IBM Plex Serif", serif;
}

.article-sidebar__list-item-link {
  text-decoration: none;
  color: #3b4550;
  display: block;
  height: 100%;
}
.article-sidebar__list-item-link:hover {
  text-decoration: underline;
}

.article-detail--sidebar {
  max-width: 77rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 52rem) {
  .article-sidebar {
    margin-top: 0;
    margin-left: 5rem;
    margin-bottom: auto;
    padding: 1.5rem 2.5rem;
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    min-width: 30ch;
    max-width: 40ch;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #CECFD4 #F7FBFF;
  }
  .article-sidebar::-webkit-scrollbar {
    width: 0.75rem;
  }
  .article-sidebar::-webkit-scrollbar-track {
    background-color: #F7FBFF;
  }
  .article-sidebar::-webkit-scrollbar-thumb {
    background-color: #cecfd4;
  }
  .article-sidebar__list {
    display: block;
    padding-bottom: 0;
  }
  .article-with-sidebar-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 3.5rem;
  }
  .article-with-sidebar-wrapper .article__text {
    max-width: 41rem;
    flex-basis: 41rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .article-with-sidebar-wrapper[data-sidebar-location=left] .article__text {
    order: 2;
  }
  .article-with-sidebar-wrapper[data-sidebar-location=left] .article-sidebar {
    margin-left: 0;
    margin-right: 5rem;
  }
  .article-sidebar__list-item {
    min-width: none;
    border-left: none;
    padding-left: 0;
  }
  .article-sidebar__list-item + .article-sidebar__list-item {
    margin-top: 0.75rem;
  }
  .article-sidebar__list-item-link {
    display: inline;
    height: auto;
  }
}
/* STATES Page */
.commissioner-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 75rem;
}

.retired-commissioners .commissioner-cards-wrapper {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.commissioner-card {
  margin: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 28, 56, 0.07);
  border-radius: 0.5rem;
  overflow: hidden;
  width: 12.875rem;
}

[href] > .commissioner-card:hover {
  box-shadow: 0 0.125rem 0.125rem 0rem rgba(0, 28, 56, 0.14);
  background-color: rgba(255, 255, 255, 0.25);
}

.commissioner-card__link {
  text-decoration: none;
  color: #00326d;
  color: #3b4550;
}

.commissioner-card__photo-wrapper {
  background-image: radial-gradient(#3b4550, #1C2126);
  height: 15rem;
  display: flex;
  place-items: center;
  place-content: center;
  overflow: hidden;
}

.commissioner-card__photo {
  color: #F7FBFF;
}

.commissioner-card__state-map-wrapper {
  filter: drop-shadow(0 2px 2px rgba(0, 28, 56, 0.7));
  width: 65%;
  height: 65%;
}

.commissioner-card__state-map, .state-detail__state-map {
  width: 100%;
  height: 100%;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #e7f2ff;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 28, 56, 0.2);
}

.commissioner-card__details {
  padding: 1rem;
}

.commissioner-card__name {
  margin: 0;
  padding: 0;
}

.commissioner-card__commissioner-label,
.commissioner-card__label {
  text-transform: uppercase;
  font-family: "IBM Plex Sans", monospace;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 0.8em;
  opacity: 0.7;
}

.commissioner-card__label {
  margin-top: 1rem;
}

.commissioner-card__commissioner {
  font-weight: 700;
}

.state-detail__state-map-wrapper {
  width: 200px;
  height: 240px;
  background-image: radial-gradient(#3b4550, #1C2126);
  display: flex;
  justify-content: center;
  align-items: center;
}

.state-detail__state-map {
  width: 65%;
  height: 65%;
}

.retired-commissioners {
  margin-top: 3rem;
}
.retired-commissioners summary {
  cursor: pointer;
}
.retired-commissioners summary > * {
  display: inline;
}

.meeting-card, .news-card {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 28, 56, 0.07);
  margin: 2rem 0;
  padding: 1.8rem 2rem;
}

.meeting-card__title, .news-card__title {
  line-height: 1.1;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0;
}

.meeting-card__details {
  display: grid;
}

@media (min-width: 36.875rem) {
  .meeting-card__details {
    grid-template-columns: 1fr 1fr;
  }
}
.meeting-card__detail {
  margin: 1rem 1rem 1rem 0;
  border-radius: 4em;
  font-size: 0.9em;
  color: #3b4550;
  border-radius: 6rem;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.meeting-card__detail[href]::before {
  box-shadow: 0px 1px 3px rgba(0, 28, 56, 0.15);
  border: solid 1px rgba(0, 50, 109, 0.2);
  /*background-color: rgba(0, 50, 109, 0.2);*/
  filter: saturate(3);
}
.meeting-card__detail[href] .meeting-card__detail-data {
  text-decoration: underline;
}
.meeting-card__detail::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #DCDDE0;
  margin-right: 0.8rem;
  margin-left: -0.1rem;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

@supports (gap: 0) {
  .meeting-card__detail {
    margin: 0;
    margin-top: 1rem;
  }
  .meeting-card__details {
    gap: 0 1rem;
  }
}
.meeting-card__detail--location::before {
  background-image: url(/Content/Images/link-icons/location.svg);
}

.meeting-card__detail--booklet::before {
  background-image: url(/Content/Images/link-icons/booklet.svg);
}

.meeting-card__detail--agenda::before {
  background-image: url(/Content/Images/link-icons/agenda.svg);
}

.meeting-card__detail--minutes::before {
  background-image: url(/Content/Images/link-icons/minutes.svg);
}

.meeting-card__detail--draft-rules::before {
  background-image: url(/Content/Images/link-icons/draft-rules.svg);
}

.meeting-card__detail-title {
  opacity: 0.6;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: -0.1em;
}

.meeting-card__notes {
  margin-top: 1rem;
}

.meeting-card__notes-title {
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.news-card a {
  text-decoration: none;
  color: inherit;
}
.news-card a:hover {
  text-decoration: underline;
}

.news-card__dateline {
  opacity: 0.7;
  font-size: 0.9em;
  font-family: "IBM Plex Serif", serif;
  margin-bottom: 1rem;
}

.news-card__image {
  float: left;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
}

.scheduler-event-link {
  color: #00326d;
}

.state-commissioner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.state-commissioner__name-wrapper {
  margin-bottom: 1rem;
}

.state-commissioner__name {
  display: inline-block;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.state-commissioner__role {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.state-detail__state-map-wrapper,
.state-detail__photo {
  margin-right: 2rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

.state-detail__address-wrapper {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.state-detail__notes {
  margin-top: 1rem;
}

.main-section-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  column-count: 1;
  column-rule: rgba(0, 0, 0, 0.15) 1px solid;
  column-gap: 4rem;
}
.main-section-links > * + * {
  border-top: solid 1px rgba(0, 0, 0, 0.05);
}
.main-section-links .main-section-links {
  margin-left: min(2rem, 4vw);
  font-size: 0.95em;
}

.main-section-link {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: inherit;
}
.main-section-link:hover {
  text-decoration: underline;
}

.main-section-list-item {
  display: block;
  padding: 0.5rem 0 0;
  opacity: 0.7;
}

.contact__address {
  font-style: normal;
}

.footer {
  background-color: #8FBFF7;
  margin-top: 5rem;
}

.footer-container {
  padding-left: max((100% - 75rem) / 2 + 1.5rem, 1.5rem);
  padding-right: max((100% - 75rem) / 2 + 1.5rem, 1.5rem);
}
.footer-container:first-child {
  background-color: #B2D4FA;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-container:first-child :first-child {
  flex-basis: max(50%, 22rem);
}

.footer__logo {
  max-height: 3rem;
  margin-bottom: 1rem;
}

.footer__address {
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.125;
}

.footer__contact-methods {
  margin-bottom: 1rem;
}

.footer__contact-method {
  display: inline-block;
  margin-right: 0.25rem;
}

.footer__link {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.92em;
  font-weight: 500;
  color: #19254b;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}
.footer__link:hover {
  text-decoration: underline;
}

.footer__copy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #19254B;
  font-size: 0.875rem;
}

.grecaptcha-badge {
  display: none !important;
}

/* IE rules */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .home__map::after {
    display: none;
  }
}
