body {
    padding: 0;
    margin: 0;
	box-sizing: border-box;
	 background: #444;
}
*, *:before, *:after {
	box-sizing: inherit;
}
canvas + * {
	z-index: 2;
}
#unity-container {
	width: 100vw;
	height: 100vh;
	position: absolute;
}

#unity-canvas {
	display: block;
    width: 100vw;
	height: 100vh;
}

.notiRotateMobile{
    display: none;
    position: absolute;
    width: 100vw;
	height: 100vh;
    z-index: 1000;
    background: white;
}

.btnRotateMobile{
    border:0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.imageRotateMobile{
    width: 160px;
}
.game-container{
	position: relative;
	width: 100vw;
	height: 100vh;
}

#unity-loading-bar {
	position: absolute;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color:black;
  }
.logo {
	display: block;
	max-width: 100vw;
	max-height: 70vh;
	margin: 0 auto;
  }

  .progress {
	  margin: 1.5em 0;
	  position: relative;
  }

	.flexCenter{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.progress .posfull,.progress .posbox{ 
		position: absolute;
	}
	.progress .posfull{
		z-index: 3;
	}
	.posfull .full{
		transform-origin: top left;
	}
	.progress .posfull1{
		z-index: 2;
	}
	
	.progress .posbox{
		z-index: 1;
	}
	.pos_spinner{
		display: flex;
		justify-content: center;
	}
  @media only screen and (orientation:portrait){
    .notiRotateMobile{
        display: block;
    }

    .hideNotiRotateMobile{
        display: none;
    }
}

@media only screen and (orientation:landscape) {
    .notiRotateMobile{
        display: none;
    }
}


