@font-face {
  font-family: 'Seventh';
  src: url("../fonts/Joon2-Regular.woff");
  font-style: normal; }

@font-face {
  font-family: 'Seventh';
  src: url("../fonts/Joon2-RegularItalic.woff");
  font-style: italic; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

html {
  font-size: 0.7vw;
  --black: #272727;
  --font-body: 1.8rem;
  --font-medium: 2.4rem;
  --font-large: 3.2rem;
  --font-titling: 4.8rem;
  --font-small: 1.2rem;
  --gutter: 1.5em; }
  @media (max-width: 768px) {
    html {
      font-size: 10px;
      --font-titling: 4.2rem; } }
  @media (max-width: 670px) {
    html {
      --font-titling: 3.2rem;
      --font-body: 1.4rem;
      --font-medium: 1.9rem;
      --font-large: 2.4rem;
      --gutter: 1em; } }
  @media (max-width: 375px) {
    html {
      --font-titling: 2.7rem; } }
  @media (max-width: 320px) {
    html {
      --font-titling: 2.4rem;
      --font-medium: 1.5rem; } }

body {
  font-family: 'Seventh', sans-serif;
  color: var(--black); }

a {
  color: black; }

img {
  max-width: 100%;
  display: block; }

p {
  line-height: 1.2; }
  p + p {
    margin-top: 1.1em; }

h1, h2, h3, h4 {
  font-weight: normal; }

h1, .menu-trigger, h2 {
  font-size: var(--font-titling); }

header h1 a:hover {
  font-style: italic; }

h2 a {
  border-bottom: 1px solid;
  color: var(--black); }

.header-full {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 100vh;
  width: 95vw;
  padding: var(--gutter);
  position: fixed;
  top: 0;
  -webkit-transition: top 0.5s ease-in-out;
  transition: top 0.5s ease-in-out;
  left: 5vw; }
  .header-full.close {
    top: -6rem; }
    @media (max-width: 768px) {
      .header-full.close {
        top: -10.25rem; } }
    @media (max-width: 670px) {
      .header-full.close {
        top: -9.75rem; } }
    @media (max-width: 375px) {
      .header-full.close {
        top: -10.75rem; } }
    @media (max-width: 320px) {
      .header-full.close {
        top: -12.25rem; } }
  @media (max-width: 768px) {
    .header-full {
      width: 100vw;
      left: 0; } }

header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  position: relative;
  z-index: 2; }
  header .header-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center; }
    header .header-content .menu-trigger:after {
      content: '';
      padding: 1px; }
    header .header-content .menu-trigger:hover {
      cursor: pointer;
      font-style: italic; }
    @media (max-width: 670px) {
      header .header-content .menu-trigger {
        border-bottom: 1px solid; } }
  header .acknowledgement {
    font-size: var(--font-body);
    padding-right: calc(var(--gutter) * 2);
    padding-bottom: 0.5rem;
    position: relative; }
    @media (max-width: 670px) {
      header .acknowledgement {
        padding-right: 1.5em; } }
    header .acknowledgement-close {
      position: absolute;
      top: 0;
      right: 0;
      width: 1.5em;
      height: 1.5em;
      font-size: var(--font-body); }
      header .acknowledgement-close:hover {
        cursor: pointer; }

.visit-trigger {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
  width: 100vh;
  left: 5vw;
  bottom: 0;
  height: 5vw;
  position: fixed;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-bottom: 1px solid; }
  .visit-trigger:hover {
    cursor: pointer;
    font-style: italic; }
  @media (max-width: 768px) {
    .visit-trigger {
      display: none; } }

.about-pane {
  position: fixed;
  top: 0;
  right: 0;
  width: 34.5%;
  padding: 0 1.5em;
  background: white;
  height: 100vh; }
  .about-pane.open {
    box-shadow: -4px 2px 5px 0px rgba(0, 0, 0, 0.25); }
  .about-pane:not(.open) {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  .about-pane-trigger {
    position: absolute;
    top: -.25rem;
    right: 1.5em;
    font-size: var(--font-titling);
    z-index: 400;
    overflow: visible; }
    .about-pane-trigger:after {
      content: '';
      padding: 1px; }
    .about-pane-trigger:hover {
      cursor: pointer;
      font-style: italic; }
  .about-pane-text {
    padding-top: 1em;
    font-size: var(--font-body); }

.visit-pane {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% * 1 / 2 + 10px);
  height: 100vh;
  background: white;
  z-index: 30;
  border-right: 1px solid;
  padding: var(--gutter);
  padding-top: 0;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  overflow-y: auto; }
  @media (max-width: 768px) {
    .visit-pane {
      width: 100%;
      padding-top: 6px; } }
  .visit-pane-close {
    position: absolute;
    top: 1.25rem;
    right: 1em;
    font-size: var(--font-body);
    width: 3.5rem; }
    @media (max-width: 670px) {
      .visit-pane-close {
        width: 2.75rem; } }
    @media (max-width: 375px) {
      .visit-pane-close {
        width: 2.25rem;
        top: 1em;
        right: 1em; } }
    @media (max-width: 320px) {
      .visit-pane-close {
        width: 2rem;
        top: 1em;
        right: 1em; } }
    .visit-pane-close:hover {
      cursor: pointer; }
  .visit-pane:not(.open) {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }

.visit-address, .visit-map, .visit-text {
  font-size: var(--font-titling); }

.visit-address {
  max-width: 80%; }

.visit-map {
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin: 0.5em 0; }

.visit-text {
  padding-bottom: 2em; }

.info-pane, .program-pane, .text-pane {
  background: white;
  width: calc(100% * 2 / 3);
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 210;
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row; }
  @media (max-width: 768px) {
    .info-pane, .program-pane, .text-pane {
      width: 100%; } }
  @media (max-width: 670px) {
    .info-pane, .program-pane, .text-pane {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column; } }
  .info-pane h1, .info-pane h2, .program-pane h1, .program-pane h2, .text-pane h1, .text-pane h2 {
    text-transform: uppercase; }
  @media (max-width: 670px) {
    .info-pane h1, .program-pane h1, .text-pane h1 {
      position: -webkit-sticky;
      position: sticky;
      top: 8px; } }
  .info-pane-left, .info-pane-right, .program-pane-left, .program-pane-right, .text-pane-left, .text-pane-right {
    padding: var(--gutter);
    padding-top: 0;
    padding-bottom: 0;
    overflow-y: auto;
    width: 48.5%; }
    @media (max-width: 670px) {
      .info-pane-left, .info-pane-right, .program-pane-left, .program-pane-right, .text-pane-left, .text-pane-right {
        overflow-y: visible;
        width: 100%; } }
    .info-pane-left p, .info-pane-right p, .program-pane-left p, .program-pane-right p, .text-pane-left p, .text-pane-right p {
      font-size: var(--font-body); }
      .info-pane-left p + p, .info-pane-right p + p, .program-pane-left p + p, .program-pane-right p + p, .text-pane-left p + p, .text-pane-right p + p {
        margin-top: 1.1em; }
  .info-pane-left, .program-pane-left, .text-pane-left {
    height: 100vh;
    padding-left: 1.5em;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: justify;
            justify-content: space-between; }
    @media (max-width: 670px) {
      .info-pane-left, .program-pane-left, .text-pane-left {
        height: auto;
        display: block;
        padding-top: 6px; } }
    .info-pane-left div:last-of-type, .program-pane-left div:last-of-type, .text-pane-left div:last-of-type {
      margin-bottom: 1.5em; }
  .info-pane-right, .program-pane-right, .text-pane-right {
    height: 100vh;
    padding-bottom: 2em;
    padding-left: 0; }
    @media (max-width: 670px) {
      .info-pane-right, .program-pane-right, .text-pane-right {
        height: auto;
        display: block;
        padding-left: 1.5em;
        padding-bottom: 10rem; } }
    .info-pane-right p, .program-pane-right p, .text-pane-right p {
      padding-right: 1em; }
  .info-pane .download, .program-pane .download, .text-pane .download {
    display: block;
    margin-top: 1.1em; }
  .info-pane-close, .program-pane-close, .text-pane-close {
    position: absolute;
    top: 1.25rem;
    right: 1.35em;
    font-size: var(--font-body);
    width: 3.5rem;
    z-index: 400; }
    @media (max-width: 670px) {
      .info-pane-close, .program-pane-close, .text-pane-close {
        width: 2.75rem;
        position: fixed; } }
    @media (max-width: 375px) {
      .info-pane-close, .program-pane-close, .text-pane-close {
        width: 2.25rem;
        top: 1em;
        right: 1em; } }
    @media (max-width: 320px) {
      .info-pane-close, .program-pane-close, .text-pane-close {
        width: 2rem;
        top: 1em;
        right: 1em; } }
    .info-pane-close:hover, .program-pane-close:hover, .text-pane-close:hover {
      cursor: pointer; }
  .info-pane:not(.open), .program-pane:not(.open), .text-pane:not(.open) {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  .info-pane.open, .program-pane.open, .text-pane.open {
    box-shadow: -4px 2px 5px 0px rgba(0, 0, 0, 0.25); }

.text-pane {
  padding: 0.5em 1em;
  font-size: var(--font-medium);
  width: calc(100% * 2 / 3 + 2em); }
  @media (max-width: 670px) {
    .text-pane {
      width: 100%; } }
  .text-pane sup {
    line-height: 1;
    font-size: 1.2rem; }
  .text-pane.open {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column; }
  .text-pane .footnotes {
    font-size: 1.4rem;
    margin-top: 2em;
    max-width: 70%; }
    .text-pane .footnotes hr {
      display: none; }
  .text-pane blockquote {
    margin-left: 2em;
    max-width: 80%;
    font-style: italic; }
  .text-pane-inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row; }
    @media (max-width: 670px) {
      .text-pane-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column; } }
    .text-pane-inner .left, .text-pane-inner .right {
      -webkit-box-flex: 1;
              flex: 1;
      padding-right: 1em; }
    .text-pane-inner .left {
      -webkit-box-flex: 0.6;
              flex: 0.6; }
    @media (max-width: 670px) {
      .text-pane-inner .right {
        padding-top: 1.1em; } }

.exhibits-pane {
  width: 100vw;
  height: 100vh;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 210;
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  box-shadow: 0px -8px 11px 0px rgba(0, 0, 0, 0.25);
  padding-left: var(--gutter);
  padding-right: var(--gutter); }
  @media (max-width: 670px) {
    .exhibits-pane {
      overflow-Y: auto; } }
  .exhibits-pane select {
    font-family: 'Seventh';
    font-size: var(--font-titling);
    outline: 0;
    border: none;
    background: transparent; }
  .exhibits-pane-table {
    height: calc(100vh - 60px);
    width: 100%;
    -webkit-box-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    overflow-y: auto;
    padding-bottom: 2em; }
    @media (max-width: 670px) {
      .exhibits-pane-table {
        height: auto; } }
    .exhibits-pane-table .row {
      font-size: var(--font-large);
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row;
      border-bottom: 1px solid;
      padding-bottom: 4px; }
      @media (max-width: 670px) {
        .exhibits-pane-table .row {
          font-size: var(--font-medium); } }
      .exhibits-pane-table .row:not([data-year="2020"]) {
        display: none; }
      .exhibits-pane-table .row-content {
        font-size: var(--font-large);
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        display: none;
        position: relative; }
        @media (max-width: 670px) {
          .exhibits-pane-table .row-content {
            font-size: var(--font-medium);
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                    flex-direction: column; } }
        .exhibits-pane-table .row-content-img {
          width: 40%; }
          @media (max-width: 670px) {
            .exhibits-pane-table .row-content-img {
              width: 100%; } }
          .exhibits-pane-table .row-content-img .main {
            margin: 0.25em 0.25em 0.25em 0; }
        .exhibits-pane-table .row-content-text {
          width: 60%; }
          @media (max-width: 670px) {
            .exhibits-pane-table .row-content-text {
              width: 100%; } }
        .exhibits-pane-table .row-content.open {
          display: -webkit-box !important;
          display: flex !important;
          padding-bottom: 1.4em;
          border-bottom: 1px solid; }
      .exhibits-pane-table .row:hover {
        cursor: pointer; }
        .exhibits-pane-table .row:hover .title, .exhibits-pane-table .row:hover .artist {
          font-style: italic; }
      .exhibits-pane-table .row .title {
        width: 40%;
        padding-right: 0.5em; }
      .exhibits-pane-table .row .artist {
        width: 30%;
        padding-right: 0.5em; }
      .exhibits-pane-table .row .gallery, .exhibits-pane-table .row .dates {
        width: 15%; }
      @media (max-width: 670px) {
        .exhibits-pane-table .row .dates {
          margin-left: auto; } }
      @media (max-width: 670px) {
        .exhibits-pane-table .row .gallery {
          display: none; } }
  .exhibits-pane-close {
    position: absolute;
    top: 1.25rem;
    right: 1.35em;
    font-size: var(--font-body);
    width: 3.5rem; }
    @media (max-width: 670px) {
      .exhibits-pane-close {
        width: 2.75rem; } }
    @media (max-width: 375px) {
      .exhibits-pane-close {
        width: 2.25rem;
        top: 1em;
        right: 1em; } }
    @media (max-width: 320px) {
      .exhibits-pane-close {
        width: 2rem;
        top: 1em;
        right: 1em; } }
    .exhibits-pane-close:hover {
      cursor: pointer; }
  .exhibits-pane:not(.open) {
    -webkit-transform: translateY(102%);
            transform: translateY(102%); }

.events h1 {
  margin-bottom: 0.25em;
  position: -webkit-sticky;
  position: sticky;
  top: 0; }
  @media (max-width: 670px) {
    .events h1 {
      top: 6px; } }

.events figure {
  margin-bottom: 1em; }

.events article {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  margin-bottom: 1.1em; }
  .events article .event-details {
    -webkit-box-flex: 0.5;
            flex: 0.5;
    font-size: var(--font-body);
    line-height: 1.2;
    -webkit-box-pack: start;
            justify-content: flex-start;
    padding-right: 1em; }
  .events article .event_type {
    display: block; }
  .events article .event-text {
    -webkit-box-flex: 1;
            flex: 1; }
    .events article .event-text p + p {
      text-indent: 2em;
      margin: 0; }

.texts h1 {
  margin-bottom: 0.25em;
  position: -webkit-sticky;
  position: sticky;
  top: 0; }
  @media (max-width: 670px) {
    .texts h1 {
      top: 6px; } }

.texts article {
  font-size: var(--font-body);
  line-height: 1.2;
  max-width: 90%;
  margin-bottom: 1.1em; }

.bio {
  padding-top: 1em; }

main {
  padding-top: 0;
  height: auto;
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2; }
  main h2 {
    text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.7); }
  main .shows {
    font-size: var(--font-titling);
    position: fixed;
    bottom: 0.35em; }
    main .shows p {
      text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5); }
      main .shows p a:not(:last-of-type):after {
        content: ', '; }

blockquote {
  margin: 1em 0 1em 4em;
  max-width: 50%; }

dl {
  margin: 1em 0 1em 4em;
  max-width: 50%; }
  dl dt {
    font-style: italic; }

sup {
  font-size: 1.1rem;
  line-height: 1; }

.footnotes {
  margin-top: 2.2em;
  font: inherit;
  font-size: var(--font-small);
  margin-left: 1.5em;
  max-width: 25%; }
  .footnotes hr {
    display: none; }

.short_bio {
  font: inherit;
  font-size: var(--font-small);
  max-width: 50%;
  margin-top: 2.2em; }

.night-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: black;
  display: none; }
  .night-screen.open {
    display: block; }
  .night-screen-caption {
    position: fixed;
    bottom: 2em;
    left: 2em;
    display: none; }
    .night-screen-caption p {
      color: white;
      font-style: italic;
      font-size: var(--font-body); }
  .night-screen-close {
    position: absolute;
    top: 2rem;
    right: 1.35em;
    font-size: var(--font-body);
    width: 3.5rem;
    z-index: 11;
    display: none; }
    @media (max-width: 670px) {
      .night-screen-close {
        width: 2.75rem; } }
    @media (max-width: 375px) {
      .night-screen-close {
        width: 2.25rem;
        top: 1em;
        right: 1em; } }
    @media (max-width: 320px) {
      .night-screen-close {
        width: 2rem;
        top: 1em;
        right: 1em; } }
    .night-screen-close:hover {
      cursor: pointer; }
  .night-screen:hover .night-screen-caption, .night-screen:hover .night-screen-close {
    display: block; }
  .night-screen iframe {
    width: 100vw;
    height: 100vh;
    border: none; }

.show-images {
  width: 92.5vw;
  height: 95vh;
  position: fixed;
  top: 0;
  left: 5vw;
  z-index: 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2em; }
  .show-images-inner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-y: auto; }
  .show-images figure {
    padding: 1em; }

.pane-closer {
  width: calc(100vw * 2 / 3);
  height: 100vh;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  display: none; }

.menu {
  width: calc(100vw * 1 / 3);
  height: 100vh;
  background: white;
  position: fixed;
  top: 0;
  right: -1em;
  z-index: 210;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 0.5em;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out; }
  @media (max-width: 768px) {
    .menu {
      width: 100%;
      padding-top: 6px; } }
  .menu:not(.open) {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  .menu.open {
    box-shadow: -4px 2px 5px 0px rgba(0, 0, 0, 0.25); }
  .menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25em;
    font-size: var(--font-body);
    width: 3.5rem;
    z-index: 11; }
    @media (max-width: 670px) {
      .menu-close {
        width: 2.75rem; } }
    @media (max-width: 375px) {
      .menu-close {
        width: 2.25rem;
        top: 1em;
        right: 1em; } }
    @media (max-width: 320px) {
      .menu-close {
        width: 2rem;
        top: 0.75em;
        right: 1.5em; } }
    .menu-close:hover {
      cursor: pointer; }
  .menu nav {
    font-size: var(--font-titling);
    text-transform: uppercase; }
    .menu nav a {
      color: black;
      display: block; }
      .menu nav a:hover {
        font-style: italic; }
  .menu p {
    font-size: var(--font-titling);
    text-transform: uppercase; }

.filter {
  height: 58px; }
  @media (max-width: 670px) {
    .filter {
      height: 48px;
      padding-top: 6px;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      width: 82.5vw; } }
  .filter-title, .filter-year {
    font-size: var(--font-titling); }
  .filter-title {
    padding-right: 1rem; }
  .filter-year:not(.active) {
    opacity: 0.25; }
  .filter-year:not(:last-of-type):after {
    content: ', '; }
  .filter-year.active:after {
    opacity: 0.25; }
  .filter-year:hover {
    cursor: pointer; }

.application {
  position: absolute;
  right: 4em;
  bottom: 20vh;
  width: 27.5%;
  height: 230px;
  z-index: 20; }
  .application.false {
    display: none; }
  .application img {
    position: absolute;
    top: 0;
    left: 0; }
    .application img:first-of-type {
      z-index: 1; }
  .application:hover {
    cursor: pointer; }
    .application:hover img:last-of-type {
      z-index: 2; }
  .application-pane {
    width: calc(100vw * 1 / 2);
    height: 100vh;
    background: white;
    position: fixed;
    top: 0;
    right: -1em;
    z-index: 210;
    margin-right: 1em;
    padding-top: 0.15em;
    padding-left: 0.35em;
    padding-right: 0.5em;
    padding-bottom: 1em;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    overflow-y: auto;
    font: inherit;
    font-size: var(--font-titling); }
    @media (max-width: 670px) {
      .application-pane {
        width: 100%; } }
    .application-pane.open {
      box-shadow: -4px 2px 5px 0px rgba(0, 0, 0, 0.25); }
    .application-pane:not(.open) {
      -webkit-transform: translateX(100%);
              transform: translateX(100%); }
    .application-pane-close {
      position: fixed;
      top: 1.25rem;
      right: 1.25em;
      font-size: var(--font-body);
      width: 3.5rem;
      z-index: 11; }
      @media (max-width: 670px) {
        .application-pane-close {
          width: 2.75rem; } }
      @media (max-width: 375px) {
        .application-pane-close {
          width: 2.25rem;
          top: 1em;
          right: 1em; } }
      @media (max-width: 320px) {
        .application-pane-close {
          width: 2rem;
          top: 1em;
          right: 1em; } }
      .application-pane-close:hover {
        cursor: pointer; }
  @media (max-width: 768px) {
    .application {
      width: 42.5%; } }
  @media (max-width: 670px) {
    .application {
      width: 60%; } }

.exhibit-pane {
  width: 100vw;
  height: 100vh;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  padding: 2em;
  padding-top: 0.5em;
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  overflow-y: auto; }
  @media (max-width: 375px) {
    .exhibit-pane {
      padding: 1.5em;
      padding-top: 1em; } }
  @media (max-width: 375px) {
    .exhibit-pane h1 br {
      display: none; } }
  .exhibit-pane .content_text {
    font-size: var(--font-medium); }
    .exhibit-pane .content_text p + p {
      margin-top: 1.1em; }
    .exhibit-pane .content_text figure {
      margin: 0.5em 0;
      max-width: 80%; }
      @media (max-width: 670px) {
        .exhibit-pane .content_text figure {
          max-width: 100%; } }
      .exhibit-pane .content_text figure img {
        max-width: 100%; }
  .exhibit-pane-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25em;
    font-size: var(--font-body);
    width: 3.5rem;
    z-index: 11; }
    @media (max-width: 670px) {
      .exhibit-pane-close {
        width: 2.75rem; } }
    @media (max-width: 375px) {
      .exhibit-pane-close {
        width: 2.25rem;
        top: 1em;
        right: 1em; } }
    @media (max-width: 320px) {
      .exhibit-pane-close {
        width: 2rem;
        top: 1em;
        right: 1em; } }
    .exhibit-pane-close:hover {
      cursor: pointer; }
  .exhibit-pane:not(.open) {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }

.exhibit-trigger:hover {
  font-style: italic; }

img {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in; }

img.loaded {
  opacity: 1; }

/*# sourceMappingURL=style.css.map */
