@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);/* 구글폰트 노토산스 */

* {box-sizing: border-box;}
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;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-size:14px;
    font-family: 'Noto Sans KR', sans-serif; 
    /* 반응형일때 적어주기 */
    min-width: 320px; 
    overflow-x:hidden;
    -webkit-text-size-adjust:none /* 뷰표트 변환시 폰트크기 자동확대 방지 */
}
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;
}
table caption {
	display:none;
}
a {
    text-decoration:none;
    /* color값은 디자인가이드에 맞게사용 */
    color:#333;
    /* 모바일에서 a태그 터치영역 안보이게 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}
a:hover, a:active, a:focus {
    text-decoration:none;
    /* color값은 디자인가이드에 맞게사용 */
    color:#333;
}
label { /* input checkbox, radio */
    float:left; 
    cursor:pointer;
    font-weight:500;
}
input:focus, textarea:focus {
}
input[type='text'] {
    padding:0 10px;
}
input[type='password'] {
    padding:0 10px;
}
input[type='search'] {
    padding:0 10px;
}
input[type='tel'] {
    padding:0 10px;
}
input[type='text'],input[type='password'],input[type='submit'],input[type='search'],input[type='tel'] {
    -webkit-appearance:none; 
    border-radius:0;
}
input:checked[type='checkbox'] {
    background-color:#666; 
    -webkit-appearance:checkbox;
}
button,input[type='button'],input[type='submit'],input[type='reset'],input[type='file'] {
    -webkit-appearance:button; 
    border-radius:0;
}
input[type='search']::-webkit-search-cancel-button {
    -webkit-appearance:none;
}
input[type='radio'] {
margin-top:2px;
}
textarea {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
    padding:10px; 
    resize: none;
    font-family: 'Nanum Gothic', 'Apple SD Gothic Neo', 'Bahnscheift', 'Arial', sans-serif !important;
}
select {
	-webkit-border-radius: 0;
    -webkit-appearance: none; /* 네이티브 외형 감추기 */ 
    -moz-appearance: none; 
    appearance: none;
	background:url(../images/Icon_ionic-md-arrow-dropdown.png) no-repeat calc(100% - 10px) 50% #fff;
	cursor:pointer;
}
select::-ms-expand { display: none; } /* IE 10, 11의 네이티브 화살표 숨기기 */ 
button {
    border:0; 
    background:none;
    cursor:pointer;
    padding:0;
}
video {
    width:100%;
}

.file_mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}
.loading {
    text-align: center;
}
.loading .percent {
    z-index: 100;
    position: absolute;
    width: 300px;
    height: 20px;
    color: #fff;
    top: 50%;
    left: 50%;
    margin-top: 17px;
    margin-left: -150px;
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
}
.loading .svgspin {
    position: fixed;
    animation: spin .8s linear infinite;
    fill: #fff;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    z-index: 9999;
    margin-top: -40px;
    margin-left: -25px;
}
@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* 반응형 미디어쿼리 */
/*@media all and (max-width:1024px){}*/
/*@media all and (max-width:768px){}*/
/*@media all and (max-width:320px){}*/

/* IE10+만 적용  */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {}
