@charset "utf-8";

/* reset.css */
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #333;
}

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,
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, section, summary,
time, mark, audio, video, select {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: "Montserrat", "NanumSquare", sans-serif;
	font-weight: 100;
	vertical-align: baseline;
	line-height: 1em;
}

/* HTML5 display-role reset for older browsers */
a, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul { list-style: none; }
table {
	border-collapse: collapse;
	border-spacing: 0;
}

select::-ms-expand { display: none; }
a, button, input,  textarea, select {
	outline: none;
	color: inherit;
	font: inherit;
	text-decoration: none;
	letter-spacing: inherit;

	padding: 0;
	margin: 0;

	border: none;
	vertical-align: baseline;
	background-color: transparent;

	-webkit-border-radius: 0;
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
}
button, select {
	overflow: visible;
	text-transform: none;
}
button, input[type="button"],
input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled], input[disabled] { cursor: default; }

/** * Chrome의 증가/감소 버튼의 커서 모양을 수정. * `input` 요소의 특정 `font-size` 값에 대해 감소 버튼의 커서 모양이 `default`에서 `text`로 변한다. */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { height: auto; }

/** * OS X의 Safari, Chrome에서 내부(inner) `padding`과 검색 취소 버튼을 제거. */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

/* float정렬 */
.fl { float: left !important; }
.fr { float: right !important; }
.cl { clear: both !important; }
.clearfix::after { content: ''; display: block; float: none; clear: both; }

/* display 속성 */
.inline { display: inline !important; }
.inline-block { display: inline-block !important; }
.block { display: block !important; }
.table { display: table !important; }
.table-fixed { table-layout: fixed !important; }
.table-cell { display: table-cell !important; }

/* inline-block margin제거 */
.ft-reset { font-size: 0 !important; }

/* 안보이게/보이게 */
.hide { display: none !important; }
.invisible { visibility: hidden !important; }
.visible { visibility: visible !important; }
.opa0 { opacity: 0 !important; }
.opa1 { opacity: 1 !important; }

/*스크린리더 IR(Image Replacement)*/
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

/* 아이콘 태그 */
i {
	display: inline-block;
	width: 100%;
	height: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

/* vertical align */
.vat { vertical-align: top !important; }
.vam { vertical-align: middle !important; }
.vab { vertical-align: bottom !important; }

/* 텍스트 관련 */
.tal { text-align: left !important; }
.tac { text-align: center !important; }
.tar { text-align: right !important; }
.lsp { letter-spacing: -1px !important; }

.txt-bold { font-weight: 700 !important; }
.txt-red { color: #cc0000 !important; }
.txt-underline{ text-decoration: underline !important; }
.txt-fff { color: #fff !important; }
.txt-000 { color: #000 !important; }
.txt-333 { color: #333 !important; }
.txt-666 { color: #666 !important; }
.txt-999 { color: #999 !important; }

/* border 관련 */
.bt-none { border-top: none !important; }
.bl-none { border-left: none !important; }
.br-none { border-right: none !important; }
.bb-none { border-bottom: none !important; }
.bd-none { border: none !important; }

/*한줄일 때 말줄임표*/
.txt-over {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 두 줄 이상일 경우 */
.txt-multi {
	overflow: hidden;
	text-overflow: ellipsis;
	display:-webkit-box;
	-webkit-line-clamp: 2; /* 라인수 */
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	line-height:  1.6em;
	height: 3.2em;
}

/* 위치 관련 */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.static { position: static !important; }
.m-left { margin-left: auto !important; }
.m-auto { margin: auto !important; }

/*배경 하얀색*/
.bg-white {background: #FFF !important;}

/* 스크롤 관련 */
.over-hidden {
	overflow-x: hidden !important;
	overflow-y: auto;
}
.scroll { overflow: auto !important; }

/*-------------------------------------
//   DIM
-------------------------------------*/
.dim-bg {
	position: relative;
	top: 0; left: 0;
	width: 100%;
	min-height: 100%;
	z-index: 100;
	background-color: rgba(0,0,0,0.8);
}
.dim-contents {
	position: fixed;
	z-index: 100;
}

/*-------------------------------------
//    WIDTH
--------------------------------------*/
.w5 { width: 5% !important; }
.w10 { width: 10% !important; }
.w15 { width: 15% !important; }
.w20 { width: 20% !important; }
.w25 { width: 25% !important; }
.w30 { width: 30% !important; }
.w35 { width: 35% !important; }
.w40 { width: 40% !important; }
.w45 { width: 45% !important; }
.w50 { width: 50% !important; }
.w55 { width: 55% !important; }
.w60 { width: 60% !important; }
.w65 { width: 65% !important; }
.w70 { width: 70% !important; }
.w75 { width: 75% !important; }
.w80 { width: 80% !important; }
.w85 { width: 85% !important; }
.w90 { width: 90% !important; }
.w95 { width: 95% !important; }
.w100 { width: 100% !important; }

/*-------------------------------------------
//   GAP(MARGIN)
-------------------------------------------*/

.mg0  {margin: 0px !important;}
.mg5  {margin: 5px !important;}
.mg10 {margin: 10px !important;}
.mg20 {margin: 20px !important;}
.mg30 {margin: 30px !important;}
.mg40 {margin: 40px !important;}
.mg50 {margin: 50px !important;}

.mt0  {margin-top: 0px !important;}
.mt5  {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt45 {margin-top: 45px !important;}
.mt50 {margin-top: 50px !important;}
.mt100 {margin-top: 100px !important;}

.ml0  {margin-left: 0px !important;}
.ml5  {margin-left: 5px !important;}
.ml10 {margin-left: 10px !important;}
.ml15 {margin-left: 15px !important;}
.ml20 {margin-left: 20px !important;}
.ml25 {margin-left: 25px !important;}
.ml30 {margin-left: 30px !important;}
.ml35 {margin-left: 35px !important;}
.ml40 {margin-left: 40px !important;}
.ml45 {margin-left: 45px !important;}
.ml50 {margin-left: 50px !important;}
.ml100 {margin-left: 100px !important;}

.mb0  {margin-bottom: 0px !important;}
.mb5  {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb45 {margin-bottom: 45px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb100 {margin-bottom: 100px !important;}

.mr0  {margin-right: 0px !important;}
.mr5  {margin-right: 5px !important;}
.mr10 {margin-right: 10px !important;}
.mr15 {margin-right: 15px !important;}
.mr20 {margin-right: 20px !important;}
.mr25 {margin-right: 25px !important;}
.mr30 {margin-right: 30px !important;}
.mr35 {margin-right: 35px !important;}
.mr40 {margin-right: 40px !important;}
.mr45 {margin-right: 45px !important;}
.mr50 {margin-right: 50px !important;}
.mr100 {margin-right: 100px !important;}


/*-------------------------------------------
//   GAP(Padding)
-------------------------------------------*/
.pd0  {padding: 0px !important;}
.pd5  {padding: 5px !important;}
.pd10 {padding: 10px !important;}
.pd20 {padding: 20px !important;}
.pd30 {padding: 30px !important;}
.pd40 {padding: 40px !important;}
.pd50 {padding: 50px !important;}

.pt0  {padding-top: 0px !important;}
.pt5  {padding-top: 5px !important;}
.pt10 {padding-top: 10px !important;}
.pt15 {padding-top: 15px !important;}
.pt20 {padding-top: 20px !important;}
.pt25 {padding-top: 25px !important;}
.pt30 {padding-top: 30px !important;}
.pt35 {padding-top: 35px !important;}
.pt40 {padding-top: 40px !important;}
.pt45 {padding-top: 45px !important;}
.pt50 {padding-top: 50px !important;}
.pt100 {padding-top: 100px !important;}

.pl0  {padding-left: 0px !important;}
.pl5  {padding-left: 5px !important;}
.pl10 {padding-left: 10px !important;}
.pl15 {padding-left: 15px !important;}
.pl20 {padding-left: 20px !important;}
.pl25 {padding-left: 25px !important;}
.pl30 {padding-left: 30px !important;}
.pl35 {padding-left: 35px !important;}
.pl40 {padding-left: 40px !important;}
.pl45 {padding-left: 45px !important;}
.pl50 {padding-left: 50px !important;}
.pl100 {padding-left: 100px !important;}

.pb0  {padding-bottom: 0px !important;}
.pb5  {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb15 {padding-bottom: 15px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb25 {padding-bottom: 25px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb35 {padding-bottom: 35px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb45 {padding-bottom: 45px !important;}
.pb50 {padding-bottom: 50px !important;}
.pb100 {padding-bottom: 100px !important;}

.pr0  {padding-right: 0px !important;}
.pr5  {padding-right: 5px !important;}
.pr10 {padding-right: 10px !important;}
.pr15 {padding-right: 15px !important;}
.pr20 {padding-right: 20px !important;}
.pr25 {padding-right: 25px !important;}
.pr30 {padding-right: 30px !important;}
.pr35 {padding-right: 35px !important;}
.pr40 {padding-right: 40px !important;}
.pr45 {padding-right: 45px !important;}
.pr50 {padding-right: 50px !important;}
.pr100 {padding-right: 100px !important;}
