@charset "utf-8";

/* ========================================
   app 테마: products(index.html) 헤더·앱 루트 UI
   ======================================== */
:root {
  --app-color-bg: #f5f5f5;
  --app-color-surface: #fff;
  --app-color-text: #1a1a1a;
  --app-header-h: 52px;
  --app-max-width: 480px;
}

.app {
  width: 100%;
  max-width: var(--app-max-width);
  margin: 0 auto;
  min-height: 100vh;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background: #fff;
  border: none;
  box-shadow: 0 1px 8px rgba(20, 20, 40, 0.05);
}

.app-login-msg {
  padding: 6px 12px;
  font-size: 0.875rem;
  background: #f0f0f0;
  text-align: right;
}
.app-login-msg a { color: #1976d2; }

.app .header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--app-header-h);
  padding: 0 12px;
  background: var(--app-color-surface);
  border-bottom: 1px solid #f5f0f8;
}

.app .btn-back {
  width: 40px;
  height: 40px;
  margin: 0 -8px 0 0;
  border: 0;
  background: none;
  font-size: 30px;
  line-height: 1;
  color: var(--app-color-text);
  cursor: pointer;
  text-decoration: none;
}
.app .btn-back:hover { opacity: .8; }

.app .header-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
}

.app .header-actions {
  display: flex;
  gap: 4px;
}

.app .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--app-color-text);
  text-decoration: none;
}
.app .btn-icon:hover { opacity: .8; }

/* 헤더 알림(벨): 미읽음 메시지 시 우하단 깜박임 점 — tr_trend #hd_qnb .hd_nav_memo 와 동일 패턴 */
@keyframes app_hd_memo_unread_blink {
  50% { opacity: 0; }
}
.app .btn-icon .app_nav_memo_ico {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.app .btn-icon .app_nav_memo_ico > i {
  display: block;
}
.app .btn-icon .app_nav_memo_no_read {
  position: absolute;
  bottom: 1px;
  right: -2px;
  width: 9px;
  height: 9px;
  border-radius: 9px;
  background: #ae5cff;
  border: 1px solid #f1e1ff;
  text-indent: -9999px;
  overflow: hidden;
  box-shadow: 0 0 8px 2px #cd9ef9;
  animation: app_hd_memo_unread_blink 1s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.app .main { min-height: 50vh; padding-bottom: 72px; }

/* app 테마: 세로형 모바일(뷰포트 540px 미만) - 본문 패딩·하단 메뉴 한 구간에서 관리 */
@media (max-width: 540px) {
  .app .main {
    /* 좌우 패딩은 .app 에서 통일 */
    padding-left: 0;
    padding-right: 0;
  }
  .app #ft.app-footer,
  #ft.app-footer {
    left: 0;
    right: 0;
    width: 100%;
    max-width: var(--app-max-width);
    transform: none;
    box-sizing: border-box;
    padding-left: max(10px, env(safe-area-inset-left, 0));
    padding-right: max(10px, env(safe-area-inset-right, 0));
  }
}

/* app 테마: 탑바 카테고리/검색 레이어 (우측에서 열림) */
.app-layer-bg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.35);
  z-index: 900;
}
.app-hd-layer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: var(--app-color-surface);
  box-shadow: -2px 0 12px rgba(0,0,0,.12);
  z-index: 901;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s ease;
}
/* basic 테마의 #gnb { position:relative } 보다 우선시 */
#gnb.app-hd-layer,
#user_menu.app-hd-layer,
#app_memo_layer.app-hd-layer,
#app_point_layer.app-hd-layer,
#app_scrap_layer.app-hd-layer,
#app_my_layer.app-hd-layer {
  position: fixed !important;
}
.app-hd-layer.open {
  transform: translateX(0);
}
/* 메시지/포인트/보관함 레이어: iframe으로 페이지 로드 */
#app_memo_layer.app-hd-layer,
#app_point_layer.app-hd-layer,
#app_scrap_layer.app-hd-layer {
  display: flex;
  flex-direction: column;
}
#app_memo_layer .app-layer-inner.app-layer-iframe,
#app_point_layer .app-layer-inner.app-layer-iframe,
#app_scrap_layer .app-layer-inner.app-layer-iframe {
  padding: 52px 0 0;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
#app_memo_layer .app-layer-inner.app-layer-iframe iframe,
#app_point_layer .app-layer-inner.app-layer-iframe iframe,
#app_scrap_layer .app-layer-inner.app-layer-iframe iframe {
  flex: 1;
  min-height: 0;
  border: 0;
  width: 100%;
  display: block;
}
.app-hd-layer .app-layer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--app-color-text);
  cursor: pointer;
}
.app-hd-layer .app-layer-inner {
  padding: 52px 16px 24px;
  min-width: 0;
  box-sizing: border-box;
}
#app_my_layer .app-layer-inner.app-layer-my {
  overflow-y: auto;
}
/* 마이 레이어 아웃로그인2: 통합 식별자 입력 UI 고정 */
#app_my_layer #ol_before .login_id_hint {
  margin: 0 0 12px;
  font-size: 0.9em;
  color: #666;
  line-height: 1.45;
}
#app_my_layer #ol_before #ol_login_identifier,
#app_my_layer #ol_before #ol_pw {
  height: 35px;
  padding: 0 10px;
  border: 1px solid #d0d3db;
  border-radius: 3px;
  box-sizing: border-box;
}
#app_my_layer #ol_before #ol_submit {
  height: 35px;
  border-radius: 3px;
  background: #5c4fd8;
  color: #fff;
}
.app-gnb-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.app-gnb-1dli {
  border-bottom: 1px solid #eee;
}
.app-gnb-1dli > .app-gnb-1da,
.app-gnb-1dli > .btn_gnb_op {
  display: block;
  padding: 12px 0;
  color: var(--app-color-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
}
.app-gnb-1dli .gnb_2dul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 8px 12px;
}
.app-gnb-1dli .gnb_2dli a {
  display: block;
  padding: 6px 0;
  color: #666;
  text-decoration: none;
  font-size: 0.9375rem;
}
.app-gnb-empty { padding: 12px 0; color: #666; font-size: 0.875rem; }
.app-hd-nb {
  list-style: none;
  margin: 0;
  padding: 0;
  /* border-top: 1px solid #eee; */
  padding-top: 12px;
}
.app-hd-nb li a {
  display: block;
  padding: 8px 0;
  color: var(--app-color-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
}
.app-hd-sch {
  margin-bottom: 1rem;
  min-width: 0;
  max-width: 100%;
}
.app-hd-sch form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.app-hd-sch input[type="text"] {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-size: 1rem;
  box-sizing: border-box;
}
.app-hd-sch button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  padding: 0;
  border: 0;
  background: #5c4fd8;
  color: #fff;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1.125rem;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}
.app-hd-sch button[type="submit"]:hover {
  background: #4a3fc5;
}
.app-hd-sch button[type="submit"] i {
  font-size: 1rem;
}
/* 검색 레이어 내부 인기검색어(기본 스킨 400px 고정폭)로 인한 가로 스크롤 방지 */
#user_menu #popular {
  max-width: 100%;
  overflow: hidden;
}
#user_menu #popular .popular_inner {
  width: 100%;
  max-width: 100%;
}

/* FAQ 검색: 새글(new) .new_sch_row / .ipt_sch 과 동일 — 가로 채움 + 42px 아이콘 버튼만 */
.app #faq_sch {
  background: none !important;
  border: none !important;
  padding: 20px 0;
}
.app #faq_sch form { display: block; width: 100%; margin: 0; padding: 0; }
.app #faq_sch .faq_sch_row,
.app #faq_sch .ipt_sch {
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.app #faq_sch .faq_sch_row .frm_input,
.app #faq_sch .ipt_sch .frm_input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: 0 !important;
  max-width: none !important;
  height: 42px !important;
  border: 1px solid #e5e2f5 !important;
  border-radius: 7px !important;
  padding: 10px 12px !important;
  box-sizing: border-box !important;
}
.app #faq_sch .faq_sch_row .btn_submit,
.app #faq_sch .ipt_sch .btn_submit {
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: #5c4fd8 !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1rem !important;
}
.app #faq_sch .faq_sch_row .btn_submit:hover,
.app #faq_sch .ipt_sch .btn_submit:hover { background: #4a3fc5 !important; }

.app .bo_sch .sch_bar {
  border: none !important; background: none !important;
  box-shadow: none !important;
  display: flex; gap: 8px; align-items: center; margin-top: 12px;
  clear: both; width: 100%;
}
.app .bo_sch .sch_input {
  flex: 1; min-width: 0;
  border: 1px solid #e5e2f5 !important;
  border-radius: 7px !important;
  padding: 10px 12px !important;
  height: 42px; background: transparent;
}
.app .bo_sch .sch_btn {
  flex-shrink: 0; width: 42px; height: 42px;
  border: 0; padding: 0;
  background: #5c4fd8 !important; color: #fff !important;
  border-radius: 7px !important;
  display: inline-flex; align-items: center; justify-content: center;
}
.app .bo_sch .sch_btn:hover { background: #4a3fc5 !important; }

.app #sch_res_detail {
  background: none !important;
  border: none !important;
  padding: 20px 0;
}
.app #sch_res_detail .sch_wr { display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.app #sch_res_detail .frm_input {
  border: 1px solid #e5e2f5 !important;
  border-radius: 7px !important;
  padding: 10px 12px !important;
  width: 100%; max-width: 280px;
}
.app #sch_res_detail .btn_submit {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 16px; height: 42px; border: 0;
  background: #5c4fd8 !important; color: #fff !important;
  border-radius: 7px !important;
}
.app #sch_res_detail .btn_submit:hover { background: #4a3fc5 !important; }

.app #new_sch {
  background: none !important;
  border: none !important;
  padding: 20px 0;
}
.app #new_sch .frm_input {
  border: 1px solid #e5e2f5 !important;
  border-radius: 7px !important;
  padding: 10px 12px !important;
  width: 100%; max-width: 280px; height: 42px;
}
.app #new_sch .btn_submit {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 16px; height: 42px; border: 0;
  background: #5c4fd8 !important; color: #fff !important;
  border-radius: 7px !important;
}
.app #new_sch .btn_submit:hover { background: #4a3fc5 !important; }

/* app 테마: 본문 영역 로그인(아웃로그인)·설문 박스 숨김 */
.app #aside { display: none !important; }

/* app 테마: PC/태블릿에서 .app 바깥(좌우)은 #f5f5f5 — 모바일 전폭 시 좌우 여백 없음 */
.app #wrapper,
.app #container_wr {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100%;
}
.app #container {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* 초기화 */
html { overflow-y: scroll; background: var(--app-color-bg); }
body { margin: 0; padding: 0; font-size: 0.75em; font-family: 'Noto Sans KR', 'Noto Sans', sans-serif; background: var(--app-color-bg); }
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
h1, h2, h3, h4, h5, h6 {font-size:1em;font-family:'Noto Sans KR','Noto Sans',sans-serif}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}

ul, dl,dt,dd {margin:0;padding:0;list-style:none}
legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
label, input, button, select, img {vertical-align:middle;font-size:1em}
input, button {margin:0;padding:0;font-family:'Noto Sans KR','Noto Sans',sans-serif;font-size:1em}
input[type="submit"] {cursor:pointer}
button {cursor:pointer}

textarea, select {font-family:'Noto Sans KR','Noto Sans',sans-serif;font-size:1em}
select {margin:0}
p {margin:0;padding:0;word-break:break-all}
hr {display:none}
pre {overflow-x:scroll;font-size:1.1em}
a {color:#000;text-decoration:none}

*, :after, :before {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

input[type=text],input[type=password], textarea {
-webkit-transition:all 0.30s ease-in-out;
-moz-transition:all 0.30s ease-in-out;
-ms-transition:all 0.30s ease-in-out;
-o-transition:all 0.30s ease-in-out;
outline:none;
}

input[type=text]:focus,input[type=password]:focus, textarea:focus,select:focus {
-webkit-box-shadow:0 0 5px #9ed4ff;
-moz-box-shadow:0 0 5px #9ed4ff;
box-shadow:0 0 5px #9ed4ff;
border:1px solid #558ab7 !important;
}

.placeholdersjs {color:#aaa !important}

/* 레이아웃 크기 지정 */
#hd, #wrapper, #ft {min-width:1200px}

#hd_pop,
#hd_wrapper,
#tnb .inner,

#gnb .gnb_wrap,
#container_wr,
#ft_wr {width:1200px}

/* 모바일/좁은 화면: min-width 1200으로 인한 가로 오버플로우 방지 */
@media (max-width: 768px) {
  #hd, #wrapper, #ft { min-width: 0 !important; }
  #hd_pop,
  #hd_wrapper,
  #tnb .inner,
  #gnb .gnb_wrap,
  #container_wr,
  #ft_wr { width: 100% !important; max-width: 100% !important; }
  #container { width: auto !important; }
}

/* 공통 - display none/block */
.is-hidden { display: none !important; }
.is-visible { display: block !important; }

/* 공통 - 뷰포트 (pc / mobile) 별 display none/block */
.pc-only { display: none; }
@media (min-width: 769px) { .pc-only { display: block !important; }}
.mobile-only { display: block; }
@media (min-width: 769px) { .mobile-only { display: none !important; }}

/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;height:0}
#hd_pop h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid #e9e9e9;background:#fff}
.hd_pops img {max-width:100%}
.hd_pops_con {}
.hd_pops_footer {padding:0;background:#000;color:#fff;text-align:left;position:relative}
.hd_pops_footer:after {display:block;visibility:hidden;clear:both;content:""}
.hd_pops_footer button {padding:10px;border:0;color:#fff}
.hd_pops_footer .hd_pops_reject {background:#000;text-align:left}
.hd_pops_footer .hd_pops_close {background:#393939;position:absolute;top:0;right:0}

/* 상단 레이아웃 */
#hd {background:#212020}
#hd_h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#tnb {border-bottom:1px solid #383838;margin:0 auto}
#tnb:after {display:block;visibility:hidden;clear:both;content:""}
#tnb .inner {margin:0 auto}

#hd_wrapper {position:relative;margin:0 auto;height:140px;zoom:1}
#hd_wrapper:after {display:block;visibility:hidden;clear:both;content:""}

#logo {float:left;padding:30px 0 0}

.hd_sch_wr {float:left;padding:30px 0;width:445px;margin-left:65px}
#hd_sch h3 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#hd_sch {border-radius:30px;overflow:hidden}
#hd_sch #sch_stx {float:left;width:385px;height:45px;padding-left:10px;border-radius:30px 0 0 30px;background:#2c2c2c;border:0;border-right:0;font-size:1.25em;color:#fff}
#hd_sch #sch_submit {float:left;width:60px;height:45px;border:0;background:#2c2c2c;color:#fff;border-radius:0 30px 30px 0;cursor:pointer;font-size:16px}

#hd_define {float:left}
#hd_define:after {display:block;visibility:hidden;clear:both;content:""}
#hd_define li {float:left;font-size:1.083em;line-height:14px;border-right:1px solid #4a4a4a;position:relative;text-align:center;margin:15px 10px 15px 0;padding-right:10px}
#hd_define li:last-child {padding-right:0;margin-right:0;border-right:0}
#hd_define li a {display:inline-block;color:#919191}
#hd_define li.active a {color:#fff}


#hd_qnb {float:right;text-align:right}
#hd_qnb:after {display:block;visibility:hidden;clear:both;content:""}
#hd_qnb li {float:left;font-size:1.083em;line-height:14px;border-right:1px solid #4a4a4a;position:relative;text-align:center;margin:15px 10px 15px 0;padding-right:10px}
#hd_qnb li:last-child {padding-right:0;margin-right:0;border-right:0}
#hd_qnb li span {display:block;margin-top:5px;font-size:0.92em}
#hd_qnb li a {display:inline-block;color:#919191}
#hd_qnb .visit .visit-num {display:inline-block;line-height:16px;padding:0 5px;margin-left:5px;border-radius:10px;background:#da22f5;color:#fff;font-size:10px}


.hd_login {position:absolute;right:0;top:60px}
.hd_login li {float:left;margin:0 5px;border-left:1px solid #616161;padding-left:10px;line-height:13px}
.hd_login li:first-child {border-left:0}
.hd_login a {color:#fff}


/* 메인메뉴 */
#gnb {position:relative;background:#fff}
#gnb > h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#gnb .gnb_wrap {margin:0 auto;position:relative}
#gnb .gnb_wrap:hover, #gnb .gnb_wrap:focus, #gnb .gnb_wrap:active{z-index:3}
#gnb #gnb_1dul {font-size:1.083em;padding:0;border-bottom:1px solid #e0e2e5;zoom:1}
#gnb ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb .gnb_1dli {float:left;line-height:55px;padding:0px;position:relative}
#gnb .gnb_1dli:hover > a {color:#5c4fd8;
-webkit-transition:background-color 2s ease-out;
-moz-transition:background-color 0.3s ease-out;
-o-transition:background-color 0.3s ease-out;
transition:background-color 0.3s ease-out}

.gnb_1dli .bg {position:absolute;top:24px;right:8px;display:inline-block;width:10px;height:10px;overflow:hidden;background:url('../img/gnb_bg2.gif') no-repeat 50% 50%;text-indent:-999px}
.gnb_1da {display:block;font-weight:bold;padding:0 15px;color:#080808;text-decoration:none}
.gnb_1dli.gnb_al_li_plus .gnb_1da{padding-right:25px}
.gnb_2dli:first-child {border:0}
.gnb_2dul {display:none;position:absolute;top:54px;min-width:140px;padding-top:2px}
.gnb_2dul .gnb_2dul_box {border:1px solid #e0e2e5;border-top:0;padding:0;
-webkit-box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2);
-moz-box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2);
box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2)}
.gnb_2da {display:block;padding:0 10px;line-height:40px;background:#fff;color:#080808;text-align:left;text-decoration:none}
a.gnb_2da:hover {color:#5c4fd8;background:#f7f7f8;
-moz-transition:all 0.3s ease-out;
-o-transition:all 0.3s ease-out;
transition:all 0.3s ease-out}

.gnb_1dli_air .gnb_2da {}
.gnb_1dli_on .gnb_2da {}
.gnb_2da:focus, .gnb_2da:hover {color:#fff}
.gnb_1dli_over .gnb_2dul {display:block;left:0}
.gnb_1dli_over2 .gnb_2dul {display:block;right:0}
.gnb_wrap .gnb_empty {padding:10px 0;width:100%;text-align:center;line-height:2.7em;color:#080808}
.gnb_wrap .gnb_empty a {color:#5c4fd8;text-decoration:underline}
.gnb_wrap .gnb_al_ul .gnb_empty, .gnb_wrap .gnb_al_ul .gnb_empty a {color:#555}

#gnb .gnb_menu_btn {background:#5548b8;color:#fff;width:50px;height:55px;border:0;vertical-align:top;font-size:18px}
#gnb .gnb_close_btn {background:#fff;color:#b6b9bb;width:50px;height:50px;border:0;vertical-align:top;font-size:18px;position:absolute;top:0;right:0}
#gnb .gnb_mnal {float:right;padding:0}

#gnb_all {display:none;position:absolute;border:1px solid #c5d6da;width:100%;background:#fff;z-index:1000;-webkit-box-shadow:0 2px 5px rgba(0,0,0,0.2);
-moz-box-shadow:0 2px 5px rgba(0,0,0,0.2);
box-shadow:0 2px 5px rgba(0,0,0,0.2)}
#gnb_all h2 {font-size:1.3em;padding:15px 20px;border-bottom:1px solid #e7eeef}
#gnb_all .gnb_al_ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb_all .gnb_al_ul > li:nth-child(5n+1) {border-left:0}
#gnb_all .gnb_al_li {float:left;width:20%;min-height:150px;padding:20px;border-left:1px solid #e7eeef}
#gnb_all .gnb_al_li .gnb_al_a {font-size:1.2em;display:block;position:relative;margin-bottom:10px;font-weight:bold;color:#5c4fd8}
#gnb_all .gnb_al_li li {line-height:2em}
#gnb_all .gnb_al_li li a {color:#555}
#gnb_all_bg {display:none;background:rgba(0,0,0,0.1);width:100%;height:100%;position:fixed;left:0;top:0;z-index:999}

/* 중간 레이아웃 */
#wrapper {}
#container_wr:after {display:block;visibility:hidden;clear:both;content:""}
#container_wr {margin:0 auto;zoom:1}
#aside {float:right;width:235px;padding:0;height:100%;margin:20px 0 20px 20px}

#container {position:relative;float:left;min-height:500px;height:auto !important;margin:20px 0;font-size:1em;width:930px;zoom:1}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {font-size:1.333em;margin:0 auto;font-weight:bold}
#container_title span {margin:0 auto 10px;display:block;line-height:30px}
#container_title {display:none !important}

.lt_wr {width:32%}
.lt_wr:nth-child(3n+1) {clear:both}
/* 메인 상단 카드 배너 (index_banner_cards.inc.php) */
.app-index-banners {
  margin: 10px 10px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

a.app-index-banner {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
a.app-index-banner:focus-visible {
  outline: 2px solid #5c4fd8;
  outline-offset: 2px;
}

/* ① 실버 스트립: 높이 50px 이하, 가로 길게 */
.app-index-banner--trend {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  min-height: 50px;
  padding: 10px 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: linear-gradient(125deg, #e4e4e6 0%, #e8e5ee 34%, #f5f0f8 100%);
  color: #111;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.app-index-banner__trend-label {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #4d2a82;
}

.app-index-banner__trend-copy {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.8rem;
  line-height: 1.1;
  color: #545058;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 380px) {
  .app-index-banner--trend {
    min-height: 40px;
    flex-direction: column;
    align-items: flex-start;
  }
  .app-index-banner__trend-copy {
    white-space: normal;
  }
}

/* ② 그레이~네이비~보라 그라데이션, 흰 글씨, 약 8:5 비율 카드 */
.app-index-banner--hero {
  position: relative;
  width: 100%;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    125deg,
    #7e57d5 0%,
    #9780d5 32%,
    #b7addf 68%,
    #d2ccdd 100%
  );
  box-shadow: 0 4px 14px rgba(60, 50, 120, 0.22);
  aspect-ratio: 8 / 5;
  max-height: 220px;
}

@supports not (aspect-ratio: 8 / 5) {
  .app-index-banner--hero {
    padding-bottom: 62.5%;
    height: 0;
    max-height: none;
  }
  .app-index-banner--hero .app-index-banner__hero-inner {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
}

.app-index-banner__hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 16px 18px;
  color: #fff;
}

.app-index-banner__hero-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.app-index-banner__hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.app-index-banner__hero-list li {
  position: relative;
  padding-left: 0.85em;
  margin-bottom: 4px;
}

.app-index-banner__hero-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: bold;
  opacity: 0.9;
}

.app-index-banner__hero-list li:last-child {
  margin-bottom: 0;
}

.latest_wr {margin-bottom:20px}
.latest_wr:after {display:block;visibility:hidden;clear:both;content:""}
.latest_top_wr {margin:0 -10px 20px}
.latest_top_wr:after {display:block;visibility:hidden;clear:both;content:""}

/* 상품 허브(app_product.php) → 게시판 전체 보기 */
.app-product-full-link {
  margin: 8px 10px 24px;
  text-align: center;
}
.app-product-full-link__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: #5c4fd8;
  text-decoration: none;
}
.app-product-full-link__btn:hover,
.app-product-full-link__btn:focus {
  background: #4b3fc9;
  color: #fff;
  text-decoration: none;
}

/* 하단 레이아웃 */
#ft {background:#212020;margin:0 auto;text-align:center}
#ft h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ft_wr {max-width:1240px;margin:0;padding:40px 0;position:relative;display:inline-block;text-align:left}
#ft_wr:after {display:block;visibility:hidden;clear:both;content:""}
#ft_wr .ft_cnt {width:25%;float:left;padding:0 20px}

#ft_link {text-align:left}
#ft_link a {display:block;color:#fff;line-height:2em;font-weight:bold}
#ft_company h2 {font-size:1.2em;margin-bottom:20px}
#ft_company {font-weight:normal;color:#e3e3e3;line-height:2em}
#ft_catch {margin:20px 0 10px}
#ft_copy {text-align:center;width:1200px;margin:0 auto;padding:20px 0;color:#5b5b5b;font-size:0.92em;border-top:1px solid #383838}
#top_btn {position:fixed;bottom:20px;right:15px;width:50px;height:50px;line-height:46px;border-top-left-radius:20px;border:none;color:#fff;text-align:center;font-size:15px;z-index:90;background:rgba(255,255,255,0.3)}
#top_btn:hover {border-color:#3059c7;background:#3059c7;color:#fff}

/* app 테마: 하단 고정 푸터 - 가로는 --app-max-width 를 넘지 않음
   푸터 그림자: 아래 box-shadow. 기본 레이아웃 #ft { min-width:1200px }(314행)는 여기서 min-width:0 으로 덮어씀 */
.app #ft.app-footer,
#ft.app-footer {
  min-width: 0;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--app-max-width);
  height: 56px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--app-color-surface);
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 8px rgba(0,0,0,.06);
  z-index: 100;
  text-align: center;
}
.app-footer-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  height: 100%;
  width: 100%;
  max-width: var(--app-max-width);
  min-width: 0;
  box-sizing: border-box;
}
.app-footer-item {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--app-color-text);
  text-decoration: none;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.app-footer-item:hover,
.app-footer-item:focus { opacity: .85; }
.app-footer-item.app-footer-btn { width: 100%; }
.app-footer-item i { margin-right: 5px; font-size: 1rem; flex-shrink: 0; }
.app-footer-item .app-footer-txt { white-space: nowrap; }
/* 상단으로 버튼: 푸터 위에 배치, 스크롤 50vh 이상일 때만 표시 */
.app .app-top-btn,
#top_btn.app-top-btn {
  bottom: 65px;
  width: 44px;
  height: 44px;
  line-height: 40px;
  font-size: 1.1rem;
  color: #fff;
  background: #55555577;
  border: none;
  border-top-left-radius: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.app .app-top-btn.app-top-btn-visible,
#top_btn.app-top-btn.app-top-btn-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.app .app-top-btn:hover,
#top_btn.app-top-btn:hover { background: #999; }

/* 게시물 선택복사 선택이동 */
#copymove {}
#copymove .win_desc {text-align:center;display:block}
#copymove .tbl_wrap {margin:20px}
#copymove .win_btn {padding:0 20px 20px}
.copymove_current {float:right;background:#6b7280;padding:5px;color:#fff;border-radius:3px}
.copymove_currentbg {background:#f4f4f4}

/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;font-size:0;line-height:0;overflow:hidden}
.msg_sound_only, .sound_only {display:inline-block !important;position:absolute;top:0;left:0;width:0;height:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}

/* 본문 바로가기 */
#skip_to_container a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skip_to_container a:focus, #skip_to_container a:active {width:100%;height:75px;background:#21272e;color:#fff;font-size:2em;font-weight:bold;text-align:center;text-decoration:none;line-height:3.3em}

/* ie6 이미지 너비 지정 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {display:inline-block;position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#captcha #captcha_img {height:40px;border:1px solid #898989;vertical-align:top;padding:0;margin:0}
#captcha #captcha_mp3 {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat;text-indent:-999px;border-radius:3px}
#captcha #captcha_reload {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px;border-radius:3px}
#captcha #captcha_key {margin:0 0 0 3px;padding:0 5px;width:90px;height:40px;border:1px solid #ccc;background:#fff;font-size:1.333em;font-weight:bold;text-align:center;border-radius:3px;vertical-align:top}
#captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {display:block;margin:0 0 5px;width:187px}
#captcha.m_captcha #captcha_img {width:160px;height:60px;border:1px solid #e9e9e9;margin-bottom:3px;margin-top:5px;display:block}
#captcha.m_captcha #captcha_reload {position:static;margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px}
#captcha.m_captcha #captcha_reload span {display:none}
#captcha.m_captcha #captcha_key {margin:0;padding:0 5px;width:115px;height:29px;border:1px solid #b8c9c2;background:#f7f7f7;font-size:1.333em;font-weight:bold;text-align:center;line-height:29px;margin-left:3px}
#captcha.m_captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}
#captcha.m_captcha #captcha_mp3 {width:31px;height:31px;background:url('../../../img/captcha2.png') no-repeat 0 0 ; vertical-align:top;overflow:hidden;cursor:pointer;text-indent:-9999px;border:none}

/* ckeditor 단축키 */
.cke_sc {margin:0 0 5px;text-align:right}
.btn_cke_sc {display:inline-block;padding:0 10px;height:23px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:1.9em;vertical-align:middle;cursor:pointer}
.cke_sc_def {margin:0 0 5px;padding:10px;border:1px solid #ccc;background:#f7f7f7;text-align:center}
.cke_sc_def dl {margin:0 0 5px;text-align:left;zoom:1}
.cke_sc_def dl:after {display:block;visibility:hidden;clear:both;content:""}
.cke_sc_def dt, .cke_sc_def dd {float:left;margin:0;padding:5px 0;border-bottom:1px solid #e9e9e9}
.cke_sc_def dt {width:20%;font-weight:bold}
.cke_sc_def dd {width:30%}

/* ckeditor 태그 기본값 */
#bo_v_con ul {display:block;list-style-type:disc;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con ol {display:block;list-style-type:decimal;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con li {display:list-item}

/* 버튼 */
a.btn,.btn {line-height:35px;height:35px;padding:0 10px;text-align:center;font-weight:bold;border:0;font-size:1.4em;
-webkit-transition:background-color 0.3s ease-out;
-moz-transition:background-color 0.3s ease-out;
-o-transition:background-color 0.3s ease-out;
transition:background-color 0.3s ease-out}

a.btn01 {display:inline-block;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;vertical-align:middle}
a.btn01:focus, a.btn01:hover {text-decoration:none}
button.btn01 {display:inline-block;margin:0;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none}
a.btn02 {display:inline-block;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none;vertical-align:middle}
a.btn02:focus, .btn02:hover {text-decoration:none}
button.btn02 {display:inline-block;margin:0;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none}

.btn_confirm {text-align:right} /* 서식단계 진행 */

.btn_submit {border:0;background:#5c4fd8;color:#fff;cursor:pointer;border-radius:3px}
.btn_submit:hover {background:#4a3fd0}
.btn_close {border:1px solid #dcdcdc;cursor:pointer;border-radius:3px;background:#fff}
a.btn_close {text-align:center;line-height:50px}

a.btn_cancel {display:inline-block;background:#969696;color:#fff;text-decoration:none;vertical-align:middle}
button.btn_cancel {display:inline-block;background:#969696;color:#fff;text-decoration:none;vertical-align:middle}
.btn_cancel:hover {background:#aaa}
a.btn_frmline, button.btn_frmline {display:inline-block;width:128px;padding:0 5px;height:40px;border:0;background:#434a54;border-radius:3px;color:#fff;text-decoration:none;vertical-align:top} /* 우편번호검색버튼 등 */
a.btn_frmline {}
button.btn_frmline {font-size:1em}

/* 게시판용 버튼 */
a.btn_b01,.btn_b01 {display:inline-block;color:#bababa;text-decoration:none;vertical-align:middle;border:0;background:transparent}
.btn_b01:hover, .btn_b01:hover {color:#000}
a.btn_b02,.btn_b02 {display:inline-block;background:#4530b0;padding:0 10px;color:#fff;text-decoration:none;border:0;vertical-align:middle}
a.btn_b02:hover, .btn_b02:hover {background:#2a20c0}
a.btn_b03, .btn_b03 {display:inline-block;background:#fff;border:1px solid #b9bdd3;color:#646982;text-decoration:none;vertical-align:middle}
a.btn_b03:hover, .btn_b03:hover {background:#ebedf6}
a.btn_b04, .btn_b04 {display:inline-block;background:#fff;border:1px solid #ccc;color:#707070;text-decoration:none;vertical-align:middle}
a.btn_b04:hover, .btn_b04:hover {color:#333;background:#f9f9f9}
a.btn_admin,.btn_admin {display:inline-block;color:#c94a6a;text-decoration:none;vertical-align:middle} /* 관리자 전용 버튼 */
.btn_admin:hover, a.btn_admin:hover {color:#e85a75}


/* 기본테이블 */
.tbl_wrap table {width:100%;border-collapse:collapse;border-spacing:0 5px;background:#fff;border-top:1px solid #ececec;border-bottom:1px solid #ececec} 
.tbl_wrap caption {padding:10px 0;font-weight:bold;text-align:left}
.tbl_head01 {margin:0 0 10px}
.tbl_head01 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head01 thead th {padding:20px 0;font-weight:normal;text-align:center;border-bottom:1px solid #ececec;height:40px}
.tbl_head01 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th, .tbl_head01 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head01 tbody th {padding:8px 0;border-bottom:1px solid #e8e8e8}
.tbl_head01 td {color:#666;padding:10px 5px;border-top:1px solid #ecf0f1;border-bottom:1px solid #ecf0f1;line-height:1.4em;height:60px;word-break:break-all}
.tbl_head01 tbody tr:hover td {background:#fafafa}
.tbl_head01 a:hover {text-decoration:underline}

.tbl_head02 {margin:0 0 10px}
.tbl_head02 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head02 thead th {padding:5px 0;border-top:1px solid #d1dee2;border-bottom:1px solid #d1dee2;background:#e5ecef;color:#383838;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
.tbl_head02 thead a {color:#383838}
.tbl_head02 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th, .tbl_head02 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head02 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff}
.tbl_head02 td {padding:5px 3px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff;line-height:1.4em;word-break:break-all}
.tbl_head02 a {}

/* 폼 테이블 */
.tbl_frm01 {margin:0 0 20px}
.tbl_frm01 table {width:100%;border-collapse:collapse;border-spacing:0}
.tbl_frm01 th {width:70px;padding:7px 13px;border:1px solid #e9e9e9;border-left:0;background:#f5f8f9;text-align:left}
.tbl_frm01 td {padding:7px 10px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:transparent}
.wr_content textarea,.tbl_frm01 textarea,.form_01 textarea, .frm_input {border:1px solid #d0d3db;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;
-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
}
.tbl_frm01 textarea {padding:2px 2px 3px}
.frm_input {height:40px}

.full_input {width:100%}
.half_input {width:49.5%}
.twopart_input {width:385px;margin-right:10px}
.tbl_frm01 textarea, .write_div textarea {width:100%;height:100px}
.tbl_frm01 a {text-decoration:none}
.tbl_frm01 .frm_file {display:block;margin-bottom:5px}
.tbl_frm01 .frm_info {display:block;padding:0 0 5px;line-height:1.4em}
.frm_info.add_info { margin-top: 10px !important; padding: 8px 12px; background: #fff; border: 1px solid #ddd; border-radius: 6px; line-height: 1.6; }
.btn_info_toggle { display: block; margin: 5px 0 0 21px; font-size: 12px; color: #3f51b5; background: none; border: none; cursor: pointer; text-decoration: underline; }

/*기본 리스트*/
.list_01 ul {border-top:1px solid #ececec}
.list_01 li {border-bottom:1px solid #ececec;background:#fff;padding:10px 15px;list-style:none;position:relative}
.list_01 li:nth-child(odd) {background:#f6f6f6}
.list_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.list_01 li:hover {background:#f9f9f9}
.list_01 li.empty_li {text-align:center;padding:20px 0;color:#666}

/*폼 리스트*/
.form_01 h2 {font-size:1.167em}
.form_01 li {margin-bottom:10px}
.form_01 ul:after,
.form_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.form_01 .left_input {float:left}
.form_01 .margin_input {margin-right:1%}
.form_01 textarea {height:100px;width:100%}
.form_01 .frm_label {display:inline-block;width:130px}

/* 자료 없는 목록 */
.empty_table {padding:50px 0 !important;text-align:center}
.empty_list {padding:20px 0 !important;color:#666;text-align:center}

/* 필수입력 */
.required, textarea.required {background-image:url('../img/require.png') !important;background-repeat:no-repeat !important;background-position:right top !important}

/* 테이블 항목별 정의 */
.td_board {width:80px;text-align:center}
.td_category {width:80px;text-align:center}
.td_chk {width:30px;text-align:center}
.td_date {width:60px;text-align:center}
.td_datetime {width:110px;text-align:center}
.td_group {width:80px;text-align:center}
.td_mb_id {width:100px;text-align:center}
.td_mng {width:80px;text-align:center}
.td_name {width:100px;text-align:left}
.td_nick {width:100px;text-align:center}
.td_num {width:50px;text-align:center}
.td_numbig {width:80px;text-align:center}
.td_stat {width:60px;text-align:center}

.txt_active {color:#5d910b}
.txt_done {color:#d82d4a}
.txt_expired {color:#ccc}
.txt_rdy {color:#8abc2a}

/* 새창 기본 스타일 */
.new_win {position:relative}
.new_win .tbl_wrap {margin:0 20px}
.new_win #win_title {font-size:1.3em;height:50px;line-height:30px;padding:10px 20px;background:#fff;color:#000;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);
-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);
box-shadow:0 1px 10px rgba(0,0,0,.1)}
.new_win #win_title .sv {font-size:0.75em;line-height:1.2em}
.new_win .win_ul {margin-bottom:15px;padding:0 20px}
.new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_ul li {float:left;background:#fff;text-align:center;padding:0;border:1px solid #e5e2f5;border-radius:5px;margin-left:5px}
.new_win .win_ul li:first-child {margin-left:0}
.new_win .win_ul li a {display:block;line-height:16px;padding:3px 13px;color:#7a75c9}
.new_win .win_ul .selected {background:#5c4fd8;border-color:#5c4fd8;position:relative;z-index:5}
.new_win .win_ul .selected a {color:#fff;font-weight:bold}
.new_win .win_desc {position:relative;margin:10px;border-radius:5px;font-size:1em;background:#e9ebef;color:#32353c;line-height:50px;text-align:left;padding:0 20px;border:1px solid #dce0e6}
.new_win .win_desc i {font-size:1.2em;vertical-align:baseline}
.new_win .win_desc:after {content:"";position:absolute;left:0;top:0;width:4px;height:50px;background:#8f96a3;border-radius:3px 0 0 3px}
.new_win .frm_info {font-size:0.92em;color:#919191}
.new_win .win_total {float:right;display:inline-block;line-height:30px;font-weight:normal;font-size:0.75em;color:#5c4fd8;background:#f6f6f6;padding:0 10px;border-radius:5px}
.new_win .new_win_con {margin:20px 0;padding:20px}
.new_win .new_win_con:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .new_win_con2 {margin:20px 0}
.new_win .btn_confirm:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_btn {text-align:center}
.new_win .cert_btn {margin-bottom:30px;text-align:center}
.new_win .btn_close {padding:0 20px;height:45px;overflow:hidden;cursor:pointer}
.new_win .btn_submit {padding:0 20px;height:45px;font-weight:bold;font-size:1.083em}

/* 검색결과 색상 */
.sch_word {color:#fff;background:#5c4fd8;padding:2px 5px 3px;line-height:18px;margin:0 2px}

/* 자바스크립트 alert 대안 */
#validation_check {margin:100px auto;width:500px}
#validation_check h1 {margin-bottom:20px;font-size:1.3em}
#validation_check p {margin-bottom:20px;padding:30px 20px;border:1px solid #e9e9e9;background:#fff}

/* 사이드뷰 */
.sv_wrap {position:relative;font-weight:normal}
.sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;font-size:0.92em;background:#333;
-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}
.sv_wrap .sv:before {content:"";position:absolute;top:-6px;left:15px;width:0;height:0;border-style:solid;border-width:0 6px 6px 6px;border-color:transparent transparent #333 transparent}
.sv_wrap .sv a {display:inline-block;margin:0;padding:0 10px;line-height:30px;width:100px;font-weight:normal;color:#bbb}
.sv_wrap .sv a:hover {background:#000;color:#fff}
.sv_member {color:#333}
.sv_on {display:block !important;position:absolute;top:23px;left:0px;width:auto;height:auto}
.sv_nojs .sv {display:block}

/* 페이징 */
.pg_wrap {clear:both;float:left;display:inline-block}
.pg_wrap:after {display:block;visibility:hidden;clear:both;content:""} 
.pg {text-align:center}
.pg_page, .pg_current {display:inline-block;vertical-align:middle;background:#eee;border:1px solid #eee}
.pg a:focus, .pg a:hover {text-decoration:none}
.pg_page {color:#959595;font-size:1.083em;height:30px;line-height:28px;padding:0 5px;min-width:30px;text-decoration:none;border-radius:3px}
.pg_page:hover {background-color:#fafafa}
.pg_start {text-indent:-999px;overflow:hidden;background:url('../img/btn_first.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_prev {text-indent:-999px;overflow:hidden;background:url('../img/btn_prev.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_end {text-indent:-999px;overflow:hidden;background:url('../img/btn_end.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_next {text-indent:-999px;overflow:hidden;background:url('../img/btn_next.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_start:hover,.pg_prev:hover,.pg_end:hover,.pg_next:hover {background-color:#fafafa}

.pg_current {display:inline-block;background:#5c4fd8;border:1px solid #5c4fd8;color:#fff;font-weight:bold;height:30px;line-height:30px;padding:0 10px;min-width:30px;border-radius:3px}

/* cheditor 이슈 */
.cheditor-popup-window *, .cheditor-popup-window :after, .cheditor-popup-window :before {
-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;
box-sizing:content-box;
}

/* Mobile화면으로 */
#device_change {display:block;margin:0.3em;padding:0.5em 0;border:1px solid #eee;border-radius:2em;background:#fff;color:#000;font-size:2em;text-decoration:none;text-align:center}

/* 게시판 / FAQ / Q&A 등 분류(#bo_cate): 줄바꿈 없이 한 줄 + 가로 스크롤 */
/* 스크롤바는 기본 숨김 → 스크롤 중에만 .bo_cate-scrollbar-active 로 표시 (theme tail.sub.php) */
#bo_cate,
#bo_list #bo_cate {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  overscroll-behavior-x: contain;
  scrollbar-width: none; /* Firefox: 기본 숨김 */
  -ms-overflow-style: none; /* IE/레거시 Edge */
}
#bo_cate::-webkit-scrollbar,
#bo_list #bo_cate::-webkit-scrollbar {
  height: 0;
}
#bo_cate.bo_cate-scrollbar-active,
#bo_list #bo_cate.bo_cate-scrollbar-active {
  scrollbar-width: thin;
  scrollbar-color: #b0b0b0 #f0f0f0; /* Firefox */
}
#bo_cate.bo_cate-scrollbar-active::-webkit-scrollbar,
#bo_list #bo_cate.bo_cate-scrollbar-active::-webkit-scrollbar {
  height: 6px;
}
#bo_cate.bo_cate-scrollbar-active::-webkit-scrollbar-track,
#bo_list #bo_cate.bo_cate-scrollbar-active::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}
#bo_cate.bo_cate-scrollbar-active::-webkit-scrollbar-thumb,
#bo_list #bo_cate.bo_cate-scrollbar-active::-webkit-scrollbar-thumb {
  background: #b0b0b0;
  border-radius: 3px;
}
#bo_cate ul,
#bo_list #bo_cate ul,
#bo_cate_ul {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  min-width: 100%;
  max-width: none !important;
  float: none !important;
}
#bo_cate ul:after,
#bo_list #bo_cate ul:after {
  content: none !important;
  display: none !important;
}
#bo_cate li,
#bo_list #bo_cate li {
  float: none !important;
  flex: 0 0 auto;
  white-space: nowrap;
}

