@font-face {
  font-family: "Unica";
  src: url("../type/NHaasGroteskDSPro-95Blk.woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Unica";
  src: url("../type/NHaasGroteskDSPro-95Blk.woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --max: 6.7rem;
  --body: 1.6rem;
  --green: rgb(0, 177, 0);
  --red: red;
  --purple: rgb(184,133,255);
  --yellow: rgb(255,255,0);
  --grey: #cdcdcd;
  --hover: blue;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 720px) {
  :root {
    --body: 4rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
}

html {
  font-size: 62.5%;
  font-size: 0.65vw;
}
@media (max-width: 720px) {
  html {
    font-size: 4px;
  }
}

body {
  font-family: "Unica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  font-feature-settings: "ss02";
  background: white;
  scroll-behavior: smooth;
  color: black;
}
body.no-scroll {
  overflow: hidden;
}
body.img .main-wrapper .main {
  grid-row-gap: 0.5em;
}
body.img article {
  border-radius: none;
  box-shadow: none;
  padding: 0;
}
body.img article.isPlaying {
  box-shadow: none;
}
body.img article.isPlaying figure img {
  filter: grayscale(0);
}
body.img article .num {
  margin-bottom: 0;
}
body.img article dl, body.img article p {
  display: none;
}
body.img article figure {
  display: block;
  padding: 0;
  padding-bottom: 0.5em;
}
body.img article figure img {
  transition: all 0.35s ease-in-out;
}
body.img article figure:not(:first-of-type) {
  display: none;
}
body.img article figure:hover img {
  filter: grayscale(0);
  border-radius: 1em;
}
body.img article:hover figure {
  position: static;
  transform: none;
  width: 100%;
}

h1,
h2 {
  font-size: var(--max);
  line-height: 1;
  text-align: center;
}

sup {
  font-size: 50%;
}

p,
dl,
article,
aside nav a {
  font-size: var(--body);
  font-weight: 400;
}

nav a:hover {
  color: var(--red);
}

.blur {
  filter: blur(10px);
}

.num {
  text-align: center;
  margin-bottom: 1.1em;
}

.holes {
  position: fixed;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 52;
  display: none;
}
.holes .hole {
  width: 4rem;
  height: 4rem;
  background: black;
  border-radius: 2rem;
}

.head {
  border-radius: 0.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  margin: 2em 0;
  color: black;
}
.caps {
  text-transform: capitalize;
}

.information-pane {
  width: 50%;
  height: 100vh;
  background: red;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: -10px 0px 10px 1px rgba(0, 0, 0, 0.25);
  padding: 1em;
  z-index: 52;
  overflow-y: auto;
  transition: transform 0.5s ease-in-out 0.15s;
}
@media (max-width: 720px) {
  .information-pane {
    width: 100%;
    padding: 2.5em;
  }
}
@media (max-width: 720px) {
  .information-pane article {
    background: red;
  }
}
.information-pane article:hover p {
  color: black;
}
@media (max-width: 720px) {
  .information-pane figure {
    padding-top: 2em;
  }
}
.information-pane figure img {
  filter: grayscale(0);
}
.information-pane p {
  font-family: "Unica";
  font-weight: 400;
  padding-right: 0.5em;
}
.information-pane p + h3 {
  padding-top: 1.1em;
}
.information-pane h2 {
  text-align: left;
}
.information-pane h3 {
  font-size: var(--body);
  text-align: left;
  text-indent: 6em;
  padding-bottom: 1.1em;
}
.information-pane hr {
  outline: 0;
  border: none;
  padding: 1.1em;
  box-shadow: none;
}
.information-pane:not(.visible) {
  transform: translateX(110%);
}
.information-pane_close {
  position: absolute;
  top: 0.5em;
  right: -0.25em;
  width: 4em;
  height: 4em;
}
@media (max-width: 720px) {
  .information-pane_close {
    top: 2.5em;
    right: 2.25em;
  }
}
.information-pane_close:before, .information-pane_close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 4em;
  width: 1px;
  background-color: black;
}
.information-pane_close:before {
  transform: rotate(45deg);
}
.information-pane_close:after {
  transform: rotate(-45deg);
}
.information-pane_close:hover {
  cursor: pointer;
}
.information-pane_close:hover:before, .information-pane_close:hover:after {
  background-color: white;
}
.information-pane-intro, .information-pane-artists, .information-pane-funding {
  padding-top: 2em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1em;
}
.information-pane-intro div, .information-pane-artists div, .information-pane-funding div {
  border-top: 1px solid;
  grid-column: span 3;
}
.information-pane-intro div figure, .information-pane-artists div figure, .information-pane-funding div figure {
  max-width: 65%;
}
@media (max-width: 720px) {
  .information-pane-intro div:first-of-type, .information-pane-artists div:first-of-type, .information-pane-funding div:first-of-type {
    display: none;
  }
}
@media (max-width: 720px) {
  .information-pane-intro div, .information-pane-artists div, .information-pane-funding div {
    grid-column: span 4;
  }
}
.information-pane-intro div p + p, .information-pane-artists div p + p, .information-pane-funding div p + p {
  text-indent: 6em;
}
.information-pane-intro div:first-of-type, .information-pane-artists div:first-of-type, .information-pane-funding div:first-of-type {
  grid-column: span 1;
}
@media (max-width: 720px) {
  .information-pane-intro article div:first-of-type, .information-pane-artists article div:first-of-type, .information-pane-funding article div:first-of-type {
    display: block;
  }
}
@media (max-width: 720px) {
  .information-pane-funding {
    padding-bottom: 2em;
  }
}
@media (max-width: 720px) {
  .information-pane-funding p {
    padding-top: 0.25em;
  }
}
@media (max-width: 720px) {
  .information-pane-funding div:last-of-type {
    padding-left: 20%;
  }
}
.information-pane-intro div {
  padding: 0.25em 0 0.5em;
}
.information-pane-artists {
  grid-template-columns: repeat(4, 1fr);
}
.information-pane-artists div:first-of-type {
  padding: 0.25em 0 0.5em;
}
.information-pane-artists div:last-of-type {
  border: none;
}
.information-pane-artists article {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: none;
  padding: 0;
}
@media (max-width: 720px) {
  .information-pane-artists article {
    grid-column-gap: 0.5em;
  }
}
.information-pane-artists article:hover {
  box-shadow: none;
  outline: none;
}
.information-pane-artists article div:first-of-type {
  grid-column: span 2;
  padding: 0.25em 0 0.5em;
}
@media (max-width: 720px) {
  .information-pane-artists article div:first-of-type {
    grid-column: span 1 !important;
  }
}
.information-pane-artists article div:last-of-type {
  border-top: 1px solid;
  padding: 0.25em 0 0.5em;
}

.weather span:not(:last-of-type):after {
  content: ", ";
}

header {
  padding: 12px 0 24px;
}
header a {
  position: absolute;
  top: 0.25em;
  font-size: var(--max);
  text-decoration: none;
}
@media (max-width: 720px) {
  header a span:not(.count) {
    display: none;
  }
}
header a .count {
  display: block;
  text-align: center;
  padding-top: 0.85em;
}
@media (max-width: 720px) {
  header a .count {
    padding-top: 0.25em;
  }
}

.ticker {
  padding: 1rem;
  white-space: nowrap;
  transition: transform 1s var(--ease);
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  z-index: 20;
}
@media (max-width: 720px) {
  .ticker {
    font-size: 3rem;
    padding-top: 0.75em;
  }
}
.ticker span {
  animation: marquee 30s linear infinite;
  transform-origin: bottom left;
  position: relative;
}

@keyframes marquee {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.modal-trigger {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  background: var(--green);
  padding: 2em;
  padding-top: 1.85em;
  border-radius: 1em;
  transform: translate(-50%, -50%);
  z-index: 40;
  text-align: center;
}
@media (max-width: 720px) {
  .modal-trigger {
    display: block;
  }
}
.modal-trigger_close {
  position: absolute;
  top: 0.5em;
  right: 1em;
  font-size: 2.4rem;
  font-family: "Unica";
  font-weight: bold;
}
.modal-trigger_close:hover {
  color: white;
  cursor: pointer;
}
@media (max-width: 720px) {
  .modal-trigger {
    width: 85%;
  }
}
.modal-trigger:hover {
  cursor: pointer;
}
.modal-trigger p {
  font-size: 2.4rem;
  font-family: "Unica";
  font-weight: bold;
}
@media (max-width: 720px) {
  .modal-trigger p {
    font-size: var(--body);
  }
}

img, .bg-img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
img.loaded, .bg-img.loaded {
  opacity: 1;
}

.initial-player {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  z-index: 10;
}
@media (max-width: 720px) {
  .initial-player {
    width: 100vw;
    overflow: hidden;
  }
}
.initial-player .bg-img {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-position: left top;
  background-size: contain;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  z-index: 10;
}
.initial-player .player_position {
  position: relative;
}
@media (max-width: 720px) {
  .initial-player .player_position {
    display: block;
  }
}
.initial-player .player_position .loader {
  height: 0.85em;
  width: 0.85em;
  margin-top: 2px;
  margin-left: -1em;
  animation: loading 3s linear infinite;
  opacity: 0;
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.initial-player .player_position .control_button {
  top: 0;
  left: 0;
  font-size: var(--max);
}
.initial-player .player_position .control_button .play {
  display: none;
}
.initial-player .player_position .control_button:hover span {
  color: white !important;
}
.initial-player_close {
  position: absolute;
  top: 2.7em;
  right: 1em;
  width: 4em;
  height: 4em;
}
.initial-player_close:before, .initial-player_close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 4em;
  width: 1px;
  background-color: white;
}
.initial-player_close:before {
  transform: rotate(45deg);
}
.initial-player_close:after {
  transform: rotate(-45deg);
}
.initial-player_close:hover {
  cursor: pointer;
}
.initial-player_close:hover:before, .initial-player_close:hover:after {
  background-color: black;
}
.initial-player-inner {
  position: relative;
  top: -4rem;
  height: 100vh;
  width: 100%;
  z-index: 20;
}

.mobile-message {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 0.25em;
  position: relative;
  font-size: var(--max);
  line-height: 1;
  z-index: 20;
  color: white;
  position: absolute;
  top: 1em;
  display: none;
}
@media (max-width: 720px) {
  .mobile-message {
    display: none;
  }
}
.mobile-message p {
  font-size: var(--max);
  line-height: 1;
}

.player-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 0.25em;
  position: relative;
  top: 0.5em;
  font-size: var(--max);
  line-height: 1;
  z-index: 20;
}
@media (max-width: 720px) {
  .player-header {
    padding-top: 0.25em;
    display: grid;
  }
}
.player-header nav a {
  text-decoration: none;
}
@media (max-width: 720px) {
  .player-header nav a {
    display: block;
  }
}
.player-header nav a:hover {
  color: black;
}
.player-header nav a:not(:last-of-type):after {
  content: ", ";
}
@media (max-width: 720px) {
  .player-header nav a:not(:last-of-type):after {
    content: "";
  }
}
.player-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  font-size: var(--max);
  line-height: 1;
  padding: 0 0.25em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 720px) {
  .player-middle {
    top: 42.5%;
  }
}

.modals {
  position: fixed;
  top: 1.5em;
  right: 1.5em;
  margin-left: auto;
  max-width: calc(25% - 1.5em);
  z-index: 9;
}
@media (max-width: 720px) {
  .modals {
    max-width: 100%;
    width: calc(100% - 5em);
    bottom: 1.5em;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    top: unset;
  }
}
.modals dl dd span:hover {
  color: black;
  cursor: none;
}

.conditions {
  background: var(--green);
  padding: 1em;
  border-radius: 0.5em;
  width: 100%;
  display: inline-block;
  box-shadow: 6px 2px 20px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 720px) {
  .conditions {
    padding: 1.5em;
    border-radius: 1.5em;
    margin-bottom: 0.5em;
  }
}
.conditions_close {
  position: absolute;
  top: 0.85em;
  right: 1em;
  display: none;
}
.conditions_close:hover {
  color: white;
  cursor: pointer;
}

figure {
  padding-top: 1em;
}
figure img {
  max-width: 100%;
  display: block;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}

.control_button .play {
  display: none;
}
.control_button:hover {
  cursor: pointer;
}
.control_button:hover span {
  color: white;
}

.player_geo {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: none;
}

.current_toggle {
  position: absolute;
  top: 1em;
  right: 1em;
  font-weight: 400;
  display: none;
}
.current_toggle:hover {
  color: white;
  cursor: pointer;
}
.current_audio {
  background: var(--red);
  padding: 1em;
  border-radius: 0.5em;
  width: 100%;
  display: inline-block;
  position: relative;
  margin-top: 0.5em;
  box-shadow: 6px 2px 20px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 720px) {
  .current_audio {
    padding: 1.5em;
    border-radius: 1.5em;
    margin-top: 0;
  }
}
.current_audio .controls {
  position: absolute;
  font-size: var(--body) !important;
  top: 1em;
  right: 1em;
  font-size: 1.6rem;
  font-weight: 400;
  display: flex;
  flex-direction: row;
}
@media (max-width: 720px) {
  .current_audio .controls {
    top: 0.65em;
  }
}
.current_audio .controls .pause:after, .current_audio .controls .play:after {
  content: ", ";
  padding-right: 4px;
}
@media (max-width: 720px) {
  .current_audio .controls .pause:after, .current_audio .controls .play:after {
    content: "";
    padding-right: 0;
  }
}
.current_audio .controls .pause:hover, .current_audio .controls .play:hover {
  color: white;
}
.current_audio .controls .pause:hover:after, .current_audio .controls .play:hover:after {
  color: black !important;
}
.current_audio .controls .shrink:hover {
  color: white;
  cursor: pointer;
}
@media (max-width: 720px) {
  .current_audio .controls .shrink {
    display: none;
  }
}
@media (max-width: 720px) {
  .current_audio dt:not(.audio_controls), .current_audio dd:not(.audio_controls) {
    display: none;
  }
}
@media (max-width: 720px) {
  .current_audio .images {
    display: none;
  }
}
.current_audio .images figure img {
  transition: all 0.25s ease-in-out;
}
.current_audio .images figure figcaption {
  display: none;
}
.current_audio .images figure:hover {
  cursor: pointer;
}
.current_audio .images figure:hover img {
  filter: none;
  mix-blend-mode: initial;
  border-radius: 1em;
}

.images figure img {
  opacity: 1 !important;
}
.images-gallery {
  display: none;
  position: fixed;
  top: 0.5em;
  left: 1.5em;
  width: calc(75% - 6em);
  height: 100vh;
  overflow-y: auto;
  z-index: 20;
}
.images-gallery .images figure figcaption {
  display: block;
  font-weight: 400;
  padding-top: 0.25em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.images-gallery .images figure figcaption .close:hover {
  cursor: pointer;
  color: white;
}
.images-gallery .images figure img {
  filter: none;
  mix-blend-mode: initial;
  border-radius: 1em;
}

.mini-nav {
  position: fixed;
  top: 2.5rem;
  left: calc(50% - 22.5rem);
  width: 45rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  background: white;
  padding: 6px 12px 8px;
  line-height: 0.5;
  font-size: var(--max);
  background-position: center;
  background-size: 6rem;
  background-repeat: no-repeat;
  z-index: 9;
  transition: all 0.5s ease-in-out;
  box-shadow: 6px 2px 20px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 720px) {
  .mini-nav {
    width: 55vw;
    left: calc(50% - 27.5vw);
    padding: 0.25em 1em;
    height: 7rem;
    border-radius: 3.5rem;
  }
}
.mini-nav nav {
  position: absolute;
  padding-top: 2px;
  top: -1.8rem;
  left: 2rem;
}
@media (max-width: 720px) {
  .mini-nav nav {
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
  }
}
.mini-nav nav a, .mini-nav nav span {
  font-size: 1.6rem;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}
@media (max-width: 720px) {
  .mini-nav nav a, .mini-nav nav span {
    font-size: 4.2rem;
  }
}
.mini-nav nav a:not(:last-of-type):after, .mini-nav nav span:not(:last-of-type):after {
  content: ",";
}
@media (max-width: 720px) {
  .mini-nav nav span {
    display: none;
  }
}
.mini-nav .back-to-top {
  position: absolute;
  top: -1.8rem;
  right: 2rem;
  padding-top: 2px;
}
@media (max-width: 720px) {
  .mini-nav .back-to-top {
    display: none;
  }
}
.mini-nav .back-to-top a {
  font-size: 1.6rem;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}
.mini-nav .back-to-top a:hover {
  color: red;
}
.mini-nav:not(.visible) {
  transform: translateY(-200%);
}

.trackRecordists, .trackSeason {
  text-transform: capitalize;
}

dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 0.5em;
}
dl dt {
  grid-column: span 1;
}
dl dt:not(:first-of-type) {
  border-bottom: 1px solid;
}
dl dd {
  grid-column: span 3;
}
dl dd:not(:first-of-type) {
  border-bottom: 1px solid;
}
dl dd span:not(:last-of-type):after {
  content: ", ";
}
dl dd span.none:after {
  content: "";
}
dl dd span:hover {
  cursor: pointer;
  color: var(--green);
}
dl dd span:hover:after {
  color: black;
}
dl dd .recordist:not(:last-of-type):after {
  content: ", ";
}
dl dd .tag {
  display: inline-block;
  padding-right: 3px;
}
dl dd .tag:not(:last-of-type):after {
  content: ", ";
}
dl dd .tag span.active {
  color: var(--green);
}
dl dd .tag span.active + i {
  font-style: normal;
  color: var(--green);
}
dl dd .tag:hover {
  cursor: pointer;
  color: gray;
}

.commissions-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: none;
  z-index: 101;
}
@media (max-width: 720px) {
  .commissions-gallery .gallery {
    margin: 1.5em;
  }
}
.commissions-gallery_close {
  position: absolute;
  top: 0.5em;
  right: -0.25em;
  width: 4em;
  height: 4em;
  z-index: 2;
}
@media (max-width: 720px) {
  .commissions-gallery_close {
    top: 1.5em;
    right: 1.25em;
  }
}
.commissions-gallery_close:before, .commissions-gallery_close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 4em;
  width: 1px;
  background-color: black;
}
.commissions-gallery_close:before {
  transform: rotate(45deg);
}
.commissions-gallery_close:after {
  transform: rotate(-45deg);
}
.commissions-gallery_close:hover {
  cursor: pointer;
}
.commissions-gallery_close:hover:before, .commissions-gallery_close:hover:after {
  background-color: #ccc;
}
.commissions-gallery.visible {
  top: 0;
}
.commissions-gallery .figure-no {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.5em;
  font-size: 2.4rem;
}
@media (max-width: 720px) {
  .commissions-gallery .figure-no {
    top: 0.75em;
    left: 1em;
    transform: none;
    font-size: 4.2rem;
  }
}
.commissions-gallery figure {
  padding: 0;
  width: 100%;
  height: calc(100vh - 2em);
}
.commissions-gallery figure:hover {
  cursor: pointer;
}
.commissions-gallery div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 720px) {
  .commissions-gallery div {
    margin: 1em;
  }
}
.commissions-gallery div figure.animate .img {
  transition: filter 1s ease-in;
}
.commissions-gallery div figure:not(:first-of-type) {
  display: none;
}
.commissions-gallery div figure .img {
  width: 100%;
  height: calc(100vh - 2em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 720px) {
  .commissions-gallery div figure .img {
    margin: 0 !important;
  }
}
.commissions-gallery div figure.portrait {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.commissions-single {
  position: relative;
}
.commissions-single:hover {
  cursor: pointer;
}
.commissions-single:hover img {
  opacity: 0;
}
.commissions-single:hover figcaption, .commissions-single:hover .image-count {
  display: block;
}
.commissions-entry {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 1em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.5em;
}
@media (max-width: 720px) {
  .commissions-entry {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 1.5em;
    min-height: 132vh;
    padding: 1.5em;
  }
}
.commissions-entry figure {
  padding: 0;
  background-size: 80%;
  background-position: top;
}
@media (max-width: 720px) {
  .commissions-entry figure {
    background-size: 100%;
  }
}
.commissions-entry figure:hover {
  background-size: 0%;
}
.commissions-entry figure figcaption, .commissions-entry figure .image-count {
  display: none;
  position: absolute;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--max);
  line-height: 1;
  text-align: center;
}
@media (max-width: 720px) {
  .commissions-entry figure figcaption, .commissions-entry figure .image-count {
    display: block;
  }
}
.commissions-entry figure .image-count {
  top: 4em !important;
  display: none;
}
@media (max-width: 720px) {
  .commissions-entry figure .image-count {
    display: block;
    top: 4em !important;
  }
}
.commissions-pane {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: white;
  z-index: 53;
  padding: 0.5em;
  display: none;
}
@media (max-width: 720px) {
  .commissions-pane {
    width: 100vw;
  }
}
.commissions-pane-intro {
  padding: 0.5em;
}
@media (max-width: 720px) {
  .commissions-pane-intro {
    padding: 1.5em;
  }
}
.commissions-pane-intro p {
  font-size: 2.4rem;
  max-width: 95%;
}
@media (max-width: 720px) {
  .commissions-pane-intro p {
    font-size: var(--body);
  }
}
.commissions-pane h2 {
  position: relative;
  padding-top: 0.25em;
  z-index: 1;
}
.commissions-pane figure img {
  filter: grayscale(0);
}
.commissions-pane_close {
  position: absolute;
  top: 0.5em;
  right: -0.25em;
  width: 4em;
  height: 4em;
  z-index: 2;
}
@media (max-width: 720px) {
  .commissions-pane_close {
    top: 1.5em;
    right: 1.25em;
  }
}
.commissions-pane_close:before, .commissions-pane_close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 4em;
  width: 1px;
  background-color: black;
}
.commissions-pane_close:before {
  transform: rotate(45deg);
}
.commissions-pane_close:after {
  transform: rotate(-45deg);
}
.commissions-pane_close:hover {
  cursor: pointer;
}
.commissions-pane_close:hover:before, .commissions-pane_close:hover:after {
  background-color: #ccc;
}
.commissions-pane.visible {
  display: block;
}

.main .isPlaying {
  color: var(--green);
}
@media (max-width: 720px) {
  .main .isPlaying {
    background: rgba(0, 177, 0, 0.1);
  }
  .main .isPlaying figure {
    background: var(--green);
    margin-bottom: 1em;
    padding: 0 !important;
    border-radius: 1em;
    overflow: hidden;
    display: block;
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    width: 100%;
  }
  .main .isPlaying figure img {
    mix-blend-mode: screen;
    filter: grayscale(1);
  }
}

hr {
  background: red;
  border-top: 1px solid;
}

article {
  padding: 1em;
  padding-top: 0;
  border-radius: 0.5em;
  transition: box-shadow 0.25s ease-in-out;
}
@media (max-width: 720px) {
  article {
    padding-top: 1em;
    background: #eee;
  }
}
article.isPlaying:hover {
  outline: none;
  color: var(--green);
}
article figure {
  display: none;
}
@media (max-width: 720px) {
  article figure {
    display: block;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 1em;
  }
}
article figure img {
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
@media (max-width: 720px) {
  article figure img {
    border-radius: 0.5em;
  }
}
article dl + p {
  margin-top: 1.1em;
}
article:hover {
  position: relative;
}
article:hover dl,
article:hover p,
article:hover .num {
  color: gray;
}
article:hover figure {
  display: none;
  padding-bottom: 1em;
  transition: all 0.5s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 65%;
  transform: translate(-50%, -50%);
}
@media (max-width: 720px) {
  article:hover figure {
    display: block;
    position: static;
    left: 0;
    top: 0;
    transform: none;
    transition: none;
    padding-bottom: 0;
    width: 100%;
  }
}
article:hover figure img {
  filter: grayscale(1);
  border-radius: 1em;
  opacity: 1;
}

main {
  padding: 0.5em 1.5em;
  width: 100%;
  display: none;
}
@media (max-width: 720px) {
  main {
    position: relative;
    overflow-x: hidden;
    padding: 0.5em 2.5em;
  }
}

.mobile-disclaimer {
  margin-top: 1.2em;
  display: none;
}
@media (max-width: 720px) {
  .mobile-disclaimer {
    display: block;
  }
}

@media (max-width: 720px) {
  .intro {
    background: #ccc;
    padding: 2em;
    border-radius: 1em;
  }
}

.main-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-auto-columns: min-content;
  padding-bottom: 10em;
  padding-top: 2.4rem;
}
@media (max-width: 720px) {
  .main-wrapper {
    display: block;
  }
}
.main-wrapper aside {
  grid-column: span 1;
  position: sticky;
  top: 1.5em;
  align-self: start;
}
@media (max-width: 720px) {
  .main-wrapper aside {
    position: static;
    grid-column: span 4;
  }
}
.main-wrapper aside dl {
  margin: 1.25em 0;
}
.main-wrapper aside nav {
  margin: 1.1em 0;
}
.main-wrapper aside nav a {
  display: block;
  text-decoration: none;
}
.main-wrapper .main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column: span 3;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}
@media (max-width: 720px) {
  .main-wrapper .main {
    grid-template-columns: 1fr;
  }
}
.main-wrapper p + p {
  margin-top: 1.1em;
}
.main-wrapper dt {
  border-bottom: 1px solid;
}
.main-wrapper dd {
  border-bottom: 1px solid;
}
.tracktime {
  font-variant-numeric: tabular-nums;
}

.track {
  display: none;
}

.audio_controls:hover {
  cursor: pointer;
}

.player-track.active {
  display: block;
}
.player-track:not(.active) {
  display: none;
}
.player-track:hover {
  cursor: pointer;
  color: white;
}

.initial-player[data-season=autumn] {
  background-color: #7693f8;
}

.initial-player[data-season=winter] {
  background-color: #7693f8;
}

.initial-player[data-season=spring] {
  background-color: #7693f8;
}

.initial-player[data-season=summer] {
  background-color: #7693f8;
}

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