.ejx-user-select-none,.ejx-LaunchButtonWrapper,.ejx-LaunchRoot{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-touch-callout:none;-ms-text-size-adjust:none;-webkit-text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ejx-user-select-none,.ejx-LauncherPopup,.ejx-LaunchButtonWrapper,.ejx-LaunchRoot{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-touch-callout:none;-ms-text-size-adjust:none;-webkit-text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ejx-LaunchRoot{--max-height: -webkit-fill-available;pointer-events:none;position:absolute;width:100vw;height:min(var(--win-height),var(--max-height));top:0;left:0;overflow:hidden}.ejx-LaunchButtonWrapper{position:absolute;bottom:30px;left:50%;transform:translate(-50%);display:flex;box-sizing:border-box;color:#eee;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif}.ejx-CloseButton{position:fixed;top:20px;left:20px;width:32px;height:32px;pointer-events:all;filter:drop-shadow(3px 5px 2px rgba(0,0,0,.4))}.ejx-LaunchButton{z-index:1000;text-transform:uppercase;position:relative;padding:10px 40px;-webkit-appearance:unset;-moz-appearance:unset;appearance:unset;background:#000;color:#eee;font-size:16px;font-weight:700;cursor:pointer;border:2px solid #C0FB00;transition:all .1s ease-in-out;pointer-events:all}.ejx-LaunchButton:hover{background:#333}.ejx-LaunchButton__Deemphasize{border:2px solid #597500}.ejx-LaunchButton__Small{padding:10px 20px}.ejx-SessionButtonWrapper{opacity:0;pointer-events:none;overflow:hidden;transition:all .2s;left:0%;top:0;gap:5px;z-index:-1;max-width:0px;margin-left:-5px;display:flex;justify-content:right}.ejx-SessionButtonWrapper__Visible{max-width:140px;margin-left:10px;opacity:1;pointer-events:all}.ejx-EJXLogoShape{position:absolute;top:50%;right:10px;transform:translateY(-50%)}.ejx-EJXLogoShape__Close{right:20px}.ejx-EJXLogoShape__Secondary{right:10px;transform:translateY(-50%) scaleX(-1);opacity:0}.ejx-EJXLogoShape__Secondary.ejx-EJXLogoShape__Close{opacity:1}.ejx-EJXText{width:250px;max-width:80vw}.ejx-LauncherPopup{cursor:default;background:#000;padding:15px;position:absolute;bottom:calc(100% + 20px);left:50%;transform:translate(-50%) translateY(20px);opacity:0;pointer-events:none;transition:all .1s ease-in-out;display:flex;flex-direction:column;align-items:center;text-align:left;border:1px solid white;z-index:1001}.ejx-LauncherPopup:before{content:" ";position:absolute;top:100%;left:50%;transform:translate(-50%);width:0;height:0;border-style:solid;border-width:11px 11px 0 11px;border-color:#fff transparent transparent transparent}.ejx-LauncherPopup:after{content:" ";position:absolute;top:100%;left:50%;transform:translate(-50%);width:0;height:0;border-style:solid;border-width:10px 10px 0 10px;border-color:#000 transparent transparent transparent}.ejx-LauncherPopup__Visible{transform:translate(-50%) translateY(0);opacity:1;pointer-events:all}.ejx-LauncherPopup h3{margin:0 0 10px}.ejx-LauncherPopup p{margin:0 0 5px}.ejx-CopyText{display:flex;justify-content:space-between;border:1px solid #ddd;border-radius:5px;padding:5px 5px 3px;margin-bottom:10px;max-width:250px}.ejx-CopyText:hover{background:#333;cursor:pointer}.ejx-CopyText_UrlText{flex-shrink:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ejx-CopyText_Copy{flex-shrink:0;position:relative;width:20px;height:20px}.ejx-CopyText_CopyIcon{position:absolute;left:50%;top:43%;transform:translate(-50%,-50%);stroke-dashoffset:-50px;transition:all .3s ease-in-out;stroke-dasharray:50}.ejx-CopyText_CopyIcon__Visible{stroke-dashoffset:0}.ejx-CopyText_CopyIcon__Check{color:#3d3}.ejx-DesktopPopupContents{display:flex;flex-direction:column;align-items:stretch;gap:10px}.ejx-DesktopPopupContents_Qr{background:#fff;border-radius:5px;padding:10px;margin-bottom:10px}.ejx-DesktopPopupContents_Version{position:absolute;right:15px;top:15px;font-size:10px;color:#555}.ejx-DesktopPopupContents_Text{width:100%;font-size:14px;margin:0}

html,
body,
#app {
    width: 100%;
    height: calc(var(--ih) * 100);
    overflow: hidden;
}

#singleModeMessage {
  display: none;
  position: fixed;
  bottom: 27%;
  left: 50%;
  transform: translate(-50%);
  font-size: 30px;
  text-align: center;
  animation: fade-in 500ms forwards;
}
#singleModeMessage.fadeout {
  animation: fade-out 500ms forwards;
}

/* mobile nav */
.mobileNav {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
}
.mobileNav.singleMode {
  display: none;
}
.mobileNav .button {
  cursor: pointer;
  margin: 15px;
  background: url(src/features/experience/assets/mobile-nav/upstate.png)
    no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  vertical-align: center;
}
.mobileNav .button.active {
  background: url(src/features/experience/assets/mobile-nav/downstate.png)
    no-repeat;
  background-size: contain;
}
#navLeft {
  transform: scaleX(-1);
}
.dotsContainer {
  display: flex;
  align-items: center;
  padding: 12px;
  border-style: solid;
  border-width: 1px;
  border-radius: 50px;
  border-color: rgba(255, 255, 255, 0.2);
}
.dot {
  background-color: #7d7d7d;
  border: none;
  border-radius: 10px;
  display: inline-block;
  height: 9px;
  width: 9px;
  margin: 4px;
}
.dot.active {
  background-color: #c0fb00;
  height: 12px;
  width: 12px;
}
@media (max-width: 400px) {
  .mobileNav {
    transform: translate(-50%) scale(0.8);
  }
}
@media (max-width: 290px) {
  .mobileNav {
    transform: translate(-50%) scale(0.65);
  }
}
#app {
  height: calc(var(--vh, 1vh) * 100);
  z-index: 999;
}

@keyframes fade-out {

    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.arBeforeHittest.fadeout {
    animation: fade-out 500s forwards;
}

@keyframes fade-out {

    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.arConfirmHittest.fadeout {
    animation: fade-out 500s forwards;
}

#my-canvas {
  touch-action: none;
}
.ejx-CloseButton {
  display: none !important;
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeout {
  animation: fade-out 0.5s forwards;
}
.arDomRoot {
  height: calc(var(--ih) * 100) !important;
}.keen-slider:not([data-keen-slider-disabled]){-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;align-content:flex-start;display:flex;overflow:hidden;position:relative;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;user-select:none;-khtml-user-select:none;width:100%}.keen-slider:not([data-keen-slider-disabled]) .keen-slider__slide{min-height:100%;overflow:hidden;position:relative;width:100%}.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse]{flex-direction:row-reverse}.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-v]{flex-wrap:wrap}/*
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

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

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
  @font-face {
    font-family: "URWDIN Demi";
    src: url("/assets/URWDIN-Demi-7ebd8066.woff") format("woff"),
      url("/assets/URWDIN-Demi-3b63cefc.woff2") format("woff2");
    font-weight: 700;
  }

  @font-face {
    font-family: "URWDIN Regular";
    src: url("/assets/URWDIN-Regular-82013594.woff") format("woff"),
      url("/assets/URWDIN-Regular-916f984c.woff2") format("woff2");
    font-weight: 400;
  }

  * {
  font-family: URWDIN Regular, sans-serif;
    touch-action: none;
    box-sizing: border-box;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important; /* Safari */ /* Konqueror HTML */
    -moz-user-select: none !important; /* Firefox */ /* Internet Explorer/Edge */
    user-select: none !important; /* Non-prefixed version, currently */
}
  input,
  textarea,
  button,
  select,
  a {
      -webkit-tap-highlight-color: transparent;
  }
  p {
  font-family: URWDIN Regular, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
  .splash-text {
  line-height: 1.25;
  letter-spacing: 1px;
}
  h3 {
  font-family: URWDIN Demi, sans-serif;
  font-size: 22px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
  .ejx-button {
  display: flex;
  height: 56px;
  width: 100%;
  max-width: 230px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  background-color: rgba(255, 255, 255, 0.10);
  font-family: URWDIN Demi, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  --tw-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0px 0px 20px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
  .ejx-button:active {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
  .modal-text {
  text-align: justify;
  font-size: 0.75rem;
  line-height: 1rem;
  line-height: 18px;
}
  .contextual-onboarding {
  z-index: 999;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  font-size: 28px;
  line-height: 37px;
  --tw-drop-shadow: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.15), 0px 2px 0px rgba(0, 0, 0, 0.25));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
  .repositioning-text {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25),
      1px 1px 2px rgba(0, 0, 0, 0.25);
  }

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.-bottom-6 {
  bottom: -1.5rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-\[40px\] {
  bottom: 40px;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.right-3 {
  right: 0.75rem;
}
.right-6 {
  right: 1.5rem;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.z-20 {
  z-index: 20;
}
.z-\[999\] {
  z-index: 999;
}
.z-\[99\] {
  z-index: 99;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-mb-2 {
  margin-bottom: -0.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[90px\] {
  margin-top: 90px;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-1 {
  height: 0.25rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-28 {
  height: 7rem;
}
.h-\[50px\] {
  height: 50px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.max-h-\[600px\] {
  max-height: 600px;
}
.w-1\/2 {
  width: 50%;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-2 {
  width: 0.5rem;
}
.w-20 {
  width: 5rem;
}
.w-28 {
  width: 7rem;
}
.w-\[250px\] {
  width: 250px;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.min-w-\[250px\] {
  min-width: 250px;
}
.max-w-\[310px\] {
  max-width: 310px;
}
.max-w-\[360px\] {
  max-width: 360px;
}
.max-w-\[390px\] {
  max-width: 390px;
}
.max-w-xs {
  max-width: 20rem;
}
.shrink {
  flex-shrink: 1;
}
.flex-grow {
  flex-grow: 1;
}
.grow {
  flex-grow: 1;
}
.basis-1\/3 {
  flex-basis: 33.333333%;
}
.basis-2\/3 {
  flex-basis: 66.666667%;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes fade-in {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.animate-fade-in {
  animation: fade-in 500ms forwards;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.flex-col {
  flex-direction: column;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.overflow-hidden {
  overflow: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-r-2 {
  border-right-width: 2px;
}
.border-none {
  border-style: none;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-opacity-30 {
  --tw-border-opacity: 0.3;
}
.bg-\[\#404040\] {
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity));
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.5\)\] {
  background-color: rgba(0,0,0,0.5);
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.6\)\] {
  background-color: rgba(0,0,0,0.6);
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.9\)\] {
  background-color: rgba(0,0,0,0.9);
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-ejx-gray-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(62 64 66 / var(--tw-bg-opacity));
}
.bg-ejx-purple {
  --tw-bg-opacity: 1;
  background-color: rgb(103 21 252 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-ar-edit-button-upstate {
  background-image: url('/assets/transform-upstate-df924f1c.svg');
}
.bg-custom-header {
  background-image: url('/assets/bar-f0920e30.jpg');
}
.bg-primary {
  background-image: url('/assets/bg-93f5f504.webp');
}
.bg-contain {
  background-size: contain;
}
.bg-cover {
  background-size: cover;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.p-1 {
  padding: 0.25rem;
}
.p-4 {
  padding: 1rem;
}
.p-8 {
  padding: 2rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-\[calc\(env\(safe-area-inset-top\)\+35px\)\] {
  padding-top: calc(env(safe-area-inset-top) + 35px);
}
.text-center {
  text-align: center;
}
.font-heading {
  font-family: URWDIN Demi, sans-serif;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-normal {
  font-weight: 400 !important;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[0\.5px\] {
  letter-spacing: 0.5px;
}
.tracking-\[1px\] {
  letter-spacing: 1px;
}
.tracking-\[4px\] {
  letter-spacing: 4px;
}
.opacity-0 {
  opacity: 0;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body,
#app {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: calc(var(--ih) * 100);
  position: relative;
}

body {
  margin: 0;
  /* background-color: #000000; */
  color: #fff;
  overscroll-behavior: none;
}

a {
  color: #ff0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
  text-transform: uppercase;
}

#info {
  position: absolute;
  top: 0px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1; /* TODO Solve this in HTML */
}

a,
button,
input,
select {
  pointer-events: auto;
}

.lil-gui {
  z-index: 2 !important; /* TODO Solve this in HTML */
}

@media all and (max-width: 640px) {
  .lil-gui.root {
    right: auto;
    top: auto;
    max-height: 50%;
    max-width: 80%;
    bottom: 0;
    left: 0;
  }
}

#overlay {
  position: absolute;
  font-size: 16px;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
}

#overlay button {
  background: transparent;
  border: 0;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 4px;
  color: #ffffff;
  padding: 12px 18px;
  text-transform: uppercase;
  cursor: pointer;
}

#notSupported {
  width: 50%;
  margin: auto;
  background-color: #f00;
  margin-top: 20px;
  padding: 10px;
}

/** Transform controls */
/* .hidden {
  display: none;
} */

/* :root {
  --transform-offset: 150px;
  --button-size: 48px;
}
.transform-controls {
  position: fixed;
  top: var(--transform-offset);
  right: var(--transform-offset);
  border-radius: 5px;
  overflow: hidden;
}

.transform-controls__button {
  width: var(--button-size);
  height: var(--button-size);
  cursor: pointer;
  border-bottom: 1px solid #555;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  padding: 5px;
}
.transform-controls__button:hover,
.transform-controls__button:focus {
  background: #333;
}
.transform-controls__button:active,
.transform-controls__button--active {
  background: #fff;
}
.transform-controls__button:last-child {
  border-bottom: none;
}
.transform-controls__icon {
  width: 40px;
  height: 40px;
  fill: white;
}
.transform-controls__icon:active {
  fill: black;
} */

.ejx-LaunchButton {
  display: none !important;
  width: 210px;
  height: 56px;
  border-radius: 100px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.ejx-LaunchButton:hover,
.ejx-LaunchButton:active {
  background: linear-gradient(321deg, #141516 14.75%, #1a1a1b 84.81%);
}

.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}

.before\:z-10::before {
  content: var(--tw-content);
  z-index: 10;
}

.before\:block::before {
  content: var(--tw-content);
  display: block;
}

.before\:h-full::before {
  content: var(--tw-content);
  height: 100%;
}

.before\:w-full::before {
  content: var(--tw-content);
  width: 100%;
}

.before\:bg-confirm-hittest::before {
  content: var(--tw-content);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%);
}

.before\:content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content);
}

.hover\:border-opacity-50:hover {
  --tw-border-opacity: 0.5;
}

.hover\:opacity-50:hover {
  opacity: 0.5;
}

.focus\:bg-white:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.focus\:bg-opacity-25:focus {
  --tw-bg-opacity: 0.25;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.active\:bg-ar-edit-button-downstate:active {
  background-image: url('/assets/transform-downstate-defe116a.svg');
}

@media (max-height: 830px) {

  .short\:max-w-\[250px\] {
    max-width: 250px;
  }

  .short\:p-4 {
    padding: 1rem;
  }
}

@media (max-height: 650px) and (min-width:600px) {

  .shorter\:flex-row {
    flex-direction: row;
  }

  .shorter\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
