* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: inherit;
}

body {
  font-family: 'Scope', sans-serif;
  font-variation-settings: "wght" 80, "wdth" 500;
  font-size: 25px;
  line-height: 30px;
  background: #fff;
  color: #000;
  width: 100%;
}

.body--noscroll {
  overflow: hidden;
}

.body--loading, .body--loading * {
  cursor: wait !important;
}

input, select {
  font: inherit;
  max-width: 100%;
}

strong {
  font-variation-settings: "wght" 100, "wdth" 500;
}

.mobile {
  display: none;
}

/* INTRO START */
.intro {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 900;
  top: 0; right: 0; bottom: 0; left: 0;
  display: block;
  overflow: auto;
  color: #fff;

  font-size: 23px;
  line-height: 27px;

  font-variation-settings: "wght" 90, "wdth" 600;

  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;

  background: #000;
  /* background: rgba(0,0,0,.95); */
  /* background: rgba(0,0,0,.9); */
  background: rgba(0,0,0,.93);

  opacity: 0;
  pointer-events: none;

  transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.intro--visible {
  opacity: 1;
  pointer-events: auto;
}

.intro-left {
  float: left;
  width: 60%;
  height: 100vh;
  padding: 30px;
}

.intro-right {
  width: 40%;
  float: right;
  height: 100%;
}

.intro-slideshow {
  display: block;
  overflow: hidden;
  position: fixed;
  right: 0;
  pointer-events: none;
}

.intro-slideshow-fadein {
  opacity: 0;
}

.intro-slideshow-fadein--animated {
  animation: intro-slideshow-fadein forwards 2s;
}

.intro-slideshow img {
   max-width: 100%;
   width: calc(100% - 90px);
   padding: 0;
   margin-left: 45px;
   margin-right: 45px;
   margin-bottom: 20px;
   margin-top: 20px;
   box-shadow: rgba(0,0,0,.6) 0px 15px 25px 10px;
}

.intro-container {
}

.intro-fadein {
  opacity: 0;
  max-width: 640px;
}

.intro-fadein--animated {
  animation: intro-fadein .4s forwards ease-out;
}

.intro-logo {
  display: inline-block;
  letter-spacing: 5px;
  font-size: 62px;
  margin-bottom: 40px;
  margin-top: 30px;
  width: 250px;
  text-align: center;
}

.intro-subline {
}

.intro-logo--animated {
  animation: intro-logo 3s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}

.intro-instructions {
  font-variant-numeric: tabular-nums;
}

.intro-instructions strong {
  /* font-weight: bold; */

  /* text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .98em; */

  /* text-decoration: underline; */

  border-bottom: dashed 1px lightyellow;
}

.intro-instructions, .intro-credits, .intro-announcement {
  font-size: 19px;
  line-height: 22px;
}

.intro-instructions p {
  padding-left: 30px;
}

ol.intro-instructions {
  color: lightyellow;
  /* color: #fff; */
  list-style: none;
  counter-reset: my-awesome-counter;
}

ol.intro-instructions li {
  counter-increment: my-awesome-counter;
  padding-left: 30px;
  /* max-width: 40ch; */
}

ol.intro-instructions li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 30px;
}

.intro-credits {
  position: absolute;
  bottom: 30px;
  left: 60px;
}

.intro-mobile {
  color: pink;
}

.intro a {
  color: #fff;
  text-decoration: none;
  border-bottom: solid 1px #fff;
}

.intro a:hover {
  border-bottom: none;
}

.intro-announcement {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-variation-settings: "wght" 85, "wdth" 600;
  text-decoration: none !important;
  
  /* padding: 70px 60px 30px 60px; */
  background: linear-gradient(180deg, rgba(76,33,254,0) 0%, rgba(76,33,254,1) 80%);
}

a.intro-announcement-link {
  /* outline: solid 1px red; */
  display: block;
  transition: all .2s;
  text-decoration: none;
  border-bottom: none;
  margin: 70px 60px 30px 60px;
  opacity: .9;
}

a.intro-announcement-link:hover {
  opacity: 1;
}

.intro-announcement-badge {
  background: #00f800;
  color: #006500;
  font-size: 16px;
  font-variation-settings: "wght" 100, "wdth" 450;
  letter-spacing: 2%;
  padding: 4px 15px;
  border-radius: 20px;
  text-shadow: 0px 1px 1px rgba(255,255,255,.3);
  margin-left: -8px;
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,.5);
  text-transform: uppercase;
  transition: all .2s;
  display: inline-block;
  background: linear-gradient(180deg, #00f800, #00c400 100%);
}

.intro-announcement-link:hover .intro-announcement-badge {
  transform: scale(1.03);
}

.intro-announcement-text {
  margin-top: 12px;
  text-shadow: 0px 1px 1px rgba(0,0,0,1);
}

.inspacenote {
  text-transform: uppercase;
  font-size: 72%;
  -webkit-text-stroke: #fff .2px;
  font-variation-settings: "wght" 100, "wdth" 600;
}



@keyframes intro-logo {
  from {
    font-variation-settings: "wght" 60, "wdth" 400;
  }

  to {
    font-variation-settings: "wght" 80, "wdth" 540;
    padding: 0;
  }
}

@keyframes intro-slideshow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 100%;
  }
}

@keyframes intro-slideshow-fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes intro-background {
  0%{background-position:0% 4%}
  50%{background-position:100% 97%}
  100%{background-position:0% 4%}
}

@keyframes intro-fadein {
  0% {
    opacity: 0;
    margin-top: 20px;
  }

  100% {
    opacity: 1;
    margin-top: 0;
  }
}
/* INTRO END */


/* DOWNLOAD PREP START */
.downloadprep {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.75);
  background: rgba(0,0,0,.8);
  z-index: 1000;
  color: #fff;
}

.downloadprep p {
  margin-top: -15px;
}

.body--downloading * {
  cursor: wait !important;
}

.body--downloading .downloadprep {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4.6vw;
  text-align: center;
  padding: 24px;
  letter-spacing: .12vw;
  text-shadow: rgba(0,0,0,.6) 0px 2px 2px;
  font-weight: normal;
  font-variation-settings: "wght" 60, "wdth" 500;
}
/* DOWNLOAD PREP END */



/* PAGE START */

/* jp typeface start */
@font-face {
  font-family: "Scope-Web";
  src: url('../fonts/Scope-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Scope-Web";
  src: url('../fonts/Scope-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Scope Condensed";
  src: url('../fonts/Scope-LightCondensed.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Scope Condensed";
  src: url('../fonts/Scope-BoldCondensed.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Scope Expanded";
  src: url('../fonts/Scope-LightExpanded.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Scope Expanded";
  src: url('../fonts/Scope-BoldExpanded.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Fictional";
  src: url('../fonts/Fictional-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fictional";
  src: url('../fonts/Fictional-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Indicate Mono";
  src: url('../fonts/Indicate-Mono.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
/* jp typefaces end */

/* nice to type start */
@font-face {
  font-family: "Balkenschrift";
  src: url('../fonts/Balkenschrift-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Balkenschrift";
  src: url('../fonts/Balkenschrift-RegularItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Balkenschrift";
  src: url('../fonts/Balkenschrift-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Balkenschrift";
  src: url('../fonts/Balkenschrift-BoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Balkenschrift Rounded";
  src: url('../fonts/BalkenschriftRounded-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Balkenschrift Rounded";
  src: url('../fonts/BalkenschriftRounded-RegularItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Balkenschrift Rounded";
  src: url('../fonts/BalkenschriftRounded-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Balkenschrift Rounded";
  src: url('../fonts/BalkenschriftRounded-BoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Blow";
  src: url('../fonts/Blow-Thin.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Blow";
  src: url('../fonts/Blow-Medium.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gain";
  src: url('../fonts/Gain-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gain";
  src: url('../fonts/Gain-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gain";
  src: url('../fonts/Gain-RegularItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Gain";
  src: url('../fonts/Gain-BoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Golzheim";
  src: url('../fonts/Golzheim-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Golzheim";
  src: url('../fonts/Golzheim-RegularItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Golzheim";
  src: url('../fonts/Golzheim-SemiBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Golzheim";
  src: url('../fonts/Golzheim-SemiBoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}


@font-face {
  font-family: "Golzheim Sans";
  src: url('../fonts/GolzheimSans-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Golzheim Sans";
  src: url('../fonts/GolzheimSans-RegularItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Golzheim Sans";
  src: url('../fonts/GolzheimSans-SemiBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Golzheim Sans";
  src: url('../fonts/GolzheimSans-SemiBoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Krasz";
  src: url('../fonts/Krasz-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Krasz";
  src: url('../fonts/Krasz-Medium.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Massimo Grafia";
  src: url('../fonts/MassimoGrafia-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Massimo Grafia";
  src: url('../fonts/MassimoGrafia-Medium.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Massimo Grafia Semi Mono";
  src: url('../fonts/MassimoGrafiaSemiMono-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Massimo Grafia Semi Mono";
  src: url('../fonts/MassimoGrafiaSemiMono-Medium.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Massimo Grafia Mono";
  src: url('../fonts/MassimoGrafiaMono-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Massimo Grafia Mono";
  src: url('../fonts/MassimoGrafiaMono-Medium.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Takeoff A";
  src: url('../fonts/Takeoff-A1090Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Takeoff A";
  src: url('../fonts/Takeoff-A1180ExtraBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Takeoff A";
  src: url('../fonts/Takeoff-A1090RegularItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Takeoff A";
  src: url('../fonts/Takeoff-A1180ExtraBoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Takeoff B";
  src: url('../fonts/Takeoff-B3060Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Takeoff B";
  src: url('../fonts/Takeoff-B3100Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Takeoff B";
  src: url('../fonts/Takeoff-B3060RegularItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Takeoff B";
  src: url('../fonts/Takeoff-B3100BoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Neue Television";
  src: url('../fonts/NeueTelevision-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Neue Television";
  src: url('../fonts/NeueTelevision-Medium.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Neue Sammlung";
  src: url('../fonts/NeueSammlungText-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Neue Sammlung";
  src: url('../fonts/NeueSammlungText-RegularItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Neue Sammlung";
  src: url('../fonts/NeueSammlungText-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Neue Sammlung";
  src: url('../fonts/NeueSammlungText-BoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}
/* nice to type end */

.text {
  font-family: sans-serif;
  font-size: 5.5vw;
  line-height: 5.5vw;
  font-weight: bold;
  font-variant-ligatures: normal;
}

h1 {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.text p, .text h1 {
  opacity: 0;
  animation: fadein .2s forwards ease-out;
  padding: 2.2vw 10vw 3.3vw 3vw;
  width: 100%;
  margin: 0;
  border: none;
  outline: none;
  height: auto;
}

.text p:focus, .text h1:focus {
  background: rgba(0,0,0,.1);
  outline: none;
}

.text--blackbg p:focus, .text--blackbg h1:focus {
  background: rgba(250,250,250,.1);
}

.text a {
  text-decoration: underline;
  text-decoration-skip: ink;
  color: inherit;
  padding-left: .5vw;
  padding-right: .5vw;
  margin-left: -.5vw;
  margin-right: -.5vw;
  cursor: pointer;
}

.text a:hover {
  text-decoration: none;
}

.text a:focus {
  text-decoration: none;
  outline: solid 4px rgba(0,0,0,.4);
}

::selection {
  background: #000;
  background: rgba(0,0,0,.99);
  color: #fff;
}

.text--blackbg ::selection {
  background: #fff;
  background: rgba(250,250,250,.99);
  color: #000;
}

@keyframes fadein {
  0% {
    opacity: 0;
    margin-top: 1.5vw;
  }

  100% {
    opacity: 1;
    margin-top: 0;
  }
}
/* PAGE END */


.options {
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  height: 100%;
  pointer-events: none;
  z-index: 500;
  width: 80px;
}

.options-top {
}

.options-bottom {
  position: absolute;
  bottom: 0;
}

.editcontent-button {
  background: #fff;
  color: #000;
  border: solid 3px #000;
  border-radius: 100%;
  font-size: 40px;
  line-height: 20px;
  width: 60px;
  height: 60px;
  box-shadow: rgba(0,0,0,.6) 0px 2px 5px 1px;
  padding: 0;
  text-align: center;
  pointer-events: auto;
  margin-bottom: 10px;
  transition: all .2s;
}

.editcontent-button span {
  margin-top: -6px;
  display: block;
}

.editcontent-button:hover, .editcontent-button:focus, .editcontent-button--active {
  color: #fff;
  border: solid 3px #000;
  background: #000;
  outline: none !important;
}

svg:focus {
  outline: none !important;
}

.editcontent-button .svg-icon-inactive {
  opacity: 1;
}

.editcontent-button .svg-icon-active {
  opacity: 0;
}

.editcontent-button--active .svg-icon-active {
  opacity: 1;
}

.editcontent-button--active .svg-icon-inactive {
  opacity: 0;
}

.editcontent-button:hover .svg-icon *, .editcontent-button:focus .svg-icon *, .editcontent-button--active .svg-icon * {
  fill: #fff;
}

.editcontent-button--disabled, .editcontent-button--disabled:focus, .editcontent-button--disabled:hover {
  opacity: .5;
  cursor: not-allowed;
  background: transparent;
  border: solid 3px #999;
  color: #999;
  box-shadow: none;
}

.editcontent-button-togglesettings {
  position: fixed;
  z-index: 500;
}

.editcontent-button-intro {
  margin-top: 70px;
}

.editcontent-button-intro--highlight {
  animation: button-highlight linear .25s;
}

/* .editcontent-button:not(.editcontent-button-intro--highlight):hover:before { */
.editcontent-button:hover:before {
  content: attr(data-title);
  position: fixed;
  right: 80px;
  font-size: 16px;
  padding: 4px 8px 6px 8px;
  background: #000;
  color: #fff;
  margin-top: -4px;
  border-radius: 4px;
}

.editcontent-button-togglesettings:hover:before {
  margin-top: -14px;
}

@keyframes button-highlight {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
    z-index: 99999;
    position: fixed;
    box-shadow: rgba(0,0,0,.3) 0px 2px 10px 2px;
  }
}

.editcontent-button .svg-icon {
  position: absolute;
  top: 4px;
  left: 3px;
  transition: all .2s;
}

.svg-icon {
  width: 1.2em;
  height: 1.2em;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
  fill: #29004c;
}

.svg-icon circle {
  stroke: #400076;
  stroke-width: 1;
}

button {
  font: inherit;
  appearance: none;
  border: none;
  cursor: pointer;
}

.dialog {
  position: fixed;
  background: #fff;
  width: 800px;
  max-width: 95%;
  z-index: 700;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  pointer-events: none;
  opacity: 0;
  margin-top: 10vh;
  border: solid 3px #000;
  box-shadow: rgba(0,0,0,.6) 0px 2px 5px 1px;
}

.dialog-text {
  padding: 30px 30px 70px 30px;
}

.dialog-text label {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.dialog-text label:after {
  content: '';
  clear: both;
  display: block;
}

.dialog-text label span {
  padding-top: 6px;
  display: inline-block;
  width: 170px;
}

.dialog-text label input {
  width: calc(100% - 170px);
  float: right;
  padding: 8px 0;
  outline: none;
  background: #fff;
  color: #999;
  border: none;
  border-bottom: solid 3px #000;
}

.dialog-text label input:focus {
  color: #000;
}

.dialog-checkbox {
}

.dialog-checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  background: none;
  border: solid 3px #000 !important;
  width: 35px !important;
  height: 35px;
  float: left !important;
  margin-left: 170px;
  margin-right: 20px;
}

.dialog-checkbox input:checked {
}

.dialog-checkbox > span {
  float: left;
  width: 240px !important;
  color: #000;
  /* outline: solid 1px red; */
  position: relative;
}

.dialog-checkbox > span a, .dialog-checkbox > span a:visited {
  color: inherit;
  text-decoration: underline;
}

.dialog-checkbox > span a:hover {
  text-decoration: none;
}

.dialog-checkbox span span.beta {
  position: absolute;
  display: inline-block;
  bottom: -3px;
  margin-left: 9px;
  width: auto !important;

  /* background: #666;
  color: #fff;
  height: 20px;
  line-height: 20px !important;
  letter-spacing: 1px;
  font-size: 14px; */

  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  /* line-height: 20px !important; */
  color: red;
  font-variation-settings: "wght" 100, "wdth" 500;
}

.dialog-checkbox input:focus {
  background: #ddd;
}

.dialog-checkbox input:after {
}

.dialog-checkbox input:checked:after {
  content: '+';
  font-size: 48px;
  line-height: 7px;
  transform: rotate(45deg);
  text-align: center;
  display: block;
  text-align: center;
  color: #000 !important;
  position: relative;
  top: 0px;
  left: 4px;
  font-variation-settings: "wght" 60, "wdth" 500;
}

.dialog-buttons {
  width: 100%;
}

.dialog-buttons button {
  width: 50%;
  float: left;
  height: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  outline: solid 3px #000;
  transition: all .2s;
  font-size: 23px;
}

.dialog-buttons button:hover, .dialog-buttons button:focus {
  font-variation-settings: "wght" 80, "wdth" 600;
  background: #000;
  color: #fff;
}

.dialog-buttons button + button {
  background: #ddd;
}

.dialog--visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  margin-top: -10vh;
}

.dialog-link {
}

.dialog-info {
  /* outline: solid 1px red; */
  float: right;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 20px;
  color: #666;
  /* width: 100%; */
  width: calc(100% - 170px);
}

ul.dialog-info {
  width: calc(100% - 190px);
}

ul.dialog-info li::before {
}

.linkReplacement {
  background: yellow;
  color: #000;
}

.text--yellowbg .linkReplacement {
  background: #fff;
}

.readyToRemove {
  background: rgba(255,0,0,.8);
  color: #000;
}

.text--redbg .readyToRemove {
  background: rgba(0,0,0,.4)
}

.settings {
  width: 33.33%;
  min-width: 500px;
  max-width: 600px;
  padding: 20px;
  background: #fff;
  color: #000;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 400;
  border-right: solid 3px #000;
  box-shadow: rgba(0,0,0,.6) 0px 2px 5px 1px;
  left: -100%;
  visibility: hidden;
  pointer-events: none;
  transition: all .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  overflow: auto;
}

.settings--visible {
  display: block;
  left: 0;
  visibility: visible;
  pointer-events: auto;
}

div.settings-part--block {
  background: #eee;
  padding: 10px;
  display: block;
  margin: 0 0 10px 0;
}

div.settings-part--block .settings-download {
  margin: 0;
}

.settings-note {
  color: #666;
  /* font-size: 17px;
  line-height: 20px; */
  font-size: 19px;
  line-height: 22px;
}

.settings-part strong {
  font-size: 1.5em;
  font-variation-settings: "wght" 80, "wdth" 500;
}

.settings-part > .settings-note {
  margin-top: 22px;
}

.settings-note ol {
  list-style-type: none;
}

.settings-note ol li {
  counter-increment: my-awesome-counter;
  padding-left: 30px;
  position: relative;
}

.settings-note ol li:before {
  content: counter(my-awesome-counter);
  /* content: '→'; */
  position: absolute;
  left: 0px;
}


.settings-note a {
  color: inherit;
}

.settings-note a:hover {
  text-decoration: none;
}


form, fieldset {
  border: none;
}

.settings-part {
  margin-bottom: 30px;
}

.settings-info {
  /* font-size: 19px;
  line-height: 20px; */
  /* background: #eee; */
  margin-left: -20px;
  margin-right: -20px;
  padding: 20px;
  margin-bottom: -20px;
  /* border-top: solid 3px #000; */

  color: #666;

  /* font-size: 17px;
  line-height: 20px; */

  font-size: 19px;
  line-height: 22px;
}

.settings-info a {
  color: inherit;
}

.settings-info a:hover {
  text-decoration: none;
}

.settings-part label:after, .settings-part:after {
  content: ' ';
  display: block;
  clear: both;
}

.settings-part-left {
  width: 50%;
  float: left;
  padding-right: 40px;
}

.settings-part-right {
  width: 50%;
  float: right;
}

.form-content {
  display: none;
}

.form-colorpicker {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px;
  border: solid 3px #000;
  box-shadow: rgba(0,0,0,.6) 0px 2px 5px 1px;
  z-index: 700 !important;
  opacity: 0;
  margin-top: 10vh;
  transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  pointer-events: none;
}

.form-colorpicker--visible {
  opacity: 1;
  margin-top: -10vh;
  display: block;
  pointer-events: auto;
}

.form-colorpicker-close {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 600;
}

.settings-togglecolorpicker {
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: solid 1px rgba(0,0,0,.3);
  border-radius: 100%;
}

.layer {
  background: rgba(0,0,0,.5);
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 600;
  transition: all .1s;
  opacity: 0;
  pointer-events: none;
}

.layer--visible {
  opacity: 1;
  pointer-events: auto;
}

.watermark {
  text-decoration: underline;
}

/* style dropdown, but not for safari, because for some reason styling it breaks its functionality in safari */
/* @media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { */
  .settings-dropdown {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #999;
    border-bottom: solid 3px #000;
    padding: 0 0 6px 0;
    border-radius: 0;
    outline: none;
  }

  .settings-dropdown-arrow {
    display: block !important;
  }
/* } */

.settings-dropdown-arrow {
  display: none;
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 0;
  width: 25px;
  background: rgba(0,0,0,.4);
  background: #fff;
  pointer-events: none;
  padding-left: 4px;
  font-size: 30px;
  font-variation-settings: "wght" 60, "wdth" 600;
}

.settings-dropdown-arrow span {
  transform: rotate(90deg);
  display: block;
  text-align: right;
}

.settings-dropdown:focus {
  color: #000;
}

.settings-range {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #999;
  height: 3px;
}

select {
  outline: solid 1px red;
}

.settings-range:focus {
  background: #000;
  outline: none;
}

.settings-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #fff;
  border: solid 3px #000;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}

.settings-download {
  cursor: pointer;
  background: #fff;
  border: none;
  /* border-top: solid 3px #000;
  border-bottom: solid 3px #000; */
  border: solid 3px #000;
  padding: 20px;
  box-sizing: content-box;
  width: 100%;
  /* margin-left: -20px; */
  width: calc(100% - 45px);
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all .2s;
  font-size: 23px;

  background: #000;
  color: #fff;
}

.settings-download:focus, .settings-download:hover {
  outline: none;
  font-variation-settings: "wght" 80, "wdth" 600;
  background: #000;
  color: #fff;
}

a.settings-removebranding {
  padding: 20px 10px;
  color: #000;
  display: block;
  text-align: center;

  background: #fff;
  border: solid 3px #000;
  /* border: solid 3px #fff; */
  width: 100%;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .2s;
  /* font-size: 17px; */
  font-size: 21px;
  text-decoration: none;
}

a.settings-removebranding:focus, a.settings-removebranding:hover {
  outline: none;  
  font-variation-settings: "wght" 80, "wdth" 600;
  background: #000;
  color: #fff;
  border: solid 3px #000;
}

.form--disabled {
  cursor: not-allowed;
  opacity: .2;
}

.settings-textinput {
  padding: 0 0 6px 0;
  outline: none;
  background: #fff;
  color: #999;
  border: none;
  border-bottom: solid 3px #000;
}

.settings-textinput:focus {
  color: #000;
}

.settings-checkbox {
}

.settings-checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  outline: none;
  width: 30px;
  height: 30px;
  display: inline-block;
  border: solid 3px #000;
  margin-bottom: -6px;
}

.settings-checkbox input:focus {
  background: #ddd;
}

.settings-checkbox input:checked {
}

.settings-checkbox input:checked:after {
  content: '+';
  font-size: 48px;
  line-height: 27px;
  transform: rotate(45deg);
  font-variation-settings: "wght" 60, "wdth" 500;
  position: absolute;
  margin-top: -5px;
  margin-left: 1px;
}

.settings, .dialog, .intro {
  user-select: none;
}



/* iframe */
.removebranding {
  position: fixed;
  z-index: 700;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  /* background: rgba(0,0,0,.3); */
  background: #999;
  background: #fff;

  opacity: 0;
  pointer-events: none;

  transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.removebranding--visible {
  opacity: 1;
  pointer-events: auto;
}

.removebranding iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.removebranding-cancel {
  background: #fff;
  color: #000;
  border: solid 3px #000;
  border-radius: 40px;
  font-size: 20px;
  line-height: 1.2;
  /* width: 60px; */
  height: 60px;
  box-shadow: rgba(0,0,0,.6) 0px 2px 5px 1px;
  padding: 10px 20px;
  text-align: center;
  pointer-events: auto;
  transition: all .2s;

  position: fixed;
  top: 10px;
  right: 10px;
}

.removebranding-cancel span {
  font-size: 30px;
  line-height: 0;
  position: relative;
  bottom: -2px;
  color: inherit;
}

.removebranding-cancel:hover, .removebranding-cancel:focus {
  color: #fff;
  border: solid 3px #000;
  background: #000;
  outline: none !important;
}

.removebranding * {
  pointer-events: none;
}

.removebranding--visible * {
  pointer-events: auto;
}

@media(max-width: 960px) {
  .intro-right {
    display: none;
  }

  .intro-left {
    width: 100%;
  }
}


@media (max-width: 600px) {
  body {
    font-size: 15px;
    line-height: 18px;
    width: 100%;
    max-width: 100%;
  }

  .intro {
    font-size: 15px;
    line-height: 18px;
  }

  .intro-instructions, .intro-credits, .intro-announcement {
    font-size: inherit;
    line-height: inherit;
  }

  .settings {
    width: calc(100% - 60px);
    max-width: calc(100% - 60px);
    min-width: calc(100% - 60px);
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
  }

  .settings-part {
    margin-bottom: 17px;
    width: 100%;
    max-width: 100%;
  }

  .settings-part-left {
    margin-bottom: 4px;
  }

  .settings-part-left, .settings-part-right {
    clear: both;
    float: none;
    width: 100%;
  }

  .settings-textinput {
    border-radius: 0;
  }

  .settings-info {
    font-size: inherit;
    line-height: inherit;
  }

  .options {
  }

  .settings-checkbox {
    margin-bottom: 17px;
    display: block;
  }

  .settings-download {
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
  }

  .settings-download, a.settings-removebranding {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .options {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    height: 100%;
    pointer-events: none;
    z-index: 500;
    width: 60px;
  }

  .editcontent-button {
    font-size: 30px;
    line-height: 20px;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .editcontent-button span {
  }

  .editcontent-button-intro {
    margin-top: 50px;
  }



  .dialog-buttons button {
    font-size: 15px;
    height: 40px;
  }

  .dialog-text {
    padding: 15px 15px 35px 15px;
  }


  .settings-togglecolorpicker {
    display: none;
  }

  .editcontent-button .svg-icon {
    position: absolute;
    top: 0px;
    left: -1px;
  }
}

@media (any-pointer: coarse) {
  .mobile {
    display: block;
  }
}

@media (max-height: 600px) {
  .intro-credits {
    position: static;
  }
}
