:root {
  --base-paper: #ffffff;
  --base-black: rgba(0, 0, 0, 1);
  --base-white: rgba(255, 255, 255, 1);
  --line-black: rgba(0, 0, 0, 0.3);
}

html {
  background-color: var(--base-paper);
  margin: 0px;
  padding: 0px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 100vh;
  width: 100vw;
  overscroll-behavior-y: none;
}

.invert {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-thumb {
  opacity: 0;
  border-right: 0px rgba(255, 0, 0, 0) solid;
  border-top: 0px rgba(255, 0, 0, 0) solid;
  border-bottom: 0px rgba(255, 0, 0, 0) solid;
}

.slider::-webkit-scrollbar {
  display: none;
}

img {
  filter: var(--main-filter);
}

img.logo__background {
  position: fixed;
  width: 195vw;
  top: 50%;
  left: 50%;
  transform: translate(-42.5%, -55%);
  opacity: 3.5%;
  pointer-events: none;
}
img.logo__main {
  width: 250px;
  position: fixed;
  top: 79vh;
  pointer-events: none;
}

@media (max-width: 1200px) {
  img.logo__main {
    top: 81vh;
    width: 190px;
  }
}
@media (max-height: 650px) {
  img.logo__main {
    width: 215px;
  }
}
div.UI__holder {
  position: fixed;
  left: 0px;
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  z-index: 1;
  bottom: 10vh;
}
div.UI__wrapper {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
div.UI__left {
  display: flex;
  gap: 5px;
}
div.UI__left-menu {
  position: fixed;
  top: 77.5vh;
}
div.UI__left-logo-lockup {
  transition: opacity 0.25s;
}
div.UI__left-position {
  display: flex;
}
div.UI__archive-lists {
  position: absolute;
  top: 0px;
  left: 65%;
  z-index: 1;
}
@media (max-width: 1200px) {
  div.UI__archive-lists {
    left: 62.5%;
  }
}
div.UI__right {
  width: 200px;
}
div.UI__right-menu {
  display: flex;
  justify-content: space-between;
  margin-block-end: 1em;
  width: 190px;
  position: fixed;
  top: 77.5vh;
}
div.UI__right-contacts {
  display: block;
  position: fixed;
  width: 190px;
}

span.contacts__detail-container {
  display: flex;
  gap: 5px;
  position: fixed;
  height: 20px;
  top: 82.5vh;
}

span.email-wrapper {
  display: flex;
  gap: 2.5px;
  position: fixed;
  height: 20px;
  top: 82.5vh;
  margin-block-start: 1.25em;
}

@media (max-width: 750px) {
  img.logo__background {
    position: fixed;
    width: 195vw;
    top: 50%;
    left: 50%;
    transform: translate(-42.5%, -55%);
    opacity: 3%;
    pointer-events: none;
  }
  img.logo__main {
    width: 215px;
    margin-bottom: 5px;
    bottom: 6vh;
    top: auto;
  }
  div.UI__holder {
    bottom: 5vh;
  }
  div.UI__left-menu {
    position: fixed;
    top: auto;
    bottom: 15vh;
  }
  div.UI__archive-lists {
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 1;
  }
  div.UI__right {
    width: 150px;
    position: fixed;
    left: 59%;
  }
  div.UI__right-menu {
    width: 150px;
    position: fixed;
    bottom: 10vh;
    margin-block-end: 0em;
    top: auto;
  }
  div.UI__right-contacts {
    width: 150px;
  }
  span.contacts__detail-container {
    position: fixed;
    bottom: 10vh;
    top: auto;
  }
  span.email-wrapper {
    position: fixed;
    bottom: 7.5vh;
    top: auto;
  }
}
@font-face {
  font-family: "HelveticaNeue";
  src: url(../fonts/HelveticaNeue.woff2), url(../fonts/HelveticaNeue.woff);
}
@font-face {
  font-family: "EBGaramond";
  src: url(../fonts/EBGaramond.woff2), url(../fonts/EBGaramond.woff);
}
:root {
  --body-menu-font: "HelveticaNeue";
  --body-copy-size: 11px;
  --body-copy-lineheight: 12px;
  --detail-font: "EBGaramond";
  --detail-size: 13px;
  --detail-lineheight: 13px;
  --text-color: #7d7d7d;
  --mobile-body-copy-size: 9px;
  --mobile-body-copy-lineheight: 10px;
  --detail-size: 11px;
  --detail-lineheight: 11px;
}

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

*::selection {
  background: rgba(174, 174, 174, 0);
}

p, a {
  font-family: var(--body-menu-font);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-lineheight);
  margin-block-start: 0.4em;
  margin-block-end: 0.4em;
  color: var(--text-color);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.archive-list > p {
  margin-block-end: 0.8em;
}

p.email {
  cursor: pointer;
}

p.email:hover {
  text-decoration: underline;
}

p.detail {
  font-family: var(--detail-font);
  font-size: var(--detail-size);
  line-height: var(--detail-lineheight);
}

p.LTD {
  position: fixed;
  top: 83.5vh;
  margin-block-start: 4.2em;
}

a {
  cursor: pointer;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 750px) {
  p {
    font-size: var(--mobile-body-copy-size);
    line-height: var(--mobile-body-copy-lineheight);
  }
  p.LTD {
    position: fixed;
    top: auto;
    bottom: 2vh;
  }
  .archive-list > p {
    margin-block-end: 0.8em;
  }
  #contributers > p {
    margin-block-end: 1.2em;
  }
  a {
    font-size: var(--mobile-body-copy-size);
    line-height: var(--mobile-body-copy-lineheight);
    height: 50px;
    width: 50px;
  }
  button {
    font-size: var(--mobile-body-copy-size);
    line-height: var(--mobile-body-copy-lineheight);
  }
}
div.mc_embed_signup {
  display: flex;
}

input {
  font-family: var(--body-menu-font);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-lineheight);
  padding: 0px 0px;
  border: 1px solid var(--text-color);
  border-radius: 2.5%;
  font-weight: normal;
}

form {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

input[type=email i] {
  writing-mode: horizontal-tb !important;
  padding-block: 0px;
  padding-inline: 2px;
  align-self: center;
  height: 15px;
  color: var(--text-color);
}

input[type=submit i] {
  appearance: unset;
  user-select: none;
  align-items: flex-start;
  text-align: unset;
  cursor: pointer;
  box-sizing: unset;
  background-color: #ffffff;
  white-space: unset;
  padding-block: 0px;
  padding-inline: 2px;
  border-width: 0px;
  border-style: double;
  border-width: 0px;
  border-color: var(--text-color);
  border-image: initial;
  height: 15px;
  align-self: center;
  color: var(--text-color);
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

input.btn-yt:hover {
  text-decoration: underline;
}

p.newsletter-title {
  position: fixed;
  top: 82.5vh;
  margin-block-start: 4em;
}

div#mc_embed_signup {
  position: fixed;
  top: 82vh;
  margin-block-start: 4.2em;
}

@media (max-width: 750px) {
  input {
    font-size: var(--mobile-body-copy-size);
    line-height: var(--mobile-body-copy-lineheight);
  }
  p.newsletter-title {
    position: fixed;
    bottom: 5vh;
    top: auto;
    margin-block-start: auto;
  }
  div#mc_embed_signup {
    position: fixed;
    bottom: 2vh;
    top: auto;
    margin-block-start: auto;
  }
}
.slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  font-family: sans-serif;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 1.25px;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  scroll-behavior: smooth;
  top: -90vh;
  transition: top 1s;
  opacity: 0;
  height: 0px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  width: 30vw;
  height: fit-content;
  scroll-snap-align: start;
  position: relative;
}

div.image-container {
  width: 100%;
}

img.image__artist {
  height: auto;
  width: 100%;
  cursor: pointer;
  max-height: 57.5vh;
}
img.image__archive {
  height: auto;
  width: 100%;
  max-height: 57.5vh;
}

div.artist__title-container {
  display: flex;
  flex-direction: column;
  opacity: 0%;
  height: 0px;
  transition: height 0.5s;
}
div.artist__title-container.active {
  opacity: 100%;
  height: 45px;
  transition: height 0.5s;
}
div.artist__info-wrapper {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0%;
  transition: opacity 0.5s;
}
div.artist__info-wrapper.active {
  pointer-events: all;
  opacity: 100%;
  transition: opacity 0.5s;
}
div.artist__bio-container {
  width: 300px;
}
div.artist__links-container {
  display: flex;
  flex-direction: column;
  text-align: end;
}
div.artist__links-container > a:hover {
  text-decoration: underline;
}

@media (max-width: 750px) {
  img.image__artist {
    max-height: 40vh;
  }
  div.artist__title-container.active {
    opacity: 100%;
    height: 35px;
    transition: height 0.5s;
  }
  div.artist__bio-container {
    width: 225px;
  }
}
span.archive__detail-container {
  display: flex;
  gap: 10px;
  padding-left: 40px;
  top: 0px;
  position: absolute;
}
span.archive__detail-container:nth-child(1) > .archive__icon-title-container > .archive__icon-container img {
  width: 16px;
}
span.archive__detail-container:nth-child(2) > .archive__icon-title-container > .archive__icon-container img {
  width: 12px;
}
span.archive__detail-container:nth-child(3) > .archive__icon-title-container > .archive__icon-container img {
  width: 14px;
}
span.archive__list-container {
  width: 500px;
  text-align: right;
  overflow-y: scroll;
  height: 0px;
  position: absolute;
  left: -500px;
  opacity: 0;
  display: none;
  transition: 0.5s;
  position: absolute;
  pointer-events: none;
  height: 0px;
  top: 0px;
  z-index: 0;
  cursor: pointer;
}
span.archive__icon-title-container {
  position: fixed;
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: height 0.5s ease-out, margin-left 0.5s ease;
  height: 20px;
  pointer-events: none;
}
span.archive__icon-container {
  width: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

div#archiveDetails {
  opacity: 0;
  transition: 0.5s;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.75fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}

.grid-wrapper:hover > .archive-list > p {
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 1050px) {
  span.grid-wrapper > span:nth-child(3) {
    display: none;
  }
  .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }
  span.archive__list-container {
    width: 300px;
    text-align: right;
    overflow-y: scroll;
    height: 0px;
    position: absolute;
    left: -365px;
    opacity: 0;
    display: none;
    transition: 0.5s;
    position: absolute;
    height: 0px;
    top: 0px;
    z-index: 1;
    display: grid;
    grid-template-columns: auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  span.archive__icon-title-container {
    position: fixed;
    left: 60%;
    display: flex;
    gap: 10px;
    cursor: pointer;
    transition: 0.5s;
    align-items: center;
  }
}
@media (max-width: 750px) {
  div.UI__left-menu {
    position: fixed;
    bottom: 10vh;
    display: flex;
    z-index: 2;
  }
  .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }
  span.grid-wrapper > span:nth-child(3) {
    display: none;
  }
  span.archive__list-container {
    width: 200px;
    text-align: right;
    overflow-y: scroll;
    height: 0px;
    position: absolute;
    left: -200px;
    opacity: 0;
    display: none;
    transition: 0.5s;
    position: absolute;
    height: 0px;
    top: 0px;
    z-index: 1;
    display: grid;
    grid-template-columns: auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  span.archive__icon-title-container {
    position: fixed;
    left: 60%;
    display: flex;
    gap: 10px;
    cursor: pointer;
    transition: 0.5s;
    align-items: center;
  }
}
span.artist_wrapper {
  display: flex;
  flex-direction: column;
  transition: 0.5s;
}

span.artist__name-container {
  position: absolute;
  pointer-events: none;
  margin-block-start: 2em;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0s;
}

span.artist__name-container.active {
  opacity: 1;
  transition: 0.5s;
}

span.artist__name-container > p {
  margin-block-end: 0.8em;
}

.screensaver {
  position: fixed;
  top: 77.5vh;
  left: 22.5rem;
  transform: translateX(0);
  transition: transform 400ms ease-in-out;
}

@media (max-width: 1200px) {
  .screensaver {
    left: 18rem;
  }
}
@media (max-width: 750px) {
  .screensaver {
    display: none;
  }
}
.screensaver__countdown {
  font-size: 1.4em;
  opacity: 0;
  background: white;
  border-radius: 4px;
  color: lightgrey;
  display: flex;
  width: 215px;
  height: 115px;
  align-items: center;
  text-align: center;
  border: solid 1px lightgrey;
  justify-content: center;
  transition: opacity 300ms ease-in-out;
}

.screensaver__countdown.active {
  opacity: 1;
}

.screensaver__video {
  display: none;
  position: absolute;
  top: 0;
}

.screensaver__video video {
  transition: border-radius 400ms ease-in-out;
  border-radius: 4px;
  width: 215px;
}

.screensaver__video video:hover {
  cursor: none;
}

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