@charset "UTF-8";
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes strobe {
  0% {
    opacity: 0.5;
    box-shadow: 0 0  0px white; }
  100% {
    opacity: 1.0;
    box-shadow: 0 0 10px white; } }

@keyframes strobe {
  0% {
    opacity: 0.5;
    box-shadow: 0 0  0px white; }
  100% {
    opacity: 1.0;
    box-shadow: 0 0 10px white; } }

@-webkit-keyframes blink {
  0% {
    opacity: 1.0; }
  100% {
    opacity: 0.2; } }

@keyframes blink {
  0% {
    opacity: 1.0; }
  100% {
    opacity: 0.2; } }

@font-face {
  font-family: "Range Mono";
  font-weight: normal;
  src: url("/assets/font/range-mono-light.ttf") format("truetype"); }

@font-face {
  font-family: "Range Mono";
  font-weight: bold;
  src: url("/assets/font/range-mono-bold.ttf") format("truetype"); }

* {
  box-sizing: border-box; }

html {
  color: white;
  position: relative;
  min-height: 100%;
  background: black; }
  html[data-controller="sequencer"] {
    height: 100%; }
    html[data-controller="sequencer"] body {
      height: 100%; }

body {
  margin: 0;
  padding: 0;
  background: url("/assets/bg/bg-stars.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  font-family: "Range Mono"; }

html, body {
  position: relative;
  min-height: 100%; }

.main {
  overflow: auto;
  max-height: calc(100% - 183px); }
  @media screen and (max-width: 779px), screen and (orientation: portrait) {
    .main .body-copy {
      padding-bottom: 75px; } }

.page {
  position: relative;
  min-height: 100%; }

button {
  outline: 0px none !important;
  cursor: pointer;
  font-family: "Range Mono"; }

pre {
  text-transform: none;
  margin: 0;
  z-index: 200; }

.backdrop {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: black;
  opacity: 0.5;
  z-index: 0; }
  .backdrop.sky {
    background: url("/assets/bg/sky-large.jpg") 0 0 no-repeat black;
    background-size: cover;
    background-position: 0 0%;
    opacity: 0; }
    .backdrop.sky.transition {
      -webkit-transition: background-position 5s, opacity 5s;
              transition: background-position 5s, opacity 5s; }
    .backdrop.sky.reveal {
      background-position: 0 50%;
      opacity: 0.5; }
  .backdrop.clouds {
    opacity: 0.5;
    mix-blend-mode: screen;
    overflow: hidden;
    display: none; }
    body.mix-blend-mode .backdrop.clouds {
      display: block; }
    .backdrop.clouds video {
      visibility: hidden;
      -o-object-fit: cover;
         object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

@-webkit-keyframes scroll {
  0% {
    background-position: 0% 0%; }
  100% {
    background-position: 0% 200%; } }

@keyframes scroll {
  0% {
    background-position: 0% 0%; }
  100% {
    background-position: 0% 200%; } }

header {
  padding: 20px;
  font-size: 44px; }
  @media screen and (min-width: 780px) and (orientation: landscape) {
    header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media screen and (max-width: 779px), screen and (orientation: portrait) {
    header {
      background: black; } }
  header img {
    max-width: 100%;
    display: block;
    margin: 0; }
    @media screen and (max-width: 779px), screen and (orientation: portrait) {
      header img {
        height: 32px; } }
  header h1 {
    font-size: 0em;
    font-weight: normal;
    margin: 0; }
    header h1 img {
      margin-bottom: 5px; }
    header h1 span {
      display: inline-block;
      margin: 0;
      vertical-align: top;
      margin-bottom: 5px !important; }
      @media screen and (max-width: 779px), screen and (orientation: portrait) {
        header h1 span {
          margin-bottom: 5px !important; } }
    header h1 span + span {
      margin-left: 5px; }
    @media screen and (min-width: 1870px) {
      header h1:after {
        content: "";
        width: 124px;
        height: 43px;
        background: url("/assets/star-text/type-rect.svg") 0 0 repeat-x;
        background-size: auto 43px;
        display: inline-block;
        margin-left: 31px;
        vertical-align: top; } }
  header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media screen and (max-width: 779px), screen and (orientation: portrait) {
      header nav {
        display: block;
        margin-top: 44px; } }
    header nav a {
      color: white;
      text-decoration: none;
      vertical-align: top;
      display: block !important;
      box-sizing: content-box;
      margin: 0 0 5px; }
      @media screen and (max-width: 779px), screen and (orientation: portrait) {
        header nav a {
          margin-bottom: 5px !important; } }
      @media screen and (min-width: 780px) and (orientation: landscape) {
        header nav a {
          margin-right: 31px; } }
    @media screen and (max-width: 1299px) {
      header nav a {
        margin-right: 15.5px; } }
    @media screen and (min-width: 1580px) {
      header nav a {
        box-sizing: content-box;
        padding-right: 46.5px; }
        header nav a:after {
          content: "";
          width: 31px;
          height: 43px;
          background: url("/assets/star-text/type-rect.svg") 0 0 repeat-x;
          background-size: auto 43px;
          display: inline-block;
          margin-left: 46.5px;
          vertical-align: top; } }

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0px;
  background: black;
  padding: 0 23px;
  height: 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (min-width: 780px) and (orientation: landscape) {
    footer {
      padding: 23px;
      height: 93px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  footer nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center; }

.share a, .share button {
  font-size: 34px;
  color: white;
  text-decoration: none;
  display: none; }
  .share a:before, .share button:before {
    content: "▓"; }
  @media screen and (max-width: 779px), screen and (orientation: portrait) {
    .share a, .share button {
      display: none !important; } }

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 42px;
  padding: 10px 0; }
  .links span {
    font-size: 18px;
    opacity: 0.7;
    padding-top: 4px;
    margin-right: 1em;
    text-transform: uppercase; }
    .links span:hover {
      opacity: 1; }
    .links span:after {
      content: ":"; }
    @media screen and (max-width: 779px), screen and (orientation: portrait) {
      .links span:after {
        content: ""; } }
  .links a + a {
    margin-left: 1em; }
  .links .back {
    display: none;
    background: none;
    color: white;
    font-size: 18px;
    border: 0px none;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 40px;
    line-height: 55px; }
    .links .back:after {
      content: "<"; }
  @media screen and (min-width: 779px) and (max-width: 950px) and (orientation: landscape) {
    .links span {
      display: none; } }
  @media screen and (max-width: 779px), screen and (orientation: portrait) {
    .links a {
      display: none; }
    .links span {
      cursor: pointer;
      margin-right: 0; }
    .links.hide {
      padding-left: 0 !important;
      margin-left: 0 !important;
      border-left: 0 !important; }
      .links.hide span {
        display: none; }
    .links.show {
      padding-left: 0 !important;
      margin-left: 0 !important;
      border-left: 0 !important; }
      .links.show span {
        display: none; }
      .links.show .back {
        display: block; }
      .links.show a {
        display: block; } }
  .links + .links {
    padding-left: 30px;
    margin-left: 30px;
    border-left: 1px solid white; }

[data-startext] {
  text-transform: uppercase;
  font-family: monospace;
  font-size: 52px;
  background-size: auto 100%;
  background-position: left 0;
  background-repeat: no-repeat;
  color: transparent;
  display: inline-block;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  height: 43px;
  line-height: 0.84em;
  overflow: hidden; }

button[data-startext] {
  background-color: transparent;
  text-decoration: none;
  color: transparent;
  border: 0px none; }

[data-startext="shapeshifter"] {
  background-image: url("/assets/star-text/type-shapeshifter.svg");
  width: 372px; }

[data-startext="stars"] {
  background-image: url("/assets/star-text/type-stars.svg");
  width: 186px; }

[data-startext="about"] {
  background-image: url("/assets/star-text/type-about.svg");
  width: 186px; }

[data-startext="contact"] {
  background-image: url("/assets/star-text/type-contact.svg");
  width: 248px; }

[data-startext="tour"] {
  background-image: url("/assets/star-text/type-tour.svg");
  width: 155px; }

[data-startext="merch"] {
  background-image: url("/assets/star-text/type-merch.svg");
  width: 186px; }

[data-startext="share"] {
  background-image: url("/assets/star-text/type-share.svg");
  width: 124px;
  height: 28px !important; }

[data-startext="back"] {
  background-image: url("/assets/star-text/type-back.svg");
  width: 99.2px;
  height: 28px !important; }

[data-startext="loading"] {
  background-image: url("/assets/star-text/type-loading.svg");
  width: 217px; }

@media screen and (max-width: 1724px) {
  [data-startext] {
    height: 30px;
    max-width: 100%; }
  [data-startext="shapeshifter"] {
    width: 264px; }
  [data-startext="stars"] {
    width: 132px; }
  [data-startext="about"] {
    width: 132px; }
  [data-startext="contact"] {
    width: 176px; }
  [data-startext="tour"] {
    width: 110px; }
  [data-startext="merch"] {
    width: 132px; }
  [data-startext="loading"] {
    width: 154px; } }

@media screen and (max-width: 1099px) {
  [data-startext] {
    height: 24px; }
  [data-startext="shapeshifter"] {
    width: 216px; }
  [data-startext="stars"] {
    width: 108px; }
  [data-startext="about"] {
    width: 108px; }
  [data-startext="contact"] {
    width: 144px; }
  [data-startext="tour"] {
    width: 90px; }
  [data-startext="merch"] {
    width: 108px; }
  [data-startext="loading"] {
    width: 126px; } }

.body-copy {
  font-size: 15px;
  font-family: "Range Mono";
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5em;
  padding: 50px 1em 155px; }
  .body-copy :first-child {
    margin-top: 0; }
  .body-copy a {
    color: white;
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
            transition: opacity 0.3s; }
    .body-copy a:hover {
      opacity: 1; }
  .body-copy p {
    margin: 1.5em 0;
    opacity: 0.7; }
  .body-copy h2, .body-copy h3, .body-copy h4 {
    font-weight: normal;
    margin-top: 2em;
    opacity: 0.7; }
  .body-copy img {
    max-width: 100%;
    margin: 2em auto;
    display: block; }

.preloader {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
          transition: opacity 0.4s; }
  .preloader.hidden {
    opacity: 0; }
  .preloader .true-center {
    max-width: 248px; }
  .preloader h3 {
    margin: 0 auto 10px;
    min-width: 248px;
    width: 100%;
    background-position: center 0; }
  .preloader .preload-box {
    width: 31px;
    height: 43px;
    margin: 2px;
    display: inline-block;
    background-size: auto 43px; }
    .preloader .preload-box.loaded {
      background-image: url("/assets/star-text/type-rect.svg"); }
    .preloader .preload-box.failed {
      background: red; }

.true-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

[data-popup] {
  display: none;
  background: black;
  width: 740px;
  max-width: 100%;
  text-align: center;
  padding: 40px 1em;
  font-family: "Range Mono";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20; }
  [data-popup] img {
    display: block;
    margin: 0 auto 2em;
    max-width: 100%; }
  @media screen and (max-width: 779px), screen and (orientation: portrait) {
    [data-popup] {
      top: 50px;
      -webkit-transform: none;
              transform: none;
      left: 0;
      width: 100%; } }

.popup-inner {
  max-width: 400px;
  margin: 0 auto; }

.popup-title {
  font-size: 24px;
  line-height: 1.3em;
  margin: 0 0em 2em; }
  @media screen and (min-width: 768px) {
    .popup-title {
      margin: 0 2em 2em; } }

.popup-big-button {
  font-family: "Range Mono";
  font-size: 27px;
  border: 1px solid white;
  background: none;
  min-width: 200px;
  color: white;
  line-height: 51px;
  padding: 5px 0 0px; }

.popup-close {
  position: absolute;
  display: block;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: url("/assets/icon/x.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  border: 0 none;
  color: transparent; }

.share-code-input {
  display: block;
  font-size: 16px;
  color: white;
  margin: 2em 0 3em;
  width: 100%;
  border: 1px solid white;
  background: black;
  padding: 10px 7px 8px;
  font-family: "Range Mono";
  outline: 0px none !important; }
  .share-code-input::-moz-selection {
    background: white;
    color: black; }
  .share-code-input::selection {
    background: white;
    color: black; }
  .share-code-input::-moz-selection {
    background: white;
    color: black; }

.code-sharing-options label, .code-sharing-options a {
  vertical-align: middle; }

[data-popup="instructions"] .actions {
  min-height: 68px;
  padding-top: 10px; }

[data-popup="instructions"] p a {
  color: white; }
  [data-popup="instructions"] p a:visited {
    color: lightgrey; }

[data-popup="instructions"] [data-action] {
  display: none;
  -webkit-transition: background-color 0.5s;
          transition: background-color 0.5s; }
  [data-popup="instructions"] [data-action].reveal {
    background: white; }

[data-popup="instructions"] [data-loading] {
  display: inline-block;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-animation: blink 0.6s infinite alternate;
          animation: blink 0.6s infinite alternate; }

@media screen and (orientation: landscape) and (min-width: 780px) and (max-height: 750px) {
  [data-popup="instructions"] {
    padding: 20px 0; }
    [data-popup="instructions"] .popup-title {
      display: none; }
    [data-popup="instructions"] p {
      font-size: 12px; }
    [data-popup="instructions"] .popup-diagram.stars {
      max-height: 60px; }
    [data-popup="instructions"] .popup-diagram.filter {
      max-height: 80px; }
    [data-popup="instructions"] .popup-big-button {
      font-size: smaller;
      height: auto;
      line-height: 2em;
      min-width: 75px; }
    [data-popup="instructions"] .actions {
      min-height: 0; } }

[data-icon] {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("/assets/icon/icons.svg") 0 0 no-repeat;
  color: transparent;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  overflow: hidden;
  cursor: pointer; }
  [data-icon]:hover {
    opacity: 1; }

[data-icon="it"] {
  width: 30px;
  background-position: 6px 3px; }

[data-icon="sp"] {
  width: 30px;
  background-position: -34px 3px; }

[data-icon="sc"] {
  width: 60px;
  background-position: -76px 3px; }

[data-icon="bc"] {
  width: 76px;
  background-position: -149px 3px; }

[data-icon="em"] {
  width: 30px;
  background-position: -241px 3px; }

[data-icon="ig"] {
  width: 30px;
  background-position: -282px 3px; }

[data-icon="yt"] {
  width: 38px;
  background-position: -326px 3px; }

[data-icon="fb"] {
  width: 20px;
  background-position: -379px 3px; }

[data-icon="tw"] {
  width: 30px;
  background-position: -409px 3px; }

[data-icon="gp"] {
  width: 38px;
  background-position: -453px 3px; }

.domui {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  padding-bottom: 100px; }
  @media screen and (min-width: 780px) and (orientation: landscape) {
    .domui {
      display: none !important; } }
  @media screen and (max-width: 779px) and (orientation: landscape) {
    .domui {
      padding-bottom: 55px; } }

.groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around; }
  @media screen and (max-width: 779px) and (orientation: landscape) {
    .groups {
      padding-top: 10px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      height: calc(100% - 95px); } }

.group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100% - 140px); }
  @media screen and (max-width: 779px) and (orientation: landscape) {
    .group {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      height: auto;
      width: 100vw; } }
  .group .queued {
    -webkit-animation: pulse 0.33706s alternate infinite;
            animation: pulse 0.33706s alternate infinite; }
  .group button {
    background: url("/assets/icon/star-shapes.png") 0 0 no-repeat;
    width: 6vh;
    height: 6vh;
    border: 0px none;
    background-size: auto 200%;
    outline: 0px none !important;
    margin: 1.4vw 2vw; }
    .group button[data-shape="101"] {
      background-position: 25% 0; }
    .group button[data-shape="102"] {
      background-position: 50% 0; }
    .group button[data-shape="103"] {
      background-position: 75% 0; }
    .group button[data-shape="104"] {
      background-position: 100% 0; }
    @media screen and (max-width: 779px) and (orientation: landscape) {
      .group button {
        width: 12vh;
        height: 12vh;
        margin: 0 2vw; } }
    .group button.playing {
      background-position-y: 100%; }

.fader {
  min-height: 90px;
  width: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden; }
  .fader:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 2px dashed white;
    opacity: 0.3;
    content: ""; }
  .fader .notch {
    top: 0;
    left: 50%;
    width: 90px;
    background: url("/assets/icon/fader.png") 0 0 no-repeat;
    background-size: 100% 100%;
    height: 100%;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
  @media screen and (max-width: 779px) and (orientation: landscape) {
    .fader {
      min-height: 45px; }
      .fader .notch {
        width: 45px;
        height: 45px; } }

.mobile-nav {
  background: black;
  height: 50px;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px; }
  .mobile-nav button {
    height: 30px; }
  @media screen and (min-width: 780px) and (orientation: landscape) {
    .mobile-nav {
      display: none; } }

.backdrop.sky {
  z-index: 0; }

.backdrop.clouds {
  z-index: 1; }

.page {
  z-index: 2; }

.stars canvas {
  display: block;
  z-index: 2;
  width: 100%;
  max-height: calc(100% - 183px);
  position: absolute;
  bottom: 93px; }
  @media screen and (max-width: 779px), screen and (orientation: portrait) {
    .stars canvas {
      display: none; } }

.loopbar {
  bottom: 93px; }
  @media screen and (max-width: 779px), screen and (orientation: portrait) {
    .loopbar {
      bottom: 0px; } }

.launch-button {
  z-index: 2;
  background: black;
  color: white;
  border: 1px solid white;
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 12px 1em 8px;
  -webkit-animation: strobe 1s infinite alternate;
          animation: strobe 1s infinite alternate;
  bottom: 75px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }
  @media screen and (min-width: 780px) and (orientation: landscape) {
    .launch-button {
      display: none !important; } }

.stop-button {
  position: absolute;
  bottom: 113px;
  left: 20px;
  border: 0px none;
  background: none;
  color: white;
  font-size: 18px;
  z-index: 5;
  display: none;
  text-transform: uppercase; }
  @media screen and (max-width: 779px), screen and (orientation: portrait) {
    .stop-button {
      bottom: 20px;
      left: auto;
      right: 20px; } }
  @media screen and (max-width: 779px) and (orientation: landscape) {
    .stop-button {
      bottom: auto;
      left: auto;
      right: 20px;
      top: 70px; } }

header {
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  z-index: 2;
  position: relative; }

.mobile-nav {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1; }

@media screen and (max-width: 779px), screen and (orientation: portrait) {
  .sequencer-active header {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  .sequencer-active footer {
    display: none; }
  .sequencer-active .mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .sequencer-active .domui {
    display: block; } }

.sequencer-active .launch-button {
  display: none; }

.hide-text {
  overflow: hidden;
  height: 0;
  visibility: hidden; }

.audio-unsupported-message {
  position: fixed;
  bottom: 93px;
  width: 100%;
  text-align: center;
  padding-bottom: 2em; }
  .audio-unsupported-message .popup-title {
    font-size: 18px;
    margin-bottom: 1em; }
  .audio-unsupported-message p {
    max-width: 60em;
    margin: 1em auto;
    line-height: 1.4em; }

/*# sourceMappingURL=index.css.map */
