@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font: inherit;
  text-decoration: inherit;
  box-sizing: border-box;
  border: none;
  color: inherit;
  appearance: none;
  border-radius: 0;
}
*:focus {
  outline: 0;
}

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

img.loading, img.loaded {
  opacity: 1;
}

html {
  font-size: 10px;
  --gutter: 0.5em;
  --highlight: rgb(255,130,100);
  --broadcast: rgb(193,117,0);
}

figure {
  padding: 1em 0;
}
figure img {
  max-width: 100%;
  display: block;
}

.images {
  padding: 0;
  margin-top: 2em;
}
.images figure {
  max-width: 100%;
  padding: 0.5em 0;
}
.images figure:last-of-type {
  padding-bottom: 0;
}
.images img {
  max-width: 100%;
  display: block;
}

body {
  overflow-x: hidden;
  font-variant-numeric: oldstyle-nums;
}
@media only screen and (max-width: 480px) {
  body {
    overflow-y: scroll !important;
    margin: 0;
  }
}
body .error {
  background-color: red;
}

.artist {
  display: inline;
  padding-bottom: 10px;
}

.text h2 {
  text-align: center;
}
section {
  width: 38vw;
  position: fixed;
  top: 0;
  left: 33vw;
  height: 100vh;
  overflow-y: auto;
  padding: var(--gutter);
}

.dates, figcaption, .mono {
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: var(--font-smaller);
  text-transform: uppercase;
  line-height: 1.25;
  padding: 0;
  display: block;
  letter-spacing: -0.01em;
  padding-top: calc(var(--gutter) * 2);
  -webkit-font-smoothing: antialiased;
}
.dates:last-of-type, figcaption:last-of-type, .mono:last-of-type {
  padding-top: 0;
}

.mono {
  padding-top: 0;
}

.dates {
  text-indent: -7rem;
  margin-left: 7rem;
  padding-top: 0;
}
.dates + p {
  margin-top: 0.95em;
}

figcaption {
  font-family: "Diatype", sans-serif;
  font-size: var(--font-smaller);
  line-height: 1.2;
  font-weight: normal;
  text-transform: none;
  padding-top: 0.5em !important;
  display: block;
}
figcaption p {
  font-family: "Diatype", sans-serif;
  font-size: var(--font-smaller);
  line-height: 1.2;
  font-weight: normal;
  text-transform: none;
  display: block;
}

.mono {
  padding-top: 0;
}

article {
  padding-bottom: 1em;
}

.container {
  margin: 0 auto;
}

.messages {
  text-align: left;
  font-size: var(--font-tw);
}

header {
  width: 100%;
  max-width: 30%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  header {
    max-width: 30%;
  }
}
@media (max-width: 768px) {
  header {
    width: 100%;
    max-width: 100%;
    position: static;
    height: 14vh;
  }
}
@media (max-width: 320px) {
  header {
    width: 100%;
    max-width: 100%;
    position: static;
    height: 19vh;
  }
}
header .details {
  display: flex;
  flex-direction: row;
}
header .details-desktop {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5em;
  transition: transform 0.5s ease-in-out;
}
header .details-desktop.reveal {
  transform: translateY(-1.75em);
}
header .details-desktop div {
  flex: 1;
}
header .details-desktop p, header .details-desktop .socials, header .details-desktop .subscribe-trigger {
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: var(--font-smaller);
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  text-indent: 0;
}
header .details-desktop .socials, header .details-desktop .subscribe-trigger {
  display: block;
  padding-top: 1.2em;
}
@media (max-width: 1023px) {
  header .details-desktop {
    display: none;
  }
}
header div {
  position: relative;
}
header div .nav-trigger {
  position: fixed;
  top: var(--gutter);
  left: var(--gutter);
  width: 45px;
}
header div .nav-trigger img {
  opacity: 1;
}
header div .nav-trigger:hover {
  cursor: pointer;
}
header h1 {
  text-align: center;
}

.subscribe {
  position: fixed;
  top: 1em;
  left: 1em;
  width: calc(100% - 2em);
  height: auto;
  background-color: white;
  box-shadow: 6px 2px 20px 0px rgba(0, 0, 0, 0.25);
  border-radius: 1.5em;
  z-index: 500;
  padding: 1em 2em;
  font-family: "TW", monospace;
  width: calc(100% - 3em);
  display: none;
}
.subscribe-close {
  font-size: var(--font-tw);
  padding-left: 0.5em;
}
.subscribe-close:hover {
  cursor: pointer;
  color: rgb(53, 145, 0);
}
.subscribe .error {
  background: white;
  color: var(--highlight);
}
.subscribe .error::placeholder {
  color: var(--highlight);
}
.subscribe label.error {
  display: none !important;
}
.subscribe .form-group {
  display: flex;
  flex-direction: row;
}
.subscribe .form-group .btn {
  width: 160px;
  text-align: right;
  text-transform: uppercase;
}
.subscribe .form-group .btn:hover {
  cursor: pointer;
  opacity: 0.5;
}
.subscribe form {
  font-weight: bold;
  font-size: var(--font-smaller);
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.subscribe form input {
  width: 100%;
  background-color: white;
  font-size: var(--font-tw);
}
.subscribe form input::placeholder {
  color: black;
}

main {
  position: fixed;
  width: 70%;
  left: 30%;
  top: 0;
  height: 100vh;
  z-index: 10;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1024px) {
  main {
    width: 70%;
    left: 30%;
  }
}
@media (max-width: 768px) {
  main {
    width: 100%;
    left: 0;
    position: static;
    display: block;
    height: auto;
  }
}
main > div {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  padding-top: var(--gutter);
  padding-right: 1.65rem;
  padding-left: 1.5rem;
  border-left: 1px solid;
}
@media (max-width: 768px) {
  main > div {
    border-left: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-top: calc(var(--gutter) * 2);
  }
}
main > div.exhibits {
  flex: 1;
  z-index: 100;
  padding-bottom: 0.8em;
  position: relative;
}
@media (max-width: 1024px) {
  main > div.exhibits {
    width: 100%;
    box-shadow: none;
  }
}
@media (max-width: 690px) {
  main > div.exhibits {
    padding-top: 0;
  }
}
main > div.exhibits p {
  padding-right: 1rem;
}
main > div.exhibits .details {
  border: none;
  padding-left: 0;
  display: block;
  padding-top: 0.5em;
}
main > div.exhibits figure + figure {
  padding-top: 0;
}
main > div.exhibits .title {
  letter-spacing: -2px;
}
@media (max-width: 1024px) {
  main > div.exhibits .title {
    letter-spacing: -1px;
  }
}
main > div.event {
  flex: 1;
  z-index: 100;
  padding-bottom: 0.8em;
  background: white;
}
main > div.event h1, main > div.event .title, main > div.event .artist, main > div.event h3 {
  padding-top: 2px;
}
main > div.event p {
  font-family: "BusMono";
  -webkit-font-smoothing: antialiased;
  font-size: var(--font-smaller);
  line-height: 1.3;
}
main > div.event p + p {
  text-indent: 0;
  margin-top: 1.5em;
}
main > div.event figure + figure {
  padding-top: 0;
  margin-top: 0;
}
main > div.event figure img {
  margin: 0 auto;
}
main > div.engages {
  flex: 0.8;
  padding-left: 2rem;
  border-left: 1px solid;
  position: relative;
}
@media (max-width: 670px) {
  main > div.engages {
    background: #eeeeee;
  }
}
main > div.engages .title, main > div.engages .artist, main > div.engages .subtitle {
  font-family: "TW", monospace;
  font-size: var(--font-tw);
  -webkit-font-smoothing: antialiased;
  line-height: 1.1;
  letter-spacing: 0;
  padding-bottom: 0;
}
main > div.engages h1 {
  padding-top: 2px;
  text-align: center;
  margin-top: -2px;
}
main > div.engages .engage-filter {
  padding-top: 2px;
}
main > div.engages figure {
  mix-blend-mode: multiply;
  max-width: 80%;
  margin: 0 auto;
}
main > div.engages figure img {
  filter: grayscale(1);
}
main > div.engages figure:hover {
  mix-blend-mode: initial;
}
main > div.engages figure:hover img {
  filter: grayscale(0);
}
main > div.engages .section + .section {
  border-top: 1px solid;
  padding-top: calc(var(--gutter) * 2);
}
main > div.engages p {
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: var(--font-smaller);
  text-transform: none;
  line-height: 1.3;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  padding-top: 1em;
}
main > div.engages p a {
  text-decoration: none;
}
main > div.engages p + p {
  text-indent: 0;
}
main > div.engages p + p a {
  border-bottom: none;
  text-decoration: none;
}
main > div.header {
  border: none;
  padding: 0;
  position: relative;
  box-shadow: none;
}
main > div.header .filter, main > div.header .engage-filter {
  position: absolute;
  top: -2px;
  left: 0;
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: var(--font-smaller);
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 1em;
}
@media (max-width: 690px) {
  main > div.header .filter, main > div.header .engage-filter {
    position: fixed;
    top: 12.5rem;
    left: 1rem;
    width: 100%;
  }
}
main > div.header .filter span:hover, main > div.header .engage-filter span:hover {
  cursor: pointer;
  opacity: 0.5;
}
main > div[data-template=library-item] {
  width: 50vw !important;
  flex: none;
}
main > div[data-template=library-item] .title:before {
  content: "‘";
}
main > div[data-template=library-item] .title:after {
  content: "’";
}
main > div.talks h1, main > div .engages h1 {
  padding-bottom: 0.5em;
}
main > div.talks .talk-title, main > div .engages .talk-title {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  display: block;
  letter-spacing: -0.02rem;
  margin-bottom: 1em;
}

.video iframe {
  width: 100%;
}

.library-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 690px) {
  .library-items {
    display: block;
  }
}
.library-items article {
  width: 48%;
  margin-right: 2%;
}
@media (max-width: 690px) {
  .library-items article {
    width: 100%;
  }
}
.library-items .author, .library-items .year {
  display: block;
  font-family: "BusMono";
  font-size: var(--font-smaller);
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  line-height: 1.2;
  padding-top: 1em;
  max-width: 90%;
}
.library-items .year {
  padding: 0;
}

.library-header-filter {
  padding: 1em 0;
}
.library-header-filter p {
  font-family: "BusMono";
  font-size: var(--font-smaller);
  -webkit-font-smoothing: antialiased;
}
.library-header-filter p a {
  display: inline-block;
}
.library-header-filter p a:not(:last-of-type):after {
  content: ", ";
}

[data-status=archive] {
  display: none;
}

[data-template=shop] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 4em;
  border-left: 1px solid;
  padding-left: 0.5em;
  padding-right: 1.5rem;
  overflow-x: hidden;
}
[data-template=shop] .header {
  position: absolute;
  top: 0.6em;
  z-index: 100;
}
[data-template=shop] .cart-update {
  position: fixed;
  top: 0.25em;
  right: 0.6em;
  display: none;
}
[data-template=shop] article {
  margin: 0.5em 0;
}
[data-template=shop] article a {
  flex: 1;
}
[data-template=shop] .item {
  width: 33.3333333333%;
  padding: 0 0.35em;
  display: flex;
}
[data-template=shop] .item-details {
  max-width: 90%;
}
[data-template=shop] .item-details p {
  line-height: 1.2;
}
[data-template=shop] .item-details p .item-title {
  line-height: 1;
}
[data-template=shop] .item-title, [data-template=shop] .item-status {
  font-family: "Diatype", sans-serif;
}
[data-template=shop] .item figure {
  margin-bottom: 0.5em;
  padding: 0;
}
[data-template=shop] .item p {
  font-size: 1.4rem;
}
[data-template=shop] .item p + p {
  text-indent: 0;
  font-family: "Diatype", sans-serif;
}

[data-page=support] h3 {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
  padding-top: 0.5em;
  line-height: 0.95;
}
[data-page=support] .donate-button {
  display: block;
  width: 9em;
  padding: 0.25em;
  border-radius: 20px;
  border: 1px solid;
  margin: 1em auto;
  text-decoration: none;
  text-align: center;
}
[data-page=support] .donate-button:hover {
  cursor: pointer;
  opacity: 0.25;
}
[data-page=support] .supporters {
  padding-bottom: 4em;
}
[data-page=support] .supporters p {
  font-family: "Diatype", sans-serif;
  font-size: var(--font-body);
  font-weight: normal;
  display: block;
  line-height: 1.1;
  padding-bottom: 0;
  letter-spacing: -0.02em;
}

small a {
  font-family: "Diatype", sans-serif;
  border-bottom: 1px solid;
}

.acknowledgement {
  position: fixed;
  top: 1em;
  left: 1em;
  width: calc(100% - 2em);
  height: auto;
  background-color: rgb(53, 145, 0);
  border-radius: 1.5em;
  z-index: 200;
  padding: 1em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: none;
}
.acknowledgement:hover {
  cursor: pointer;
}
.acknowledgement_close {
  position: absolute;
  top: 0.25em;
  right: 0.25em;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 4rem;
}
@media only screen and (max-width: 480px) {
  .acknowledgement_close {
    font-size: 2.1rem;
    top: 0.5em;
    right: 0.5em;
  }
}
.acknowledgement p {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 95%;
}
@media only screen and (max-width: 480px) {
  .acknowledgement p {
    font-size: 2.1rem;
  }
}
.acknowledgement p + p {
  text-indent: 0;
}

.support-button {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  text-align: center;
  bottom: 1em;
  right: 1em;
  z-index: 400;
  transition: transform 0.5s linear;
  -webkit-font-smoothing: antialiased;
}
.support-button svg {
  width: 100%;
}
.support-button svg .st0 {
  fill: #FF7864;
}
.support-button:hover {
  transform: scale(1.05);
  transform-origin: center;
}

[data-template=object] .add-to-cart {
  padding: 0 1rem;
  border-radius: 20px;
  padding-bottom: 0.25rem;
  border: 1px solid;
  margin: 1.25em 0 1.5em;
  background: transparent;
}
[data-template=object] .add-to-cart:hover {
  opacity: 0.25;
  cursor: pointer;
}
[data-template=object] .exhibits figure {
  padding-top: 0;
}
[data-template=object] .cart-update {
  position: fixed;
  top: 0.5em;
  right: 0.7em;
  display: none;
}
[data-template=object] ul {
  margin-left: 0;
  padding-bottom: 0.5em;
}
[data-template=object] ul li {
  font-family: "Diatype", sans-serif;
}
[data-template=object] h1 {
  margin-bottom: 0.5em;
}
[data-template=object] .exhibits h1 {
  text-align: left;
}
[data-template=object] .engages figure {
  padding: 0 0 1em 0;
}
[data-template=object] .option {
  display: block;
  line-height: 1.1;
  font-family: "Diatype", sans-serif;
}
[data-template=object] .option label input:not(:checked) + span {
  opacity: 0.25;
}
[data-template=object] .option label:hover {
  opacity: 0.25;
  cursor: pointer;
}
[data-template=object] form {
  border-top: 1px solid;
  padding-top: 0.25em;
}
[data-template=object] .item-bio {
  border: none;
  padding: 0;
  margin: 2em 0 0 6em;
}
@media (max-width: 768px) {
  [data-template=object] .item-bio {
    margin-left: 2.4em;
    margin-top: 2.2em;
  }
}
[data-template=object] .item-bio + p {
  padding-bottom: 1em !important;
}
[data-template=object] .item-bio p {
  font-size: var(--font-smaller);
  text-transform: none;
  line-height: 1.1;
  padding: 0;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
[data-item=true]:hover {
  filter: grayscale(0);
}
[data-item=true] p {
  color: var(--highlight);
}
[data-item=true] figure {
  background: var(--highlight);
  padding: 0;
}
[data-item=true] figure img {
  mix-blend-mode: screen;
  filter: grayscale(1);
}
[data-item=true] figure:hover img {
  filter: grayscale(0);
  mix-blend-mode: initial;
}

.header {
  border: none;
  padding: 0;
  position: relative;
  box-shadow: none;
}
@media (max-width: 690px) {
  .header {
    overflow: visible;
    display: flex;
    flex-direction: column-reverse;
  }
}
.header .filter, .header .engage-filter {
  position: absolute;
  top: -2px;
  left: 0;
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: var(--font-smaller);
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 1em;
}
@media (max-width: 690px) {
  .header .filter, .header .engage-filter {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header .filter br, .header .engage-filter br {
    display: none;
  }
}
.header .filter span, .header .engage-filter span {
  color: black;
}
@media (max-width: 690px) {
  .header .filter span:not(:last-of-type):after, .header .engage-filter span:not(:last-of-type):after {
    content: ", ";
  }
}
.header .filter span:hover, .header .engage-filter span:hover {
  cursor: pointer;
}
.header .filter span:not(.active), .header .engage-filter span:not(.active) {
  opacity: 0.25;
}

.images {
  border: none;
}

main div.talks article p {
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: 0.9vw;
  text-transform: none;
  line-height: 1.2;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 1em;
}

.scrolled-filter, .scrolled_engage-filter {
  position: fixed;
  top: -36px;
  left: 50%;
  transform: translateX(-65%);
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: var(--font-smaller);
  text-transform: uppercase;
  line-height: 1.2;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.4) 0.1em 0.1em 0.5em;
  -webkit-font-smoothing: antialiased;
  background: white;
  z-index: 100;
  transition: top 0.5s ease-in-out;
}
.scrolled-filter.visible, .scrolled_engage-filter.visible {
  top: 12px;
}
.scrolled-filter span:not(:last-of-type):after, .scrolled_engage-filter span:not(:last-of-type):after {
  content: ", ";
}
.scrolled-filter span:hover, .scrolled_engage-filter span:hover {
  opacity: 0.25;
}
.scrolled-filter span:not(.active), .scrolled_engage-filter span:not(.active) {
  opacity: 0.25;
}

.scrolled_engage-filter {
  right: 8.5%;
  left: auto;
  transform: none;
}

section {
  margin-right: 4.8rem;
  float: left;
}

.subtitle:after {
  content: ".";
}

@media (max-width: 960px) {
  [data-template=show] .exhibits h1 {
    display: none;
  }
}

[data-template=home] .title br {
  display: none;
}

.artist_bios {
  border: none;
  padding: 0;
  margin: 2em 0 0 2em;
}
@media (max-width: 768px) {
  .artist_bios {
    margin-left: 2.4em;
    margin-top: 2.2em;
  }
}
.artist_bios + p {
  padding-bottom: 1em !important;
}
.artist_bios p {
  font-family: "Diatype";
  font-size: var(--font-smaller);
  text-transform: none;
  line-height: 1.2;
  padding: 0;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
.artist:after {
  content: ",";
}

.title:before {
  content: "‘";
}
.title:after {
  content: "’";
}
.title img {
  display: inline-block;
  width: auto;
  height: 0.7em;
  padding: 0 0.5rem;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(30% + 1px);
  box-shadow: 10px 2px 11px 0px rgba(0, 0, 0, 0.25);
  height: 100vh;
  padding-top: 0.5em;
  padding-left: 0.5em;
  background: white;
  z-index: 200;
  transition: transform 0.5s ease-in-out;
}
@media (max-width: 768px) {
  nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
nav:not(.open) {
  transform: translateX(-110%);
}
nav.view {
  display: block;
}
nav .details-mobile {
  display: flex;
  flex-direction: row;
  padding-bottom: 0.5em;
  width: calc(100% - 2rem);
  display: none;
}
nav .details-mobile div {
  flex: 1;
}
nav .details-mobile p {
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: var(--font-smaller);
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
nav .details-mobile p a {
  font-size: var(--font-smaller);
  display: inline-block;
}
@media (max-width: 768px) {
  nav .details-mobile {
    display: flex;
  }
}
nav .nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 52px;
  height: 52px;
}
@media (max-width: 768px) {
  nav .nav-close {
    width: 38px;
  }
}
nav .nav-close:hover {
  cursor: pointer;
  opacity: 0.25;
}
nav a {
  display: table;
}
nav a:hover {
  opacity: 0.25;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  float: left;
  border-top: 1px dotted black;
  margin-top: 4rem;
  padding: 4rem 0;
  position: relative;
  z-index: 120;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
  }
}
footer nav {
  width: 20%;
}
footer nav a {
  display: table;
  line-height: 1.21;
  margin: 0 !important;
}
@media (max-width: 768px) {
  footer nav {
    display: block;
    padding-bottom: 4rem;
    position: static;
    width: 100%;
  }
}
footer .details-wrapper {
  width: 80%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  footer .details-wrapper {
    flex-direction: column;
    width: 100%;
  }
}
footer [data-use=details] {
  flex: 1;
}
footer [data-use=details] nav {
  width: 44%;
}
footer [data-use=details] .contact-details {
  flex: 1;
}
footer [data-use=details] .contact-details p:last-of-type {
  padding-bottom: 2.7rem;
}
@media (max-width: 480px) {
  footer [data-use=details] .contact-details p:last-of-type {
    padding-bottom: 2.7rem;
  }
}
@media (max-width: 480px) {
  footer [data-use=details] .contact-details span {
    display: block;
    margin-bottom: 4rem;
  }
}
footer [data-use=details] .contact-details span a {
  font-size: 2.4rem;
}
footer [data-use=details] .contact-details span a.fb {
  background-image: url(../../assets/icons/fb.svg);
  background-size: auto;
  background-position: left;
  background-repeat: no-repeat;
  color: transparent;
}
footer [data-use=details] .contact-details span a.in {
  background-image: url(../../assets/icons/in.svg);
  background-size: auto;
  background-position: left;
  background-repeat: no-repeat;
  color: transparent;
}
footer [data-use=details] .contact-details span a.tw {
  background-image: url(../../assets/icons/tw.svg);
  background-size: auto;
  background-position: left;
  background-repeat: no-repeat;
  color: transparent;
}
footer [data-use=details] .contact-details span a.fl {
  background-image: url(../../assets/icons/fl.svg);
  background-size: auto;
  background-position: left;
  background-repeat: no-repeat;
  color: transparent;
}
footer [data-use=details] .contact-details span a.vi {
  background-image: url(../../assets/icons/vi.svg);
  background-size: auto;
  background-position: left;
  background-repeat: no-repeat;
  color: transparent;
}
@media (max-width: 480px) {
  footer [data-use=details] .contact-details span a {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  footer [data-use=details] {
    margin-right: 0;
  }
}
footer [data-use=support] {
  flex: 1;
}
@media (max-width: 768px) {
  footer [data-use=support] {
    margin-right: 0;
    padding-bottom: 2.5rem;
  }
}
footer [data-use=support] img {
  max-width: 100%;
}
@media (max-width: 768px) {
  footer [data-use=support] img {
    padding-top: 2.5rem;
  }
}
footer [data-use=support] p {
  font-size: 1.6rem;
  line-height: 1.35;
  padding-bottom: 0;
}

ul {
  list-style: none;
  padding-bottom: 1.1em;
  margin-left: 2.5em;
}
dl {
  padding-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  dl {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  dl {
    font-size: 2.1rem;
  }
}

dt {
  margin-top: 1.1em;
  font-style: italic;
}

@media (max-width: 690px) {
  [data-template=library] .library-header h1 {
    display: none;
  }
}

@media (max-width: 690px) {
  [data-template=show] .event h1 {
    display: none;
  }
}

@media (max-width: 690px) {
  [data-template=library-item] h2 {
    display: none;
  }
}
[data-template=library-item] h3 {
  padding-bottom: 1em;
  font-size: var(--font-mega);
}
[data-template=library-item] sup {
  font-family: "Diatype", sans-serif;
  font-size: var(--font-smaller);
  line-height: 1;
}
[data-template=library-item] sup a {
  border: none;
}
[data-template=library-item] .footnotes {
  margin-top: 2em;
  margin-left: 2em;
  max-width: 80%;
}
[data-template=library-item] .footnotes ol {
  font-size: var(--font-smaller);
}
[data-template=library-item] .footnotes ol li {
  font-size: var(--font-smaller);
}
[data-template=library-item] .footnotes ol li p {
  font-size: var(--font-smaller);
}

.radio-button {
  width: 100%;
  max-width: 15vw;
  position: absolute;
  bottom: 4.5em;
  left: 50%;
  transform: translateX(-50%) scale(1);
  z-index: 2000;
}
@media (max-width: 670px) {
  .radio-button {
    max-width: 50%;
    position: fixed;
    bottom: 1em;
    right: 1em;
    left: auto;
    transform: translateX(0) scale(1);
  }
}
.radio-button svg .sun {
  animation: spin 5s linear infinite;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}
.radio-button svg:hover path.sun {
  fill: #ff8264;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.sticker {
  width: 45rem;
  height: auto;
  position: fixed;
  left: 4rem;
  bottom: 0;
  z-index: 100;
  mix-blend-mode: multiply;
}

.sticker:hover {
  background: blue;
}

.sticker:hover img {
  mix-blend-mode: screen;
}

.all-c {
  width: 50rem;
  height: auto;
  position: fixed;
  top: 5rem;
  right: 5rem;
  z-index: 100;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.all-c:hover .st0 {
  fill: black;
}

@media (max-width: 1024px) {
  .sticker, .all-c {
    width: 30rem;
  }
}
@media (max-width: 670px) {
  .sticker, .all-c {
    width: 20rem;
  }
}
/* New CSS */
@font-face {
  font-family: "TW";
  src: url("../fonts/schrijfmachine-roman-webfont.woff");
  font-weight: normal;
}
@font-face {
  font-family: "TW";
  src: url("../fonts/schrijfmachine-bold-webfont.woff");
  font-weight: bold;
}
@font-face {
  font-family: "BUS";
  src: url("../fonts/LidoSTFCond.woff");
  font-weight: normal;
}
a {
  text-decoration: none;
}

.new-overlay h2 {
  font-family: "BUS";
  font-weight: normal;
  line-height: 0.85;
  font-size: 5vw;
  letter-spacing: -0.02em;
  padding: 0 !important;
}

.new-overlay h2 span {
  color: white;
}

.new-overlay {
  background: white;
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 201;
  padding: 2rem;
}

.new-overlay--close {
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 122;
  font-family: "TW";
  font-weight: bold;
  font-size: 1.15vw;
  text-transform: uppercase;
}

.new-overlay--close:hover {
  color: #aaa;
  cursor: pointer;
}

.new-overlay .left {
  position: sticky;
  top: 0;
  width: 33%;
  height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.new-overlay .right {
  position: fixed;
  top: 0;
  left: 33%;
  padding: 2rem;
  overflow-y: auto;
  height: 100vh;
  padding-right: 4rem;
}

.new-overlay p {
  font-family: "BUS";
  font-weight: normal;
  line-height: 0.85;
  font-size: 5vw;
  letter-spacing: -0.02em;
  padding: 0 !important;
}

.new-overlay p span {
  font-family: "TW", monospace;
  font-weight: normal;
}

.new-overlay p + p {
  /* margin-top: 0.85em; */
}

.new-overlay p:last-of-type {
  margin-top: 0.85em;
}

.new-overlay p a {
  text-decoration: none;
  color: white;
}

.new-overlay p a:hover {
  color: #aaa;
  text-decoration: none;
}

.new-overlay .footer {
  display: flex;
  flex-direction: row;
}

.new-overlay .footer p {
  padding: 0;
}

.new-overlay .footer div {
  padding-right: 2em;
}

.new-overlay .footer p a {
  border-bottom: 2px solid;
  color: black;
}

.new-overlay .footer p, .acknowledgements p {
  font-family: "TW", monospace;
  font-weight: bold;
  font-size: 1.15vw;
  text-transform: uppercase;
  line-height: 1.2;
}

.new-overlay .acknowledgements p {
  text-transform: none;
}

.new-overlay .acknowledgements p a {
  color: black;
  border-bottom: 2px solid;
}

.new-overlay .acknowledgements {
  margin-top: 4em;
  max-width: 80%;
}

.new-overlay .footer .right {
  position: static;
}

.mobile {
  display: none !important;
}

@media (max-width: 960px) {
  h2, .new-overlay p {
    font-size: 2.8rem;
    line-height: 0.9;
  }
  .new-overlay {
    padding: 1.5rem;
    margin-bottom: 4em;
    overflow-y: auto;
  }
  .new-overlay .left {
    position: static;
    height: auto;
    width: 100%;
  }
  .new-overlay .left .footer {
    display: none;
  }
  .new-overlay--close {
    top: var(--gutter);
    right: var(--gutter);
    font-size: 1.6rem;
  }
  .new-overlay p a {
    text-decoration: none;
    color: #aaa;
  }
  .new-overlay .right {
    position: static;
    overflow: visible;
    left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .new-overlay .acknowledgements {
    max-width: 100%;
    margin-top: 1.1em;
  }
  .new-overlay .acknowledgements p, .new-overlay .footer p {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .footer {
    display: flex;
    flex-direction: row;
  }
  .footer div:last-of-type p {
    padding-bottom: 4em;
  }
  .mobile {
    display: flex;
    margin: 2em 0 4em;
    padding-bottom: 4em;
  }
}
.read_more span {
  display: none;
}
.read_more:hover span {
  display: inline-block;
}

.bus-broadcasts {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: none;
  flex-direction: row;
  top: 0;
  left: 0;
  color: #272727;
  background: white;
  z-index: 100;
}
.bus-broadcasts:not(.open) {
  display: none;
}
.bus-broadcasts-extra {
  width: 55%;
  height: 100vh;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  padding: 1em;
  box-shadow: 10px 3px 14px 0px rgba(0, 0, 0, 0.25);
  display: none;
}
.bus-broadcasts-extra .bus-broadcasts-title, .bus-broadcasts-extra .bus-broadcasts-artist {
  font-family: "Diatype", sans-serif;
  font-size: var(--font-sans);
  line-height: 1.05;
}
.bus-broadcasts-extra .text {
  font: inherit;
}
.bus-broadcasts-extra .text p {
  font-family: "BusMono", monospace;
}
.bus-broadcasts .icon {
  position: fixed;
  width: 36rem;
  bottom: 0.75em;
  right: 40%;
  z-index: 1000;
  pointer-events: none;
  display: none;
}
.bus-broadcasts-information {
  display: none;
  background-color: white;
  min-height: 85vh;
}
.bus-broadcasts p, .bus-broadcasts ul li, .bus-broadcasts dl, .bus-broadcasts .nav span, .bus-broadcasts .bus-broadcasts-title, .bus-broadcasts .bus-broadcasts-artist {
  font-family: "Diatype", sans-serif;
  font-size: var(--font-sans);
  line-height: 1.05;
}
.bus-broadcasts .nav {
  margin-bottom: 1em;
}
.bus-broadcasts .nav span:not(:last-of-type):after {
  content: ", ";
}
.bus-broadcasts .nav span:last-of-type:hover {
  color: var(--broadcast);
  cursor: pointer;
  border-bottom: 2px solid;
}
.bus-broadcasts .nav span:last-of-type:hover:after {
  border-bottom: 2px solid white !important;
}
.bus-broadcasts .nav span.active {
  border-bottom: 2px solid;
}
.bus-broadcasts-artist {
  text-align: right;
  display: block;
  padding-bottom: 0.5em;
}
.bus-broadcasts-title:before {
  content: "‘";
}
.bus-broadcasts-title:after {
  content: "’";
}
.bus-broadcasts-dates {
  font-family: "Diatype", sans-serif;
  font-size: var(--font-body);
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.bus-broadcasts-close {
  position: absolute;
  top: 0.75em;
  right: 0.75em;
  width: 3rem;
  height: 3rem;
  z-index: 101;
}
@media (max-width: 768px) {
  .bus-broadcasts-close {
    width: 38px;
  }
}
.bus-broadcasts-close:hover {
  cursor: pointer;
  opacity: 0.25;
}
.bus-broadcasts header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 60%;
  height: calc(100vh - 1.5em);
  z-index: 101;
  display: block;
  border-right: 1px solid;
  padding: 0;
  padding-right: 1em;
  margin: 0.75em;
}
.bus-broadcasts header .air-status {
  position: absolute;
  bottom: 0;
  left: 4px;
  font-family: "Diatype", sans-serif;
  font-size: var(--font-sans);
  line-height: 1.05;
}
.bus-broadcasts header .air-status:before {
  content: "⚫";
  font-size: 75%;
  vertical-align: middle;
}
.bus-broadcasts-live {
  width: 100%;
  height: 2em;
  position: fixed;
  top: 72px;
  left: 0;
  background: white;
  overflow-x: hidden;
  white-space: nowrap;
  z-index: 101;
  padding: 0.35rem 0 0.25rem;
  font-size: 1.6rem;
  box-shadow: 0px 10px 11px 0px rgba(0, 0, 0, 0.25);
  border-top: 1px solid;
}
.bus-broadcasts-live span {
  font-family: "Diatype";
}
.bus-broadcasts main {
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100vh;
  margin-left: auto;
  padding: var(--gutter);
  overflow-y: auto;
}
.bus-broadcasts main .main-header {
  position: fixed;
  top: 0;
  width: 100%;
  border: 0;
  padding: 0.75em 0.5em 0.25em 0.75em;
  box-shadow: -1px 10px 11px 0px rgb(255, 255, 255);
  background: white;
}
.bus-broadcasts main .main-header span:not(:last-of-type):after {
  content: ", ";
}
.bus-broadcasts main .main-header span:hover {
  cursor: pointer;
  color: var(--broadcast);
}
.bus-broadcasts main article {
  width: calc(100% - 1.5em);
  height: auto;
  border-bottom: 1px solid;
  padding: 0.5em 0 0.25em 0;
  margin: 0 1em;
}
.bus-broadcasts main article:first-of-type {
  padding-top: 3.5em;
}
.bus-broadcasts main article:hover {
  cursor: pointer;
}
.bus-broadcasts main article:hover figure {
  background-blend-mode: screen;
}
.bus-broadcasts main article:hover .bus-broadcasts-title, .bus-broadcasts main article:hover .bus-broadcasts-artist, .bus-broadcasts main article:hover .tags span {
  color: var(--broadcast);
}
.bus-broadcasts main article .figure {
  background-color: var(--broadcast);
  background-blend-mode: screen;
}
.bus-broadcasts main article .figure figure {
  padding: 0;
  width: 48rem;
  height: 80vh;
  background-size: cover;
  filter: grayscale(1) contrast(1.5);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-95%, -50%);
}
.bus-broadcasts main article:not(:first-of-type) .figure {
  display: none;
}
.bus-broadcasts main article:hover .figure {
  display: block;
}
.bus-broadcasts .tags {
  padding-top: 0.5em;
}
.bus-broadcasts .tags span {
  font-family: "Diatype";
  font-size: 14px;
  padding: 0.35rem 0.75rem 0.25rem;
  border: 1px solid;
  border-radius: 20px;
}
.bus-broadcasts .tags span:hover {
  color: var(--highlight);
  cursor: pointer;
}
.bus-broadcasts-logo {
  width: 100%;
  max-width: 21%;
}
@media (max-width: 670px) {
  .bus-broadcasts-logo {
    max-width: 50%;
    position: fixed;
    bottom: 1em;
    right: 1em;
    left: auto;
    transform: translateX(0) scale(1);
  }
}
.bus-broadcasts-logo svg .st0 {
  fill: none;
}
.bus-broadcasts-logo svg .sun {
  animation: spin 5s linear infinite;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}
.bus-broadcasts-logo svg:hover path.sun {
  fill: #ff8264;
}

.turbolinks-progress-bar {
  visibility: hidden;
}

[data-parent=program] .event h3 .artist, [data-parent=program] .event h3 .title {
  font-family: "TW", monospace;
  font-size: var(--font-tw);
  -webkit-font-smoothing: antialiased;
  line-height: 1.1;
  letter-spacing: 0;
  padding-bottom: 0;
}
[data-parent=program] .event h1 {
  -webkit-font-smoothing: antialiased;
  line-height: 1.1;
  letter-spacing: -0.03em;
  padding-bottom: 0;
}

figure {
  transition: all 0.35s ease-in-out;
}
#clock {
  margin: auto;
  border: solid 1px red;
  border-radius: 50%;
  width: 6em;
  height: 6em;
  position: absolute;
  bottom: 6em;
  left: 1px;
  display: none;
}

.number {
  position: absolute;
  margin: auto;
  height: 1em;
  font-size: 3em;
  text-align: center;
}

#number-12 {
  top: 9px;
  left: 0;
  right: 0;
}

#number-3 {
  right: 9px;
  top: 0;
  bottom: 0;
}

#number-6 {
  bottom: 9px;
  left: 0;
  right: 0;
}

#number-9 {
  left: 9px;
  top: 0;
  bottom: 0;
}

#center-cover {
  background: red;
  position: absolute;
  z-index: 10;
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.hand {
  position: absolute;
  top: 50%;
  right: 50%;
  display: none;
  transform-origin: 100%;
  transition: all 0.05s;
  transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

#second-hand {
  background: red;
  height: 1px;
  width: 45%;
}

#minute-hand {
  background: red;
  height: 1px;
  width: 45%;
  border-radius: 8px;
}

#hour-hand {
  background: red;
  height: 2px;
  width: 40%;
  border-radius: 5px;
}

.tooltip {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border: 1px solid white;
  background: black;
  color: white;
  pointer-events: none;
  font-family: "BusMono";
  font-size: 0.9vw;
  padding: 0.1rem 0.2rem;
  max-width: 20em;
  display: none;
}

@media (max-width: 1023px) {
  .calendar-trigger {
    display: none;
  }
}

.calendar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: white;
  z-index: 20;
  overflow-y: auto;
  border-left: 1px solid;
  transition: transform 0.5s ease-in-out;
}
.calendar.loading .calendar__inner {
  opacity: 0.3;
  pointer-events: none;
}
.calendar:not(.open) {
  transform: translateY(100%);
}
.calendar__inner {
  padding: 2rem;
}
.calendar__close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 2rem;
  font-family: sans-serif;
  line-height: 1;
  font-size: 120%;
}
.calendar__week {
  display: flex;
  width: 100%;
}
.calendar__week:first-of-type {
  color: red;
  background: red !important;
}
.calendar__week:first-of-type .calendar__day {
  border-top: none;
}
.calendar__heading {
  text-align: center;
  margin-bottom: 2rem;
  font-family: sans-serif;
  line-height: 1;
  font-size: 120%;
}
.calendar__day-name {
  text-align: left;
  font-family: "BusMono";
  font-size: 0.9vw;
  text-transform: uppercase;
  padding: 0.25rem 0;
}
.calendar__box__content {
  min-height: 12.5vw;
}
.calendar__day {
  flex: 1;
  position: relative;
  border-top: 1px solid;
}
.calendar__box__day {
  font-family: sans-serif;
  line-height: 1.5;
  font-size: 120%;
}
.calendar__box__events {
  font-family: "BusMono";
  font-size: 0.9vw;
  padding-bottom: 1rem;
}
.calendar__event {
  width: 100%;
  position: relative;
}
.calendar__event:not(:hover) .calendar__event__tooltip {
  display: none;
}
.calendar__event--span:not([data-start="1"]) {
  display: none;
}
.calendar__event__text {
  white-space: nowrap;
  overflow-x: hidden;
  width: 12.5vw;
  text-overflow: ellipsis;
}

/* end New CSS */
@font-face {
  font-family: "Bus";
  src: url(../fonts/LidoBusCondAlt-Regular.woff);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Bus";
  src: url(../fonts/LidoBusCond-Italic2.woff);
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Bus";
  src: url(../fonts/BradfordLL-Regular.woff);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Bus";
  src: url(../fonts/BradfordLL-Italic.woff);
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "BusMono";
  src: url(../fonts/schrijfmachine-bold-webfont.woff);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BusMono";
  src: url(../fonts/schrijfmachine-bold-webfont.woff);
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Diatype";
  src: url(../fonts/DiatypePre-Regular.woff);
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 0.8vw;
  --font-smaller: 1.2rem;
  --font-small: 1.6rem;
  --font-body: 2rem;
  --font-text: 3rem;
  --font-tw: 2.7rem;
  --font-titling: 4.3rem;
  --font-sans: 4.1rem;
  --font-mega: 5.6rem;
}
@media (max-width: 920px) {
  html {
    font-size: 10px;
    --font-mega: 4.8rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 10px;
    --font-mega: 7rem;
    --font-smaller: 1.5rem;
  }
}
@media (max-width: 690px) {
  html {
    font-size: 10px;
    --font-mega: 5.4rem;
    --font-smaller: 1.4rem;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 10px;
    --font-body: 1.6rem;
    --font-mega: 4.6rem;
    --font-smaller: 1.3rem;
    --font-sans: 4.6rem;
  }
}

body {
  font-family: "Bus", serif;
  font-size: var(--font-body);
}

em:before {
  content: "‘";
}
em:after {
  content: "’";
}

p, ul li, dl {
  font-size: var(--font-body);
  font-family: "Bus", serif;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  p, ul li, dl {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  p, ul li, dl {
    font-size: 1.8rem;
  }
}

p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: underline;
}
p + p {
  text-indent: 2em;
}

sup {
  font-family: "BusMono";
  font-size: 1.2rem;
}
sup a {
  text-decoration: none;
}

.footnotes {
  font: inherit;
  margin-top: 1em;
}
.footnotes ol {
  margin-left: 3.5em;
}
.footnotes ol li {
  font-family: "BusMono";
  font-size: var(--font-smaller);
}
.footnotes ol li p {
  font-family: "BusMono";
  font-size: var(--font-smaller);
}
.footnotes ol li p a {
  text-decoration: none;
}

em {
  font-style: italic;
}

h1, h2, h3, nav a, .title, .artist, .subtitle, nav span {
  font-size: var(--font-mega);
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-feature-settings: "ss02";
}
h1 a, h2 a, h3 a, nav a a, .title a, .artist a, .subtitle a, nav span a {
  line-height: 0.8;
}

h1 {
  text-align: center;
}

h3 {
  font-size: var(--font-sans);
}

.title, .artist {
  letter-spacing: -0.02em;
}

.dots {
  font-family: "BusMonoDots";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.dots:hover {
  font-family: "BusMono";
}

.outline {
  font-family: "BusMonoOutline";
  -webkit-font-smoothing: antialiased;
}
.outline:hover {
  font-family: "BusMono";
}

@media (max-width: 690px) {
  h2, h3 {
    padding-bottom: 0;
  }
}

h3 {
  padding-bottom: 0.25em;
}

h2 a:before {
  content: "(";
}
h2 a:after {
  content: ")";
}
h2 a:hover {
  border-bottom: 2px solid;
}
h2 a:hover:before, h2 a:hover:after {
  border-bottom: 2px solid white;
}

blockquote {
  margin: 1em 1em 1em 2.2em;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.poem {
  margin-top: 1em;
}
.poem p {
  text-indent: 0;
}

[data-template=show] h2 {
  font-size: var(--font-text);
  padding: 0;
  text-indent: 2em;
}
[data-template=show] p + h2 {
  margin-top: 1em;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 2.4rem;
  z-index: 100;
}
#lightbox .lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2.4rem;
  z-index: 1;
}
#lightbox .lightbox-close, #lightbox .slick-arrow {
  font-size: 5.6rem;
}
#lightbox .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  padding: 2.4rem;
  cursor: pointer;
}
#lightbox .slick-prev {
  left: 0;
}
#lightbox .slick-next {
  right: 0;
}
#lightbox .slide {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  width: 100vw;
  height: 100vh;
}
#lightbox .lightbox-image {
  flex: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 3.2rem 9.6rem;
}
#lightbox .lightbox-caption {
  width: 100%;
  text-align: center;
  margin-bottom: 3.2rem;
}

.masonry-container {
  position: relative;
  margin-bottom: 12rem;
  width: 100%;
}
.masonry-container a {
  display: block;
}
.masonry-container .masonry-item:first-child {
  margin-top: 0 !important;
  margin-left: 0 !important;
}
.masonry-container img {
  display: block;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .masonry-container img {
    width: 100%;
  }
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  appearance: none;
  border-radius: 0;
}

select {
  text-align: right !important;
  padding: 0;
  outline: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

select option[disabled] {
  opacity: 0.5;
}

body[data-show-cart=true] {
  overflow: hidden;
}

.cart-pane {
  position: fixed;
  background: white;
  z-index: 200;
  width: 100%;
  height: 100%;
  width: calc(33.3333333333% + 1.5em);
  font-size: 1.8rem;
  line-height: 1.25;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1rem 0 3rem 1rem;
  top: 0;
  right: 0;
  transition: transform 0.5s ease-in-out;
  border-left: 1px solid black;
}
.cart-pane:not(.open) {
  transform: translateX(100%);
}
.cart-pane-close {
  position: absolute;
  top: 0.5em;
  right: 1em;
  z-index: 800;
}
.cart-pane-close:hover {
  cursor: pointer;
  opacity: 0.25;
}
.cart-pane-inner {
  max-width: calc(100% - 1em);
  border-top: 1px solid;
}
body.cart-loading .cart-pane-inner {
  pointer-events: none;
  opacity: 0.5;
}
.cart-pane-inner .cart-product-header, .cart-pane-inner .cart-product-price, .cart-pane-inner .cart-product-row {
  display: flex;
  flex-direction: row;
}
.cart-pane-inner .cart-product-header span, .cart-pane-inner .cart-product-price span, .cart-pane-inner .cart-product-row span {
  flex: 1;
}
.cart-pane-inner .cart-product-header span:first-of-type, .cart-pane-inner .cart-product-price span:first-of-type, .cart-pane-inner .cart-product-row span:first-of-type {
  flex: 0.5;
}
.cart-pane-inner .cart-product-header span:last-of-type, .cart-pane-inner .cart-product-price span:last-of-type, .cart-pane-inner .cart-product-row span:last-of-type {
  text-align: right;
}
.cart-pane-inner .cart-purchase-details {
  margin-top: 1em;
}
.cart-pane p {
  margin-bottom: 0.15em;
}
.cart-pane p:first-of-type {
  font-size: var(--font-mega);
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-feature-settings: "ss02";
  text-align: left;
}
.cart-pane h1 {
  font-size: var(--font-body) !important;
  font-weight: normal;
  text-align: left;
  margin: 1em 0 0.5em;
}
.cart-pane form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cart-pane form div {
  width: 50%;
  margin-bottom: 1rem;
}
.cart-pane form div:not(.half) {
  width: 100%;
}
.cart-pane form input, .cart-pane form textarea {
  border: 0;
  border-bottom: 1px solid;
  width: 100%;
  line-height: 1.2;
  background: white;
}
.cart-pane form input:-webkit-autofill, .cart-pane form input:focus:-webkit-autofill, .cart-pane form textarea:-webkit-autofill, .cart-pane form textarea:focus:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px rgb(255, 255, 255) inset;
}
.cart-pane form input::placeholder, .cart-pane form textarea::placeholder {
  color: rgb(127, 127, 127);
}
.cart-pane form select {
  border-bottom: 1px solid;
  max-width: 100%;
}
.cart-pane form select:-webkit-autofill, .cart-pane form select:focus:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px rgb(255, 255, 255) inset;
}
.cart-pane form button {
  border: none !important;
  outline: 0;
  background: white !important;
  border: 1px solid black !important;
  display: inline-block !important;
  margin-left: auto;
  margin-top: 0;
  width: auto;
  margin-left: calc(50% + 0.5rem);
  text-align: center;
  padding: 0.25rem 1.25rem;
  border-radius: 20px;
  font-size: var(--font-body);
}
.cart-pane form button:hover {
  cursor: pointer;
  opacity: 0.25;
}
.cart-pane form label {
  display: none;
}
@media only screen and (max-width: 480px) {
  .cart-pane {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 1rem 0;
  }
}
.cart-pane .close-button-container {
  width: 100%;
  text-align: right;
  margin-bottom: 1rem;
}
.cart-count[data-cart-count="0"] {
  display: none;
}

span.cost + span {
  display: block;
  padding-top: 0.5rem;
}

@media (max-width: 480px) {
  .cart .table {
    margin: 0;
  }
}
@media (max-width: 560px) {
  .cart .table .row .col[data-col=title] {
    flex: 2;
  }
  .cart .table .row .col[data-col=image] {
    width: 120px;
  }
  .cart .table .row.body-row [data-col=image] {
    height: 120px;
  }
  .cart .table .row.footer-row [data-col=image], .cart .table .row.footer-row [data-col=title] {
    display: none;
  }
}
#cart-message-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}
#cart-message-container #cart-message {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
}
#cart-message-container #cart-message div {
  width: 130px;
  height: 130px;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

body[data-show-cart=true] .cart-close {
  opacity: 1;
  pointer-events: inherit;
}

.cart-toggle {
  top: 0.35em !important;
  right: 0.5em !important;
}

#cart-container {
  position: fixed;
  top: 0;
  right: -20px;
  width: 100%;
  max-width: 33.3333333333%;
  height: 100%;
  z-index: 1000;
  background: white;
  padding: 2.4rem;
  padding-top: 4.8rem;
  box-shadow: -9px 3px 13px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease-in-out;
}
#cart-container.open {
  right: 0;
}
@media (max-width: 480px) {
  #cart-container {
    padding: 1rem;
    padding-top: 4rem;
  }
}

.cart-close {
  position: fixed;
  z-index: 10001;
  top: var(--gutter);
  right: var(--gutter);
  display: block;
  width: 2em;
}
.cart-close:hover {
  cursor: pointer;
  opacity: 0.25;
}
@media (max-width: 480px) {
  .cart-close {
    margin-top: 0.5rem;
    margin-right: 1rem;
  }
}

.cart-update {
  cursor: pointer;
}

.subscribe-form {
  display: none;
}
.subscribe-form p {
  display: flex;
  flex-direction: column;
  width: 20rem;
}
.subscribe-form input[type=email] {
  border-bottom: 2px solid;
}
.subscribe-form input[type=submit] {
  background: none;
  margin-left: auto;
}

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