html, body {
  margin: 0;
  height: 100%;
  /* font-family: 'Paperlogy', "Pretendard Variable", Pretendard, sans-serif !important; */
  letter-spacing: var(--letterSpace); 
}


body {
/*   font:16px/1.6em 'NanumSquareRound', sans-serif; */
/*   color: #212b36; */
	font-style: normal;
	background: #fff;
}

.myapp-ar-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom, #ffffff, #ffffff, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}
#lottie-portal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 터치 막기 */
}
.loader-text {
  position: relative;
  z-index: 10;
  color: black;
  /*  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  user-select: none;
  letter-spacing: 0.05em;
  padding: 0px 30px;
  word-break: break-all;
  /* 가운데 정렬용 */
}
@media (max-width: 480px) {
  .loader-text {
    font-size: 16px;
  }
}

#close_div {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.4);
  /*   display: table; */
  display: none;
}
#close_inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#close_inner_div {
  width: 80%;
  margin: auto;
  max-width: 425px;
}
/* #close_text { */
/*   background: #3674d9; */
/*   padding-left: 30px; */
/*   padding-top: 20px; */
/*   padding-right: 30px; */
/*   padding-bottom: 20px; */
/*   color: #ffffff; */
/*   font-size: 18px; */
/*   line-height: 2em; */
/*   text-align: center; */
/* } */
#close_text {
  background: #ffffff;
  padding-left: 30px;
  padding-top: 25px;
  padding-right: 30px;
  padding-bottom: 25px;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 2em;
  text-align: center;
  border-radius: 16px;
}
#reload_div {
  margin-top: 20px;
  display: flext;
}
/* .reload_btn { */
/*   width: 36px; */
/*   height: 36px; */
/*   background-image: url('img/arrow-clockwise_w.svg'); */
/*   background-size: 28px; */
/*   background-repeat: no-repeat; */
/*   background-position: center; */
/*   margin: auto; */
/*   border-radius: 2px; */
/* } */
.reload_btn {
  margin: auto;
  background: #1976d2;
  border-radius: 8px;
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}

.common_btn {
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.active_btn:active {
  background-color: rgba(153, 153, 153, 0.4);
}

.scrollDisable {
  height: 100%;
  min-height: 100%;
  overflow: hidden !important;
  touch-action: none;
}

.hidden {
  height: 100%;
  min-height: 100%;
  overflow: hidden !important;
  touch-action: none;
}

.root_div {
  width: 100%;
  height: 100%;
  max-width: 425px;
  margin: auto;
  position: relative;
}


#blankOverlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

.spiral {
  width: 64px;
  height: 64px;
  position: relative;
}

.spiral span {
  position: absolute;
  inset: 0;
  --base: calc(var(--i) * 120deg);
  animation: swirl 1.9s linear infinite;
  will-change: transform, opacity;
}

.spiral span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  transform: translate(-50%, -50%);
}

@keyframes swirl {
  0% {
    transform: rotate(var(--base)) translateX(0);
    opacity: 0.85;
  }
  10% {
    transform: rotate(calc(var(--base) + 120deg)) translateX(2px);
    opacity: 0.9;
  }
  20% {
    transform: rotate(calc(var(--base) + 240deg)) translateX(5px);
    opacity: 0.95;
  }
  30% {
    transform: rotate(calc(var(--base) + 360deg)) translateX(9px);
    opacity: 1;
  }
  40% {
    transform: rotate(calc(var(--base) + 480deg)) translateX(14px);
    opacity: 1;
  }
  50% {
    transform: rotate(calc(var(--base) + 600deg)) translateX(18px);
    opacity: 1;
  }

  60% {
    transform: rotate(calc(var(--base) + 720deg)) translateX(14px);
    opacity: 1;
  }
  70% {
    transform: rotate(calc(var(--base) + 840deg)) translateX(9px);
    opacity: 0.98;
  }
  80% {
    transform: rotate(calc(var(--base) + 960deg)) translateX(5px);
    opacity: 0.94;
  }
  90% {
    transform: rotate(calc(var(--base) + 1080deg)) translateX(2px);
    opacity: 0.9;
  }
  100% {
    transform: rotate(calc(var(--base) + 1200deg)) translateX(0);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spiral span {
    animation: none;
  }
}

.myapp-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateZ(0);
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.loader-text2.wave-spot {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.55) 0%, rgba(17, 24, 39, 0.55) 38%, #3674d9 50%, rgba(54, 116, 217, 0.55) 58%, rgba(17, 24, 39, 0.55) 72%, rgba(17, 24, 39, 0.55) 100%);
  background-size: 320% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    waveSweep 1.8s ease-in-out infinite,
    subtleScale 1.8s ease-in-out infinite;
  will-change: background-position, transform;
}

@keyframes waveSweep {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes subtleScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-text2.wave-spot {
    animation: none;
    color: #3674d9;
    background: none;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-bar2 {
  width: 70%;
  max-width: 320px;
  height: 6px;
  background: rgba(25, 118, 210, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
  margin-top: 10px;
  position: relative;
}

.progress-fill2 {
  width: 0%;
  height: 100%;
  background: #1976d2;
  position: relative;
  transition: width 0.3s ease-out;
}

.progress-fill2::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

#logoImg2 {
  position: absolute;
  left: 40px;
  top: 40px;
  height: 60px;
  user-select: none;
}

/* Inspire Store 3D 로고 */
.inspire-logo-3d-wrap {
  perspective: 600px;
  margin-bottom: 8px;
}

.inspire-logo-3d {
  display: block;
  height: 72px;
  max-width: 240px;
  object-fit: contain;
  animation: logoSpin3D 2.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  will-change: transform;
  user-select: none;
}

@keyframes logoSpin3D {
  0%   { transform: rotateY(0deg)   scale(1); }
  25%  { transform: rotateY(90deg)  scale(0.85); }
  50%  { transform: rotateY(180deg) scale(1); }
  75%  { transform: rotateY(270deg) scale(0.85); }
  100% { transform: rotateY(360deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .inspire-logo-3d {
    animation: none;
  }
}
