
html {
  box-sizing: border-box;
}    
*,
:after,
:before {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: #fff;
}

#gameContainer {
  width: 100vw;
  height: 100vh;
}
#unity-container {
   overflow: hidden;
}

canvas {
  width: 100%;
  height: 100%;
}

.logo,
canvas {
  display: block;
}

.logo {
  max-width: 0;
  max-height: 0;
}

.main{
  top:45%;
  left : 50%;
  transform: translate(-50%, -50%);
  position: absolute;

  /* width: 334px;
  height: 333px; */

  width: 17.4vw;
  height: 21.75vw;

  /* box-shadow: -15px 3px 30px 0 rgba(242, 161, 140, 0.27); */
	z-index: 1;
}

.progress {
  position : relative;
  top:67.1%;
  left:50%;
  transform: translate(-50%, -50%);
  /* width: 800px;
  height: 60px; */
  width: 46.88vw;
  height: 5.56vh;
  margin: 0.94vw 0 35px;
  padding: 1.1vh 0.57vw 1.1vh 0.57vw;
  border-radius: 30px;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.16);
  background-color: #f9f9f9;

  /* margin: 1.5em;
  border: 1px solid #fff;
  width: 50vw;
  display: block; */
}

.progress .fill{
  width: 100%;
  height: 3.33vh;
  border-radius: 18px;
  background-image: linear-gradient(to left, #fda58f, #f59189);
}

.progress .fillAmount{
   width: 980px;

  
  position : relative;
  left:50%;
  top : 3.25vh;
  transform: translate(-50%, 0%);
  /* margin: 35px 401px 80px; */
  font-family: Pretendard;
  font-size: 2.2vw;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #f9f9f9;
}

/* .progress .full {
  margin: 2px;
  background: #fff;
  height: 1em;
  -webkit-transform-origin: top left;
  transform-origin: top left;
} */

#loader {
  left: 0;
  top: 0;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(circle at 50% 50%, #fda58f, #f59189 87%);

  /* position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #fff;   
  background-image: radial-gradient(circle at 50% 50%, #fda58f, #f59189 87%); */
}

  #radial{
    position: absolute;
    left: 0;
    top: 0;  
    width: 100vw;
    height: 100vh;
     background-image: radial-gradient(circle at 48% 53%, rgba(243, 235, 224, 0.7), rgba(245, 145, 137, 0) 41%);
  }


  
.loading {
  position: absolute;
  display: inline-block;
  width: 100vw;
  top: 21.2vh;
  left : 50%;
  transform: translate(-50%, -50%);
  font-family: Pretendard;
  font-size: 3.125vw;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #f9f9f9;
  white-space: pre-wrap;
}

.loadingText {
  position: absolute;
  display: inline-block;
  width: 100vw;
  top: 9.56vh; 
  left : 50%;
  transform: translate(-50%, -50%);
  font-family: Pretendard;
  font-size: 1.25vw;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #f9f9f9;
  white-space: pre-wrap;
}


.logo2 {
  position: absolute;
  left : 50%;
  top : 90vh;
  /* width: 100vw; */
  /* height: 0px; */
  transform: translate(-50%, -50%);
  /* margin-left: auto;
  margin-right: auto;
  padding-top: 33vh; 
  padding-bottom: 4vh; */
}

.background-logo2 {
  margin-top : 0.46vh;
  width: 7.7vw;
  height : 1.7vw;
  filter: invert();
}

.poweredBy{  
  width: 7vw;
  height:1.5vw;
  margin: 4px 0 0;
  /* padding-bottom: 10px; */
  font-family: Pretendard;
  font-size: 1.25vw;;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  /* letter-spacing: 0.48px; */
  text-align: left;
  /* vertical-align: middle; */
  color: #fff;
  float:left;

}





.spinner,
.spinner:after {
  border-radius: 50%;
  width: 7em;
  height: 7em;
}

.spinner {
  margin: 10px;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border: 1.1em solid #e6e6e6;
  border-left-color: #000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: spinner-spin 1.1s linear infinite;
  animation: spinner-spin 1.1s linear infinite;
}

@-webkit-keyframes spinner-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes spinner-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.spinner-wrap {
  position: relative;
}

#loadingPercentage {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mode-voxeleditor #nativeInputDialog {
  font-family: sains-serif, Arial, Calibri;
  font-size: 16px;
  background-color: transparent !important;
  opacity: 1 !important;
}

.mode-voxeleditor #nativeInputDialogTitle {
  width: 400px;
  background-color: #303030;
  padding: 10px;
  color: #fff !important;
}

.mode-voxeleditor #nativeInputDialogInput {
  vertical-align: bottom;
  width: 400px;
  padding: 6px 10px;
  border: 8px solid #393939;
  background-color: #2e2e2e;
  resize: none;
  height: 150px;
  color: #fff;     
}

.mode-voxeleditor #nativeInputDialogCancelBtn,
#nativeInputDialogOkBtn {
  position: absolute;
  width: 200px;
  padding: 6px 16px;
  margin-top: -10px;
  border: 8px solid #393939;
  border-top: none;
  color: #fff;
  background-color: #2e2e2e;
}

.mode-voxeleditor #nativeInputDialogOkBtn {
  right: 50%;
}

.mode-voxeleditor #nativeInputDialogCancelBtn {
  left: 50%;
}

.mode-street #nativeInputDialog {
  position: fixed;
  top: initial !important;
  bottom: 1.8%;
  left: 0;
  width: 43.5vh !important;
  height: 4% !important;
  background-color: transparent !important;
  pointer-events: none;
     display : none;

}
.mode-street #nativeInputDialog>div>div:last-child {
    display: none;
  }

#nativeInputDialog.hide {
  display: none !important;
}

.mode-street #nativeInputDialog>div {
  position: static !important;
  top: initial !important;
   display: none;
}

.mode-street #nativeInputDialogTitle {
  display: none;
}

.mode-street #nativeInputDialogInput {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #fff;
  width: 100%;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 8px 10px;
  outline: none;
  display: none;

}



.mode-street.canvas-small canvas {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50% !important;
  height: 50% !important;
}

.mode-street.canvas-middle canvas {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70% !important;
  height: 70% !important;
}

.mode-street.canvas-full canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.mode-street.canvas-small #nativeInputDialog {
  left: 25%;
  bottom: 25.9%;
  width: 21.75vh !important;
  height: 2% !important;
  border-bottom-right-radius: 5px;
  padding: 4px 5px;
   display : none;
}

.mode-street.canvas-middle #nativeInputDialog {
  left: 15%;
  bottom: 16.3%;
  width: 30.45vh !important;
  height: 2.8% !important;
  border-bottom-right-radius: 7px;
  padding: 5.6px 7px;
  display : none;
}

.mode-street.canvas-full #nativeInputDialog {   
   display : none;
}