/****************************************************
	파일명	: reset.css
	최초작성자	: 이민혁
	최초작성일	: 2024-11-23
	-------------------------------------------------
	Dec. 기본 스타일 초기화 관련 스타일
	-------------------------------------------------
	속성순서: 레이아웃 > 크기/간격 > 박스모양 > 폰트/정렬 > 기타
*****************************************************/

/* WEB FONT */
/* reset font */
@font-face {
font-family: KoPubDotum;
font-weight: 300;
	src: url("../../font/biz2/KoPubWorld-Dotum-Light.woff2") format("woff2"),
		url("../../font/biz2/KoPubWorld-Dotum-Light.woff") format("woff"),
		url("../../font/biz2/KoPubWorld Dotum Light.ttf") format("truetype");
}
@font-face {
font-family: KoPubDotum;
font-weight: 500;
	src: url("../../font/biz2/KoPubWorld-Dotum-Medium.woff2") format("woff2"),
		url("../../font/biz2/KoPubWorld-Dotum-Medium.woff") format("woff"),
		url("../../font/biz2/KoPubWorld Dotum Medium.woff") format("truetype");
}
@font-face {
font-family: KoPubDotum;
font-weight: 700;
	src: url("../../font/biz2/KoPubWorld-Dotum-Bold.woff2") format("woff2"),
		url("../../font/biz2/KoPubWorld-Dotum-Bold.woff") format("woff"),
		url("../../font/biz2/KoPubWorld Dotum Bold.ttf") format("truetype");
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {overflow-x: hidden; font-weight: 500;}
i {display: inline-block;}

* {-webkit-text-size-adjust: none; box-sizing: border-box;}
*::before, *::after {box-sizing: border-box;}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button , select , input , textarea {
	font-style: inherit;
	padding: 0;
	margin: 0;
	border: 0;
	/* outline: 0; */
	font-size: inherit;
	font-family: inherit;
	letter-spacing: -0.02em;
}
html {
	font-family: "KoPubDotum", sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
	overflow: hidden;
	overflow-y: scroll;
	height: 100%;
	scroll-behavior: smooth;
}
ul,ol,li {list-style: none;}
fieldset,img {border: 0;}

br {letter-spacing: normal;}

address,caption,em,var {
	padding: 0;
	margin: 0;
	font-style: normal;
	font-weight: normal;
}

/* a style */
a {text-decoration: none; color: inherit;}
a[href^=tel] { font-style: normal;}

/* input kwon 20251125 고도화 변경 */
input[type=number], input[type=file], input[type=date], 
input[type=tel], input[type="text"], input[type="password"], 
input[type="search"], input[type="email"], input[type="number"]
textarea, option {
	height: 56px;
	background: #fff;
	/*border: 1px solid #dce0e4;*/ /* 1. 테두리를 연하고 얇게 변경 */
	border-radius: 8px;        /* 2. 핵심! 모서리를 부드럽게 깎기 */
	outline: none;          /* 클릭 시 생기는 기본 파란 테두리 제거 */
	transition: all 0.2s;   /* 부드러운 전환 효과 */
	color: #333;            /* 글자색 */
	padding: 10px 12px;
	font-size: inherit;
	text-overflow: ellipsis;
}
/* select kwon 20251125 고도화 변경 */
select, .ui-select { 
	height: 56px;
	min-width: 110px;
	-webkit-appearance: none;
	-moz-appearance: none; 
	appearance: none;
	font-size: small;
	padding: 10px 12px;     /* 내부 여백을 줘서 답답하지 않게 */
	/*border: 1px solid #dce0e4;*/ /* 1. 테두리를 연하고 얇게 변경 */
	border-radius: 8px;        /* 2. 핵심! 모서리를 부드럽게 깎기 */
	color: #333;            /* 글자색 */
	outline: none;          /* 클릭 시 생기는 기본 파란 테두리 제거 */
	transition: all 0.2s;   /* 부드러운 전환 효과 */
	background: #fff url('../../images/biz2/ico/ico_arrow_down.svg') no-repeat right 16px center;
	font-size: inherit;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
select::-webkit-outer-spin-button,
select::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
textarea { width: 100%; padding: 16px; resize: none; }
input[type=text].full, input[type=number].full {
	width: 100%;
}
input[type="date"]:not(:focus):invalid::before{content: attr(placehorder);}
input::-webkit-calendar-picker-indicator {cursor: pointer;}
/* input type="date" init */
input[type="date"]:not(:focus):invalid::-webkit-datetime-edit-text, 
input[type="date"]:not(:focus):invalid::-webkit-datetime-edit-month-field, 
input[type="date"]:not(:focus):invalid::-webkit-datetime-edit-day-field, 
input[type="date"]:not(:focus):invalid::-webkit-datetime-edit-year-field 
{ -webkit-appearance: none; display: none;}
input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-calendar-picker-indicator {
	position: relative;
	left: 0px;
	width: 24px;
	height:24px;
	opacity: 0;
	-webkit-appearance: none;
}
img {border: 0; vertical-align: top; max-width: 100%;} 
legend,
caption {
	position: absolute;
	left: -1000%;
	top: 0;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
table {
	width: 100%;
	border: 0;
	border-spacing: 0;
	border-collapse: collapse;
	table-layout: fixed;
}
/* button reset */
button {
	background: transparent;
	border: 0;
	outline: 0;
	cursor: pointer;
	font-family: "KoPubDotum", sans-serif;
	line-height: 150%;
	font-weight: 700;
}
button:focus {
	outline: #000;
}
button:focus-visible {
	outline: 2px solid #000;
}
.blind, legend {
	display: block;
	overflow: hidden;
	position: absolute;
	top: -1000em;
	left: 0;
}