@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

/* 기본 초기화 */
/* html, body, * { box-sizing: border-box; }  */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul, li {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
}

img, svg {
    display: block;
    max-width: 100%;
}

button {
    border: 0;
    cursor: pointer;
    background: 0;
}

select, input, label {
    border: 0;
    border-radius: 0;
    outline: 0;
    background: 0;
    min-width: 10px;
}

select {
    cursor: pointer;
}

textarea {
    padding: 15px;
    outline: none;
    resize: none;
    border: 0;
    line-height: 1.6;
}

body.noScroll{
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    overscroll-behavior: none;
}

/*ios대응*/
input{
    min-width: 1px;
    -webkit-border-radius: 0;
}
select{
    min-width: 1px;
    -webkit-appearance: none;
    -moz-appearance: none; 
    appearance: none;
}
select::-ms-expand{ 
    /* display:none; */
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    /* 자동완성 배경색 */
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    box-shadow: 0 0 0 1000px #fff inset;
    /* 자동완성 글자색 */
    -webkit-text-fill-color: #000;
}


html, body {
    font-size: 16px;
    font-family: "Pretendard", sans-serif;
    color: #000;
    vertical-align: baseline;
}
