@layer font, reset, defaults, common, layout, response, overrides;

/*  CSS reset editor ssu */
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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* 추가 *//* Firefox, WebKit, Opera 및 IE8+ 에서 지원됨 */
}

html, body {
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth; /* 추가 */
	-webkit-tap-highlight-color: transparent; /* 추가 */
}

*,
*::before,
*::after { box-sizing: border-box; }

b { font-weight: bold; }

em { font-weight: bold; font-style: normal; }

strong { font-weight: bolder; }


i { display: inline-block; font-style: normal; }
ol, ul { list-style: none; }

ul li { position: relative; }

ul li::before { display: inline-block; position: absolute; left: 0; }

blockquote, q {	quotes: none; }

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

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup { top: -0.5em; }

sub { bottom: -0.25em; }

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}

pre { /* 추가 */
	font-family: inherit;
	white-space: pre-wrap;
}

a {
	display: inline-block;
	cursor: pointer;
}

a, a:hover, a:visited {  /* 추가 */
	font-family: inherit; /* 추가 */
	text-decoration: none;
	/* vertical-align: baseline; */
	color: initial;
	/* background-color: transparent; */
}

img { /* 추가 */
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	-webkit-user-drag: none;
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

ins { text-decoration: none; }

del { text-decoration: line-through; }

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


/***** form *****/
label {
	display: inline-block;
	user-select: none;
	/*cursor: pointer;*/
}

button, input, optgroup, select, textarea {
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: 1rem;
	color: inherit;
	outline: 0;
	outline-offset: 0;
}

textarea { resize:none; }

select { text-transform: none; user-select: none; }

input { /* 추가 */
	padding: 0;
	/*vertical-align: top;*/
	border: none;
	appearance: none;
	-webkit-appearance:none;
	overflow: visible;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* Firefox, WebKit, Opera 및 IE8+ 에서 지원됨 */
}

input[type="number"] { -moz-appearance: textfield; }  /* for Firefox */

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	border: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	word-break: initial; word-wrap: initial;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
	text-transform: none;
	-webkit-appearance: button;
	user-select: none;
	cursor: pointer;
}

input[type="search"] { background-color: transparent; }
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	height: 1rem; width: 1rem;
	background: url('https://pro.fontawesome.com/releases/v5.10.0/svgs/light/times.svg') no-repeat 0 0;
	background-size: 10px;
	opacity: 0;
	pointer-events: none; }

input[type="search"]:focus::-webkit-search-cancel-button {
	opacity: 1;
	pointer-events: all;
}

input::-ms-reveal { display: none; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration { }

button {
	text-transform: none;
	-webkit-appearance: button;
	border: none;
	background-color: transparent;
	user-select: none;
	cursor: pointer;
}

button::-moz-focus-inner, /* for Firefox */
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style:  none;
	padding: 0;
	cursor: pointer;
}

:focus { outline: 0; }

