@charset "utf-8";

/* head2021: font_${locale}.css 에 각 언어 css 추가 */


html { /* 폰트 정확하게 보이게 만들기 */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(-0.0000000001deg);
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
}

/* CSS 초기화 */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video{
margin:0;
padding:0;
border:0;
outline:0;
font-size:14px;
letter-spacing:-0.2px;
vertical-align:baseline;
background:transparent;
}

body{
font-weight: normal;
font-style: normal;
line-height:1;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
display:block;
}

nav ul, li{
list-style:none;
}

a{
margin:0;
padding:0;
font-size:14px;
vertical-align:baseline;
background:transparent;
text-decoration:none;
}

img{
 object-fit: cover;
vertical-align:top;
}

hr{
display:block;
height:2px;
border:0;
margin:0;
padding:0;
}

input, select, textarea,
input[type="submit"],
input[type="reset"], input[type="file"]::-webkit-file-upload-button
{
display: inline-block;
box-sizing: border-box; 
width:calc(100% - 2px);
margin:0 auto;
padding: 10px 20px;
border:0;
vertical-align:top;
font-size:16px;
font-weight: normal;
text-align: center;
color:#fff;
background-color:#323338;
align-items: flex-start;
cursor: default;
/* appearance:none; */ /* w3c validator에 없음*/
-webkit-appearance: none; /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
}

/*ie 51라인 크로스브라우징*/
input[type="button"], input[type="button"], button{
display: inline-block;
box-sizing: border-box;
width:auto;
margin:0;
padding: 9.5px 20px;
align-items: flex-start;
border:0;
vertical-align:top;
font-size:16px;
font-weight: normal;
text-align: center;
color: #fff;
background-color:#323338;
cursor: default;
-webkit-appearance: none; /* 네이티브 외형 감추기 */
-moz-appearance: none;
appearance: none;
}
option{width:180px;height:43px;padding:1em;border-color:transparent;border:none;background:#323338;
-webkit-appearance: none; /* 네이티브 외형 감추기 */
-moz-appearance: none;
appearance: none;
}
select::-ms-expand {display: none;}  
select{
width:180px;
height:43px;
padding:1em;
border:none;
-webkit-appearance: none; /* 네이티브 외형 감추기 */
-moz-appearance: none;
appearance: none;
background: #323338 url('/static/images/select-arrow.png') no-repeat right 50%; /* 화살표 아이콘 추가 */       
}
select:focus{
width:180px;
height:43px;
border:none;
-webkit-appearance: none; /* 네이티브 외형 감추기 */
-moz-appearance: none;
appearance: none;
background: #323338 url('/static/images/select-arrow-on.png') no-repeat right 50%; /* 화살표 아이콘 추가 */       
}
/* check, hover 스타일 설정 IE, Chrome */
select option:checked, 
select option:hover {    
    background: #323338;
    color: #fff;
}
/* check, hover 스타일 설정 FireFox */
select option:checked,
select option:hover { 
    box-shadow: 0 0 10px 100px #ff00ff inset;  
    color: #fff;
}

/*placeholder*/
::placeholder{color:#a8abae !important;text-align:left;}
::-webkit-input-placeholder{color:#a8abae !important;text-align:left;}
::-moz-placeholder{color:#a8abae !important;text-align:left;} /* Firefox 19+ */
:-moz-placeholder{color:#a8abae !important;text-align:left;} /* Firefox 18- */
:-ms-input-placeholder{color:#a8abae !important;text-align:left;}/* IE 10+ */
::-ms-input-placeholder{color:#a8abae !important;text-align:left;}

::-webkit-input-placeholder{color:#a8abae;text-align:left;}
::-moz-placeholder{color:#a8abae;text-align:left;} /* Firefox 19+ */
:-moz-placeholder{color:#a8abae;text-align:left;}/* Firefox 18- */
:-ms-input-placeholder{color:#a8abae;text-align:left;}
