/* --------------------

1번째로 호출

이 파일은 각 프로젝트마다 변경없이 고정적으로 쓸 공통 css 입니다.
변경없이 공통적으로 쓸 값들은 이곳에 작성해주세요.

기본값으로 설정된것은

font-family: 'Noto Sans KR', sans-serif;
color: #1c1c1c;
line-height: 100%;
font-weight: normal;
font-size: 16px;
line-height: 100%;
letter-spacing: -0.5px;

입니다.

공통적인 변경사항 및 오류수정이 있을때는
현재 파일인 reset.css에 작성해주세요.

최종 수정일자 : 21.09.01, 11:57
-------------------- */

body, html{
    box-sizing: border-box;
}
body{
    font-weight: normal;
    text-decoration: none;
    font-style: normal;
    font-size: 16px;
    color: #1c1c1c;
}
*{
    margin: 0;
    padding: 0;
    border: 0;
    word-break: keep-all;
    vertical-align: baseline;
    /* font-family: 'Noto Sans KR', sans-serif; */
    line-height: 100%;
    outline: none;
    letter-spacing: -0.5px;
}
span{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
h1, h2, h3, h4, h5, h6{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
ol, ul, dl {
    list-style: none;
    outline: none;
}
li{
    list-style: none;
}
table{
    border-spacing: 0;
    border-collapse: collapse;
    outline: none;
}
input, select, textarea, button{
    box-sizing: border-box;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    -o-border-radius:0;
    border-radius:0;
}
input[type=button],
input[type=submit]{
    border: none;
    background: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    outline: none;
    cursor: pointer;
}
::placeholder{
    font-weight: inherit;
    font-size: inherit;
    color: #DDD;
}
button, a{
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    padding-left:15px;
    background: url(/html/assets/img/common/select_arrow.png) no-repeat 95% 50%;
}
select::-ms-expand {display:none}
blockquote, q {
    quotes: none;
    outline: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
    outline: none;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
    outline: none;
}
a{
    text-decoration: none;
    outline: none;
}
input{
    font-size: inherit;
}
input:focus{
    outline: none;
}
textarea{
    resize: none;
    outline: none;
}
input[type=submit], input[type=button],
button[type=submit], button[type=button]{
    -webkit-appearance: none;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    -o-border-radius:0;
    border-radius:0;
}
textarea, button, input, a, select, option, label{font-family: inherit;}