<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
html,body { font-size: 10px; }

/* reset.css */
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;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif;
  font-weight: 400;
  vertical-align: baseline;
  line-height: 1em;
  letter-spacing: -0.2px;
  -webkit-font-smoothing: antialiased;
}

/* 최유정 */
pre { font-size: 14px; background-color: #f3f3f3; padding: 10px; border-radius: 10px; border: 1px solid #cacaca; margin-bottom: 10px; }

/* 최유정 */
code{ font-size: 14px; color: #efef00; background-color: #000; padding: 3px 5px; border-radius: 5px; }

/* 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 {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;}

/* 웹접근성 */
/* a:hover, button:hover, input[type="button"]:hover,
a:focus, button:focus, input[type="button"]:focus,
.tab-list:hover .tab-txt, .tab-list:focus .tab-txt{ text-decoration: underline; } */

button, select { overflow: visible; text-transform: none; line-height: 1em; }
button, input[type="button"],
input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; }
button[disabled], input[disabled] { cursor: default; }
abbr{text-decoration:none}
/** * 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; }

/* input[type="text"], input[type="password"] placeholder속성 추가 */
input[type="text"]::placeholder { color: #999; letter-spacing: -0.4px; font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif; }
input[type="text"]:-ms-input-placeholder { color: #999; letter-spacing: -0.4px; font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif; }
input[type="text"]::-ms-input-placeholder { color: #999; letter-spacing: -0.4px; font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif; }
input[type="text"]::-moz-placeholder { color: #999; letter-spacing: -0.4px; font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif; }

input[type="password"]::placeholder { color: #999; letter-spacing: -0.4px; font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif; }
input[type="password"]:-ms-input-placeholder { color: #999; letter-spacing: -0.4px; font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif; }
input[type="password"]::-ms-input-placeholder { color: #999; letter-spacing: -0.4px; font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif !important;; }
input[type="password"]::-moz-placeholder { color: #999; letter-spacing: -0.4px; font-family: 'Pretendard', 'NanumBarun', '돋움', Dotum, sans-serif; }

/* [공통] 컬러 */

:root{
	--main-clr : #00a29c;
	--body-clr :#555;
	--tit-clr : #111;
	--cap-clr : #888;
	--disable-clr : #ccc;
	--disable-clr2 : #e2e2e2;
	--line-clr : #f2f2f2;
	--line-clr2 : #e8e8e8;
	--line-clr3 : #ddd;
	--bg-clr1 : #f9f9f9;
	--bg-clr2 : #ffffff;
	--pos-clr : #3f81db;
	--neg-clr : #f4616a;
}

.bg-main {background-color: var(--main-clr) !important;} /* 브랜드컬러 */
.bg-black {background-color: var(--tit-clr) !important;} /* 블랙 */
.bg-white {background-color: var(--bg-clr2) !important;} /* 화이트 */
.bg-danger {background-color: var(--neg-clr) !important;} /* 부정 상태 (오류, 금지, 경고) */
.bg-success {background-color: var(--pos-clr) !important;} /* 긍정 상태 (정상, 허용) */

.bg-grey01 {background-color: var(--body-clr) !important;} /* 그레이1 */
.bg-grey02 {background-color: var(--cap-clr) !important;} /* 그레이2 */
.bg-grey03 {background-color: var(--disable-clr) !important;} /* 그레이3 */
.bg-grey04 {background-color: var(--disable-clr2) !important;} /* 그레이4 */
.bg-grey05 {background-color: var(--line-clr2) !important;} /* 그레이5 */
.bg-grey06 {background-color: var(--line-clr) !important;} /* 그레이6 */
.bg-grey07 {background-color: var(--bg-clr1) !important;} /* 그레이7 */

.color-main {color: var(--main-clr) !important;} /* 브랜드컬러 */
.color-black {color: var(--tit-clr) !important;} /* 블랙 */
.color-white {color: var(--bg-clr2) !important;} /* 화이트 */
.color-danger {color: var(--neg-clr) !important;} /* 부정 상태 (오류, 금지, 경고) */
.color-success {color: var(--pos-clr) !important;} /* 긍정 상태 (정상, 허용) */
.color-green {color: #047416 !important;}

.color-grey01 {color: var(--body-clr) !important;} /* 그레이1 */
.color-grey02 {color: var(--cap-clr) !important;} /* 그레이2 */
.color-grey03 {color: var(--disable-clr) !important;} /* 그레이3 */
.color-grey04 {color: var(--disable-clr2) !important;} /* 그레이4 */
.color-grey05 {color: var(--line-clr2) !important;} /* 그레이5 */
.color-grey06 {color: var(--line-clr) !important;} /* 그레이6 */
.color-grey07 {color: var(--bg-clr1) !important;} /* 그레이7 */

.bor-main {border: 2px solid var(--main-clr) !important;} /* 브랜드컬러 */
.bor-danger {border: 2px solid var(--neg-clr) !important;} /* 부정 상태 (오류, 금지, 경고) */
.bor-success {border: 2px solid var(--pos-clr) !important;} /* 긍정 상태 (정상, 허용) */

/* float정렬 */
.fl { float: left !important; }
.fr { float: right !important; }
.cl { clear: both !important; }
.fn { float: none !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; }
.maxw-auto { max-width: inherit !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: fixed; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; left: -50000px; }
.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; }

/* 텍스트 관련 */

.common-headline {font-size: 25px !important;} /* 헤드라인 / 금액 */
.common-headline02 {font-size: 23px !important;} /* Top Box */

.common-tit01 {font-size: 18px !important;} /* 타이틀 / 본문1 */
.common-tit02 {font-size: 17px !important;} /* 팝업타이틀 / 본문2 / 금액 */

.common-txt01 {font-size: 16px !important;} /* 본문3 */
.common-txt02 {font-size: 15px !important;} /* 본문4 */
.common-txt03 {font-size: 14px !important;} /* 본문5 */

.common-cap01 {font-size: 13px !important;} /* 캡션1 */
.common-cap02 {font-size: 12px !important;} /* 캡션2 */
.common-cap03 {font-size: 11px !important;} /* 캡션3 */

.tal { text-align: left !important; }
.tac { text-align: center !important; }
.tar { text-align: right !important; }
.lsp { letter-spacing: -1px !important; }
.txt-bold { font-weight: 500 !important; }
.txt-white { color: #fff !important; }
.txt-black { color: #000 !important; }
.txt-red { color: #cc0000 !important; }
.txt-blue { color: #00397b !important; }
.txt-def, .txt-333 { color: #333 !important; }
.txt-666 { color: #666 !important; }
.txt-999 { color: #999 !important; }
.txt-underline{ text-decoration: underline !important; }
.txt-lh {line-height: 1.5 !important;}
.txt-inh * {font-size: inherit !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; }

.bt-ccc { border-top: 1px solid #ccc !important; }
.bl-ccc { border-left: 1px solid #ccc !important; }
.br-ccc { border-right: 1px solid #ccc !important; }
.bb-ccc { border-bottom: 1px solid #ccc !important; }
.bd-ccc { border: 1px solid #ccc !important; }
.br-ef { border-right: 1px solid #efefef !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: 51px; }

/* 위치 관련 */
.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; }

/* 클릭 가능 */
.clickable { cursor: pointer; }

/* box-model  */

.flex {display: flex; align-items: center; justify-content: flex-start;}
.flex2 {display: flex; align-items: center; justify-content: space-between;}
.flex3 {display: flex; align-items: center; justify-content: center;}
.flex4 {display: flex; align-items: center; justify-content: flex-end;}

.flex-col {flex-direction: column;}
.flex-wrap {flex-wrap: wrap;}

/*-------------------------------------
//   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: 10000; }

/*-------------------------------------
//   공통 사이즈
-------------------------------------*/
.co-size { width: 1100px; margin: auto; }

/*-------------------------------------
//    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;}
.mt3  {margin-top: 3px !important;} /* 20190408 김유빈 추가 */
.mt5  {margin-top: 5px !important;}
.mt7  {margin-top: 7px !important;} /* 20190408 김유빈 추가 */
.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;}
.mt60 {margin-top: 60px !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;}
.ml60 {margin-left: 60px !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;}

/* === 로딩바 === */
#loading-dim { width: 100%; height: 100%;position: fixed; top: 0; left: 0;z-index: 9999; background-color: rgba(255, 255, 255, 0.5); }
#loading-box { width: 300px; height: 200px;position: fixed; top: 50%; left: 50%; -webkit-transform: translate3d(-50%,-50%,0);transform: translate3d(-50%,-50%,0); z-index: 9999; }
#loading { width: 100%; height: 100%;position: relative; text-align: center; }
.loader { width: 150px; height: 150px;position: absolute; left: 74px; top: 0; z-index: 1;border: 25px solid #ddd; border-radius: 50%; border-top: 25px solid #ee0589;-webkit-animation: spin 2s linear infinite;animation: spin 2s linear infinite; }

@-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); } }

/*-------------------------------------
//   DOM 구조변경 또는 기능개발을 위해 개발팀에서 추가
-------------------------------------*/
/* from required 체크시 사용하는 클래스*/
.formRequired {border:1px solid #f00 !important;}

/* 2개 이상의 layer popup 이 추가된경우  뒤에 위치한 popup의 dim은 hide 시킴 */
.dim-bg { display: none; }
.popup:last-of-type .dim-bg { display: block; }



/*********로그인 페이지*/
.login-box-wrap { border-top: 1px solid #333; }
.login-box { border-right: 1px solid #ccc; float: left; width: 50%; padding: 44px 71px 40px; display: table; }
.login-box:last-child { border-right: none; }
.login-sub-title {margin-bottom: 33px;font-weight: 500; font-size: 20px;  }

/*center - button, input*/
.login-center {height:193px;}
.login-center.type01 {width:406px;}
.login-center.type01 .input-basic {width:99%;margin-bottom:10px;}
.login-center.type01 .btn-log {width:400px;}
.login-center.type01 .icon-mouse {margin-left: -34px;vertical-align: top;}
.login-center.type01 .btn-mouse {top: -15px;width: 30px;height: 40px;margin-left: -30px;}
.btn-log { width: 100%;height:51px;font-weight: 500; font-size: 20px;box-sizing: border-box;}
.btn-log.bg-color01 { background-color:#00397b; color: #fff; }
.btn-log.large {height:70px;margin-bottom:13px;}
.btn-log.wh { border: 1px solid #ccc; border-bottom-width: 2px; }
.btn-log .log-icon { width:  20px; height: 27px; vertical-align: middle; background: url("/img/common/login_icon.png") no-repeat left center; background-size: cover; margin-right: 10px; }

/*check box, link*/
.log-radio-title { font-weight: 500; font-size: 14px; margin:3px 0 22px; }
.log-link-wrap { text-align:left; }
.log-link-wrap li { padding-right: 10px; background: url("/img/common/arrow_icon_black.png") no-repeat right center; margin-right:27px;font-size: 14px; display: inline-block; }
.log-link-wrap li:last-child { margin-right: 0; }
.log-link-wrap.ty01 {margin:4px 0 21px;text-align:center;}
.log-link-wrap.ty01 li {margin-right:17px;}
.log-link-wrap.ty01 li:last-child {margin-right:0;}
.log-link-wrap.ty02 {margin-top:1px;}
.log-link-wrap.ty02 li {margin-right:10px;}
/*bottom*/
.login-bottom { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding:40px 79px 40px 71px; }
.log-bottom-title { font-weight: 500; font-size: 18px; margin-bottom: 10px; }
.log-bottom-txt { font-size: 14px; }
.log-btn-wrap .btn-sm-wh { margin-right: 10px; }
.log-btn-wrap .btn-sm-wh:last-child { margin-right: 0; }
.log-btn-wrap .btn-sm-wh.bg-color01 {border: none; background-color:#00397b; color: #fff; }
.log-btn-wrap { width: 250px; }
@media (max-width: 1100px) {
	html.responsive .login-box-wrap { margin-top:0;border-top: none; }
	html.responsive .m-none { display: none; }
	html.responsive .login-box.login-box-m { width: 100%; background: #fff; padding: 0 15px; }
	html.responsive .login-box.login-box-m .login-sub-title { display: none; }
	html.responsive .login-center { width:100%; margin-bottom: 10px; }
	html.responsive .login-center .btn-log { width:100%; margin-top: 30px; }
	html.responsive.login-center button,
	html.responsive.login-center input { margin-top: 20px; }
}

/* //mark:  tooltip */

[class^='aui-tooltip']{
	position: relative;
	display: inline-block;
	width: 15px;
    height: 15px;
    line-height: 1;
    background: #fff !important;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1px solid var(--cap-clr);
    padding: 0;
}
[class^='aui-tooltip']::after{
	position: absolute;
	content: '';
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: url("/img/common/icn_ir.png") no-repeat -23px -134px;
	width: 15px;
	height: 13px;
	background-size: 200px;
}
[class^='aui-tooltip']:hover{
    background: var(--cap-clr) !important;
}
[class^='aui-tooltip']:hover::after{
	background-position-y: -125px;
}
[class^='aui-tooltip'] &gt; span{
	font-size: 0;
}

[class^='tooltipContent'] {
	position: absolute;
	padding: 10px;
	background-color: var(--cap-clr);
	border-radius: 10px;
	font-size: 14px;
	text-align: left;
	z-index: 9999;
	pointer-events: none;
	transition: opacity .5s;
	opacity: 0;
	visibility: hidden;
	color: var(--bg-clr2);
	text-align:center;
	line-height: 1.5;
}
.tooltipContent--close.active{
	opacity: 1;
	pointer-events: all;
	visibility: visible;
}
.tooltipContent.active{opacity: 1;visibility: visible;}
.right[class^='tooltipContent']::after {
	top: 50%;
	transform: translateY(-50%);
	left: -7px;
	border-color: transparent var(--body-clr);
	border-width: 10px 10px 10px 0;
}

.left[class^='tooltipContent']::after {
	top: 50%;
	transform: translateY(-50%);
	right: -7px;
	border-color: transparent var(--body-clr);
	border-width: 10px 0 10px 10px;
}

.top[class^='tooltipContent']::after {
	bottom: -7px;
	left: 50%;
	border-color:var(--body-clr) transparent;
	border-width: 7px 7px 0;
	transform: translateX(-50%);
}

.bottom[class^='tooltipContent']::after {
	/*top: -7px;
	left: 15px;
	border-color: var(--body-clr) transparent;
	border-width: 0 7px 7px;*/
	/* transform: translateX(-50%); */
}

/* mini버전 tooltip */

.tooltip-wrap {
    position: relative;
    vertical-align: middle;
}

.tooltip-btn {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 1;
    background: #fff !important;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1px solid var(--cap-clr);
    padding: 0;
}

.tooltip-btn::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(/img/common/icn_ir.png) no-repeat -23px -134px;
    width: 15px;
    height: 13px;
    background-size: 200px;
}

.tooltip-item {
    display: none;
    position: absolute;
    left: 20px;
    top: 0;
    width: 470px;
    padding: 10px;
    background-color: var(--cap-clr);
    border-radius: 10px;
    font-size: 14px;
    z-index: 10001;
    pointer-events: none;
    color: var(--bg-clr2);
    text-align: center;
    line-height: 1.5;
}

.tooltip-btn:hover {
    background: var(--cap-clr) !important;
}

.tooltip-btn:hover::after {
    background-position-y: -125px;
}

.tooltip-item.on {
    display: block;
}
</pre></body></html>