@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    font-family: 'Noto Sans KR';
    font-weight: normal;
    list-style: none;
    margin:0;
    padding:0;
    border:0;
    box-sizing:border-box;
    -ms-overflow-style:none; /* 스크롤 숨기기 */
	scrollbar-width:none;
    font-size: 1em;
}   
  
/*--------------------------------------------------------- reset ---------------------------*/
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{
	margin:0;
	padding:0;
	border:0;
}


body{
    margin:0;
    padding:0;
    width:100%;
    /*min-width:1600px;*/
    -webkit-text-size-adjust:none;
    -moz-text-size-adjust:none;
    -ms-text-size-adjust:none;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}


a{
    color:#000;
    display:block;
    text-decoration:none;
    cursor:pointer;
}


a:hover, a:active{
    text-decoration:none;
}


ol, ul, li{
	list-style:none;
    list-style-type: none;
    list-style: none;
}


span,
em,
b{
    font-style:normal;
    font-size:inherit;
    letter-spacing:inherit;
}

pre{
    line-height:1.76;
}

table{
    width:100%;
	border-spacing:0;
    border-collapse:collapse;
}


select{
    background:url(/resources/dist/img/cmn/ico_select_arr.svg) no-repeat 50% / 30px;
    background-position-x: 100%;
    padding-right: 30px !important;
}

select option{
	font-size:inherit;
}


select::-ms-expand{
    display:none; /* 네이티브 화살표 제거*/
}


select:focus::-ms-value{
	background-color:inherit;
	color:inherit;
}
:focus {
    outline: none;
}
h1, h2, h3, h4, h5, h6, b, strong{
    font-weight: 700;
}



/* 초기화 */
input:not([type=checkbox],[type=radio],[type=range]),
textarea,
button,
select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; 
}

/* 자동완성 */
input:-webkit-autofill,
input:-internal-autofill-selected{
	-webkit-box-shadow:0 0 0 30px #f4f4f4 inset;
	-webkit-text-fill-color:#000000;
}


input::-moz-focus-inner,
button::-moz-focus-inner{
    border:0;
    padding:0;
}



/* readonly & disabled */
input[readonly],
input[disabled],
input[type="checkbox"]:disabled + label::before,
input[type="radio"]:disabled + label::before{
	background-color:#F7F7F7 !important;
	cursor:default;
    color:#232323 !important;
}

input[type="checkbox"]:disabled + label,
input[type="radio"]:disabled + label{color:#ccc !important;}

input[type="checkbox"]:disabled + label::before,
input[type="radio"]:disabled + label::before{border-color:#a2a2a2 !important;}


::placeholder{
	color:#bababa;
    font-size:inherit;
    font-weight:400;
}


button{
	background:none;
    border:0;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    cursor:pointer;
    vertical-align:middle;
    color: #000;
}


address{
    font-style:normal;
}


/* 스크롤 디자인 */
::-webkit-scrollbar{
	width:7px;
	height:7px;
	background-color:#E9F7F6;
    border-radius: 5px;
}


::-webkit-scrollbar-thumb{
	background:#e4e4e4;
    border-radius: 5px;

}
