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

@font-face {
  font-family: "Akkurat-Mono";
  src: url("../fonts/akkurat_mono.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --padding: 50px;
  --font-size: 17px;
  --font-size-table: 19px;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #666;
  --color-light: #efefef;
  --color-text: var(--color-code-green);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-black);
  --color-code-green: #b0fffd;
  --font-family-sans: "Akkurat-Mono", Courier, monospace;
  --font-family-mono: "Akkurat-Mono", Courier, monospace;
}

/* main: index.scss*/
/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #000000;
  background: rgba(0, 0, 0, 0.925);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  position: fixed;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  color: var(--color-background);
  background: url("../icons/close.svg") no-repeat;
  background-size: contain;
  cursor: pointer;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 90%;
  max-width: 5000px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

@media only screen and (max-width: 560px) {
  .lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
    width: 100vw;
    max-width: 5000px;
    height: auto;
    margin-top: -50%;
  }
}
/* main: index.scss*/
html {
  font-family: var(--font-family-mono);
  color: var(--color-text);
  background: var(--color-background);
}

img {
  width: 100%;
}

body {
  margin: 0 auto;
  display: flex;
  font-size: var(--font-size);
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

.header {
  position: relative;
}

.logo {
  font-weight: 600;
  cursor: pointer;
}

.menu {
  display: flex;
}

.menu a {
  padding: 1rem;
  display: block;
}

.menu a[aria-current] {
  text-decoration: underline;
}

.social {
  display: flex;
  padding: 0 0.5rem;
}

.social a {
  padding: 1rem 0.5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid > .column {
  margin-bottom: 20px;
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.text {
  line-height: 1.5em;
}

.text a {
  text-decoration: underline;
}

.text :first-child {
  margin-top: 0;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}

.text ul,
.text ol {
  margin-left: 1rem;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul > li {
  list-style: disc;
}

.text ol > li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.text h1,
.h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}

.text h2,
.h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.text h3,
.h3 {
  font-weight: 600;
}

.text .codeblock {
  display: grid;
}

.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 0.5rem;
  display: inline-block;
  color: var(--color-black);
}

.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}

.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.text hr {
  margin: 6rem 0;
}

.text dt {
  font-weight: 600;
}

.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}

.text blockquote footer {
  font-size: 0.875rem;
  font-style: italic;
}

.text figure {
  margin: 3rem 0;
}

.text figcaption {
  padding-top: 0.75rem;
  color: var(--color-text-grey);
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}

.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption {
  padding-top: 0.75rem;
  line-height: 1.5em;
}

@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid > .column {
    grid-column: span var(--columns);
  }
}
.pagination {
  display: flex;
  padding-top: 6rem;
}

.pagination > span {
  color: var(--color-text-grey);
}

.pagination > * {
  padding: 0.5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}

.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}

.note-excerpt header {
  margin-bottom: 1.5rem;
}

.note-excerpt figure {
  margin-bottom: 0.5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text-grey);
}

.footer h2 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer ul,
.footer p {
  color: var(--color-text-grey);
}

.footer a:hover {
  color: var(--color-text);
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: 0.75rem;
}

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-l {
  margin-bottom: 3rem;
}

.margin-xl {
  margin-bottom: 4.5rem;
}

.margin-xxl {
  margin-bottom: 6rem;
}

/* main: index.scss*/
body {
  overflow: hidden;
}

header,
main {
  width: 50%;
  position: relative;
}

header {
  height: 100vh;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
header div.logo {
  --width: 66.6%;
  background: url("../media/logo.svg") no-repeat;
  background-size: contain;
  background-position: center;
  width: var(--width);
  height: 500px;
  position: absolute;
  z-index: 999;
  margin-top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header div.logo .logoSounds {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 25%;
  gap: 0;
}
header div.logo .logoSounds a.icon,
header div.logo .logoSounds div.text {
  width: 50%;
}
header div.logo .logoSounds a.icon {
  height: 100%;
}
header div.logo .logoSounds div.text {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
header div.logo .logoSounds div.text a {
  height: 33.3333333333%;
}
header div.logo .logoSounds a {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
header a.logo canvas {
  bottom: -2px;
  left: 0;
  transform-origin: center left;
  transform: scaleX(0.97);
  position: absolute;
  width: 100%;
}
header video.hero {
  width: 100%;
  height: auto;
  min-height: 100vh;
  object-fit: cover;
}

#siteMute {
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(50% + 36px);
  left: calc(50% - 15px);
  background: url("../icons/unmuted.svg") no-repeat;
  background-size: contain;
}
#siteMute.muted {
  background: url("../icons/muted.svg") no-repeat;
}

#ambientLoop {
  position: absolute;
  bottom: 50px;
  left: 250px;
  z-index: 999;
}

main {
  padding: 50px;
  height: 100vh;
  overflow-y: auto;
}

.mobile {
  display: none;
}

.desktop {
  display: inline;
}

.footer {
  height: 70px;
  position: fixed;
  background: rgb(0, 0, 0);
  bottom: 0;
  right: 0;
  width: 50%;
  line-height: 1.5em;
  z-index: 420;
  padding: 20px 50px;
}
.footer .grid .right p {
  text-align: right;
}
.footer #talktodisc {
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  padding: 100px 12vw;
  width: 100%;
  left: 0;
  height: 100%;
  overflow: scroll;
  top: 0;
  background: rgba(0, 0, 0, 0.925);
  z-index: 6666;
  justify-content: center;
  align-items: center;
}
.popup.open {
  display: flex;
}
.popup#contact {
  padding: 150px 25vw;
}
.popup .closePopup {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: url("../icons/close.svg") no-repeat;
  background-size: contain;
  cursor: pointer;
}
.popup p {
  font-size: 50px;
  margin-bottom: 50px;
  line-height: 68px;
}
.popup img.aboutHero {
  width: 100%;
  height: auto;
}
.popup img.aboutHero.igloo {
  width: 140px;
  margin-bottom: 50px;
}

.div-cooltip {
  display: none;
  position: absolute;
  padding: 20px;
  overflow: hidden !important;
  z-index: -1;
  margin: 0px 0 0 0px;
  pointer-events: none;
  vertical-align: middle;
  box-sizing: border-box;
  width: 400px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: calc(50vh - 225px);
  left: calc(75% - 200px);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

form .field {
  padding: 25px 0;
  border-bottom: solid 1px var(--color-code-green);
}
form .field:first-of-type {
  border-top: solid 1px var(--color-code-green);
}
form .field:last-child {
  border-bottom: none;
}
form input,
form textarea {
  background: none;
  color: var(--color-code-green);
  border: 1px solid var(--color-code-green);
  display: inline-block;
  font-size: var(--font-size);
  padding: 10px 15px;
  width: calc(100% - 150px);
  font-family: var(--font-family-mono);
  outline: white;
}
form ::placeholder {
  color: var(--color-code-green);
  font-family: var(--font-family-mono);
  font-size: var(--font-size);
}
form textarea {
  width: calc(100% - 150px);
  height: 130px;
  outline: white;
}
form label {
  width: 150px;
  display: inline-block;
  float: left;
  padding-top: 10px;
}
form input#submit {
  background: var(--color-code-green);
  color: black;
  text-align: left;
  font-size: var(--font-size);
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid var(--color-code-green) !important;
  background: black !important;
  border-style: solid !important;
  -webkit-text-fill-color: var(--color-code-green) !important;
  -webkit-box-shadow: none !important;
  transition: none !important;
  outline: white !important;
}

/* main: index.scss*/
#sonicWavelength {
  width: 100%;
  height: 50px;
  cursor: pointer;
  margin-bottom: 25px;
  position: relative;
  background: var(--color-code-green);
}

/* main: index.scss*/
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
table td {
  font-size: var(--font-size-table);
}
table .number {
  width: 20%;
}
table .title {
  width: 30%;
}
table .format {
  width: 30%;
}
table .duration {
  width: 20%;
}

.tablesorter-header-inner,
thead tr th {
  text-align: left;
  color: var(--color-text-grey);
}

tr {
  border-bottom: solid 1px var(--color-code-green);
}
tr:hover {
  color: var(--color-white);
  cursor: pointer;
}

tbody tr:hover {
  color: var(--color-white);
}
tbody tr:last-child {
  border-bottom: 0px;
}

thead tr th:hover .tablesorter-header-inner {
  color: var(--color-white);
}

td {
  padding: 30px 0;
}

.tablesorter-header-inner {
  width: auto;
  display: inline-block;
  position: relative;
}

th {
  padding: 0 0 15px 0;
  position: relative;
}
th:hover .tablesorter-header-inner::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -15px;
  top: 5px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-code-green);
}
th.clicky:hover .tablesorter-header-inner::after {
  border-top: 0px solid transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--color-code-green);
}

/* main: index.scss*/
/* main: index.scss*/
@media only screen and (max-width: 800px) {
  :root {
    --font-size: 13px;
    --font-size-table: 17px;
  }

  body {
    flex-direction: column;
    overflow: scroll;
  }

  header {
    height: 600px;
  }
  header div.logo {
    --width: 90%;
    top: 100px;
  }

  .mobile {
    display: inline;
  }

  .desktop {
    display: none;
  }

  header,
main {
    width: 100%;
  }

  main {
    padding: 15px 0;
    min-height: 0;
    height: auto;
  }

  #contents {
    margin-top: 0px;
  }

  .div-cooltip {
    display: none !important;
  }

  #coolTable .number {
    width: 17.5%;
  }
  #coolTable .title {
    width: 35%;
  }
  #coolTable .format {
    width: 28.5%;
  }
  #coolTable .duration {
    width: 20%;
  }
  #coolTable td,
#coolTable th {
    padding: 26px 0;
  }
  #coolTable td:first-child,
#coolTable th:first-child {
    padding-left: 15px;
  }
  #coolTable td:last-child,
#coolTable th:last-child {
    padding-right: 15px;
  }

  .popup {
    padding: 100px 50px;
  }
  .popup#contact {
    padding: 100px 20px;
  }
  .popup p {
    font-size: 24px;
    line-height: 37px;
    margin-bottom: 50px;
  }
  .popup img.aboutHero.igloo {
    width: 36%;
    margin: 0 32% 25px 32%;
    height: auto;
  }
  .popup img.aboutHero.ticker {
    width: 100%;
  }

  form label {
    width: 100px;
  }
  form input,
form textarea {
    width: calc(100% - 100px) !important;
    font-size: 13px;
  }
  form textarea {
    height: 200px;
  }
  form ::placeholder {
    font-size: 13px;
  }

  #sonicWavelength {
    width: 100%;
    padding: 0;
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-bottom: 0;
  }

  footer,
.footer {
    width: 100%;
    padding: 15px;
    font-size: 11px;
    position: relative;
  }
  footer .grid .column.left,
.footer .grid .column.left {
    width: 100%;
  }
  footer .grid,
.footer .grid {
    display: flex;
  }
  footer .grid > .column,
.footer .grid > .column {
    width: 50%;
  }
  footer .innerHarmony,
.footer .innerHarmony {
    margin: 0;
  }
}

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