
*{
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: auto;
}

html{
	width:100%;
	min-height:100%;
	font-family: 'Noto Sans KR', sans-serif;
	overscroll-behavior-y: contain;
}
body{
	width:100%;
	min-height:100%;
	margin:0;
	padding:0;
	color:#333;
	overscroll-behavior-y: contain;
}
header{
	display:none;
}
section > article > input{
	position: relative;
}
footer{
	display:none;
}
.clear{
	clear:both;	
}
ul{
	margin:0;
	padding:0;
	list-style: none;
}
input{
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
	-webkit-appearance: none;
	margin: 0;
}
select{
	-webkit-appearance: none;
	-webkit-border-radius: 0;

}

button{
	-webkit-appearance:none;
	-webkit-border-radius: 0;
}
button[disabled]:hover{
	cursor:not-allowed;
}

button:hover{
	cursor:pointer;
}
debug-mode{
	transform: rotate( 90deg );
	border-radius: 0 0 17px 17px;
	top: calc(var(--vh, 1vh) * 50);
	width: 230px;
	height: 30px;
	font-weight:bold;
	line-height: 15px;
	right: -100px;
	padding:5px;
	position:fixed;
	font-size:14px;
	color:rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(1px);
	background-color: rgba(0, 0, 0, 0.6);
	text-align:center;
	z-index: 10002;
	background-image:linear-gradient(45deg, rgba(255, 215, 0, 0.4), rgba(255, 215, 0, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 215, 0, 0.4) 50%, rgba(255, 215, 0, 0.4) 75%, transparent 75%, transparent)
}
debug-mode > p{
	font-size:10px;
	font-weight:normal;
	margin:0;
	padding:0;
}
debug-mode:hover{
	cursor:pointer;
}
loading{
	width:65px;
	height:65px;
	border-radius: 10px;
	background-color:#000;
	color:#fff;
	position:fixed;
	margin:auto; 
	top:0; 
	right:0; 
	bottom:0; 
	left:0; 
	text-align: center;
	line-height:65px;
	opacity: 0.7;
	display:none;
	z-index:10002;
}
.loading_block{
	width:100vw;
	height:100vh;
	position:fixed;
	top:0;
	z-index:10000;
	overflow:hidden;
	touch-action:none;
	display:none;
}
.loading_block:hover{
	cursor: wait;
}
loading > i{
	-webkit-animation: xi-spin 1s infinite linear;
	animation: xi-spin 1s infinite linear;
}
toast{
	opacity: 0.7;
	position: fixed;
	z-index:10003;
	display:none;
	word-break:keep-all;
}
toast > div{
	position: fixed;
	width: fit-content;
	top:46%;
	left: 50%;
	transform: translate(-50%, -46%);
	background:#000;
	color:#fff;
	font-size:13px;
	border-radius: 3px;
	padding:10px 20px;
	text-align: center;
}
popup{
	border: 1px solid #ddd;
	display:none;
	opacity: 0;
	transition: 0.4s all;
	background-color:#fff;
	position: fixed;
	z-index:10004;
	border-radius: 5px;
	overflow: hidden;
}
popup p{
	margin:0;
	padding:0;
}
popup #popup_close_btn{
	border:0;
	outline:0;
	position: absolute;
	top:5px;
	right:5px;
	min-width: unset;
	height: unset;
	width: unset;
	background-color: unset;
	margin:unset;
}
popup #popup_disabled_btn{
	border:0;
	outline:0;
	position: absolute;
	color: #222;
	bottom: 0px;
	left: 0px;
	width:unset;
	min-width: unset;
	height: unset;
	background-color: #a1a1a1;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	padding: 2px 7px;
	border-radius: 3px;
	margin:unset;
}
popup .xi-close{
	font-size: 25px;
	color:#222;
	position:absolute;
	top: 5px;
	right:5px;
}
popup .xi-close:hover{
	cursor: pointer;
}
popup[active=true],popup[active="temp"]{
	display:block;
	opacity: 1;
}
.popup_active{
	width:100vw;
	height:100vh;
	background-color:#000;
	position:fixed;
	top:0;
	z-index:10000;
	overflow:hidden;
	touch-action:none;
	display:none;
	opacity: 0.4;
}

.modal_here{
	min-width:800px;
	padding:30px;
	max-height:70%;
	position: fixed;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	border-radius:5px;
	border:1px solid #e5e5e5;
	background-color:#fff;
	z-index:10001;
	display:none;
	overflow-x:hidden;
}
.modal_here::-webkit-scrollbar-track{
	border-radius:4px;
	background-color:#e5e5e5;
}
.modal_here::-webkit-scrollbar{
	width:5px;
	height:4px;
}
.modal_here::-webkit-scrollbar-thumb{
	border-radius:5px;
	background-color:#333;
}
.modal_active{
	width:100vw;
	height:100vh;
	background-color:#000;
	position:fixed;
	top:0;
	z-index:10000;
	overflow:hidden;
	touch-action:none;
	display:none;
	opacity: 0.4;
}
.modal_active_open{
	animation:modal_open 0.5s;
}
.modal_active_close{
	animation:modal_close 0.5s;
}
.render_show{
	display:none;
	width:100%;
	overscroll-behavior-y: contain;
}
.render_show:last-child{
	display:block;
}

.underline_none{
	border-bottom:2px solid #999;
}
.underline_black{
	border-bottom:2px solid #000;
}
.ui-autocomplete {
	max-height: 150px;
	overflow-y: auto;
	overflow-x: hidden;
}
.ui-autocomplete::-webkit-scrollbar-track{
	border-radius:4px;
	background-color:#e5e5e5;
}
.ui-autocomplete::-webkit-scrollbar{
	width:5px;
	height:4px;
}
.ui-autocomplete::-webkit-scrollbar-thumb{
	border-radius:5px;
	background-color:#333;
}
.ql-snow.ql-toolbar button, .ql-snow .ql-toolbar button{
	min-width:unset;
	margin-top:unset;
	height:unset;
	background-color: unset;
}
@media screen and (min-width:320px) and (max-width:820px){
	toast > div{
		font-size:13px;
		border-radius: 10px;
		top:80%;
		transform: translate(-50%, -80%);
	}
	button{
		border-radius: 3px;
	}

	.modal_here{
		min-width:76% !important;
		width:76% !important;
		transform: unset;
		left:unset;
		top:unset;
		margin-left:7%;
		margin-top:40px;
		max-height:460px;
		padding:5% !important;
	}
	/* popup{
		position: relative;
		top: 1px;
		left: 1px;
		transform: scale(calc(80%),calc(60%));
	} */
}
@keyframes modal_open {
	0% {
		opacity: 0;
	}

	to {
		opacity: 0.4;
	}
}
@keyframes modal_close {
	0% {
		opacity: 0.4;
	}

	to {
		opacity: 0;
	}
}