/**
 * Reset
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/**
 * Utilities
 */
/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.hide-visually {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.hide-visually.focusable:active,
.hide-visually.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/**
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/**
 * Hide text but maintain layout
 */
.hide-text {
  color: transparent;
  display: block;
  font: 0/0 a;
}

/**
 * Clearfix
 */
.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  zoom: 1;
}

/**
 * Color
 */
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-blue-light: #04c4e8;
  --color-blue: #04a3c1;
  --color-blue-dark: #03839b;
  --color-blue-dark: #037C91;
  --color-blue-darkest: #014e5d;
  --color-cream: #fbf5f1;
  --color-cream-dark: #fbede5;
  --color-grey-light: #b9b9b9;
  --color-grey: #777;
  --color-grey: #707070;
  --color-grey-dark: #4a4a4a;
  --color-orange: #f58223;
  --color-orange-dark: #4a2c13;
  --color-orange-light: #ffaa5a;
  --color-orange-bright: #d44400;
  --color-orange-bright: #C73F00;
  --color-purple: #78587c;
  --color-red: #721111;
  --color-yellow: #ffb83e;
}

.bg-cream-dark {
  background-color: var(--color-cream-dark);
}

.c-cream-dark {
  color: var(--color-cream-dark);
}

.c-grey-light {
  color: var(--color-grey-light);
}

.c-grey {
  color: var(--color-grey);
}

.bg-grey-dark {
  background-color: var(--color-grey-dark);
}

.c-grey-dark {
  color: var(--color-grey-dark);
}

.bg-orange {
  background-color: var(--color-orange);
}

.bg-orange-dark {
  background-color: var(--color-orange-dark);
}

.c-orange-light {
  color: var(--color-orange-light);
}

.c-orange {
  color: var(--color-orange);
}

.bg-purple {
  background-color: var(--color-purple);
}

.bg-red {
  background-color: var(--color-red);
}

.c-red {
  color: var(--color-red);
}

.c-white {
  color: var(--color-white);
}

.c-purple {
  color: var(--color-purple);
}

/**
 * Layout
 */
.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

/*
 * Overflow
 */
.overflow-hidden {
  overflow: hidden;
}

/**
 * Margin
 */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-small {
  margin-top: 2rem;
}

/**
 * Padding
 */
.p-large {
  padding: 5rem;
}

.py-xsmall {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.py-large {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-xxsmall {
  padding-top: 0.6rem;
}

.pt-xsmall {
  padding-top: 1.2rem;
}

.pt-large {
  padding-top: 5rem;
}

.pt-xlarge {
  padding-top: 6rem;
}

.pb-xsmall {
  padding-bottom: 1.2rem;
}

.pb-small {
  padding-bottom: 2rem;
}

.pb-medium {
  padding-bottom: 4rem;
}

.pb-large {
  padding-bottom: 5rem;
}

.pb-xlarge {
  padding-bottom: 6rem;
}

.pr-medium {
  padding-right: 4rem;
}

/**
 * Flex
 */
.flex-push-right {
  margin-left: auto;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-v-center {
  align-items: center;
}

.flex-1 {
  flex: 1;
}

/**
 * Alignment
 */
.t-center {
  text-align: center;
}

/**
 * Type
 */
:root {
  --font-sans: "GT Eesti Pro Text", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --font-sans-display: "GT Eesti Pro Display", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  --font-serif: "Zilla Slab", "Hoefler Text", Georgia, serif;
  --font-slab: "Druk Web", Impact, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

/**
 * Headings
 */
.large-heading {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  font-weight: 800; /* Bold */
  line-height: 1.1;
}

.extra-large-heading {
  font-family: var(--font-serif);
  font-size: 7.8rem;
  font-weight: 800; /* Bold */
  line-height: 1;
}

.serif-heading {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
}

.serif-heading-small {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500; /* Medium */
}

.caps-heading {
  font-family: var(--font-sans-display);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.caps-heading--small {
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.caps-heading-tiny {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300; /* Book */
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.slab-heading {
  font-family: var(--font-slab);
  font-size: 29rem;
  font-weight: 500;
  line-height: 0.85;
}

@media only screen and (min-width: 1099px) and (max-width: 1200px) {
  .slab-heading {
    font-size: 25rem;
  }
}
.text-small {
  font-size: 1.4rem;
}

.text-medium {
  font-size: 1.6rem;
}

/**
 * Family
 */
.t-sans {
  font-family: var(--font-sans);
}

.t-sans-display {
  font-family: var(--font-sans-display);
}

/**
 * Weight
 */
.t-bold {
  font-weight: 800;
}

/* Small devices */
@media only screen and (max-width: 768px) {
  .large-heading {
    font-size: 2.6rem;
  }
  .serif-heading {
    font-size: 1.6rem;
  }
  /* Caps headings */
  .caps-heading {
    font-size: 1.5rem;
  }
  .caps-heading--small {
    font-size: 1.2rem;
  }
  /* Slab heading */
  .slab-heading {
    font-size: 8rem;
  }
}
/* Medium devices */
@media only screen and (min-width: 768px) and (max-width: 1099px) {
  .large-heading {
    font-size: 4.1rem;
  }
  .serif-heading {
    font-size: 1.6rem;
  }
  /* Caps headings */
  .caps-heading {
    font-size: 2rem;
  }
  .caps-heading--small {
    font-size: 1.5rem;
  }
  /* Slab headding */
  .slab-heading {
    font-size: 16rem;
  }
}
/* Large devices */
.no-wrap {
  white-space: nowrap;
}

/**
 * Base
 */
/**
 * Base
 */
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}

body {
  background-color: var(--color-cream);
  font-family: var(--font-sans);
  line-height: 1.5;
  min-height: stretch;
}

a {
  color: var(--color-black);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus {
  outline: 1px currentColor dotted;
}

button:hover,
a:hover,
button:active,
a:active {
  outline: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.ie-message {
  display: none;
  color: #fff;
  font-family: var(--font-sans-display);
  background-color: #4a4a4a;
  width: 25%;
  min-width: 320px;
  max-width: 420px;
  position: fixed;
  z-index: 10000;
  top: 20px;
  right: 20px;
}

.ie-message p {
  font-size: 1.6rem;
  padding: 2rem 2rem;
  line-height: 1.4;
}

.ie-message a {
  width: 100%;
  border: none;
  font-size: 1.6rem;
  padding: 1.1rem 2rem;
  display: block;
  color: #000;
  background-color: #ffcda9;
  margin: 0;
  text-align: center;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie-message {
    display: block;
  }
}
/**
 * Components
 */
/**
 * Fonts
 */
/**
 * Druk
 */
@font-face {
  font-family: "Druk Web";
  src: url("/_lib/fonts/druk/Druk-Medium-Web.woff2") format("woff2"), url("/_lib/fonts/druk/Druk-Medium-Web.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
/**
 * GT Eesti Pro
 */
@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Light.woff2") format("woff2"), url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Light.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Regular.woff2") format("woff2"), url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Regular-Italic.woff2") format("woff2"), url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Regular-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-stretch: normal;
}
@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Medium.woff2") format("woff2"), url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Bold.woff2") format("woff2"), url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Display-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "GT Eesti Pro Text";
  src: url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Text-Book.woff2") format("woff2"), url("/_lib/fonts/gt-eesti-pro/GT-Eesti-Pro-Text-Book.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Zilla Slab";
  src: url("/_lib/fonts/zilla-slab/zillaslab-bold-webfont.woff2") format("woff2"), url("/_lib/fonts/zilla-slab/zillaslab-bold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Zilla Slab";
  src: url("/_lib/fonts/zilla-slab/zillaslab-bolditalic-webfont.woff2") format("woff2"), url("/_lib/fonts/zilla-slab/zillaslab-bolditalic-webfont.woff") format("woff");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Zilla Slab";
  src: url("/_lib/fonts/zilla-slab/zillaslab-light-webfont.woff2") format("woff2"), url("/_lib/fonts/zilla-slab/zillaslab-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Zilla Slab";
  src: url("/_lib/fonts/zilla-slab/zillaslab-lightitalic-webfont.woff2") format("woff2"), url("/_lib/fonts/zilla-slab/zillaslab-lightitalic-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Zilla Slab";
  src: url("/_lib/fonts/zilla-slab/zillaslab-regular-webfont.woff2") format("woff2"), url("/_lib/fonts/zilla-slab/zillaslab-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Zilla Slab";
  src: url("/_lib/fonts/zilla-slab/zillaslab-regularitalic-webfont.woff2") format("woff2"), url("/_lib/fonts/zilla-slab/zillaslab-regularitalic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Zilla Slac";
  src: url("/_lib/fonts/zilla-slab/zillaslab-mediumitalic-webfont.woff2") format("woff2"), url("/_lib/fonts/zilla-slab/zillaslab-mediumitalic-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Zilla Slac";
  src: url("/_lib/fonts/zilla-slab/zillaslab-medium-webfont.woff2") format("woff2"), url("/_lib/fonts/zilla-slab/zillaslab-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
/**
 * Asset list
 */
.asset-list__image {
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 10rem;
}

.asset-list__zoom {
  background-color: currentColor;
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.asset-list__zoom svg {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
}

.asset-list__image img {
  display: block;
  width: 100%;
}

/* Image list */
.image-asset-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% + 3rem);
}

.image-asset-list__item {
  width: calc(50% - 3rem);
  margin-bottom: 3rem;
  margin-right: 3rem;
}

.image-asset-list .asset-list__image {
  width: 100%;
}

.table--asset-list td:first-of-type {
  width: 80%;
}

.asset-list__name {
  line-height: 1.5;
}

.table--asset-list__download-audio,
.table--asset-list__visit-url {
  font-size: 1.5rem;
}

/* Small devices */
@media only screen and (max-width: 768px) {
  .table--asset-list__download-audio,
  .table--asset-list__visit-url {
    text-align: left;
  }
  .table--asset-list tr {
    display: flex;
    flex-direction: column;
  }
  .table--asset-list td:first-of-type,
  .table--asset-list td {
    width: 100%;
  }
  .table--asset-list td {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .asset-list__name p {
    font-size: 1.5rem;
  }
  .asset-list__image {
    margin-left: 0;
  }
  .image-asset-list {
    width: calc(100% + 2rem);
  }
  .image-asset-list__item {
    width: calc(50% - 2rem);
    margin-bottom: 2rem;
    margin-right: 2rem;
  }
}
/* Medium devices */
/* Large devices */
/**
 * Banner
 */
.banner {
  margin-top: -13rem;
  padding-top: 13rem;
  position: relative;
}

.banner-image {
  background-size: cover;
  background-position: top center;
  background-blend-mode: luminosity;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}

/* Small devices */
@media only screen and (max-width: 768px) {
  /* Adjusted for collapsed header/nav */
  .banner {
    margin-top: -17rem;
    padding-top: 17rem;
  }
}
/* Medium devices */
/* Large devices */
/**
 * Carousel
 */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__slide {
  width: 100%;
}

.carousel__image {
  overflow: hidden;
}

.carousel__shim {
  position: relative;
}

.carousel__shim:before {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  content: "";
}

.committee-images--portrait .carousel__shim:before {
  padding-top: 86%;
}

.carousel__shim img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translateX(-50%);
}

.committee-images--landscape .carousel__slide--full-width .carousel__shim img {
  left: -7.2rem;
  bottom: auto;
  height: auto;
  transform: none;
  width: 100vw;
}

.committee-wrapper--has-sidebar .carousel__caption {
  padding-left: 3rem;
}

.committee-images--portrait .carousel__caption {
  text-align: right;
  float: right;
}

.carousel__caption span {
  max-width: 46rem;
}

.carousel .flickity-button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 40%;
  left: 1rem;
  width: 4rem;
  height: 4rem;
}

.carousel .flickity-button.next {
  left: auto;
  right: 3rem;
}

.carousel .flickity-button > svg {
  fill: var(--color-white);
  width: 4rem;
  height: 4rem;
  opacity: 0;
  transition: opacity 150ms ease;
}

.carousel:hover .flickity-button > svg,
.carousel:focus .flickity-button > svg {
  opacity: 1;
}

.carousel .flickity-page-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 3rem;
  right: 3rem;
}

.carousel .flickity-page-dots .dot {
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0.4rem 0 rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

.carousel .flickity-page-dots .dot.is-selected {
  background-color: var(--color-white);
}

/**
 * Container
 */
.container {
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 120rem;
}

.container--small {
  padding-left: 27rem;
  padding-right: 27rem;
}

.container--small-push-right {
  padding-left: 27.5rem;
  padding-right: 7.2rem;
}

.container--medium {
  padding-left: 7.2rem;
  padding-right: 7.2rem;
}

.container .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

/* Small devices */
@media only screen and (max-width: 768px) {
  .container,
  .container--small-push-right {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
/* Medium devices */
@media only screen and (min-width: 768px) and (max-width: 1099px) {
  .container--small-push-right {
    /* Same as medium */
    padding-left: 7.2rem;
    padding-right: 7.2rem;
  }
}
/* Large devices */
/**
 * Committee
 */
.committee-wrapper {
  position: relative;
}

.committee-title {
  max-width: 68rem;
}

.committee-banner {
  padding-top: 10rem;
  padding-bottom: 14rem;
  position: relative;
}

.committee-dates {
  padding-top: 2rem;
}

.committee-wrapper--has-sidebar > .committee-overview {
  padding-right: 35%;
}

.committee-overview--with-images {
  flex-direction: column;
  position: relative;
}

.committee-scope {
  padding-top: 4.6rem;
  padding-bottom: 1.6rem;
  width: 50%;
}

.committee-scope:only-child {
  width: 100%;
}

.committee-scope__text {
  color: var(--color-grey-dark);
  font-family: var(--font-sans-display);
  font-size: 1.8rem;
  max-width: 42rem;
}

.committee-scope__text > * {
  margin-bottom: 1.4rem;
}

.committee-scope:only-child .committee-scope__text {
  max-width: 100%;
}

.committee-webpage {
  color: var(--color-grey-dark);
  text-decoration: underline;
}

.committee-chairs {
  position: relative;
  width: 50%;
}

.committee-wrapper--has-sidebar .committee-chairs {
  padding-right: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30%;
  z-index: 2;
}

.committee-overview--with-images .committee-chairs {
  margin-top: 2rem;
  padding-left: 0;
}

.committee-chairs:after {
  background-color: currentColor;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100vw;
  width: 100vw;
}

.committee-overview--with-images .committee-chairs:after {
  right: auto;
  left: -100vw;
}

.committee-chair {
  border-bottom: 1px solid currentColor;
}

.committee-wrapper--has-sidebar .committee-chair {
  padding-right: 3rem;
}

.committee-chair:first-of-type {
  border-top: 1px solid currentColor;
}

.committee-chair__state-party span:nth-of-type(2):before {
  content: ",";
  padding-right: 0.4rem;
}

.committee-wrapper--has-sidebar > .committee-sequence {
  position: relative;
  padding-right: 35%;
}

.committee-wrapper--has-sidebar > .committee-sequence:after {
  background-color: currentColor;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  width: 100vw;
}

.committee-images {
  overflow: hidden;
}

.committee-wrapper--has-sidebar > .committee-images--landscape {
  padding-right: 27%;
  margin-left: var(--offsetLeft);
}

.committee-images--portrait {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
}

.committee-dataviz {
  margin-top: -3rem; /* TODO: actually scale the element */
}

.committee-wrapper--has-sidebar > .committee-reports {
  padding-right: 35%;
}

.committee-footer {
  min-height: 15rem;
}

.committee-context {
  margin-top: 4rem;
  position: relative;
  margin-bottom: 4rem;
}

.committee-context__labels {
  align-items: center;
}

.committee-context__start,
.committee-context__end {
  width: 1px;
  background: #c99e81;
  position: absolute;
  top: -20px;
  left: 33.33%;
  bottom: 0;
}

.committee-context__end {
  left: 66.66%;
}

.committee-context__start span,
.committee-context__end span {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  transform: translateX(-50%);
  color: #94613f;
  font-size: 1.4rem;
}

.committee-context a {
  color: #333;
  display: block;
  font-size: 1.4rem;
  padding: 1.2rem 2rem;
  width: 100%;
  margin-bottom: 1px;
}

.committee-context__earlier a {
  background-image: linear-gradient(to right, rgb(255, 205, 169, 0) 0%, rgb(255, 205, 169, 1) 70%);
  text-align: right;
}

.committee-context__current a {
  background-color: #ff9b56;
  text-align: center;
}

.committee-context__later a {
  background-image: linear-gradient(to left, rgb(255, 205, 169, 0) 0%, rgb(255, 205, 169, 1) 70%);
  text-align: left;
}

.committee-context__years {
  margin-top: 30px;
  display: flex;
  height: 20px;
  position: relative;
  /* transform: scaleX(0.333333); */
  width: 33.33%;
  margin-left: auto;
  margin-right: auto;
}

.committee-context__year {
  position: absolute;
  border-left: 1px solid #c99e81;
  opacity: 0.5;
  display: block;
  width: 0;
  position: absolute;
  height: 100%;
}

.committee-context__earlier,
.committee-context__current,
.committee-context__later {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
  width: 33.3333%;
}

.committee-context__current {
  width: 33.3333%;
}

.committee .video-embed {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}

.committee .video-embed > div {
  position: relative;
  display: block;
  width: 100%;
  height: 400px;
  padding-right: 27%;
  margin-left: var(--offsetLeft);
}

.committee .video-embed iframe {
  width: 100%;
  height: 100%;
}

/* Embed iframe had this styling: */
/* style="display: block; border: 0px; margin: 0px; padding: 0px; visibility: visible; width: 100%; height: 100%;" */
/* Small devices */
@media only screen and (max-width: 768px) {
  .committee-overview {
    flex-direction: column-reverse;
  }
  .committee-chairs {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .committee-chairs:before {
    background-color: currentColor;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    width: 100vw;
  }
  .committee-wrapper--has-sidebar .committee-chairs {
    position: relative;
    width: 100%;
  }
  .committee-wrapper--has-sidebar > .committee-sequence,
  .committee-wrapper--has-sidebar > .committee-images--landscape,
  .committee-wrapper--has-sidebar > .committee-reports,
  .committee-wrapper--has-sidebar > .committee-overview,
  .committee .video-embed > div {
    padding-right: 0;
  }
  .committee-wrapper--has-sidebar > .committee-sequence:before {
    background-color: currentColor;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -100vw;
    width: 100vw;
  }
  .committee-scope,
  .committee-scope__text {
    max-width: 100%;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .committee-banner {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
  .committee-dates {
    padding-top: 1rem;
  }
}
/* Medium devices */
@media only screen and (min-width: 768px) and (max-width: 1099px) {
  .committee-banner {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
  .committee-dates {
    padding-top: 1.5rem;
  }
}
/* Large devices */
.committee-table {
  margin-top: 3rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.committee-table:last-child {
  margin-bottom: 4rem;
}

.report-images {
  flex-wrap: wrap;
}

.report-image {
  margin-right: 2rem;
  margin-bottom: 3rem;
  width: calc(33% - 2rem);
}

.report-image .report-thumbnail {
  max-width: 100%;
}

.modal-wrapper {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  overflow-y: scroll;
  height: 100%;
  top: 0;
  z-index: 1000;
}

.modal-wrapper:focus {
  outline: none;
}

.modal-wrapper > div {
  display: flex;
  width: 50%;
  max-width: 1000px;
  justify-content: center;
  flex-direction: column;
  padding: 50px;
  margin-left: auto;
  margin-right: auto;
}

.modal-wrapper iframe {
  width: 100%;
  height: 600px;
}

.modal-wrapper .modal-header {
  text-align: right;
}

.modal-wrapper .modal-header button {
  color: #fff;
  border: none;
  background: none;
  font-size: 1.4rem;
  position: relative;
}

.modal-wrapper .modal-header button:focus:before {
  border-radius: 2px;
  border: 2px solid var(--color-yellow);
  bottom: -2px;
  content: "";
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
}

.modal-wrapper img {
  width: 100%;
}

.modal-header .video-embed {
  width: 100%;
}

.modal-button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
}

.modal-text-button {
  appearance: none;
  background: none;
  border: none;
  padding: 0 0 1rem;
  font-size: 1.6rem;
}

.modal-inline {
  margin-top: 10px;
}

.modal-inline .modal-button {
  margin-right: 5px;
}

.modal-caption {
  padding-top: 2rem;
  padding-bottom: 6rem;
  font-family: var(--font-sans-display);
  font-size: 1.8rem;
  max-width: 800px;
}

.modal-caption * {
  color: #fff !important;
}

.modal-caption a {
  color: var(--color-orange-bright) !important;
}

.committee-table-caption {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.committee-table-caption--inline {
  margin-left: 2rem;
  margin-top: 0;
}

.report-object {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.report-chart-container {
  width: 100%;
  margin-bottom: 2rem;
}

.report-chart-container canvas {
  padding-top: 1rem;
}

.report-chart-container h2 {
  font-size: 2.2rem;
  font-weight: 800;
}

body .report-chart-container h3 {
  margin-bottom: 0.6rem;
}

.report-chart-container h3 a {
  color: var(--color-black);
  text-decoration: none;
}

.report-chart-container h3 a:hover,
.report-chart-container h3 a:focus {
  color: var(--color-orange-bright);
  text-decoration: underline;
}

.report-chart__link {
  margin-bottom: 3rem;
}

/* body {
  background-color: #ffe8dc;
} */
.home-container {
  padding-top: 25px;
  position: relative;
}

.content {
  position: relative;
  /* overflow: scroll; */
}

/*
#tree_legislative_and_general_purpose_standing {
  padding-top: 20px;
} */
.committee-viz--sticky-header {
  position: absolute;
  opacity: 0;
  transition: opacity 100ms;
  margin-top: 11px;
  display: flex;
  width: calc(100vw - 6rem);
  cursor: pointer;
}

.committee-viz--sticky-header__content {
  flex: 1;
  margin-right: 40px;
}

.hide-intro .committee-viz--sticky-header {
  opacity: 1;
}

.committee-viz--sticky-header h3 {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.committee-viz--sticky-header p {
  font-size: 1.4rem;
  color: var(--color-grey-dark);
}

.committee-viz--sticky-header button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-family: var(--font-sans-display);
  font-size: 1.4rem;
  padding: 0;
}

.committee-viz--sticky-header:hover button {
  text-decoration: underline;
}

.committee-viz--sticky-header button use {
  fill: #999;
}

.committee-viz--sticky-header button span {
  align-items: center;
}

.committee-viz--sticky-header__button-collapse {
  display: flex;
}

.committee-viz--sticky-header__button-expand {
  display: none;
}

.committee-viz--sticky-header--collapsed .committee-viz--sticky-header__button-collapse {
  display: none;
}

.committee-viz--sticky-header--collapsed .committee-viz--sticky-header__button-expand {
  display: flex;
}

.tree-container div .summary {
  height: 54px;
}

.tree-container div .summary rect {
  transition: fill 200ms;
}

.committee-viz--sticky-header:hover + .summary rect,
.tree-container div .summary rect:hover {
  fill: var(--color-grey-dark);
}

text.committeetext {
  text-anchor: start;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 9px;
}

text.gridtext {
  text-anchor: start;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 9px;
  fill: #667;
}

.tree-container {
  width: 3000px;
  position: relative;
  /* overflow: scroll; */
}

#grid {
  position: absolute;
  z-index: -1;
}

#grid text {
  position: sticky;
}

.committee-viz-container {
  height: calc(100vh - 109px - 91px - 25px);
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  /* width: 100%; */
  min-height: 840px;
  position: relative;
}

rect.highlighted {
  opacity: 0.8 !important;
}

.tree-info-container {
  left: 30px;
  position: fixed;
  top: 148px;
  z-index: 1000;
}

.tree-info-container p {
  /* font-size: 1.4rem; */
  /* padding: 1rem 0; */
}

.tree-description {
  background-color: #fff;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  padding: 2.2rem 2.4rem 2.6rem;
  position: relative;
  width: 55rem;
}

.hide-intro .tree-description {
  display: none;
}

.tree-description__close {
  border: none;
  background: none;
  font-family: var(--font-sans-display);
  font-size: 1.5rem;
  appearance: none;
  position: absolute;
  top: 3.4rem;
  right: 2.4rem;
  color: #757575;
  cursor: pointer;
}

.tree-description__close:hover,
.tree-description__close:focus {
  text-decoration: underline;
}

.tree-description h1 {
  color: #4a4a4a;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}

.tree-description h2 {
  color: #4a4a4a;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 2rem;
}

.tree-description p {
  color: #4a4a4a;
  font-family: var(--font-sans-display);
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.tree-description a,
.tree-description strong {
  color: var(--color-orange-dark);
}

.tree-description a {
  text-decoration: underline;
}

.tree-description a:hover,
.tree-description a:hover strong {
  color: var(--color-orange-bright);
}

.tree-description ul {
  color: #4a4a4a;
  font-family: var(--font-sans-display);
  font-size: 1.5rem;
  line-height: 1.3;
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.tree-description ul li {
  margin-bottom: 0.5rem;
}

.tree-direction {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 1rem;
  padding-top: 1.2rem;
  position: relative;
}

.tree-direction span {
  position: absolute;
  left: 0;
}

.tree-direction p {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 1.3rem 0 0 1.6rem;
}

p.tree-direction--main {
  color: #4a4a4a;
}

p.tree-direction--earlier {
  color: #f0952a;
  color: #AC610C;
}

p.tree-direction--other-types {
  color: #761200;
}

#years {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 10px;
  position: absolute;
}

.map-container {
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fbf5f1;
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 100;
  width: 220px;
  box-shadow: 0 2.6px 5.3px rgba(0, 0, 0, 0.028), 0 8.7px 17.9px rgba(0, 0, 0, 0.042), 0 39px 80px rgba(0, 0, 0, 0.07);
}

#map {
  display: block;
  width: 220px;
}

#trees {
  padding-bottom: 9rem;
  padding-top: 3rem;
}

#trees > div {
  margin-bottom: 2rem;
}

.tooltip {
  background: #fff;
  position: absolute;
  width: 180px;
}

.tooltip h2 {
  padding: 1rem;
  color: #fff;
  font-size: 1.8rem;
}

.tooltip p {
  padding: 1rem;
  color: #4b4b4b;
  font-size: 1.2rem;
}

.show-intro {
  appearance: none;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-family: var(--font-sans-display);
  font-size: 1.5rem;
  right: 30px;
  padding: 0;
  position: fixed;
  top: 78px;
  z-index: 20;
  opacity: 0;
}

.hide-intro .show-intro {
  opacity: 1;
}

.content-page {
  font-size: 1.8rem;
  line-height: 1.3;
}

.content-page p,
.content-page ul,
.content-page ol {
  margin-bottom: 1.6rem;
}

.content-page h2:not([class]) {
  font-size: 2.4rem;
  font-weight: 800;
}

.content-page h3 {
  font-size: 2.2rem;
  font-weight: 800;
}

.content-page h4,
.content-page h5,
.content-page h6 {
  font-size: 2rem;
  font-weight: 800;
}

.content-page h2:not([class]),
.content-page h3,
.content-page h4,
.content-page h5,
.content-page h6 {
  font-family: var(--font-serif);
  margin-bottom: 2rem;
}

.content-page ul {
  list-style: disc;
  padding-left: 3.3rem;
}

.content-page a {
  color: var(--color-orange-bright);
  text-decoration: underline;
}

.content-page a:hover {
  color: var(--color-orange-dark);
}

.preamble {
  margin-bottom: 3.3rem;
}

/**
 * Copy formatting
 */
.copy-formatting em {
  font-style: italic;
}

.copy-formatting strong {
  font-weight: bold;
}

.copy-formatting a {
  text-decoration: underline;
}

.copy-formatting--spacing p {
  margin-bottom: 1.6rem;
}

/**
 * Event
 */
.event-banner-image {
  background-image: url("/_lib/img/floor-map.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60rem;
  pointer-events: none;
  opacity: 0.08;
}

.event-banner {
  padding-top: 5rem;
  padding-bottom: 9rem;
  position: relative;
}

.event-banner:before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  position: absolute;
  top: -9rem;
  left: 0;
  right: 0;
  height: 56rem;
  pointer-events: none;
}

.event-year {
  position: absolute;
  top: 5rem;
  left: 3rem;
  z-index: 2;
}

.event-banner--with-image .event-year {
  padding-left: 40rem;
}

.event-committee {
  padding-top: 27rem;
  position: relative;
  z-index: 2;
}

.event-committee li {
  padding-bottom: 0.5rem;
}

.event-banner--with-image .event-committee {
  padding-left: 34rem;
}

.event-title-wrapper {
  padding-bottom: 6rem;
}

.event-title {
  position: relative;
  z-index: 2;
}

.event-banner--with-image .event-title {
  font-size: 6rem;
  padding-left: 34rem;
}

.event-subtitle {
  position: relative;
}

.event-banner--with-image .event-subtitle {
  font-size: 3.2rem;
  padding-left: 34rem;
}

.event-shim {
  padding-top: 6rem;
}

.event-intro {
  font-size: 2.4rem;
  line-height: 1.5;
  max-width: 65rem;
  position: relative;
  z-index: 2;
}

.event-intro a {
  color: var(--color-white);
}

.event-image {
  background-color: var(--color-cream-dark);
  border-radius: 50%;
  width: 54rem;
  height: 54rem;
  position: absolute;
  top: 6rem;
  left: 3rem;
  overflow: hidden;
  z-index: 1;
}

.event-image img {
  display: block;
  width: 100%;
}

.event-body {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.event-body > p {
  color: var(--color-grey-dark);
  font-family: var(--font-sans-display);
  font-size: 1.8rem;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.4rem;
  max-width: 65rem;
}

.event-body > p:last-of-type {
  padding-bottom: 0;
}

.event-body > blockquote {
  border-left: 3px solid var(--color-grey-dark);
  color: var(--color-grey-dark);
  font-family: var(--font-sans-display);
  font-size: 2rem;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.4rem;
  padding-left: 2.4rem;
  max-width: 65rem;
}

.event-body > h1 {
  color: var(--color-purple);
  font-family: var(--font-sans-display);
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  padding-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
  text-transform: uppercase;
}

.event-body > ul,
.event-body > ol {
  color: var(--color-grey-dark);
  font-family: var(--font-sans-display);
  font-size: 1.8rem;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
  padding-bottom: 2.4rem;
  max-width: 65rem;
}

.event-body > ul li {
  display: list-item;
  list-style: disc;
  padding-bottom: 0.8rem;
}

.event-body > ol li {
  display: list-item;
  list-style: decimal;
  padding-bottom: 0.8rem;
}

/* Small devices */
@media only screen and (max-width: 768px) {
  .event-body {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  /* Adjusting event banner and background heights */
  .event-banner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .event-banner-image {
    background-position: center;
    height: 33rem;
  }
  .event-banner:before {
    height: 29.5rem;
    top: -13.5rem;
  }
  .event-image {
    height: 16rem;
    left: 2rem;
    top: 4rem;
    width: 16rem;
  }
  /* Event shim */
  .event-shim {
    padding-top: 4rem;
  }
  /* Event year */
  .event-year {
    left: auto;
    padding-left: 0rem;
    padding-right: 13rem;
    position: relative;
    top: auto;
  }
  .event-banner--with-image .event-year {
    padding-left: 13rem;
  }
  /* Event committee */
  .event-committee {
    padding-top: 0rem;
  }
  .event-committee li:first-child {
    padding-top: 1.2rem;
  }
  .event-banner--with-image .event-committee {
    padding-left: 0rem;
  }
  .event-title-wrapper {
    padding-bottom: 4rem;
  }
  /* Event title */
  .event-title,
  .event-banner--with-image .event-title {
    font-size: 3rem;
  }
  .event-banner--with-image .event-title {
    padding-left: 0rem;
  }
  /* Event subtitle */
  .event-subtitle,
  .event-banner--with-image .event-subtitle {
    font-size: 2rem;
    padding-left: 0rem;
  }
  /* Event intro */
  .event-intro {
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 100%;
  }
  .event-body > p {
    font-size: 1.5rem;
  }
}
/* Medium devices */
@media only screen and (min-width: 768px) and (max-width: 1099px) {
  /* Adjusting event banner and background heights */
  .event-banner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .event-banner-image {
    background-position: center;
    height: 40rem;
  }
  .event-banner:before {
    height: 36rem;
  }
  .event-image {
    height: 30rem;
    width: 30rem;
    top: 4rem;
  }
  /* Event shim */
  .event-shim {
    padding-top: 4rem;
  }
  /* Event year */
  .event-year {
    left: auto;
    padding-left: 0rem;
    padding-right: 20rem;
    position: relative;
    top: auto;
  }
  .event-banner--with-image .event-year {
    padding-left: 20rem;
  }
  /* Event committee */
  .event-committee {
    padding-top: 0rem;
  }
  .event-committee li:first-child {
    padding-top: 1.2rem;
  }
  .event-banner--with-image .event-committee {
    padding-left: 0rem;
  }
  .event-title-wrapper {
    padding-bottom: 3rem;
  }
  /* Event title */
  .event-title,
  .event-banner--with-image .event-title {
    font-size: 4.5rem;
  }
  .event-banner--with-image .event-title {
    padding-left: 0rem;
  }
  /* Event subtitle */
  .event-subtitle,
  .event-banner--with-image .event-subtitle {
    font-size: 2.4rem;
    padding-left: 0rem;
  }
  /* Event intro */
  .event-intro {
    font-size: 1.8rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.event__nav {
  padding-left: 3rem;
  padding-right: 3rem;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1100px) {
  .event__nav {
    height: 0;
    margin-top: -43px;
  }
}
.event__nav .span {
  background-color: #78587c;
  color: #fff;
  display: block;
  font-family: var(--font-slab);
  font-feature-settings: lnum;
  font-size: 2.6rem;
  font-weight: 500;
  padding: 0.2rem 0.8rem;
  text-transform: uppercase;
  transition: box-shadow 150ms ease;
}

.event__nav a {
  text-decoration: none;
}

.event__nav a:hover .span,
.event__nav a:focus .span {
  box-shadow: 0 0.2rem 0.4rem rgba(120, 88, 124, 0.5);
}

.event__nav a:hover p,
.event__nav a:focus p {
  text-decoration: underline;
}

.event__nav p {
  color: #78587c;
  font-family: var(--font-sans-display);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 0.6rem;
}

.event__prev,
.event__next {
  max-width: 224px;
}

.event__prev {
  float: left;
}

.event__next {
  float: right;
  text-align: right;
}

/**
 * Fade in
 */
.fade-in {
  animation: fade-in 800ms cubic-bezier(0.175, 0.885, 0.32, 1) 1 forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * Figure
 */
.figure--image {
  background-color: #f2dcd0;
  display: flex;
  padding: 8rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.figure__image {
  appearance: none;
  border: none;
  background: none;
  display: block;
  position: relative;
  max-width: 100%;
  padding: 0;
}

.figure__image img {
  display: block;
  width: 100%;
}

.figure__zoom {
  background-color: currentColor;
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.figure__zoom svg {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
}

.figure--right-aligned {
  display: block;
  float: right;
  padding: 4rem;
  margin: 1rem -4rem 6rem 6rem;
  width: 40rem;
}

.figure--left-aligned {
  display: block;
  float: left;
  padding: 4rem;
  margin: 1rem 6rem 6rem -4rem;
  width: 40rem;
}

.figure--image img {
  display: block;
  max-width: 100%;
}

.figure--image .figure__object {
  width: 45%;
}

.figure--right-aligned .figure__object,
.figure--left-aligned .figure__object {
  width: 100%;
}

.figure__credit {
  color: var(--color-grey);
  font-family: var(--font-sans-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  padding-top: 1rem;
  text-transform: uppercase;
}

.figure--right-aligned .figure__credit,
.figure--left-aligned .figure__credit {
  margin-bottom: 3rem;
}

.figure--image .figure__caption {
  padding-left: 8rem;
  width: 55%;
}

.figure--right-aligned .figure__caption,
.figure--left-aligned .figure__caption {
  width: 100%;
  padding-left: 0;
}

.figure__caption h1 {
  font-family: var(--font-sans-display);
  font-size: 3rem;
  padding-bottom: 2.6rem;
}

.figure__caption p {
  color: var(--color-grey-dark);
  font-family: var(--font-sans-display);
  font-size: 1.8rem;
  line-height: 1.4;
  padding-bottom: 2rem;
}

.figure__caption p:last-of-type {
  padding-bottom: 0;
}

.figure__caption h1 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 1.6rem;
}

/* Small devices */
@media only screen and (max-width: 768px) {
  .figure--image,
  .figure--right-aligned,
  .figure--left-aligned {
    float: none;
    padding: 2rem;
    margin: 3rem 0;
    width: 100%;
    flex-direction: column;
  }
  .figure__credit,
  .figure--right-aligned .figure__credit,
  .figure--left-aligned .figure__credit {
    margin-bottom: 1rem;
  }
  .figure--image .figure__object,
  .figure--image .figure__caption {
    width: 100%;
    padding-left: 0;
  }
  .figure__object {
    padding-bottom: 1rem;
  }
  .figure__caption h1 {
    font-size: 2rem;
    padding-bottom: 2rem;
  }
  .figure__caption p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
/* Medium devices */
@media only screen and (min-width: 768px) and (max-width: 1099px) {
  .figure--image {
    padding: 4rem;
  }
  .figure--right-aligned,
  .figure--left-aligned {
    padding: 2rem;
  }
  .figure--right-aligned {
    margin: 1rem -2rem 4rem 4rem;
  }
  .figure--left-aligned {
    margin: 1rem 4rem 4rem -2rem;
  }
  .figure__object {
    width: 40%;
  }
  .figure--image .figure__caption {
    padding-left: 4rem;
    width: 60%;
  }
  .figure--right-aligned .figure__object,
  .figure--left-aligned .figure__object,
  .figure--right-aligned .figure__caption,
  .figure--left-aligned .figure__caption {
    width: 100%;
    padding-left: 0;
  }
}
/* Large devices */
/*@use "fonts";*/
/**
 * Footer
 */
.footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-about {
  color: var(--color-grey-light);
  font-family: var(--font-sans);
  font-weight: 300;
  text-transform: uppercase;
}

.footer-copyright {
  font-size: 1.4rem;
  padding-bottom: 1rem;
}

.footer-produced {
  font-size: 1.2rem;
}

.footer-nav__item {
  padding-right: 6.4rem;
}

.footer-nav__item:last-of-type {
  padding-right: 0;
}

.footer-nav__anchor {
  color: var(--color-grey-light);
  font-size: 1.4rem;
  font-family: var(--font-sans);
}

/* Small devices */
@media only screen and (max-width: 768px) {
  .footer-nav {
    padding-top: 3rem;
    margin-left: 0;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav__item {
    padding-right: 2.5rem;
  }
}
/* Medium devices */
/* Large devices */
/**
 * Lightbox
 */
.lightbox {
  display: none;
}

.lightbox--open {
  display: block;
}

.lightbox__mask {
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}

.lightbox__close {
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 10rem;
  z-index: 1;
}

.lightbox__close:focus {
  outline: none;
}

.lightbox__close:focus:before {
  border-radius: 2px;
  border: 2px solid var(--color-yellow);
  bottom: 17px;
  content: "";
  left: 0;
  position: absolute;
  right: 7px;
  top: 7px;
}

.lightbox__close svg {
  width: 4rem;
  height: 4rem;
}

.lightbox__content {
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 100%;
}

.lightbox__image {
  flex: 1 1 0%;
  position: relative;
}

.lightbox__content img {
  position: absolute;
  top: 6rem;
  bottom: 0;
  height: calc(100% - 6rem);
  max-width: none;
  transform: translateX(-50%);
}

.lightbox__caption {
  flex: none;
  padding-top: 2rem;
  padding-bottom: 6rem;
  font-family: var(--font-sans-display);
  font-size: 1.8rem;
  max-width: 800px;
}

.lightbox__caption * {
  color: #fff !important;
}

.lightbox__content a {
  color: var(--color-orange-bright) !important;
}

/**
 * Masthead
 */
.masthead {
  padding-top: 3.5rem;
  position: relative;
  width: 100%;
  z-index: 20;
}

@media only screen and (max-height: 874px) {
  .masthead {
    padding-top: 2rem;
  }
}
.masthead-logo {
  width: 16.1rem;
  height: 5.6rem;
}

.theme--select .masthead-logo path,
.theme--estimates .masthead-logo path,
.theme--economics .masthead-logo path,
.theme--legislative-and-general-purpose-standing .masthead-logo path,
.theme--legislative-scrutiny .masthead-logo path,
.theme--legislation .masthead-logo path {
  fill: var(--color-white);
  mix-blend-mode: normal !important;
}

/* Small devices */
@media only screen and (max-width: 768px) {
  /* Stacking masthead */
  .masthead {
    padding-top: 2rem;
    flex-direction: column;
  }
}
/* Medium devices */
/* Large devices */
/**
 * Nav
 */
.nav {
  padding-left: 15.8rem;
}

.nav__item {
  padding-right: 4.8rem;
}

.nav__item:last-of-type {
  padding-right: 0;
}

.nav__anchor {
  color: var(--color-black);
  display: inline;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
}

button.nav__anchor {
  border: none;
  background: transparent;
  line-height: 1.4;
  position: relative;
  top: 1px;
}

span.nav__anchor {
  cursor: default;
}

.nav__dropdown {
  display: none;
  margin-top: 1rem;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
}

.nav__dropdown__item .nav__anchor {
  color: #fff;
}

.nav__dropdown--open,
.nav__dropdown:hover {
  display: block;
}

.nav__dropdown__item .nav__anchor {
  padding: 0.5rem 1.4rem;
  display: block;
}

.nav__dropdown__item:first-child .nav__anchor {
  padding-top: 1.2rem;
}

.nav__dropdown__item:last-child .nav__anchor {
  padding-bottom: 1.4rem;
}

.nav__dropdown-parent:hover .nav__dropdown,
.nav__dropdown-parent:focus .nav__dropdown {
  display: block;
}

.theme--select .nav__anchor,
.theme--estimates .nav__anchor,
.theme--economics .nav__anchor,
.theme--legislative-and-general-purpose-standing .nav__anchor,
.theme--legislative-scrutiny .nav__anchor,
.theme--legislation .nav__anchor {
  color: var(--color-white);
}

/* Small devices */
@media only screen and (max-width: 768px) {
  .nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
    padding-left: 0;
    padding-top: 2rem;
  }
  .theme--select .nav,
  .theme--estimates .nav,
  .theme--economics .nav,
  .theme--legislative-and-general-purpose-standing .nav,
  .theme--legislative-scrutiny .nav,
  .theme--legislation .nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__item {
    padding-right: 2.5rem;
  }
  .nav__item:last-of-type {
    padding-right: 0;
  }
  .nav__anchor {
    font-size: 1.5rem;
  }
}
/* Medium devices */
@media only screen and (min-width: 768px) and (max-width: 1099px) {
  .nav {
    padding-left: 8rem;
  }
  .nav__item {
    padding-right: 4rem;
  }
}
/* Large devices */
/**
 * Skip links
 */
a.skip-link {
  box-sizing: border-box;
  background-color: var(--color-cream);
  color: var(--color-black);
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  padding: 1.6rem;
  position: absolute;
  top: -10rem;
  width: 100%;
  opacity: 0;
  transition: none;
  z-index: 100;
}

a.skip-link:focus {
  border: 1px dotted var(--color-orange);
  top: 0;
  opacity: 1;
}

/**
 * Table
 */
.table {
  width: 100%;
}

.table tr {
  border-bottom: 1px solid currentColor;
}

.table--asset-list tr {
  border-bottom: 1px solid #cfad91;
}

.table th {
  font-family: var(--font-sans-display);
  font-size: 1.2rem;
  font-weight: 500; /* Medium */
  letter-spacing: 0.1em;
  padding-bottom: 1rem;
  text-align: left;
  text-transform: uppercase;
}

.table td,
.table th {
  line-height: 1.2;
  padding: 1.6rem 1.2rem;
}

.table td {
  color: var(--color-grey-dark);
  font-family: var(--font-sans-display);
  font-size: 1.8rem;
  vertical-align: top;
}

.table--reports td:first-of-type {
  width: 16%;
}

.table .table-cell-center {
  text-align: center;
}

.table .table-cell-vertical-middle {
  vertical-align: middle;
}

/* Small devices */
@media only screen and (max-width: 768px) {
  .table td {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
/* Medium devices */
/* Large devices */
/**
 * Theme
 */
/**
 * Committees
 */
.theme--select .theme--committee-banner {
  background-color: var(--color-red);
}

.theme--select .theme--committee-title {
  color: var(--color-orange);
}

.theme--select .theme--committee-dates {
  color: var(--color-orange);
}

.theme--select .theme--committee-scope {
  color: var(--color-orange);
}

.theme--select .theme--committee-carousel {
  background-color: var(--color-orange);
}

.theme--select .theme--committee-sequence {
  color: var(--color-orange);
}

.theme--select .theme--committee-table-heading {
  color: var(--color-red);
}

.theme--select .theme--chairs-background {
  color: var(--color-red);
}

.theme--select .theme--chair {
  color: var(--color-yellow);
}

.theme--select .theme--chairs {
  background-color: var(--color-red);
}

.theme--select .theme--chair-name {
  color: var(--color-yellow);
}

.theme--select .theme--chairs-heading {
  color: var(--color-yellow);
}

.theme--select .theme--committee-reports {
  color: var(--color-red);
}

.theme--select .theme--committee-footer {
  background-color: var(--color-red);
}

.theme--domestic .theme--committee-banner {
  background-color: var(--color-orange);
}

.theme--domestic .theme--committee-title {
  color: var(--color-red);
}

.theme--domestic .theme--committee-dates {
  color: var(--color-red);
}

.theme--domestic .theme--committee-scope {
  color: var(--color-red);
}

.theme--domestic .theme--committee-carousel {
  background-color: var(--color-red);
}

.theme--domestic .theme--committee-sequence {
  color: var(--color-red);
}

.theme--domestic .theme--committee-table-heading {
  color: var(--color-orange);
}

.theme--domestic .theme--chairs-background {
  color: var(--color-orange);
}

.theme--domestic .theme--chair {
  color: var(--color-red);
}

.theme--domestic .theme--chairs {
  background-color: var(--color-orange);
}

.theme--domestic .theme--chair-name {
  color: var(--color-red);
}

.theme--domestic .theme--chairs-heading {
  color: var(--color-red);
}

.theme--domestic .theme--committee-reports {
  color: var(--color-orange);
}

.theme--domestic .theme--committee-footer {
  background-color: var(--color-orange);
}

.theme--estimates .theme--committee-banner {
  background-color: var(--color-purple);
}

.theme--estimates .theme--committee-title {
  color: var(--color-white);
}

.theme--estimates .theme--committee-dates {
  color: var(--color-cream-dark);
}

.theme--estimates .theme--committee-scope {
  color: var(--color-blue-dark);
}

.theme--estimates .theme--committee-carousel {
  background-color: var(--color-purple);
}

.theme--estimates .theme--committee-sequence {
  color: var(--color-blue-dark);
}

.theme--estimates .theme--committee-table-heading {
  color: var(--color-blue-dark);
}

.theme--estimates .theme--chairs-background {
  color: var(--color-blue-dark);
}

.theme--estimates .theme--chair {
  color: var(--color-white);
}

.theme--estimates .theme--chairs {
  background-color: var(--color-blue-dark);
}

.theme--estimates .theme--chair-name {
  color: var(--color-white);
}

.theme--estimates .theme--chairs-heading {
  color: var(--color-white);
}

.theme--estimates .theme--committee-reports {
  color: var(--color-blue-dark);
}

.theme--estimates .theme--committee-footer {
  background-color: var(--color-purple);
}

.theme--economics .theme--committee-banner {
  background-color: var(--color-orange-bright);
}

.theme--economics .theme--committee-title {
  color: var(--color-white);
}

.theme--economics .theme--committee-dates {
  color: var(--color-cream-dark);
}

.theme--economics .theme--committee-scope {
  color: var(--color-yellow);
}

.theme--economics .theme--committee-carousel {
  background-color: var(--color-orange-bright);
}

.theme--economics .theme--committee-sequence {
  color: var(--color-yellow);
}

.theme--economics .theme--committee-table-heading {
  color: var(--color-yellow);
}

.theme--economics .theme--chairs-background {
  color: var(--color-yellow);
}

.theme--economics .theme--chair {
  color: var(--color-white);
}

.theme--economics .theme--chairs {
  background-color: var(--color-yellow);
}

.theme--economics .theme--chair-name {
  color: var(--color-cream-dark);
}

.theme--economics .theme--chairs-heading {
  color: var(--color-white);
}

.theme--economics .theme--committee-reports {
  color: var(--color-yellow);
}

.theme--economics .theme--committee-footer {
  background-color: var(--color-orange-bright);
}

.theme--references .theme--committee-banner {
  background-color: var(--color-yellow);
}

.theme--references .theme--committee-title {
  color: var(--color-white);
}

.theme--references .theme--committee-dates {
  color: var(--color-cream-dark);
}

.theme--references .theme--committee-scope {
  color: var(--color-orange-bright);
}

.theme--references .theme--committee-carousel {
  background-color: var(--color-yellow);
}

.theme--references .theme--committee-sequence {
  color: var(--color-orange-bright);
}

.theme--references .theme--committee-table-heading {
  color: var(--color-orange-bright);
}

.theme--references .theme--chairs-background {
  color: var(--color-orange-bright);
}

.theme--references .theme--chair {
  color: var(--color-white);
}

.theme--references .theme--chairs {
  background-color: var(--color-orange-bright);
}

.theme--references .theme--chair-name {
  color: var(--color-cream-dark);
}

.theme--references .theme--chairs-heading {
  color: var(--color-white);
}

.theme--references .theme--committee-reports {
  color: var(--color-orange-bright);
}

.theme--references .theme--committee-footer {
  background-color: var(--color-yellow);
}

.theme--legislative-and-general-purpose-standing .theme--committee-banner {
  background-color: var(--color-blue-dark);
}

.theme--legislative-and-general-purpose-standing .theme--committee-title {
  color: var(--color-white);
}

.theme--legislative-and-general-purpose-standing .theme--committee-dates {
  color: var(--color-cream-dark);
}

.theme--legislative-and-general-purpose-standing .theme--committee-scope {
  color: var(--color-purple);
}

.theme--legislative-and-general-purpose-standing .theme--committee-carousel {
  background-color: var(--color-blue-darkest);
}

.theme--legislative-and-general-purpose-standing .theme--committee-sequence {
  color: var(--color-purple);
}

.theme--legislative-and-general-purpose-standing .theme--committee-table-heading {
  color: var(--color-purple);
}

.theme--legislative-and-general-purpose-standing .theme--chairs-background {
  color: var(--color-purple);
}

.theme--legislative-and-general-purpose-standing .theme--chair {
  color: var(--color-white);
}

.theme--legislative-and-general-purpose-standing .theme--chairs {
  background-color: var(--color-purple);
}

.theme--legislative-and-general-purpose-standing .theme--chair-name {
  color: var(--color-cream-dark);
}

.theme--legislative-and-general-purpose-standing .theme--chairs-heading {
  color: var(--color-white);
}

.theme--legislative-and-general-purpose-standing .theme--committee-reports {
  color: var(--color-purple);
}

.theme--legislative-and-general-purpose-standing .theme--committee-footer {
  background-color: var(--color-blue-dark);
}

.theme--legislative-scrutiny .theme--committee-banner {
  background-color: var(--color-blue-dark);
}

.theme--legislative-scrutiny .theme--committee-title {
  color: var(--color-white);
}

.theme--legislative-scrutiny .theme--committee-dates {
  color: var(--color-cream-dark);
}

.theme--legislative-scrutiny .theme--committee-scope {
  color: var(--color-purple);
}

.theme--legislative-scrutiny .theme--committee-carousel {
  background-color: var(--color-blue-darkest);
}

.theme--legislative-scrutiny .theme--committee-sequence {
  color: var(--color-purple);
}

.theme--legislative-scrutiny .theme--committee-table-heading {
  color: var(--color-purple);
}

.theme--legislative-scrutiny .theme--chairs-background {
  color: var(--color-purple);
}

.theme--legislative-scrutiny .theme--chair {
  color: var(--color-white);
}

.theme--legislative-scrutiny .theme--chairs {
  background-color: var(--color-purple);
}

.theme--legislative-scrutiny .theme--chair-name {
  color: var(--color-cream-dark);
}

.theme--legislative-scrutiny .theme--chairs-heading {
  color: var(--color-white);
}

.theme--legislative-scrutiny .theme--committee-reports {
  color: var(--color-purple);
}

.theme--legislative-scrutiny .theme--committee-footer {
  background-color: var(--color-blue-dark);
}

.theme--legislation .theme--committee-banner {
  background-color: var(--color-blue-dark);
}

.theme--legislation .theme--committee-title {
  color: var(--color-white);
}

.theme--legislation .theme--committee-dates {
  color: var(--color-cream-dark);
}

.theme--legislation .theme--committee-scope {
  color: var(--color-purple);
}

.theme--legislation .theme--committee-carousel {
  background-color: var(--color-blue-darkest);
}

.theme--legislation .theme--committee-sequence {
  color: var(--color-purple);
}

.theme--legislation .theme--committee-table-heading {
  color: var(--color-purple);
}

.theme--legislation .theme--chairs-background {
  color: var(--color-purple);
}

.theme--legislation .theme--chair {
  color: var(--color-white);
}

.theme--legislation .theme--chairs {
  background-color: var(--color-purple);
}

.theme--legislation .theme--chair-name {
  color: var(--color-cream-dark);
}

.theme--legislation .theme--chairs-heading {
  color: var(--color-white);
}

.theme--legislation .theme--committee-reports {
  color: var(--color-purple);
}

.theme--legislation .theme--committee-footer {
  background-color: var(--color-blue-dark);
}

.theme--committee-title.copy-formatting a {
  color: currentColor;
}

/**
 * Events
 */
.theme--domestic .theme--event-banner {
  background-color: var(--color-orange);
}

.theme--domestic .theme--event-years,
.theme--domestic .theme--event-committee {
  color: var(--color-white);
}

.theme--domestic .theme--event-name,
.theme--domestic .theme--event-subtitle,
.theme--domestic .theme--event-intro {
  color: var(--color-cream-dark);
}

.theme--domestic .asset-list__image,
.theme--domestic .theme--event-body h1,
.theme--domestic .theme--event-body th,
.theme--domestic .theme--event-body td a,
.theme--domestic .theme--event-body td button {
  color: var(--color-red);
}

.theme--select .theme--event-banner {
  background-color: var(--color-red);
}

.theme--select .theme--event-years,
.theme--select .theme--event-committee {
  color: var(--color-white);
}

.theme--select .theme--event-name,
.theme--select .theme--event-subtitle,
.theme--select .theme--event-intro {
  color: var(--color-cream-dark);
}

.theme--select .asset-list__image,
.theme--select .theme--event-body h1,
.theme--select .theme--event-body th,
.theme--select .theme--event-body td a,
.theme--select .theme--event-body td button {
  color: var(--color-orange);
}

.theme--estimates .theme--event-banner {
  background-color: var(--color-purple);
}

.theme--estimates .theme--event-years,
.theme--estimates .theme--event-committee {
  color: var(--color-white);
}

.theme--estimates .theme--event-name,
.theme--estimates .theme--event-subtitle,
.theme--estimates .theme--event-intro {
  color: var(--color-cream-dark);
}

.theme--estimates .asset-list__image,
.theme--estimates .theme--event-body h1,
.theme--estimates .theme--event-body th,
.theme--estimates .theme--event-body td a,
.theme--estimates .theme--event-body td button {
  color: var(--color-blue);
}

.theme--economics .theme--event-banner {
  background-color: var(--color-orange-bright);
}

.theme--economics .theme--event-years,
.theme--economics .theme--event-committee {
  color: var(--color-white);
}

.theme--economics .theme--event-name,
.theme--economics .theme--event-subtitle,
.theme--economics .theme--event-intro {
  color: var(--color-cream-dark);
}

.theme--economics .asset-list__image,
.theme--economics .theme--event-body h1,
.theme--economics .theme--event-body th,
.theme--economics .theme--event-body td a,
.theme--economics .theme--event-body td button {
  color: var(--color-yellow);
}

.theme--references .theme--event-banner {
  background-color: var(--color-yellow);
}

.theme--references .theme--event-years,
.theme--references .theme--event-committee {
  color: var(--color-white);
}

.theme--references .theme--event-name,
.theme--references .theme--event-subtitle,
.theme--references .theme--event-intro {
  color: var(--color-cream-dark);
}

.theme--references .asset-list__image,
.theme--references .theme--event-body h1,
.theme--references .theme--event-body th,
.theme--references .theme--event-body td a,
.theme--references .theme--event-body td button {
  color: var(--color-orange-bright);
}

.theme--legislative-and-general-purpose-standing .theme--event-banner {
  background-color: var(--color-blue-dark);
}

.theme--legislative-and-general-purpose-standing .theme--event-years,
.theme--legislative-and-general-purpose-standing .theme--event-committee {
  color: var(--color-white);
}

.theme--legislative-and-general-purpose-standing .theme--event-name,
.theme--legislative-and-general-purpose-standing .theme--event-subtitle,
.theme--legislative-and-general-purpose-standing .theme--event-intro {
  color: var(--color-cream-dark);
}

.theme--legislative-and-general-purpose-standing .asset-list__image,
.theme--legislative-and-general-purpose-standing .theme--event-body h1,
.theme--legislative-and-general-purpose-standing .theme--event-body th,
.theme--legislative-and-general-purpose-standing .theme--event-body td a,
.theme--legislative-and-general-purpose-standing .theme--event-body td button {
  color: var(--color-purple);
}

.theme--legislative-scrutiny .theme--event-banner {
  background-color: var(--color-blue);
}

.theme--legislative-scrutiny .theme--event-years,
.theme--legislative-scrutiny .theme--event-committee {
  color: var(--color-white);
}

.theme--legislative-scrutiny .theme--event-name,
.theme--legislative-scrutiny .theme--event-subtitle,
.theme--legislative-scrutiny .theme--event-intro {
  color: var(--color-cream-dark);
}

.theme--legislative-scrutiny .asset-list__image,
.theme--legislative-scrutiny .theme--event-body h1,
.theme--legislative-scrutiny .theme--event-body th,
.theme--legislative-scrutiny .theme--event-body td a,
.theme--legislative-scrutiny .theme--event-body td button {
  color: var(--color-purple);
}

.theme--legislation .theme--event-banner {
  background-color: var(--color-blue-light);
}

.theme--legislation .theme--event-years,
.theme--legislation .theme--event-committee {
  color: var(--color-white);
}

.theme--legislation .theme--event-name,
.theme--legislation .theme--event-subtitle,
.theme--legislation .theme--event-intro {
  color: var(--color-cream-dark);
}

.theme--legislation .asset-list__image,
.theme--legislation .theme--event-body h1,
.theme--legislation .theme--event-body th,
.theme--legislation .theme--event-body td a,
.theme--legislation .theme--event-body td button {
  color: var(--color-purple);
}

/**
       * Timeline
       */
.timeline {
  display: flex;
  flex-wrap: nowrap;
  overflow-y: hidden;
  height: calc(100vh - 9.1rem);
  background-color: rgb(255, 245, 240);
  min-height: 72rem;
}

@media only screen and (max-height: 874px) {
  .timeline {
    height: calc(100vh - 9.1rem + 1.5rem);
  }
}
.timeline__events,
.timeline__milestones {
  height: calc(100% - 2rem);
  pointer-events: none;
}

.timeline__events a,
.timeline__milestones a {
  pointer-events: all;
}

.timeline__contents {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  position: relative;
  max-height: 100%;
}

.timeline__bg-fill {
  position: absolute;
  top: 0; /* If needed can negative value this to push into the nav */
  bottom: 0;
  right: 0;
}

.timeline__intro {
  background-color: #fff;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  padding: 3.5rem 3.5rem 5rem;
  width: 45rem;
}

.timeline__intro h1 {
  color: #4a4a4a;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  padding-bottom: 1rem;
}

.timeline__intro h2 {
  color: #4a4a4a;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
  padding-bottom: 3rem;
}

.timeline__intro p {
  color: #4a4a4a;
  font-family: var(--font-sans-display);
  font-size: 1.6rem;
  line-height: 1.4;
}

.timeline__line {
  position: relative;
  width: calc(100% - 45rem);
}

.timeline__label {
  position: absolute;
  left: 9rem;
  width: 32rem;
}

.timeline__label--milestones {
  top: 5.5rem;
  width: 38rem;
}

.timeline__label--events {
  top: -16rem;
}

.timeline__label--total {
  top: auto;
  left: 46rem;
  bottom: 2.4rem;
  width: auto;
}

.timeline__label h3 {
  color: #906955;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 200;
  padding-bottom: 1rem;
}

.timeline__label p {
  color: #906955;
  font-family: var(--font-sans-display);
  font-size: 1.6rem;
  line-height: 1.4;
}

.timeline__years {
  background-color: #dcbcab;
  display: flex;
  height: 2.4rem;
  margin-left: 1rem;
  position: relative;
}

.timeline__years:before {
  background-image: linear-gradient(to right, #fff7f3, #dcbcab);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40rem;
}

.timeline__year {
  color: #fff7f3;
  display: block;
  font-family: var(--font-slab);
  font-feature-settings: lnum;
  font-size: 3.2rem;
  font-weight: 500;
  position: absolute;
  text-transform: uppercase;
  top: -0.4rem;
  line-height: 1;
}

.timeline__year--gap {
  background-color: #fbf5f1;
  color: #dcbcab;
  padding-right: 10px;
  padding-left: 10px;
}

.timeline__year--gap:before,
.timeline__year--gap:after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #dcbcab;
  top: -8px;
  bottom: -8px;
}

.timeline__year--gap:before {
  margin-left: -15px;
  right: 100%;
}

.timeline__year--gap:after {
  margin-right: -15px;
  left: 100%;
}

.timeline__milestones {
  position: absolute;
  top: 0;
  left: 62rem;
  bottom: 0;
  right: 0;
}

.timeline__milestone {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
}

.timeline__milestone a {
  display: block;
  color: #fff;
}

.timeline__milestone a:hover,
.timeline__milestone a:focus {
  text-decoration: none;
}

.timeline__milestone-image {
  background-color: #dab8de;
  transition: background-color 150ms ease, box-shadow 150ms ease;
  position: relative;
}

.timeline__milestone-image:focus:before {
  content: "";
  border-radius: 2px;
  border: 2px solid var(--color-blue-light);
  position: absolute;
  top: -4px;
  bottom: -4px;
  right: -4px;
  left: -4px;
}

.timeline__milestone-image--right {
  margin-left: auto;
}

.timeline__milestone-image img {
  display: block;
  mix-blend-mode: multiply;
  max-width: 100%;
  transition: mix-blend-mode 150ms ease;
}

.timeline__milestone .span {
  background-color: #78587c;
  color: #fff;
  display: block;
  font-family: var(--font-slab);
  font-feature-settings: lnum;
  font-size: 2.6rem;
  font-weight: 500;
  padding: 0.2rem 0.8rem;
  text-transform: uppercase;
  transition: box-shadow 150ms ease;
  position: relative;
}

@media only screen and (max-height: 874px) {
  .timeline__milestone .span {
    font-size: 2rem;
  }
}
.timeline__milestone a:hover .span {
  box-shadow: 0 0.2rem 0.4rem rgba(120, 88, 124, 0.5);
}

.timeline__milestone a:focus .span:before {
  content: "";
  border-radius: 2px;
  border: 2px solid var(--color-blue-light);
  position: absolute;
  top: -4px;
  bottom: -4px;
  right: -4px;
  left: -4px;
}

.timeline__milestone p {
  color: #78587c;
  font-family: var(--font-sans-display);
  font-size: 1.5rem;
  line-height: 1.1;
  margin-top: 0.4rem;
}

.timeline__events {
  position: absolute;
  top: 0;
  left: 62rem;
  bottom: 0;
  right: 0;
}

.timeline__event {
  position: absolute;
  top: 0;
  left: 0;
}

.timeline__event--with-image {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #af1d35;
  border-radius: 0.7rem;
  background-blend-mode: multiply;
  overflow: hidden;
  width: 30rem;
}

.timeline__event--with-image a {
  display: flex;
  flex-direction: column;
}

a:focus .timeline__event--with-image:before {
  content: "";
  border-radius: 2px;
  border: 2px solid var(--color-blue-light);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.timeline__event a {
  color: #af1d35;
  display: flex;
  position: relative;
}

.timeline__event a:hover {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 150ms ease;
}

.timeline__event a:focus {
  color: #4a4a4a;
  outline: none;
  text-decoration: none;
  transition: color 150ms ease;
}

.timeline__event a:focus:after {
  content: "";
  border-radius: 2px;
  border: 2px solid var(--color-blue-light);
  position: absolute;
  top: -4px;
  bottom: -4px;
  right: -4px;
  left: -4px;
}

.timeline__event a:before {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0.4rem;
  left: -2.8rem;
  width: 2.2rem;
  height: 2.2rem;
  z-index: 2;
}

.timeline__event span {
  display: block;
  font-family: var(--font-slab);
  font-size: 3rem;
  font-weight: 500;
  text-transform: uppercase;
  padding-right: 1rem;
}

@media only screen and (max-height: 874px) {
  .timeline__event span {
    font-size: 2rem;
  }
}
.timeline__event--with-image span:before {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 1.4rem;
  width: 2.2rem;
  height: 2.2rem;
  z-index: 2;
  left: 1.2rem;
}

@media only screen and (max-height: 874px) {
  .timeline__event--with-image span:before {
    top: 0.8rem;
  }
}
.timeline__event--with-image span {
  color: #f2dcd0;
  flex-direction: column;
  min-height: 12rem;
  padding: 0.4rem;
  padding-left: 3.8rem;
}

@media only screen and (max-height: 874px) {
  .timeline__event--with-image span {
    min-height: 8rem;
  }
}
.timeline__event p {
  font-family: var(--font-sans-display);
  font-size: 1.5rem;
  line-height: 1.1;
  transform: translateY(0.2rem);
  max-width: 21rem;
  color: #af1d35;
}

.timeline__event--with-image p {
  color: #f2dcd0;
  padding: 0 0 1.2rem 1.2rem;
}

.timeline__totals {
  position: absolute;
  left: 8rem;
  right: 0;
  bottom: 0;
}

.timeline__total {
  padding-left: 46rem; /* Adjust as necessary to position mountains */
  height: 20rem; /* Adjust as necessary to position mountains */
  height: 100%;
  /* padding-top: 11rem; */
}

.chart-container {
  height: 90px;
  overflow: hidden;
}

#chartjs-tooltip {
  background: #fff;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  z-index: 100000;
}

#chartjs-tooltip th {
  font-family: var(--font-slab);
  font-weight: 500;
  color: #9b9b9b;
  font-size: 2.8rem;
  padding: 0 1rem 0 1rem;
  text-align: left;
}

#chartjs-tooltip td {
  font-family: var(--font-sans-display);
  font-size: 12px;
  color: #4a4a4a;
  padding: 0 1.4rem 0 2.8rem;
  text-align: left;
}

#chartjs-tooltip td span {
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  margin-left: -15px;
  margin-top: 4px;
  border-radius: 10px;
}

#chartjs-tooltip tr:last-child td {
  padding-bottom: 1.2rem;
}

.committee-header {
  display: flex;
  align-items: center;
}

.search-container {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  flex: 1;
  max-width: 430px;
  margin-left: auto;
  margin-right: 2rem;
}

.search-container input {
  border: 1px solid #ccc;
  background: #fff;
  display: block;
  font-size: 1.6rem;
  margin-left: 1rem;
  padding: 0.4rem 0.6rem;
  flex: 1;
}

.committee-nav {
  font-size: 1.6rem;
}

.reports-decade-filter__wrapper {
  align-items: center;
  border-bottom: 1px solid var(--color-grey-light);
  border-top: 1px solid var(--color-grey-light);
  display: flex;
  margin-bottom: 2rem;
}

.reports-decade-filter__wrapper p {
  border-right: 1px solid var(--color-grey-light);
  margin-right: 0.4rem;
  padding-left: 1rem;
  padding-right: 1.4rem;
  padding-top: 1.3rem;
  padding-bottom: 1.4rem;
}

.report-decade-filter__button {
  appearance: none;
  border: none;
  border-radius: 2px;
  background-color: var(--color-cream-dark);
  font-family: var(--font-sans-display);
  font-size: 1.5rem;
  margin-right: 0.4rem;
  padding: 0.8rem 1.5rem;
  transition: background-color 100ms;
}

.report-decade-filter__button:hover,
.report-decade-filter__button:focus {
  background-color: var(--color-orange-light);
}

.report-decade-filter__button--selected,
.report-decade-filter__button--selected:hover,
.report-decade-filter__button--selected:focus {
  background-color: var(--color-orange);
  color: #fff;
}

.content-message--hidden {
  display: none;
}

.message-background {
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
}

.message-container {
  color: #fff;
  font-family: var(--font-sans-display);
  /* font-size: 1.8rem; */
  background-color: #4a4a4a;
  width: 25%;
  margin-left: 40%;
  position: absolute;
  z-index: 10001;
  top: 10%;
}

.message-container h1 {
  font-size: 2.2rem;
  padding: 2rem;
  color: #ffcda9;
  background-color: #761200;
}

.message-container p {
  font-size: 2.8rem;
  padding: 4rem 2rem;
  line-height: 3rem;
}

.message-container button {
  width: 100%;
  border: none;
  font-size: 1.6rem;
  padding: 1.1rem;
  color: #000;
  background-color: #ffcda9;
  margin: 0;
}

.home-heading {
  font-family: var(--font-serif);
  font-size: 5.3rem;
  font-weight: 800; /* Bold */
  line-height: 1.1;
  margin-bottom: 3rem;
}

.home-intro {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 5rem;
}

.home-intro > p {
  margin-bottom: 1.4rem;
}

.home-nav h2 {
  color: var(--color-grey-dark);
  margin-bottom: 2rem;
}

.home-nav ul {
  display: flex;
  justify-content: space-between;
}

.home-nav li {
  max-width: calc(33% - 2rem);
}

.home-image-wrapper {
  background-color: var(--color-purple);
  display: block;
}

.home-nav img {
  display: block;
  margin-bottom: 1.8rem;
  max-width: 100%;
  opacity: 0.9;
}

.home-nav h3 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 800; /* Bold */
  line-height: 1.1;
  margin-bottom: 1rem;
}

.home-nav p {
  font-size: 1.8rem;
  line-height: 1.3;
}

.home-nav p a {
  color: var(--color-orange-bright);
  text-decoration: underline;
}

.home-list li {
  padding-bottom: 1.2rem;
  position: relative;
  padding-left: 4rem;
}

.home-list li > span {
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  left: 0;
}

.home-list a {
  font-family: var(--font-sans-display);
  font-size: 1.8rem;
  color: var(--color-grey);
  display: block;
}

/*# sourceMappingURL=combined.css.map */
