@font-face {
  src: url("/public/fonts/sohne-kraftig.woff2");
  font-family: "Sohne";
}
@font-face {
  src: url("/public/fonts/ShadowsIntoLightTwo-Regular.woff2");
  font-family: "ShadowsIntoLightTwo";
}
* {
  margin: 0;
  padding: 0;
}

html,
body {
  touch-action: manipulation;
  font-family: "Sohne", sans-serif;
  color: #002318;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.a-enter-vr {
  display: none;
}

.btn-back {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 12px;
  border-radius: 150px;
  color: white;
  z-index: 300;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}
.btn-back svg {
  transform: scale(1.4);
  color: #02d994;
}

.title {
  color: #02d994;
  font-family: "ShadowsIntoLightTwo";
  position: fixed;
  top: 12px;
  left: 0px;
  font-weight: 100;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
  z-index: 200;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ctas {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 15px;
}

.select {
  position: fixed;
  bottom: 25px;
  right: 25px;
  opacity: 0;
  transition: 0;
  transition: 0.3s ease-in;
  z-index: 200;
}
.select.active {
  opacity: 1;
}
.select .target {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 100px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: 0.05s;
}
.select .target:active {
  transform: translateY(3px);
}
.select .dropdown {
  position: absolute;
  right: 0;
  bottom: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: 0;
  opacity: 0;
  transition: 0.1s ease-in;
}
.select .dropdown.active {
  bottom: calc(100% + 15px);
  opacity: 1;
}
.select .dropdown .item {
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  min-width: 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in;
}
.select .dropdown .item:last-child {
  border-bottom: none;
}
.select .dropdown .item .icon {
  opacity: 0;
  transition: 0.3s ease-in;
}
.select .dropdown .item.active {
  background-color: #02d994;
}
.select .dropdown .item.active .icon {
  opacity: 1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  z-index: 100;
  z-index: 0;
}

#logs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  color: yellow;
  z-index: 100;
  font-size: 12px;
}

.inactive-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.inactive-overlay .marker-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.inactive-overlay .marker-box > .frame {
  width: 230px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.inactive-overlay .marker-box > .frame > img {
  width: 100%;
  opacity: 0.6;
  border-radius: 3px;
}
.inactive-overlay .marker-box > .frame svg {
  position: absolute;
  left: 0;
  width: 100%;
}
.inactive-overlay .marker-box > .note {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 10px;
}
.inactive-overlay .marker-box > .note p {
  font-weight: 200;
  font-size: 12px;
}
.inactive-overlay.active {
  display: flex !important;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 90;
  gap: 15px;
  display: none;
}
.loader > .loader-symbol {
  width: 50px;
  animation: rotate 3s linear infinite;
  display: none;
}
.loader > .loader-text {
  color: white;
  font-size: 13px;
  font-weight: 200;
  text-align: center;
  display: none;
}
.loader > .loader-error-text {
  color: white;
  font-size: 13px;
  font-weight: 200;
  line-height: 30px;
  text-align: center;
  display: none;
}
.loader.active {
  display: flex;
}
.loader.active > .loader-symbol {
  display: inline;
}
.loader.active > .loader-text {
  display: inline;
}
.loader.errored {
  display: flex;
}
.loader.errored > .loader-symbol {
  display: block;
  animation: none;
}
.loader.errored > .loader-text {
  display: none;
}
.loader.errored > .loader-error-text {
  display: block;
}

/*# sourceMappingURL=main.css.map */
