@import "https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap&subset=latin-ext";
:root {
  --bgColor: #ff0058;
  --gdColor: #fff;
}

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

::selection {
  background: var(--bgColor);
  color: var(--gdColor);
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  letter-spacing: .05em;
  font-family: Montserrat, sans-serif;
  font-size: 1.04167vw;
  font-weight: 300;
  line-height: 1.5em;
}

@media (width <= 800px) {
  body {
    font-size: 4.8vw;
  }
}

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

a:hover {
  color: #e6004f;
  box-shadow: inset 0 -.15em #fff;
}

a.is-active, a:hover {
  text-decoration: underline;
}

a.is-active {
  cursor: default;
}

ul {
  list-style: none;
}

.drag {
  cursor: grab;
  fill: var(--bgColor);
  touch-action: none;
  stroke: #ff005880;
  transition: fill .25s;
}

.drag:active {
  cursor: grabbing;
}

.drag__handler {
  fill: #0000;
}

.app {
  isolation: isolate;
  height: 100%;
  display: flex;
  position: relative;
}

@media (width <= 800px) {
  .app {
    flex-direction: column;
  }
}

.app__menu {
  margin-bottom: 2em;
}

.app__menu li {
  margin-right: 1em;
  display: inline-block;
}

.app__widget, .app__info {
  background-color: var(--bgColor);
  flex-direction: column;
  flex: 1;
  display: flex;
}

.app__widget {
  transition: background .25s;
}

.app__gd {
  fill: var(--gdColor);
  stroke: #ff005880;
}

.app__logo {
  z-index: 2;
  width: 25vw;
  margin: auto;
  position: relative;
}

@media (width <= 800px) {
  .app__logo {
    width: 60%;
  }
}

.app__logo svg {
  display: block;
}

.app__card {
  z-index: 2;
  width: 50%;
  margin: auto;
  position: relative;
}

@media (width >= 801px) {
  .app__card {
    padding-top: 1.25em;
  }
}

@media (width <= 800px) {
  .app__card {
    width: 60%;
  }
}

.app__info {
  --bgColor: #fff;
  --gdColor: #ff0058;
  color: var(--gdColor);
  text-shadow: 0 0 4em #ff005880;
  transition: background .4s;
}

.app__info p {
  color: inherit;
  margin-bottom: 1.25em;
}

.app__info a {
  font-size: 80%;
}

.wave-grid {
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.debug-launcher {
  left: calc(16px + env(safe-area-inset-right, 0px));
  top: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 101;
  cursor: pointer;
  color: #ff0058;
  letter-spacing: -.08em;
  background: #fffffff0;
  border: 1px solid #ff005840;
  border-radius: 12px;
  align-items: center;
  height: 44px;
  padding: 0;
  font: 500 15px / 1 monospace;
  display: flex;
  position: fixed;
  overflow: hidden;
}

.debug-launcher__icon {
  flex: 0 0 42px;
  place-items: center;
  height: 42px;
  display: grid;
}

.debug-launcher__label {
  opacity: 0;
  white-space: nowrap;
  letter-spacing: normal;
  max-width: 0;
  font-size: 12px;
  transition: max-width .25s, padding-left .25s, opacity .2s, transform .25s;
  overflow: hidden;
  transform: translateX(8px);
}

@media (prefers-reduced-motion: reduce) {
  .debug-launcher__label {
    transition: none;
  }
}

.debug-launcher[aria-pressed="true"] {
  color: #fff;
  background: #ff0058;
}

.debug-launcher:hover, .debug-launcher:focus-visible {
  color: #fff;
  box-shadow: none;
  background: #ff0058;
  text-decoration: none;
}

.debug-launcher:hover .debug-launcher__label, .debug-launcher:focus-visible .debug-launcher__label {
  opacity: 1;
  max-width: 180px;
  padding-left: 14px;
  transform: translateX(0);
}

.debug-launcher:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #ff0058;
}

.motion-launcher {
  left: calc(16px + env(safe-area-inset-left, 0px));
  right: auto;
}

.motion-launcher[hidden] {
  display: none;
}

.motion-launcher:disabled {
  cursor: wait;
}

.motion-launcher .debug-launcher__label {
  opacity: 1;
  max-width: 180px;
  padding-left: 14px;
  transform: none;
}

.motion-status {
  left: calc(16px + env(safe-area-inset-left, 0px));
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  z-index: 101;
  color: #ff0058;
  letter-spacing: normal;
  background: #fffffff5;
  border-radius: 10px;
  max-width: min(280px, 100vw - 32px);
  padding: 10px 12px;
  font: 12px / 1.5 monospace;
  position: fixed;
}

.motion-status:empty {
  display: none;
}

.dg.wave-debug {
  z-index: 100;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 84px - env(safe-area-inset-bottom, 0px));
  letter-spacing: normal;
  position: fixed;
  top: 12px;
  right: 12px;
  overflow-y: auto;
}

.dg.wave-debug .property-name {
  width: 52%;
}

.dg.wave-debug .c {
  width: 48%;
}

.dg.wave-debug .close-button {
  max-width: 100%;
}
/*# sourceMappingURL=app.css.map */
