
html {height: 100%;}
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, div, input {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    /* min-width: 1800px;
    overflow-x: scroll; */
    /* height: 100%; */
	line-height: 1;
    font-family: 'Noto Sans KR', sans-serif;
    -MS-font-family: 'Noto Sans KR', sans-serif;
}
ol, ul, li {
	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;
}
a,
a:hover,
a:focus {
    text-decoration: none;
    word-break: keep-all;
    outline: none;
}
video {width: 100%; height: 100%;}
/* input 기본 스타일 초기화 */
/* input[type="checkbox"], input[type="radio"] {
	border: none;
    -webkit-appearance : none;
    -moz-appearance:none;
    -ms-appearance:none;
    display: none;
} */
input:focus,
select:focus {
    outline: none;
}
/* IE10 이상에서 input box에 추가된 지우기 버튼 제거 */
input::-ms-clear { display:none;}

/* input type number 에서 화살표 제거 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-out-spin-button {
    -webkit-appearance: none;
    -moz-appearance:none;
    -ms-appearance:none;
}

/* select box 스타일 초기화 */
select {
    -webkit-appearance: none;
    -moz-appearance:none;
    appearance:none;
}

/* IE에서 Select box 화살표 제거 */
select::-ms-expand { display:none; }

/*Firefox에서 input number 화살표 없애는 방법*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -mox-appearance: none;
    -ms-appearance: none;
    appearance: none;

}
/* input number의 외형을 텍스트필드로 바꿔줘야한다 */
input[type=number] {
    -moz-appearance:textfield; 
}
input[type="button"] {
    cursor: pointer;
    user-select: none;
}
button[type="button"] {
    cursor: pointer;
}


/* 자동완성 색상 변경 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
 transition: background-color 5000s ease-in-out 0s;
 -webkit-transition: background-color 9999s ease-out;
}

/* placeholder css */
input::placeholder {
    color: #808080;
    font-weight: 300;
    font-family: 'Noto Sans KR', sans-serif;
    -ms-font-family: 'Noto Sans KR', sans-serif;
}
input:disabled,
select:disabled,
input[type="radio"]:disabled + label
{
    background-color:  #f8f8f8;
    color: #191919;
    opacity: 1;
    border:none;
}
input[type="button"]:disabled {
    background-color: #dbdbdb;
    border:none;
}
input[type="button"]:disabled:hover{
    background-color: #dbdbdb;
}

button {
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
}

th, td {word-break: keep-all;}

em {font-style: unset;}

textarea {
    resize: none;
    outline: none;
}

a {
    text-decoration: none;
    color: #000;
}