@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	font-synthesis: none;
	vertical-align: baseline;
}

a,
button {
	cursor: pointer;
	color: black;
}

textarea {
	outline: 0 !important;
}

a {
	color: #40424c;
	text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {}

body {	
    line-height: 1;
    overflow-x: hidden;    
    width: 100%;
	font-family: 'Noto Sans KR' !important;
	overscroll-behavior: contain;
	overflow-x: hidden;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input:focus {
	outline: none;
}

.hide {
	display: none !important;
}

.modal {
	display: none; /* 초기에는 숨김 */
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4); /* 배경 어둡게 */
  }
  
  .modal-content {
	background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: 90vh;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	overflow: auto;
  }
  
  .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }
  
#globalLoading {
    display:none; 
    position:fixed;
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(255,255,255,0.7); 
    z-index:9999; 
    justify-content:center; 
    align-items:center;
}

#globalLoading img {
    width: 50px;
}