.room-code-sticker {
  font-family: "Russo One", sans-serif;
  position: absolute;
  top: calc(20px + env(safe-area-inset-top));
  right: 0;
  background-color: #ffffff;
  color: #000000;
  padding: 1.45rem 1.513rem;
  border-radius: 1.1rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0rem 3rem;

  width: 11.1rem;
  text-align: center;
}

.room-code-sticker .qr-code {
  height: auto;
  margin: 0 auto;
  width: 100%;
  /* float: left; */
}

.room-code-sticker .room-code {
  /* float: left; */
  margin-top: 0.62rem;
  font-size: 0.89rem;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.room-code-sticker .room-code b {
  font-size: 1.5rem;
  margin: 0;
  font-weight: normal;
  display: block;

  /* Keep everything in the title in a single line */
  white-space: nowrap;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}
#canvas-container {
  /* background-image: linear-gradient(#131A21, #3A3793); */
  display: flex;
  /* align-content: center; */
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

html {
  font-size: 1.5vh;
}

p {
  font-size: 1rem;
}

h1 {
  font-size: 4rem;
}

/* @media (min-width: 2200px) { 
  body{
    transform: scale(2);
  }
} */

.font-load-hack {
  position: absolute;
  top: -100vh;
  left: -100vw;
}

.font-load-hack span {
  font-family: "Lilita One";
}
/* @import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lilita+One&display=swap"); */
@font-face {
  font-family: "Russo One";
  src: url("/sdkdemo/assets/RussoOne-Regular.ba5a79c9.ttf") format("truetype");
}
@font-face {
  font-family: "Rubik One";
  src: url("/sdkdemo/assets/RubikOne-Regular.fced18ce.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  src: url("/sdkdemo/assets/OpenSans-VariableFont.d67a00fc.ttf") format("truetype");
}
@font-face {
  font-family: "Lilita One";
  src: url("/sdkdemo/assets/LilitaOne-Regular.4444c236.ttf") format("truetype");
}
@font-face {
  font-family: "Caveat Brush";
  src: url("/sdkdemo/assets/CaveatBrush-Regular.2758f1df.ttf") format("truetype");
}
:root {
  --sat: env(safe-area-inset-top);
  --sar: env(safe-area-inset-right);
  --sab: env(safe-area-inset-bottom);
  --sal: env(safe-area-inset-left);
}
body {
  font-family: "Russo One", sans-serif;
}
.App {
  text-align: center;
}
.App-logo {
  height: 10vmin;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}
.App-header {
  background-color: #282c34;
  min-height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}
.App-link {
  color: #61dafb;
}
@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#canvas-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s; /* Firefox < 16 */
  -ms-animation: fadein 1s; /* Internet Explorer */
  -o-animation: fadein 1s; /* Opera < 12.1 */
  animation: fadein 1s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.touch-joystick-zone,
.touch-twobutton-zone,
.gyro-joystick-zone {
  position: fixed;
  width: 100vw;
  /* height: 100%; */
  top: 0;
  bottom: 5rem;
  /* bottom: env(safe-area-inset-bottom); */
  /* min-height: 100vh;
  min-height: -webkit-fill-available; */
  left: 0;
  z-index: 1;
  display: none;
  background-color: transparent;
  color: #fff;
  font-size: 1.2rem;
}
/* .touch-twobutton-zone.onebutton.overlay-mode{
  height: 100vh;
} */
.touch-twobutton-zone.onebutton.overlay-mode .button1 {
  width: 50vw;
  height: 50vw;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.touch-joystick-zone.active,
.touch-twobutton-zone.active {
  display: block;
}
.touch-joystick-zone .dpad,
.touch-twobutton-zone .button1 {
  position: absolute;
  width: 100vw;
  height: 100vw;
  /* background-color: rgba(255,0,0,0.1); */
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.touch-joystick-zone .dpad .circle,
.touch-twobutton-zone .button1 .circle {
  border: 4px solid #ffff;
  border-radius: 50%;
  width: 90%;
  height: 90%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.touch-joystick-zone .button1 {
  position: absolute;
  width: 28vw;
  height: 28vw;
  bottom: calc(100vw - 28vw);
  right: 5%;
  border-radius: 50%;
  border: 4px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.touch-joystick-zone .button2 {
  position: absolute;
  width: 50vw;
  display: none;
  height: 50vh;
  background-color: rgba(0, 255, 0, 0.1);
  bottom: 0;
  right: 0;
}
.touch-joystick-zone.two-buttons .button1 {
  height: 50vh;
}
.touch-joystick-zone.two-buttons .button2 {
  display: block;
}
.touch-twobutton-zone.onebutton .button2 {
  display: none;
}
.button-black {
  cursor: pointer;
  font-family: "Russo One", sans-serif;
  border: none;
  color: white;
  padding: 20px 40px;
  width: 100%;
  font-size: 13pt;
  margin: 5px;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
}
.gyro-joystick-zone.active {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gyro-joystick-zone .hidden {
  display: none;
}
.gyro-joystick-zone .btn-start {
  width: 70%;
}
:root {
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
  /* background-color: #161616; */
}

.demo-container {
  font-family: "Russo One";
  /* background-color: transparent; */
  background-color: #000000;
  display: flex;
  flex-direction: column;
  color: #fff;
  height: 100vh;
  overflow: auto;
  /* padding: 1rem; */
  gap: 1rem;
  margin: 0rem;
}

/* Can't namespace portalled QR Code Sticker */
.room-code-sticker {
  width: 15.8rem !important;
  border-radius: 2.2rem !important;
  padding: 2.4rem 2.5rem !important;
  margin-bottom: 2rem;
}

.room-code-sticker .room-code b{
  font-size: 2.8rem !important;
  line-height: normal;
}

.room-code-sticker .room-code span{
  font-size: 1.6rem !important;
  line-height: normal;
  display: none;
}

.demo-container .logo {
  background: url("/sdkdemo/assets/logo.8779aa99.svg") no-repeat left;
  background-size: contain;
  padding: 1rem;
  font-size: 1.8rem;
  padding-left: 82px;
}

.demo-container .inner {
  display: flex;
  flex: 1;
  /* gap: 1rem; */
  overflow: hidden;
  /* flex-direction: column; */
  /* padding-bottom: 1rem; */
}

.demo-container .inner .navbar {
  width: 18vw;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  overflow: auto;
  padding: 1rem;
  color-scheme: dark;
  background-color: #161616;
  margin: 1rem;
  border-radius: 0.5rem;
  margin-left: 0rem;
  margin-right: 0rem;
  margin-top: 0rem;
  min-width: 23rem;
  
  /* padding: 1rem; */
  /* padding-bottom: 100px; */
}

.demo-container .inner .demos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.topbar .btn {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 0.5rem;
  background: #000;
  padding: 10px 20px;
  border: 2px solid #fff;
  cursor: pointer;
  margin: 0 auto;
  transition: 0.4s;
  font-family: 'Courier New', Courier, monospace;
}

.topbar .btn.active {
  background: #3905f3;
  border: 2px solid transparent;
}

.demo-container .inner .navbar .item {
  background: #222326;
  border-radius: 1rem;
  padding: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}

.demo-container .inner .navbar .item h4 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  width: calc(100% - 70px);
}

@media only screen and (max-width: 1200) {
  .demo-container .inner .navbar .item h4 {
    font-size: 0.7rem !important;
  }
}

.demo-container .inner .navbar .item.active {
  /* border-color: #3905f3; */
}

.demo-container .inner .navbar .item span {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
}

.demo-container .inner .preview-container {
  background-color: #000;
  /* border-radius: 1rem; */
  flex: 1;
  /* width: 100%;
  height: 100%; */
  /* padding: 2rem; */
  gap: 1rem;
  display: flex;
  flex-direction: column;
  max-width: calc(100vw - 17vw);
  overflow: auto;
  position: relative;
  /* height: fit-content; */
}

.demo-container .inner .preview-container .topbar {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  padding-bottom: 1rem;
  z-index: 2;
}

.demo-container .inner .preview-container .preview {
  display: flex;
  position: relative;
  z-index: 2;
}
.code-view {
  /* position: absolute; */
  position: relative;
  z-index: 1;
  /* right: 2rem; */
  font-size: 0.9rem;
  width: auto;
  user-select: text;
  /* top: -13px; */
  height: fit-content;
  padding: 1rem;
  background-color: #2B2B2B;
}
.code-view pre {
  /* height: 100%; */
  border: solid 1px #ffffff20;
  background-color: transparent;
}

.code-view ::selection {
  background: #00ffff6e;
}

.code-view .btn {
  border: none;
  background-color: transparent;
  opacity: 0.2;
  padding: 0.2rem;
  position: absolute;
  bottom: 2rem;
  right: 2rem;

  cursor: pointer;
  /* bottom: ; */
}

.code-view .btn:hover {
  background-color: #0000000f;
  opacity: 0.8;
  /* bottom: ; */
}

.demo-container .inner .code-view > * {
  border-radius: 1rem !important;
  /* border: 0px solid #3905f3 !important; */
}

.w-prismjs .token.operator,
.w-prismjs .token.entity,
.w-prismjs .token.url,
.w-prismjs .token.variable {
  background: none !important;
}

.w-prismjs code[class*="language-"] {
  text-shadow: none !important;
}

.demo-container .inner .preview {
  display: flex;
  flex: 1 1 auto;
  /* width: 100%; */
  width: auto;
  gap: 1rem;
  transition: 0.8s ease-in-out;
  /* justify-content: center; */
  align-items: center;
  position: relative;
}

.demo-container .inner .preview .frame-container iframe {
  background:url(/sdkdemo/assets/logo.8779aa99.svg) center center no-repeat;
  background-size: 30% 30%;
  border:0;
  /* zoom: 0.5; */
  /* transform: scale(0.5); */
  /* transform-origin: 50% 0%; */
  height: 100%;
  width: 100%;
  position: absolute;
  visibility: hidden;
}

.demo-container .inner .preview .frame-container .svg-grid {
  opacity: 1;
  position: absolute;
  z-index: 999;
  pointer-events: none;
  /* height: 100%;
  width: 100%; */
}

.demo-container .inner .grid {
  grid-template-columns: auto;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAt0AAALyCAYAAAAGzWgRAAAABHNCSVQICAgIfAhkiAAAABl0RVh0U29mdHdhcmUAZ25vbWUtc2NyZWVuc2hvdO8Dvz4AAA8nSURBVHic7dbBcYRADABBLWRA/qke+OcAcM0+fN0JqEBbqlnXdT0Tep5n7vsuR/w6z3PLnPu+53nS3zYzM8dxzFornzMz8/l8tszZtaNd726tNcdx5HNm9u1o17uzo/f+245m3O+/cL/fcRves6N39nwJAAB8MdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AADHRDQAAMdENAAAx0Q0AALEfW/lJELhyRIMAAAAASUVORK5CYII=);
  background-repeat: repeat;
  /* filter: invert(1); */
  opacity: 1;
  background-size: 130px 130px;

  position: absolute;
  z-index: 0;

  display: flex;
  flex: 1;
  height: 100%;
  width: 100%;

  /* z-index: -1; */

  pointer-events: none;


}

.demo-container .inner .preview .frame-container .grid-item {
  border: #000;
}


.demo-container .inner .preview .loading-bg {
  background:url(/sdkdemo/assets/logo_animated.35e6fb53.svg) center center no-repeat !important;
  background-size: 30% 30% !important;
}

.demo-container .inner .preview .frame-container {
  border-radius: 2rem;
  border: 2px solid #ffffff76;
  display: flex;
  padding: 0;
  position: relative;
  vertical-align: middle;
  overflow: hidden;
}

.demo-container .inner .preview .frame-container.phone {
  height: calc(18vh * 4.5);
  width: calc(9vh * 4.5);
  transition: 0.2s;

  /* initial state */
  opacity: 0;
  transform: scale(0.8);

  animation: 0.4s appear 1s forwards, 0.4s slide-up 0s forwards;
}

.demo-container .inner .preview .frame-container.mini {
  height: calc(18vh * 3.375) !important;
  width: calc(9vh * 3.375) !important;

  /* initial state */
  opacity: 0;
  transform: scale(0.8);

  animation: 0.4s appear 1s forwards;
}

.demo-container .inner .preview .frame-container.cast {
  height: calc(10.2vh * 6);
  width: calc(16vh * 6);

  /* initial state */
  opacity: 0;
  transform: scale(0.8) translateX(-20rem);

  animation: 0.4s slide-right 1s forwards;
}

@keyframes slide-up {
  0%{
    transform: translateY(0rem);
  }
  100%{
    transform: translateY(-3.0rem);
  }  
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  /* 50% {
    opacity: 0.5;
    transform: scale(0.9) translateY(0rem);
  }   */
  100% {
    opacity: 1;
    transform: scale(1);
  }  
}

@keyframes slide-right {
  0% {
    opacity: 0;
    transform: scale(0.8) translateX(-20rem);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0rem);
  } 
}


.demos input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

.demos label {
  cursor: pointer;
  text-indent: -9999px;
  width: 13rem;
  height: 6.5rem;
  background: grey;
  display: block;
  border-radius: 100px;
  transform: scale(0.3);
  position: absolute;
  right: -48px;
  top: -20px;
}

.demos label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

.demos input:checked + label {
  background: #3905f3;
}

.demos input:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

.demos label:active:after {
  width: 130px;
}


@keyframes wiggle {
  0% {
    rotate: 0deg;
  }
  25% {
    rotate: 4deg;
  }
  50% {
    rotate: -4deg;
  }
  75% {
    rotate: 4deg;
  }
  100% {
    rotate: 0deg;
  }
}

.create-room-modal .avatar-holder {
  width: 6.5rem !important;
  height: 6.5rem !important;
  border-width: 1rem !important;
  /* border-color: white !important; */
}

.create-room-modal .empty-avatar-holder {
  border: solid 1rem white !important;
  /* border-width: 1rem !important; */
  /* border-color: white !important; */
  width: 6.5rem !important;
  height: 6.5rem !important;
}