:root {
  --vh: 1vh;
}

:not(:defined) > * {
  display: none;
}

html,
body {
  background-color: #000;
  font-family: "din-2014", -apple-system, "Microsoft Jhenghei", sans-serif;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  -ms-touch-action: none;
      touch-action: none;
  overflow: hidden;
}

header {
  height: 60px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 48px;
}

footer {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  right: 48px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.35);
}

@media only screen and (max-width: 767px) {
  footer {
    display: none;
  }
}

::-moz-selection {
  color: #28b2a8;
  background: white;
}

::selection {
  color: #28b2a8;
  background: white;
}

#mouse-circle {
  position: absolute;
  width: 48px;
  height: 48px;
  margin: -24px 0px 0px -24px;
  border: 1px dashed #28b2a8;
  border-radius: 50%;
  pointer-events: none !important;
  -webkit-box-shadow: 0 0 16px rgba(255, 255, 255, 0);
          box-shadow: 0 0 16px rgba(255, 255, 255, 0);
  z-index: 3;
  -webkit-animation: rotate 8s infinite;
          animation: rotate 8s infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

#mouse-circle::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #28b2a8;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
}

@media only screen and (max-width: 767px) {
  #mouse-circle {
    display: none;
  }
}

.container {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.container canvas#space,
.container canvas#dust {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
}

@media only screen and (max-width: 767px) {
  .container {
    overflow: hidden;
  }
}

.container .outline {
  width: 100%;
  height: 100%;
  background-size: 90% 90%;
  background-position: center;
  background-image: url("../images/outline.svg");
  position: absolute;
  background-repeat: no-repeat;
  opacity: 0.25;
  top: 0;
  left: 0;
  -webkit-transform: rotateX(10deg) rotateY(-18deg) rotateZ(3deg);
          transform: rotateX(10deg) rotateY(-18deg) rotateZ(3deg);
  -webkit-box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 1;
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
}

@media only screen and (max-width: 767px) {
  .container .outline {
    display: none;
  }
}

.container model-viewer {
  width: 80%;
  height: 80%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  z-index: 2;
  top: 10%;
  left: 15%;
  outline: none;
}

.container model-viewer:hover ~ .outline {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

@media only screen and (max-width: 767px) {
  .container model-viewer {
    top: 48px;
    left: 10%;
    height: 36vh;
  }
}

.container model-viewer .ar-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  color: #ffffff;
  border-radius: 4px;
  border: 1px solid #ffffff;
  text-align: center;
  padding: 8px 12px;
  width: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 600;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container model-viewer .ar-icon {
  width: 24px;
  height: 25px;
  display: inline-block;
  margin-right: 8px;
  background-image: url("../images/ar-icon.svg");
}

.container model-viewer.sar button:not(.m1b),
.container model-viewer.mini button:not(.m2b),
.container model-viewer.micro button:not(.m3b) {
  display: none;
}

.container .guideline {
  width: 100%;
  height: 100%;
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.4;
  background: linear-gradient(90deg, #011321 21px, transparent 1%) center, linear-gradient(#011321 21px, transparent 1%) center, #ffffff;
  background-size: 22px 22px;
}

.container .slider {
  width: 100%;
  position: absolute;
  z-index: 2;
  bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .container .slider {
    bottom: 24px;
  }
}

.container .slider .slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.container .slider .slides:hover .slide:not(:hover) {
  opacity: 0.35;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}

@media only screen and (max-width: 767px) {
  .container .slider .slides {
    padding: 0 48px;
  }
}

.container .slider .slides .slide {
  font-family: "din-2014";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.35;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 36px;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}

@media only screen and (max-width: 767px) {
  .container .slider .slides .slide {
    white-space: nowrap;
    font-size: 20px;
    letter-spacing: unset;
  }
}

.container .slider .slides .slide:nth-of-type(2) {
  margin: 0 36px;
}

.container .slider .slides .slide.selected {
  opacity: 1;
  border-bottom: 2px solid #28b2a8;
}

.container .slider .slides .slide:hover {
  opacity: 1;
  border-bottom: 2px solid #28b2a8;
}

.container .product-info {
  position: absolute;
  z-index: 3;
  top: 38%;
  left: 10%;
  will-change: auto;
}

@media only screen and (max-width: 767px) {
  .container .product-info {
    top: unset;
    bottom: 72px;
    width: calc(100% - 48px);
    left: 24px;
  }
}

.container .product-info .product .title {
  font-family: "din-2014";
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 12px;
  -webkit-animation: glitch 4s linear infinite;
          animation: glitch 4s linear infinite;
}

@media only screen and (max-width: 767px) {
  .container .product-info .product .title {
    font-size: 28px;
  }
}

.container .product-info .product .title:before, .container .product-info .product .title:after {
  content: attr(title);
  position: absolute;
  left: 0;
}

.container .product-info .product .title:before {
  -webkit-animation: glitchTop 4s linear infinite;
          animation: glitchTop 4s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.container .product-info .product .title:after {
  -webkit-animation: glitchBotom 4.5s linear infinite;
          animation: glitchBotom 4.5s linear infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@-webkit-keyframes glitch {
  75.5%,
  91% {
    -webkit-transform: translate(2px, 0) skew(0deg);
            transform: translate(2px, 0) skew(0deg);
  }
  77%,
  90% {
    -webkit-transform: translate(-2px, 0) skew(0deg);
            transform: translate(-2px, 0) skew(0deg);
  }
  90.5% {
    -webkit-transform: translate(0, 0) skew(5deg);
            transform: translate(0, 0) skew(5deg);
  }
}

@keyframes glitch {
  75.5%,
  91% {
    -webkit-transform: translate(2px, 0) skew(0deg);
            transform: translate(2px, 0) skew(0deg);
  }
  77%,
  90% {
    -webkit-transform: translate(-2px, 0) skew(0deg);
            transform: translate(-2px, 0) skew(0deg);
  }
  90.5% {
    -webkit-transform: translate(0, 0) skew(5deg);
            transform: translate(0, 0) skew(5deg);
  }
}

@-webkit-keyframes glitchTop {
  75.5%,
  91% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  77%,
  90% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  90.5% {
    -webkit-transform: translate(13px, -1px) skew(-13deg);
            transform: translate(13px, -1px) skew(-13deg);
  }
}

@keyframes glitchTop {
  75.5%,
  91% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  77%,
  90% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  90.5% {
    -webkit-transform: translate(13px, -1px) skew(-13deg);
            transform: translate(13px, -1px) skew(-13deg);
  }
}

@-webkit-keyframes glitchBotom {
  75.5%,
  91% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
  }
  77%,
  90% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
  }
  90.5% {
    -webkit-transform: translate(-22px, 5px) skew(21deg);
            transform: translate(-22px, 5px) skew(21deg);
  }
}

@keyframes glitchBotom {
  75.5%,
  91% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
  }
  77%,
  90% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
  }
  90.5% {
    -webkit-transform: translate(-22px, 5px) skew(21deg);
            transform: translate(-22px, 5px) skew(21deg);
  }
}

.container .product-info .product .text {
  font-family: "din-2014";
  font-size: 16px;
  line-height: 20px;
  width: 360px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation: reveal 0.6s ease-out;
          animation: reveal 0.6s ease-out;
}

@media only screen and (max-width: 767px) {
  .container .product-info .product .text {
    width: 100%;
  }
}

@-webkit-keyframes reveal {
  0% {
    opacity: 0.4;
    -webkit-transform: translateY(36px);
            transform: translateY(36px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes reveal {
  0% {
    opacity: 0.4;
    -webkit-transform: translateY(36px);
            transform: translateY(36px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.Hotspot {
  background: #fff;
  border-radius: 32px;
  border: 0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  height: 24px;
  padding: 8px;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 24px;
}

.Hotspot:not([data-visible]) {
  background: transparent;
  border: 4px solid #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 32px;
  pointer-events: none;
  width: 32px;
}

.Hotspot:not([data-visible]) > * {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(calc(-50% + 4px));
          transform: translateY(calc(-50% + 4px));
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.Hotspot:focus {
  border: 4px solid #28b2a8;
  height: 32px;
  outline: none;
  width: 32px;
}

.Hotspot > * {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.HotspotAnnotation {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
  display: block;
  font-family: "din-2014", -apple-system, "Microsoft Jhenghei", sans-serif;
  font-size: 18px;
  font-weight: 700;
  left: calc(100% + 1em);
  max-width: 128px;
  overflow-wrap: break-word;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media not all and (min-resolution: 0.001dpcm) {
  .outline {
    display: none;
  }
}
/*# sourceMappingURL=space.css.map */