
._global_style_
{
	font-size: 12px !important;
	font-family: Pretendard-Regular !important;
	text-size-adjust: none !important;
	scroll-behavior: smooth !important;
    word-break: keep-all !important;
    white-space: normal !important;
}

/* 모든 스크롤바를 숨기는 스타일 */
::-webkit-scrollbar {
    display: none !important;
}

/* 스크롤 기능은 유지 */
/* 스크롤 기능을 유지하기 위해 auto로 설정 */
html, body {
    overflow: auto !important;
}
* {
  -webkit-user-select: none !important; /* Safari */
  -moz-user-select: none !important;    /* Firefox */
  -ms-user-select: none !important;     /* Internet Explorer/Edge */
  user-select: none !important;         /* 표준 문법 */
}

.background_Style
{
	background-size: cover !important; 
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin: auto !important;
	transition: all 500ms ease-in-out !important; 
}

@media screen and (max-width: 800px) {
    .background_Style {
		height: 80vh !important;
    }
}

@media screen and (max-width: 500px) {
    .background_Style {
		height: 50vh !important;
    }
}

.main_back_style
{
	background-size: cover !important; 
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin: auto !important;
	transition: all 500ms ease-in-out !important; 
}

.loadingView
{
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: auto !important;
	height: auto !important;
	background-color: transparent !important;
	opacity: 1 !important;
	transition: opacity 500ms 1000ms !important;
}

	.loadingView.on
	{
		opacity: 0 !important;
	}

.loadingLogo
{
	position: relative !important;
	display: block !important;
	width: 10vw !important;
	aspect-ratio: 4/3 !important;
	background: url('../Assets/MainHome/loading_logo.png') no-repeat center center !important;
	background-size: contain !important;
	margin-bottom: 1vw !important;
}

.loadingLogo.onSimulator
{
	height: calc(10vw * 3 / 4) !important;
}

.loadingProgress
{
	position: relative !important;
	display: block !important;
	width: 10vw !important;
	height: 0.1vw !important;
	background-color: rgba(255, 255, 255, 0.5) !important;
	overflow: hidden !important;
}

.loadingBar
{
	position: absolute !important;
	left: -100% !important;
	top: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	background-color: #fff !important;
	transition: left 300ms !important;
}

/* 태블릿 */
@media screen and (min-width: 768px) and (max-width: 1024px)
{
	.loadingLogo
	{
		width: 15vw !important;
	}
	
	.loadingProgress
	{
		width: 15vw !important;
		height: 0.15vw !important;
	}
}

/* 모바일 */
@media screen and (max-width: 767px)
{
	.loadingLogo
	{
		width: 20vw !important;
	}
	
	.loadingProgress
	{
		width: 20vw !important;
		height: 0.3vw !important;
	}
}

.footer
{
}

.footer-position {
    position: sticky !important;
    top: 100vh !important;
}

