@charset "UTF-8";
@import "./tokens.css";
@import "./font.css";

/* ---- reset ---- */
* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
  box-shadow: var(--box-shadow-outline-inset);
  border-radius: var(--radius-small1);
}

button:focus,
button:focus-visible {
  outline: none;
  box-shadow: var(--box-shadow-outline-inset);
  border-radius: var(--radius-small1);
}


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,
input,
select,
textarea,
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;*/
  list-style: none;
  border-collapse: collapse;
  border-spacing: 0;
  resize: none;
  word-break: keep-all;
}

html,
body {
  position: relative;
  width: 100%;
  color: var(--text-basic);
  font-family: 'SCoreDream';
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  word-break: keep-all;
  word-wrap: break-word;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: var(--fs-base);
}

body {
  background-color: var(--background-white);
  font-size: var(--pc-fs-body-medium);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* 텍스트를 부드럽게 렌더링 */
  -moz-osx-font-smoothing: grayscale;
  /* macOS에서 텍스트 렌더링 최적화 */
  -webkit-overflow-scrolling: touch;
  /* 모바일에서 터치 스크롤 최적화 */
  /* padding-top: constant(safe-area-inset-top);
  padding-bottom: constant(safe-area-inset-bottom); 안전 영역 env과 동일하여 권장하지 않음 */
  padding-top: env(safe-area-inset-top);
  /* 안전 영역 상단 패딩 */
  padding-bottom: env(safe-area-inset-bottom);
  /* 안전 영역 하단 패딩 */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

::-moz-selection {
  background: var(--color-light-secondary-50);
  color: var(--color-light-gray-0);
}

::selection {
  background: var(--color-light-secondary-50);
  color: var(--color-light-gray-0);
}

body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
a,
button,
select,
ul,
li,
span,
em,
label,
:before,
:after {
  -webkit-text-size-adjust: none;
  font-family: inherit;
  line-height: var(--line-height-base);
  letter-spacing: -0.05rem;
  padding: 0;
}

pre {
  font-family: inherit;
}

input,
textarea,
a,
button,
select,
span,
label,
:before,
:after {
  font-size: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: var(--font-weight-bold);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
fieldset {
  border: 0;
}

fieldset {
  min-width: 100%;
}

img {
  max-width: 100%;
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

em,
address,
i {
  font-style: normal;
}

a,
button {
  transition: var(--transition-base);
}

a,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:visited.visited,
a:visited .visited {
  color: var(--link-visited);
}

button,
input[type=submit],
input[type=button] {
  overflow: visible;
  margin: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: button;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  resize: none;
}

/* label {
  cursor: pointer;
} */

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=text],
input[type=tel],
input[type=password],
input[type=file],
input[type=number],
input[type=email],
input[type=date],
input[type=search],
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

input[type=number] {
  -moz-appearance: textfield;
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear {
  display: none;
}

caption {
  position: static !important;
  margin: 0 !important;
}

table {
  table-layout: fixed;
  max-width: none;
  width: auto;
  min-width: 100%;
  border-collapse: collapse;
}

[role=button] {
  cursor: pointer;
}

.img img {
  min-width: 100%;
  max-width: 100%;
}

.img.bg-img {
  background-size: cover;
}

.blind,
hr,
.sr-only,
legend,
caption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.al {
  text-align: left !important;
}

.ac {
  text-align: center !important;
}

.ar {
  text-align: right !important;
}

.underline {
  text-decoration: underline;
  text-underline-offset: var(--font-underline-offset);
}

.break-all {
  word-break: break-all;
}

.svg-icon {
  display: inline-flex;
  width: var(--icon--size-large);
  height: var(--icon--size-large);
  background-color: var(--text-basic);
  forced-color-adjust: none;
}

.svg-icon.pure {
  display: inline-flex;
  width: var(--icon--size-large);
  height: var(--icon--size-large);
  background-color: var(--text-basic);
  background-color: transparent !important;
  forced-color-adjust: none;
}

.svg-icon.medium {
  width: var(--icon--size-medium);
  height: var(--icon--size-medium);
}

.svg-icon.small {
  width: var(--icon--size-small);
  height: var(--icon--size-small);
}

@media (max-width: 767px) {
  body {
    font-size: var(--mobile-fs-body-medium);
  }

  .pc-only {
    display: none !important;
  }

  .pc-only.read {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .mob-line {
    display: block;
    line-height: inherit;
  }
}

@media (min-width: 768px) {
  .mob-only {
    display: none !important;
  }

  .mob-only.read {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .pc-line {
    display: block;
    line-height: inherit;
  }
}

.text-point-primary {
  color: var(--text-primary);
}




/*------------------------------------------------ */

/***** skip *****/
#skip li {
  list-style: none;
}

#skip a {
  display: block;
  position: absolute;
  top: 0;
  margin-bottom: -1px;
  width: 100%;
  height: 1px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  overflow: hidden;
  z-index: 600;
}

#skip a:focus,
#skip a:active {
  height: 45px;
  line-height: 45px;
  color: #fff;
  background-color: #666;
}

/*** 포털, 워크 공통 스타일 적용 ***/

/*** 조회단 ***/
.search-wrap {}
.search-wrap .search-inner {position: relative; padding:20px 180px 15px 30px; border: 1px solid #c6c8cb; border-radius: 10px; background-color: #f5f5f5;}
.search-wrap .padr20 {padding-right: 20px;}
.search-wrap .search-con  {display: flex; justify-content: flex-start; margin-bottom: 5px;}
.search-wrap .search-con .item {width: 50%; margin-right: 20px; }
.search-wrap .search-con .item3 {width: 33%; margin-right: 0px; border: 0px solid #444565;}
.search-wrap .search-con .item1 {width: 100%;}

.search-wrap .search-con .title  {position: relative; display: inline-block; vertical-align: top; width: 120px; border: 0px solid #333; height: 42px; padding-left: 10px; padding-top: 10px; font-weight: 600; box-sizing: border-box;}
.search-wrap .search-con .title2 {position: relative; display: inline-block; vertical-align: top; height: 42px; padding-left: 10px; padding-top: 11px; font-weight: 600; box-sizing: border-box;  margin-right: 10px;}
.search-wrap .search-con .title3 {position: relative; display: inline-block; vertical-align: top; width: 130px; height: 42px; padding-left: 10px; padding-top: 11px; font-weight: 500; box-sizing: border-box; font-size: 16px;}
.search-wrap .search-con .title4 {position: relative; display: inline-block; vertical-align: top; width: 90px; height: 42px; padding-left: 10px; padding-top: 11px; font-weight: 600; box-sizing: border-box;}
.search-wrap .search-con .title5 {position: relative; display: inline-block; vertical-align: top; width: 220px; height: 42px; padding-left: 10px; padding-top: 11px; font-weight: 600; box-sizing: border-box;}
.search-wrap .search-con .title6 {position: relative; display: inline-block; vertical-align: top; width: 120px; height: 42px; padding-left: 10px; padding-top: 11px; font-weight: 600; box-sizing: border-box;}
.search-wrap .search-con .title7 {position: relative; display: inline-block; vertical-align: top; width: 100px; height: 42px; padding-left: 10px; padding-top: 11px; font-weight: 600; box-sizing: border-box;}
.search-wrap .search-con .list   {display: inline-block;}
.search-wrap .search-con label   {line-height: 20px!important; vertical-align:-2px; font-size:16px; font-weight:normal;}
.search-wrap .search-con .title3 label   {display: inline-block!important;max-width: 100%!important;margin-bottom: 5px!important;font-weight: 500!important;}
.search-wrap .search-con .title:before, .search-wrap .search-con .title2:before,.search-wrap .search-con .title3:before,.search-wrap .search-con .title4:before,.search-wrap .search-con .title5:before,.search-wrap .search-con .title6:before,.search-wrap .search-con .title7:before
{content: ""; display: block; position: absolute; left: 0px; top:24px;  width: 3px; height: 2px; background-color: #777;}

.search-wrap .search-con .list {display: inline-block;}
.search-wrap .input-text {height:40px; padding:0 10px; width:220px;}
.search-wrap .input-text2 {height:40px; padding:0 10px; width:240px;}
.search-wrap .board-search{width:242px;padding:0 10px; margin-right:10px; font-size:14px;}

.search-wrap .search-con .list input:focus{
  box-shadow: var(--box-shadow-outline-inset);
}

/*검색단*/
/* 2023-06-08 추가 */
/* 2025-09-11 주석처리
.search-con input[type="radio"]:focus,
input[type="radio"]:focus+label {
  border: 2px solid #727272;
}
*/
.input-text {
  height: 40px;
  padding: 0 10px;
  width: 240px;
}

/*인풋 텍스트 박스*/
.input-text80 {
  height: 40px;
  padding: 0 10px;
  width: 80px;
}

.input-text100 {
  height: 40px;
  padding: 0 10px;
  width: 100px !important;
}

.input-text120 {
  height: 40px;
  padding: 0 10px;
  width: 120px !important;
}

.input-text150 {
  height: 40px;
  padding: 0 10px;
  width: 150px !important;
}

.input-text180 {
  height: 40px;
  padding: 0 10px;
  width: 180px !important;
}

.input-text200 {
  height: 40px;
  padding: 0 10px;
  width: 200px !important;
}

.input-text220 {
  height: 40px;
  padding: 0 10px;
  width: 220px !important;
}

.input-text400 {
  height: 40px;
  padding: 0 10px;
  width: 550px !important;
}

.btn-search {
  display: inline-block;
  width: 80px;
  height: 40px;
  margin-left: -1px;
  color: #fff;
  border: 1px solid #224a85;
  border-radius: 2px;
  background-color: #224a85;
  transition: opacity .3s;
}

/* 포털관리자와 맞추기 위해 주석 후 추가
.btn-search:hover {background-color:#224a85;}
*/
.search-inner .btn-search-wrap>.btn-search:hover {
  opacity: .7;
}

.btn-refrish {
  width: 90px;
  height: 40px;
  margin-left: 3px;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: opacity .3s;
  font-size: 16px;
}

.btn-refrish:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #fff;
}

/*** 공통 ***/
.text-Blue {
  color: #2a66e7;
}

.requ-text {
  position: relative;
  padding-left: 10px;
}

.requ-text::before {
  content: "*";
  display: block;
  position: absolute;
  left: 0px;
  top: 3px;
  width: 10px;
  height: 10px;
  color: #1759dd;
}

.hide {
  display: none !important;
}

.icon {
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}

.textBlue {
  color: #777;
}

.textBlack {
  color: #333;
}

.textWhite {
  color: #555;
}

.disn {
  display: none;
}

.texterror {
  color: #a7b0cc;
}

label.error {
  position: relative;
  color: #2a66e7;
  margin-left: 10px;
}

/*필수입력 필드 안내문*/
/*label.error::before {content: "*"; display: block; position: absolute; left: -10px; top:3px; width: 5px; height: 5px;}*/

/* 필수 항목 표시 */
strong.required {
  display: inline-block;
  font-size: 0;
  margin: 0 5px;
  vertical-align: middle;
  padding-top: 5px;
}

strong.required:before {
  content: "*";
  color: #1759dd;
  font-size: 16px;
  font-weight: 400;
}

.txt-required {
  color: #1759dd !important;
}

/* 필수 항목을 텍스트만으로 표시 */


/***** search 공통 *****/
.board-search {
  width: 262px;
  padding: 0 26px;
  margin-right: 10px;
}

/*검색단*/
.td-select {
  width: 100%;
}

/*테이블*/
.td-inputtext {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

/*테이블 입력폼*/
.search-wh2 {
  width: 262px;
  padding: 0 26px;
  margin-right: 10px;
}

.search-wh3 {
  width: 130px;
  padding: 0 10px;
  margin-right: 0px;
}

.select-st1 {
  width:242px;padding:0 10px; /* margin-right:10px; */ font-size:14px;
  height: 40px;
  border: 1px solid #e5e5e5;
  padding: 0 10px;
  color: #222;
  background: url("../img/icon_select_arrow.png") no-repeat right 10px center #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-st1 option:disabled {
  color: #999;
}

.select-st1::-ms-expand {
  display: none;
}

select {
  height: 40px;
  border: 1px solid #e5e5e5;
  width: 240px;
  padding: 0 10px;
  color: #222;
  background: url("../img/icon_select_arrow.png") no-repeat right 10px center #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.board-search,
.search-text {
  height: 42px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

/*.btn-search{height:38px; border:1px solid #e5e5e5;vertical-align:middle;}*/

.search-inner .btn-search-wrap {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.btn-item .btnExcel{background: url(../img/new/common/ico_excel.png) no-repeat left 10px center; padding:8px 15px 8px 40px;}

.search-inner .btn-search-wrap .btn-search {
  width: 90px;
  height: 40px;
  margin-left: -1px;
  color: #fff;
  background-color: #224a85;
  border: 1px solid #224a85;
  transition: opacity .3s;
  font-size: 15px;
}

.search-inner .btn-search-wrap .btn-search:hover {
  background-color: #224a85;
  border: 1px solid #224a85;
}

.search-inner .btn-search-wrap .btn-refrish {
  width: 90px;
  height: 40px;
  margin-left: 0px;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: opacity .3s;
  font-size: 15px;
}

.search-inner .btn-search-wrap .btn-refrish:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #fff;
}

/* 2023-06-08 추가
.search-inner .btn-search-wrap button:focus {
  border: 2px solid #727272;
}

.search-inner .btn-search-wrap a:focus {
  border: 2px solid #727272;
}
*/

.btn-search-box2 {
  position: absolute;
  right: 20px;
  bottom: 22px;
}

.btn-search-box2 .btn-search {
  width: 90px;
  height: 40px;
  margin-left: -1px;
  color: #fff;
  background-color: #224a85;
  border: 1px solid #224a85;
  transition: opacity .3s;
  font-size: 16px;
}

.btn-search-box2 .btn-search:hover {
  background-color: #224a85;
}

.btn-search-box2 .btn-refrish {
  width: 90px;
  height: 40px;
  margin-left: 0px;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: opacity .3s;
  font-size: 16px;
}

.btn-search-box2 .btn-refrish:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #fff;
}

.btn-search-box2 .btn-reset {
  width: 90px;
  height: 40px;
  margin-left: 3px;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: opacity .3s;
  font-size: 16px;
}

.btn-search-box2 .btn-reset:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #fff;
}


/*** category-wrap ***/
.category-wrap {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 0px 0 20px 0;
}

.category-wrap .btn-tab {
  display: block;
  background-color: transparent;
  color: #555;
  width: 200px;
  padding: 10px 0px;
  margin: 0 auto;
  font-weight: 500;
}

/* tab */
.tab-area {
  position: relative;
  margin-top: 10px;
}

/* 2023-06-08 추가 */
.tab-area ul li.tab-tit a:focus {
  border: 2px solid #727272;
}

/* 기본탭 */
.mu-tab-box .mu-tab {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.mu-tab-box .mu-tab>li {
  flex: 1;
  margin: 0px 0 -1px -1px;
  border: 1px solid #cecece;
  background-color: #fff;
}

.mu-tab-box .mu-tab>li>a {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 50px;
  color: #707070;
  line-height: 1.4em;
  font-size: 18px;
  text-align: center;
  word-break: keep-all;
}

.mu-tab-box .mu-tab>li>a br {
  display: none;
}

/* PC에서는 안보임 */
.mu-tab-box .mu-tab>li>a>span {
  display: block;
  padding-top: 3px;
  color: #707070;
}

.mu-tab-box .mu-tab>li.active {
  border: 1px solid #005eb8;
  background-color: #0975da;
  z-index: 1;
}

.mu-tab-box .mu-tab>li.active>a,
.mu-tab-box .mu-tab>li.active>a>span {
  color: #fff;
  font-weight: 500;
}

/* 하위탭2 */
.mu-tab-box {
  margin-top: 1px;
  margin-left: 1px;
}

.mu-tab-box .mu-tab {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.mu-tab-box.sub-tab2 {
  background-color: #fff;
}

/* 라운드형탭이라 스크롤시 배경이 필요함 */
.mu-tab-box.sub-tab2 .mu-tab {
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
}

.mu-tab-box.sub-tab2 .mu-tab>li {
  flex: none;
  min-width: 195px;
  border: 2px solid #dde0e2;
  border-radius: 20px;
  background-color: #fff;
}

.mu-tab-box.sub-tab2 .mu-tab>li+li {
  margin-left: 5px;
}

.mu-tab-box.sub-tab2 .mu-tab>li>a {
  font-size: 14px;
  height: 40px;
}

.mu-tab-box.sub-tab2 .mu-tab>li.active {
  border: 2px solid #0975da;
  background-color: #fff;
  z-index: 1;
}

.mu-tab-box.sub-tab2 .mu-tab>li.active>a {
  color: #0975da;
  font-weight: 500;
}

/***** board-top TOTAL 과 버튼  *****/
.board-wrap {
  position: relative;
}

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.board-total {
  font-size: 15px;
  color: #777;
}

.board-total .title {
  margin-right: 7px;
  color: #333;
  font-size: 15px;
}

.board-total .icon {
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 8px;
  font-size: 16px;
  color: #ccc;
  vertical-align: top;
}

.board-total .board-length {}

.board-total .idx {
  font-weight: 500;
  color: #333;
}

.board-total .page-length {}

.board-top .alignL {
  position: relative;
}

.board-top .mu-item-group {
  position: absolute;
  left: 200px;
  top: 7px;
}

.board-wrap.flexST {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.board-wrap.flexST .h5_title {
  padding-top: 0;
}

.board-wrap.flexST .h5_title::before {
  top: 3px;
}

/* 2023-06-08 추가 */
.board-wrap .half-wrap button:focus {
  border: 2px solid #727272;
}

.board-wrap .half-wrap a:focus {
  border: 2px solid #727272;
}

.btn-item {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: flex-end;
}

.btn-item button {
 border: 1px solid #e5e5e5;
 padding: 0 15px;
 height : 40px;
 margin-left: 5px;
 background-color: #fff;
 color: #666;
 border: 1px solid #ccc;
 transition: color .3s, border-color .3s, background-color .3s;
 box-sizing: border-box;
 font-size: 14px;
}

.btn-item button:hover,
.border-wrap .btn_group button:active,
.border-wrap .btn_group button:visited {
  border: 1px solid rgb(82, 119, 223);
  color: #005eb8;
  /*background-color #2e3550; color: #fff; border:1px solid #2e3550;*/
}

.btn-item .btn-layerpop,
.btn-item .btn-layerpop:hover {
  border: 1px solid #4284ee;
  background-color: #4284ee;
  color: #fff;
  margin-top: 20px;
  margin-left: 20px;
  height: 35px;
}

.btn-item .btn_close {
  border: none !important;
  font-size: 24px;
  width: 40px;
}

.btn-item .btn_close:hover {
  color: #222;
}

.btn-item .btn_close:active .layerpop {
  display: none;
}

.board-top .word strong {
  color: #005eb8 !important;
}

.board-top .word {
  color: #555;
}

.board-top .word span {
  color: #333;
  font-weight: 600;
}

.btn-listop {
  border: none !important;
  height: 30px !important;
}

.btn-listop:hover {
  border: none !important;
}

/*** 화면 나누기 ***/
.half-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.half-wrap .item {
  width: 50%;
}

.half-wrap .item:first-child {
  margin-left: 0px;
}

.half-wrap .item:last-child {
  margin-left: 20px;
}

.half-wrap .item80 {
  width: 145%;
}

.half-wrap .item30 {
  width: 27% !important;
}

.half-wrap .item70 {
  width: 73% !important;
  margin-left: 30px;
}

.half-wrap .item40 {
  width: 40% !important;
}

.half-wrap .item60 {
  width: 60% !important;
  margin-left: 30px;
}


.half-wrap .tree-wrap {
  border: 1px solid #ddd;
  height: 350px;
}

.half-wrap .box-plR {
  padding-right: 50px;
}

.half-wrap .box-plL {
  padding-left: 50px;
}

.half-wrap .movie-btn-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50px;
  height: 50px;
  text-align: center;
}

.half-wrap .guide-chart {
  border: 1px solid #ddd;
  height: 500px;
}

.half-wrap .tree-input {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 10px 10px;
  border-radius: 2px;
}

.half-wrap .tree-input .filter {
  width: 100%;
  padding: 0px 10px;
  box-sizing: border-box;
}

/*** 기본 탭 메뉴 ***/
.tab-wrap {margin-top: 10px;}
.tab_type01 {border-bottom: 1px solid #1039A0;display: flex;}
.tab_type01 li {flex: 1;}
.tab_type01 li.on {position:relative;}
.tab_type01 li.on:before {position: absolute;content: '';background-color: #1039A0;width: calc(100% - 2px);height: 1px;bottom: -1px;left: 50%;box-sizing: border-box;transform: translateX(-50%);}
.tab_type01 li a {display: flex;align-items: center;justify-content: center;position: relative;border-top: 1px solid #e7e7e7;border-left: 1px solid #e7e7e7;border-right: 1px solid #e7e7e7;text-align: center; padding: 12px 20px; border-radius: 14px 14px 0 0;height: 57px;box-sizing: border-box;line-height: 1;}
.tab_type01 li a:hover, .tab_type01 li a.active {color: #fff;background-color: #1039A0;}
.tab_type01 li.on a, .tab_type01 li:hover a {border-bottom-color:transparent;font-weight:bold;color: #fff;background-color: #1039A0;border-color: #1039A0;font-weight: 500;}

@media (max-width: 1360px) {
    .tab_type01 li.long_txt a {padding: 12px;}
}

/* 0204 김원희 탭메뉴 추가 */
.tab-content {display: none; margin-top:20px; min-height: 600px;}
.tab-content.on {display: block;}
.tab_type01 li a:hover, .tab_type01 li.on a {color: #fff;}
.tab_type01 li a.active {color:#fff; font-weight: 500;}

.tab_type02 {position: relative; display:table; width:100%; border-left:1px solid #e7e7e7;position:relative; }
.tab_type02::after {content: ""; display: block; position: absolute; left: 0px; bottom: -2px; width: 100%; height: 1px; background-color: #e7e7e7;}
.tab_type02 li {float: left; height:40px; position: relative;}
.tab_type02 li a { display:block;position:relative;height:40px;padding: 0 13px; border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;line-height:40px;text-align:center;background-color: #fff}
.tab_type02 li a:after { content:''; display:block; position:absolute; top:0; right:0; bottom:0; width:1px; background-color:#e6e3df}
/*
.tab_type02 li::after {content:''; display:block; position:absolute; left:0; bottom:0; width:100%; height: 1px; background-color:#333; z-index: 5;}*/
.tab_type02 li.on a {border-bottom-color:#5c87d8; border-top:1px solid #5c87d8;z-index: 1;background-color: #5c87d8;color:#fff}
.tab_type02 li:hover a {border-bottom-color:#5c87d8; border-top:1px solid #5c87d8;z-index: 1;}
.tab_type02 li.on a:after, .tab_type02 li:hover a:after { content:''; display:block; position:absolute; top:0; right:0; bottom:-1px; width:1px; background-color:#5c87d8}
.tab_type02 li.on a:before, .tab_type02 li:hover a:before { content:''; display:block; position:absolute; top:0; left:0; bottom:-1px; width:1px; background-color:#5c87d8}



/** 탭 하단 검색어 **/
.keyword-search {
  margin-top: 10px;
}

.keyword-search .inner {
  background-color: #f7fbff;
  padding: 20px 25px;
  border: 1px solid #e1eaf4;
}

.keyword-search .search-item {
  display: flex;
  justify-content: start;
}

.keyword-search .item:first-child {
  width: 700px;
}

.keyword-search .search-item .title {
  position: relative;
  margin-right: 20px;
  display: inline-block;
  font-weight: 500;
  height: 35px;
  line-height: 35px;
  padding-left: 7px;
}

.keyword-search .search-item .title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 16px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.keyword-search .search-item .btn-search {
  width: 80px;
  height: 40px;
  margin-left: -1px;
  color: #fff;
  background-color: #224a85;
  transition: opacity .3s;
  border: 1px solid #224a85;
  border-radius: 2px;
}

.keyword-search .search-item .btn-search:hover {
  opacity: .7;
}

.keyword-search .search-item .btn-refrish {
  width: 80px;
  height: 40px;
  margin-left: -1px;
  color: #555;
  border: 0;
  background-color: #fff;
  margin-left: 3px;
  border: 1px solid #ccc;
}

.keyword-search .search-item .btn-refrish:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #FFF;
}

.keyword-search .search-item strong {
  display: inline-block;
  font-weight: 400;
  padding-top: 10px;
  margin-right: 5px;
  color: #777;
}

.keyword-search .search-item .stitle {
  color: #333;
}

.keyword-search .search-item .btn-keyword {
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  padding: 5px 10px;
  border-radius: 2px;
}

.keyword-search .search-item .btn-keyword:hover {
  border: 1px solid #aaa;
  color: #333;
}

.keyword-search .search-result {
  padding-top: 15px;
  padding-left: 72px;
}

.keyword-search mark {
  position: relative;
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px;
  color: #333;
  border-radius: 2px;
  background-color: #21a5b9;
  color: #fff;
  margin-right: 5px;
}

/* 2023-06-08 추가 */
.keyword-search .search-item button:focus {
  border: 2px solid #727272;
}

/*** 게시글 리스트 ***/
/*
.scroll-table {max-height: 644px; min-height: auto; overflow: hidden; overflow: hidden; overflow-x:auto; overflow-y:auto;}
*/
.board-list {
  width: 100%;
  border-top: 1px solid #0a194e;
}

.board-list thead th {
 height: 45px;
 font-size: 15px;
 font-weight: 500;
 border-bottom: 1px solid #e5e5e5;
 vertical-align: middle;
 white-space: nowrap;
 background-color: #f7f7f7;
}

.board-list thead .th-num {
  width: 60px;
}

.board-list thead .th-title {
  padding-left: 30px;
}

.board-list thead .thline {
  border-right: 1px solid #ddd;
}

.board-list tbody tr:hover td {
  background-color: #fafcff;
}

.board-list tbody td {
 height: 45px;
 font-size: 14px;
 color: #414141;
 border-bottom: 1px solid #e6ecf3;
 vertical-align: middle;
 text-align: center;
 padding: 0 10px;
}

.board-list tbody td a {
  text-align: left;
  color: #333;
}

.board-list tbody td a:hover {
  text-decoration: underline;
}

.board-list tbody td button {
  min-width: 45px;
  background-color: #eff7ff;
  color: #1065b4;
  border: 1px solid #abcbe9;
}

.board-list tbody td button:hover {
  background-color: #2e92ef;
  color: #fff;
  border: 1px solid #2e92ef;
}

.board-list tbody td button::before,
.board-list tbody td button:hover:before {
  display: none;
}

.board-list tbody td .alL {
  text-align: left;
  padding-left: 20px;
}

.icon-reply {
  display: inline-block;
  width: 30px;
  height: 17px;
  background: url("../img/icon-reply.png") no-repeat center top;
}

.border-line {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.board-list .board-text {
  padding: 10px 0;
  line-height: 25px;
}

.board-list .board-text strong {
  font-weight: 600;
  color: #333;
  display: block;
}

/*** 버튼 공통 ***/
.btn-movieup,
.btn-moviedown {
  width: 37px;
  height: 37px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.btn-td-delete {
  width: 60px;
  height: 37px;
  border: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
}

/*삭제*/
.btn-td-delete:hover,
.btn-td-pick:hover {
  border: 1px solid rgb(82, 119, 223);
  color: #005eb8;
}

.btn-td-pick {
  width: 60px;
  height: 37px;
  border: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
}

/*선택*/
.btn-defalut {
  padding: 0 10px;
  height: 40px;
  text-align: center;
  border: 1px solid #7589c0;
  background-color: #fff;
  color: #324e9c;
  border-radius: 2px;
}

.btn-movright {
  width: 65px;
  height: 40px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  color: #333;
  font-size: 20px;
}

/*** 테이블 컨텐츠 상세  ***/
.board-detail-info {
  width: 100%;
  border-top: 1px solid #d5e0ed;
}

.board-detail-info tbody th {
  height: 44px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #e6ecf3;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #fafcff;
}

.board-detail-info tbody td {
  height: 44px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #e6ecf3;
  padding: 5px 0 5px 10px;
}

.board-detail-info .gud-text {
  font-size: 14px;
  padding-top: 5px;
  color: #666;
}

.board-detail-info tbody td a {
  color: #333;
}

.board-detail-info tbody td a:hover {
  text-decoration: underline;
}

/*** 게시글 상세 ***/
.board-detail {
  width: 100%;
  border-top: 0px solid #222;
}

.board-topline {
  border-top: 1px solid #222;
}

.board-detail thead th .view-title {
  padding: 15px 30px;
  font-size: 17px;
  font-weight: 400;
  border-top: 1px solid #d5e0ed;
  border-bottom: 1px solid #d5e0ed;
  background-color: #fff;
  text-align: left;
}

.board-detail thead th.lineNone,
.board-detail thead td.lineNone {
  border-bottom: none;
}

.board-detail thead th,
.board-detail tbody th {
  height: 55px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #e6ecf3;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #fafcff;
}

.board-detail thead td {
  padding-left: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.board-detail tbody td {
  height: 55px;
  font-size: 15px;
  color: #444;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 10px;
}

.board-detail tbody td .view-cont {
  padding: 20px 50px 60px 0px;
  min-height: 300px;
}

.board-detail tbody td .view-cont p {
  word-break: break-all;
}

.board-detail tbody td a:hover {
  text-decoration: underline;
}

.video-wrap {
  display: flex;
  justify-self: start;
  padding: 20px 0px;
}

.video-wrap .item {
  position: relative;
  width: 200px;
  height: 220px;
  border: 1px solid #efefef;
  margin-left: 20px;
}

.video-wrap .item:first-child {
  margin-left: 0px;
}

.video-wrap .title {
  padding-left: 10px;
  margin-top: 10px;
}

.video-wrap .video-con {
  width: 100%;
  height: 150px;
  margin: 0 auto;
  overflow: hidden;
}

.video-wrap .data-info {
  position: absolute;
  left: 10px;
  bottom: 15px;
  color: #777;
  font-size: 13px;
}

.video-wrap .data-info dt,
.video-wrap .answer-info dt {
  display: none;
}

.video-wrap .answer-info {
  position: absolute;
  right: 10px;
  bottom: 15px;
  color: #777;
  font-size: 13px;
}

.video-wrap .answer-info dl {
  display: inline-block;
  margin-left: 10px
}

.video-wrap .answer-info em {
  margin-left: 5px;
}

/*** 이전글  다음글 ***/
.view-bottom {}

.view-ctrl {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.view-ctrl .item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.view-ctrl .item .link {
  display: flex;
}

.view-ctrl .item .title {
  display: flex;
  align-items: center;
  position: relative;
  width: 170px;
  padding: 20px 0 20px 30px;
  font-size: 16px;
  color: #222;
  line-height: 1;
}

.view-ctrl .item .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 15px;
  background-color: #e5e5e5;
  transform: translateY(-50%);
}

.view-ctrl .item .title .icon {
  display: inline-block;
  margin-right: 35px;
  font-size: 13px;
  color: #ccc;
}

.view-ctrl .item .text {
  width: calc(100% - 170px);
  overflow: hidden;
  padding: 20px 20px 20px 30px;
  font-size: 16px;
  color: #999;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
}

.view-ctrl .item .link:hover .text {
  text-decoration: underline;
}

/*** 댓글 등록 / 글 등록 ***/
.comment-wrap {}

.comment-wrap .write {
  display: flex;
  justify-content: space-between;
  border-top: 0px solid #e5e5e5;
  border-bottom: 0px solid #e5e5e5;
  padding: 15px 15px;
  background-color: #efefef;
  border-radius: 2px;
  overflow: hidden;
}

.mu-area {
  width: 92%;
  max-width: 92%;
  min-height: 80px;
  line-height: 1.6;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
  resize: none;
  overflow: auto
}

.mu-area:hover,
.mu-area:active,
.mu-area:focus {
  border-color: #333;
}

.btn_comm {
  height: 80px;
  width: 100px;
  background-color #4271d9;
  color: #fff;
  border-radius: 2px;
}

.comment-wrap .write2 {
  border-top: 0px solid #e5e5e5;
  border-bottom: 0px solid #e5e5e5;
  padding: 20px 20px;
  background-color: #efefef;
  border-radius: 2px;
}

.text-area {
  width: 100%;
  max-width: 98%;
  min-height: 60px;
  line-height: 1.6;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background-color: #fff;
  resize: none;
  overflow: auto
}


/***** 이미지 게시글 *****/
.photo-wrap {
  margin-top: 10px;
}

.photo-wrap .photo-con {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.photo-wrap .photo-con .item {
  position: relative;
  width: 23%;
  height: 350px;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin-left: 20px;
}

.photo-wrap .photo-con .item:hover {
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, .1);
  border: 1px solid #ccc;
}

.photo-wrap .photo-con .item a {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 350px;
}

.photo-wrap .photo-con .item:first-child {
  margin-left: 0px;
}

.photo-wrap .photo-con .item:nth-child(5n),
.photo-wrap .photo-con .item:nth-child(9n) {
  margin-left: 0px;
  margin-top: 20px;
}

.photo-wrap .photo-con .item:nth-child(6n),
.photo-wrap .photo-con .item:nth-child(7n),
.photo-wrap .photo-con .item:nth-child(8n),
.photo-wrap .photo-con .item:nth-child(10n),
.photo-wrap .photo-con .item:nth-child(11n),
.photo-wrap .photo-con .item:nth-child(12n) {
  margin-top: 20px;
}

.photo-wrap .photo-con .imgbox {
  height: 250px;
  width: 100%;
  background-color: #efefef;
  overflow: hidden;
}

.photo-wrap .photo-con .imgbox img {
  width: auto;
  height: 250px;
}

.photo-wrap .photo-con .title {
  padding-left: 20px;
  margin-top: 20px;
}

.photo-wrap .photo-con .data-info {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #777;
}

.photo-wrap .photo-con .data-info dt,
.photo-wrap .photo-con .answer-info dt {
  display: none;
}

.photo-wrap .photo-con .answer-info {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #777;
}

.photo-wrap .photo-con .answer-info dl {
  display: inline-block;
  margin-left: 20px
}

.photo-wrap .photo-con .answer-info em {
  margin-left: 5px;
}


/***** 게시글 페이징 *****/
.pagenation {}

.pagenation .page-num {
  display: flex;
  justify-content: center;
  margin: 0 -2.5px;
}

/* 디자인 공통 2022-12-16  margin-right 추가 */
.pagenation .page-num .item {
  padding: 0 2.5px;
  width: 42px;
  margin-right: 0px;
}

.pagenation .page-num .item:last-child {
  margin-left: 0px;
}

.pagenation .page-num .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 15px;
  color: #999;
  border: 1px solid #e5e5e5;
  transition: color .3s, border-color .3s, background-color .3s;
}

.pagenation .page-num .num:hover,
.pagenation .page-num .item.active .num {
  color: #fff;
  border-color: #777;
  background-color: #777;
}

.pagenation .page-num .icon {
  margin-top: 0px;
}

.pagenation .page-num .prev .icon {
  transform: rotate(180deg);
}

/* 2023-06-08 추가 */
/* .pagenation .page-num a:focus {
  border: 2px solid #727272;
} */


/***** 레이어 팝업 *****/
.prive-pop2 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background-color: #fff;
  box-shadow: 3px 5px 10px 5px rgba(0, 0, 0, .1);
  border: 0px solid #ccc;
  border-radius: 5px;
}

.prive-pop2 .pop-wrap {
  position: relative;
  padding: 20px 30px;
}

.prive-pop2 .pop-wrap .pop-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.prive-pop2 .pop-wrap .pop-close button {
  background-color: #fff;
  font-size: 20px;
}

.prive-pop2 .pop-wrap .pop-close button:hover {
  color: #000;
}

.prive-pop2 .pop-wrap .pop-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.prive-pop2 .pop-scroll {
  width: 100%;
  height: 610px;
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: auto;
  margin-top: 20px;
}

.prive-pop2 .pop-inner {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0px 10px;
}

.prive-pop2 .data-info {
  margin-top: 10px;
  height: 45px;
}

.prive-pop2 .data-info dl {
  float: left;
  margin-right: 20px;
  color: #777;
}

.prive-pop2 .data-info dt {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  padding-left: 8px;
}

.prive-pop2 .data-info dt:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 2px;
  height: 2px;
  background-color: #aaa;
}

.prive-pop2 .data-info dd {
  display: inline-block;
}

.prive-pop2 .img-wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 300px;
}

.prive-pop2 .img-wrap img {
  width: 100%;
  height: 300px;
}

.prive-pop2 .reply-wrap {
  border-top: 1px solid #ddd;
  margin-bottom: 10px;
  margin-top: 10px;
}

.prive-pop2 .reply-wrap ul {
  margin-top: 5px;
}

.prive-pop2 .reply-wrap li {
  display: block;
  padding: 5px 3px;
  color: #777;
}

.prive-pop2 .pop-scroll::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

.prive-pop2 .pop-scroll::-webkit-scrollbar-thumb {
  background-color: #c4c4da;
  border-radius: 10px;
}

.prive-pop2 .pop-scroll::-webkit-scrollbar-track {
  background-color: rgb(248, 248, 248);
}

/***** 파일첨부 *****/
.file_input label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  width: 90px;
  height: 42px;
  background-color: rgb(119, 119, 119);
  border-radius: 2px;
  color: #fff;
  text-align: center;
  line-height: 42px;
  margin-bottom: 0px;
}

.file_input label input {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  top: -2px;
}

.file_input input[type=text] {
  vertical-align: top;
  display: inline-block;
  width: 750px;
  height: 42px;
  line-height: 28px;
  font-size: 14px;
  padding-left: 10px;
  border: 0;
  border: 1px solid #ddd;
  background-color: #fff !important;
}

/***** 상단 가이드 *****/
.guide-info {
  position: relative;
  border: 1px solid #d6dbe0;
  padding: 20px 30px 15px 160px;
  border-radius: 2px;
  background-color: #f1f5f8;
}

.guide-info span {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/guide-img.png) no-repeat 25px center #fff;
}

.guide-info li {
  position: relative;
  display: block;
  margin-bottom: 5px;
  padding-left: 10px;
}

.guide-info li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 9px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.scroll_box {
  overflow: auto;
  border: 1px solid #ccc;
  z-index: 1500;
}

.disn {
  display: none;
}

/* 컨텐츠 트리 */
.nav_tree {
  margin: 0;
  padding: 20px 20px 0 20px;
  font-size: 15px;
  background-color: #fff;
  min-width: 200px;
  z-index: 1;
  *zoom: 1;
}

/* 왼쪽메뉴 트리 */
.nav_tree .folder_box {
  padding: 0px 0 0 0px;
  margin: 0px 0 0 0;
}

.left_tree .menu_fold ul.h4_menu,
.nav_tree .menu_fold ul.h4_menu,
.nav_tree .menu_fold ul.h5_menu {
  display: none;
}

.left_tree .menu_fold button,
.nav_tree .menu_fold button {
  background: url(../img/btn_tree_collapse.gif) no-repeat 0 0;
}

.folder_box h3 {
  padding: 0px;
  margin: 5px 0 5px 0;
  background: none;
  font-size: 15px;
  font-weight: 500;
}

.folder_box h3 a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
}

.folder_box h3 a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box h3 button {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  width: 13px;
  height: 13px;
  border: none;
  background: url(../img/btn_tree_collapse.gif) no-repeat 0 -13px;
  cursor: pointer;
}

.folder_box .h4_menu button {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  width: 13px;
  height: 13px;
  border: none;
  background: url(../img/btn_tree_collapse.gif) no-repeat 0 -13px;
  cursor: pointer;
}

.folder_box .h4_menu {
  padding: 0 0 0 18px;
  margin: 0;
}

.folder_box .h4_menu li {
  margin: 0 0 5px 0;
}

.folder_box .h4_menu li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
}

.folder_box .h4_menu li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box .h5_menu {
  padding: 0 0 0 36px;
  margin: 0;
}

.folder_box .h5_menu li {
  margin: 0 0 5px 0;
}

.folder_box .h5_menu li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
}

.folder_box .h5_menu li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box .h6_menu {
  padding: 0 0 0 54px;
  margin: 0;
}

.folder_box .h6_menu li {
  margin: 0 0 5px 0;
}

.folder_box .h6_menu li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
}

.folder_box .h6_menu li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box .navi-tree {
  padding: 0 0 0 22px;
  margin: 0;
}

.folder_box .navi-tree li {
  margin: 0 0 7px 0;
}

.folder_box .navi-tree li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
  margin-bottom: 3px;
}

.folder_box .navi-tree li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box .navi-tree1 {
  padding: 0 0 0 15px;
  margin: 0;
}

.folder_box .navi-tree1 li {
  margin: 0 0 7px 0;
}

.folder_box .navi-tree1 li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
  margin-bottom: 3px;
}

.folder_box .navi-tree1 li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

/* 왼쪽메뉴 트리 */

/*** 회원가입정보  ***/
.agree-wrap {
  margin-bottom: 30px;
}

.agree-item {
  border: 1px solid #ddd;
  background-color: #f7f7f7;
  padding: 10px 10px;
  margin-bottom: 20px;
  color: #777;
  line-height: 25px;
  border-radius: 2px;
}

.agree-item h3 {
  margin-top: 10px;
  padding-left: 10px;
  font-size: 18px;
  color: #333;
}

.agree-item h4,
.agree-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.agree-item h5 {
  margin-top: 10px;
}

.agree-item p {
  margin-top: 10px;
}

.agree-scroll {
  margin-top: 10px;
  max-height: 300px;
  min-height: auto;
  overflow: hidden;
  overflow: hidden;
  overflow-x: auto;
  overflow-y: auto;
  padding: 20px 20px;
  background-color: #fff;
}

/*** 공통팝업 ***/
.popcom-wrap {}

.popcom-wrap .header {
  background-color: salmon;
}

.popcom-wrap .pop-content {
  background-color: rgb(74, 49, 185);
}

.pop-size {
  padding: 0 20px 30px 20px;
  width: 1200px;
  margin: 0 auto;
}


/** 실행버튼 **/
.btn-wrap {
  text-align: right;
}

.btn-alC {
  text-align: center !important;
}

.btn-wrap .btn-board-list {
  display: inline-block;
  min-width: 70px;
  padding: 0px 10px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border-radius: 2px;
  border: 1px solid #ddd;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap .btn-board-list .icon {
  vertical-align: top;
  padding-top: 10px;
}

.btn-wrap .btn-board-list:hover {
  color: #fff;
  border: 1px solid rgb(40, 58, 138);
  background-color: rgb(40, 58, 138);
  border-radius: 2px;
}

.btn-wrap .btn-size4 {
  width: 110px;
}

.btn-wrap .close {
  background-color: #696d75;
  color: #fff;
  border: none;
}

.btn-wrap .close:hover {
  background-color: #525968 !important;
  border: 1px solid #525968;
}

.btn-wrap button {
  display: inline-block;
  background-color: #fff;
  width: 90px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border-radius: 2px;
  border: 1px solid #ddd;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap button .icon {
  vertical-align: top;
  padding-top: 7px;
}

.btn-wrap button:hover {
  color: #fff;
  border: 1px solid rgb(40, 58, 138);
  background-color: rgb(40, 58, 138);
  border-radius: 2px;
}

.btn-wrap a {
  display: inline-block;
  background-color: #fff;
  min-width: 70px;
  padding: 0px 10px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border-radius: 2px;
  border: 1px solid #ddd;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap a .icon {
  vertical-align: top;
  padding-top: 10px;
}

.btn-wrap a:hover {
  color: #fff;
  border: 1px solid rgb(40, 58, 138);
  background-color: rgb(40, 58, 138);
  border-radius: 2px;
}

/***** 일정검색 *****/
.date-con {}

.ax5-group-picker .date,
.input-group .date {
  width: 115px !important;
}

.date-first {
  position: relative;
  display: inline-block;
}

.date-last {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.date-last::before {
  content: "~";
  width: 20px;
  height: 20px;
  text-align: center;
  position: absolute;
  left: -20px;
  top: 10px
}

.btn-calendar {
  position: absolute;
  top: 3px;
  right: 5px;
  background-color: transparent;
}

.btn-calendar {
  width: 25px;
  /* height: 20px; */
  line-height: 20px;
  margin-left: -1px;
  font-size: 22px;
  color: rgb(120, 139, 165);
  background-color: #fff;
  transition: opacity .3s;
   pointer-events:auto;
}

.btn-month {
  width: 50px;
  height: 41px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-weight: 400;
}

.btn-month:hover {
  border: 1px solid #666;
}

/* 포커스 링 명확히 */
 #searchBizYr:focus, #searchBizYr:focus-visible{
 outline: none;
 box-shadow: var(--box-shadow-outline-inset);
 border-radius: var(--radius-small1);
 }
 /* AX5 레이어 가림 방지 */
 .ax5-ui-picker { z-index:1000 !important; }

/*** 레이어 팝업 ***/
.layerpop {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 500;
  width: 1000px;
  height: 990px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px 10px 20px 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 10px 10px rgb(0, 0, 0, 0.08);
}

.pop-scroll {
  max-height: 990px;
  min-height: auto;
  overflow: hidden;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.layerpop h5,
.layerpop h6 {
  font-weight: 600;
}

.layerpop {
  display: none;
}

.layerpop.on {
  display: block;
}

/* 김원희 0210 */
.layerpop {
  overflow-y: auto;
}

.table-wrap .scroll-tb {
  transition: max-height .2s;
}

.table-wrap.active .scroll-tb {
  max-height: 450px;
  overflow-y: auto;
}

.btn-item .btn-listop.on i.icon {
  transform: rotate(180deg);
}

.table-wrap.active .pagenation {
  display: block;
}

.table-wrap .pagenation {
  display: none;
}

.table-wrap .pop-paging .page-num .num {
  width: 25px;
  height: 25px;
}

.table-wrap .pop-paging .page-num i.icon {
  margin-top: 0;
}

/*** 데이터네비게이션  리스트 ***/
.scroll-tb {
  max-height: 125px;
  min-height: auto;
  overflow: hidden;
  overflow: hidden;
  overflow-x: auto;
  overflow-y: auto;
}

.laypop-list {
  width: 100%;
}

.laypop-list thead tr:nth-child(1) {
  position: sticky;
  top: 0px;
}

.laypop-list thead tr:nth-child(2) {
  position: sticky;
  top: 40px;
}

.laypop-list thead th {
  position: sticky;
  top: 0px;
  height: 40px;
  font-size: 15px;
  font-weight: 500;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #fafdff;
}

.laypop-list thead th::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #d5e0ed;
}

.laypop-list thead th::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #d5e0ed;
}

.laypop-list tbody td {
  height: 40px;
  font-size: 15px;
  color: #666;
  border-bottom: 1px solid #d5e0ed;
  vertical-align: middle;
  text-align: center;
  padding: 0 10px;
}

.laypop-list tbody td a {
  text-align: left;
  color: #333;
  font-weight: 600;
}

.laypop-list tbody td a:hover {
  text-decoration: underline;
}

/*** 데이터네비게이션 상세 리스트 ***/
.laypop-list-detail {
  width: 100%;
  border-top: 1px solid #d5e0ed;
  table-layout: fixed;
}

.laypop-list-detail tbody th {
  height: 30px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #d5e0ed;
  vertical-align: middle;
  white-space: nowrap;
  background: #f5f7fa;
}

.laypop-list-detail tbody td {
  height: 30px;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  border-bottom: 1px solid #d5e0ed;
  padding: 5px 0 5px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.laypop-list-detail tbody td a {
  color: #333;
}

.laypop-list-detail tbody td a:hover {
  text-decoration: underline;
}

.laypop-list-detail tbody td .btn_down {
  border: 1px solid #ddd;
  text-align: center;
  padding: 5px 10px;
  background: #fff;
  font-size: 13px;
}

.laypop-list-detail tbody td .btn_down:hover {
  border: 1px solid rgb(82, 119, 223);
  background: #f3f9fd;
  color: #005eb8;
}

.keyword-icon {
  background: #4dbab1;
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  text-align: center;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 3px;
  margin-top: 2px;
  border-radius: 2px;
}

.td-select {
  margin-top: 10px;
}

.td-select select {
  height: 40px;
  width: 100%;
}

.lineBox {
  border: 1px solid #ddd;
}

.data-tree {
  border-right: 1px solid #ddd;
}

.tree_top {
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 15px 20px;
}

.tree_top .title {
  font-weight: 600;
}

.tree_top .btn_close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 52px;
  font-size: 25px;
  font-weight: 600;
  padding-top: 5px;
  background: #fff;
  border-left: 1px solid #ddd;
}

.expan {
  position: relative;
}

.expan .btn_open {
  position: absolute;
  left: -50px;
  top: 0px;
  width: 50px;
  height: 53px;
  font-size: 25px;
  font-weight: 600;
  padding-top: 5px;
  background: #fff;
  border: 1px solid #ddd;
  border-left: none;
  border-top: none;
}

.tree-chart {
  overflow: hidden;
}

.tree-nav {
  padding: 15px 20px 20px 20px;
}

.tree-dpth {
  padding-left: 27px;
}

.tree-checkbox .tree_line {
  position: absolute;
  left: -10px;
  top: 9px;
  z-index: 20;
  width: 50px;
  height: 50px;
  background: url(../img/tree/tree_line4.png) no-repeat left top;
}

.ckmb10 {
  margin-bottom: 10px;
}

.folder_box2 {}

.folder_box2 h3 {
  padding: 0px;
  margin: 5px 0 5px 0;
  background: none;
  font-size: 15px;
  font-weight: 500;
}

.folder_box2 h3 a {
  color: #333;
}

.expan .btn_open {
  display: none;
}

.expan.on .btn_open {
  display: block;
}

.expan.on {
  width: calc(100% - 100px) !important;
  margin-right: 50px;
  margin-left: 50px;
}

.expan20.on {
  width: calc(100% - 40px) !important;
  margin-right: 0px;
  margin-left: 20px;
}

.side-item.off {
  width: 0 !important;
  overflow: hidden;
}

.layerpop.ex {
  width: 1335px !important;
}

.layerpop.ex .btn-item .expan_btn,
.layerpop .btn-item .compress_btn {
  display: none;
}

.layerpop.ex .btn-item .compress_btn {
  display: block;
}

.expan.on .compress_btn {
  display: block;
}

.expan.on .expan_btn {
  display: none;
}

.expan .compress_btn {
  display: none;
}


/*******************************************************  수정 적용하고 있음 ********************************************/

.page-tab {
  padding: 0 20px;
}

.page-tab .tab-list {
  display: flex;
  justify-content: center;
  margin: 0 -2.5px;
}

.page-tab .tab-list .item {
  width: 100%;
  max-width: 210px;
  height: 65px;
  padding: 0 2.5px;
}

.page-tab .tab-list .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 17px;
  color: #222;
  border: 1px solid #e5e5e5;
  transition: color .3s, border-color .3s, background-color .3s, box-shadow .3s;
}

.en-page .page-tab .tab-list .link {
  text-align: center;
}

.page-tab .tab-list .link:hover,
.page-tab .tab-list .link.active {
  color: #fff;
  border-color: #333;
  background-color: #333;
  box-shadow: 0 0 15px rgba(0, 0, 0, .5);
}

/***** step-wrap *****/
.step-wrap {
  padding: 0 20px;
}

.step-wrap .step-list {
  display: flex;
  justify-content: center;
  margin: 0 -2.5px;
}

.step-wrap .step-list li {
  position: relative;
  margin-right: 40px;
}

.step-wrap .step-list li:last-child {
  margin-right: 0px;
}

.step-wrap .step-list li .step-arr {
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 42px;
  text-align: center;
  font-size: 25px;
  color: #aaa;
}

.step-wrap .step-list li .step-check {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 42px;
  text-align: center;
  font-size: 25px;
  color: #fff;
}

.step-wrap .step-list .item {
  width: 100%;
  max-width: 200px;
  height: 65px;
  padding: 0 2.5px;
}

.step-wrap .step-list .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 17px;
  color: #222;
  border: 1px solid #e5e5e5;
  transition: color .3s, border-color .3s, background-color .3s, box-shadow .3s;
}

.step-wrap .step-list .link:hover,
.step-wrap .step-list .link.active {
  color: #fff;
  border-color: rgb(7, 73, 172);
  background-color: rgb(7, 73, 172);
  box-shadow: 0 0 15px #7a7b8d;
}

/***** info-wrap *****/
.info-wrap {
  padding: 0 20px;
}

.info-wrap .info-list {
  display: table;
  width: 100%;
  border: 1px solid #ddd;
  padding: 20px 20px;
}

.info-wrap .info-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 10px;
}

.info-wrap .info-list li:last-child {
  margin-bottom: 0px;
}

.info-wrap .info-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 3px;
  background: #333;
}

.ability-wrap {}

/* 타이틀 부분 각 구분 지어 준다.*/
.ability-wrap .title {
  font-size: 28px;
  line-height: 1.4em;
}

.border-wrap .title {
  font-size: 15px;
  line-height: 1.4em;
}

.ability-wrap .mtitle,
.border-wrap .mtitle {
  position: relative;
  font-size: 22px;
  line-height: 1.4em;
  padding-left: 30px;
}

.border-wrap .mtitle::before,
.ability-wrap .mtitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-45%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url(../img/icon_mtitle.png) no-repeat 9px 6px #022494;
}

.ability-wrap .stitle,
.border-wrap .stitle {
  position: relative;
  font-size: 16px;
  line-height: 1.4em;
  padding-left: 25px;
}

.border-wrap .stitle::before,
.ability-wrap .stitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-45%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url(../img/icon_stitle.png) no-repeat 7px 5px #001453;
}

.essen-box {
  display: flex;
  justify-content: end;
  margin-top: -20px;
}

.essen-box .essen-text {
  position: relative;
  padding-left: 10px;
}

.essen-box .essen-text::before {
  content: "*";
  display: block;
  position: absolute;
  left: 0px;
  top: 5px;
  width: 10px;
  height: 10px;
  color: #e31d1a;
}

.stitle-list {
  display: table;
  width: 100%;
  padding: 20px 20px;
}

.stitle-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 10px;
}

.stitle-list li:last-child {
  margin-bottom: 0px;
}

.stitle-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 3px;
  background-color: #333;
}

.ability-wrap .img-wrap {
  position: relative;
  height: 500px;
  padding: 20px 20px;
  border: 1px solid #e5e5e5;
}

/***** 공통 버튼 *****/
.btn-add {
  width: 70px;
  height: 44px;
  margin-left: 2px;
  color: #333;
  background-color: #fff;
  border: 1px solid #aaa;
  transition: color .3s, border-color .3s, background-color-color .3s;
}

.btn-add:hover {
  color: #fff;
  border: 1px solid #222;
  background-color: #222;
}

.btn-download {
  width: 110px;
  height: 44px;
  margin-left: 2px;
  color: #333;
  background-color: #fff;
  border: 1px solid #aaa;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-download:hover {
  color: #fff;
  border: 1px solid #222;
  background-color: #222;
}


/***** member-icon *****/
.member-icon {
  margin: 0 auto;
  width: 700px;
  padding-top: 50px;
}

.member-icon ul {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.member-icon ul::before {
  content: "";
  display: block;
  position: absolute;
  left: 154px;
  top: 50%;
  transform: translate(-50% -50%);
  width: 121px;
  height: 1px;
  background-color: #efefef;
}

.member-icon ul::after {
  content: "";
  display: block;
  position: absolute;
  left: 429px;
  top: 50%;
  transform: translate(-50% -50%);
  width: 121px;
  height: 1px;
  background-color: #efefef;
}

.member-icon ul li {
  height: 150px;
  width: 150px;
}

.member-icon ul li span {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ddd;
  border: 2px solid #e9e9e9;
}

.member-icon ul li .member-img1 {
  background: url(../img/member_img1.png) no-repeat center center #fff;
}

.member-icon ul li .member-img2 {
  background: url(../img/member_img2.png) no-repeat center center #fff;
}

.member-icon ul li .member-img3 {
  background: url(../img/member_img3.png) no-repeat center center #fff;
}

.member-step {
  margin: 0 auto;
  padding-top: 30px;
}

.member-step ul {
  display: flex;
  justify-content: space-between;
}

.member-step ul li {
  position: relative;
  width: 210px;
  height: 95px;
  padding-left: 110px;
  border: 1px solid #ddd;
  padding-top: 20px;
  margin-right: 30px;
  border-radius: 10px 10px;
}

.member-step ul li:last-child {
  margin-right: 0PX;
}

.member-step ul li .step {
  position: relative;
  display: block;
  font-size: 16px;
  color: #555;
  font-weight: 400;
}

.member-step ul li.active {
  position: relative;
}

.member-step ul li.active::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  height: 3px;
  width: 150px;
  background-color: #5eaaf1;
}

/*
.member-step ul li .step::before {content: ""; display: block; position: absolute; left: 11%;  top:-10px; transform: translateX(-50%); height: 3px; width: 30px; background: #1c51c4; }*/
.member-step ul li span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.member-step ul li .arr {
  position: absolute;
  right: -20px;
  top: 49%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  font-size: 20px;
  color: #777;
}

.member-step ul li .step-img {
  position: absolute;
  left: 20px;
  top: 10px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.member-step ul li .step-img1 {
  background: url(../img/step_img1.png) no-repeat center center #fff;
}

.member-step ul li .step-img2 {
  background: url(../img/step_img2.png) no-repeat center center #fff;
}

.member-step ul li .step-img3 {
  background: url(../img/step_img3.png) no-repeat center center #fff;
}

.member-step ul li .step-img4 {
  background: url(../img/step_img4.png) no-repeat center center #fff;
}

.member-step ul li .step-img5 {
  background: url(../img/step_img5.png) no-repeat center center #fff;
}

.member-step ul li .step-img6 {
  background: url(../img/step_img6.png) no-repeat center center #fff;
}

.channel-wrap {
  margin: 0 auto;
  width: 1000px;
  padding-top: 100px;
  margin-bottom: 100px;
}

.channel-wrap ul {
  display: flex;
  justify-content: space-between;
}

.channel-wrap ul li {
  position: relative;
  height: 100px;
  width: 250px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 5px 5px;
  padding-top: 20px;
  padding-left: 50px;
  box-sizing: border-box;
  margin-right: 30px;
}

.channel-wrap ul li a {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 100%;
}

.channel-wrap ul li:last-child {
  margin-right: 0px;
}

.channel-wrap ul li .step {
  position: relative;
  display: block;
  font-size: 16px;
  color: #555;
}

.channel-wrap ul li span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.channel-wrap ul li .channel-img {
  position: absolute;
  left: 20px;
  top: 10px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.channel-wrap ul li .channel-img1 {
  background: url(../img/channel-img2.png) no-repeat center center #fff;
}

.security-wrap {
  display: flex;
  justify-content: space-between;
}

.security-wrap div {
  position: relative;
  width: 50%;
  border: 1px solid #ddd;
  padding: 190px 0px 30px 0px;
  text-align: center;
  border-radius: 2px;
}

.security-wrap div:last-child {
  margin-left: 30px;
}

.security-wrap .img-box {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background-color: #f5f5f5;
  overflow: hidden;
  border-radius: 50%;
}

.security-wrap .img-box img {
  vertical-align: middle;
  padding-top: 40px;
  width: 90px;
}

.security-wrap dl {}

.security-wrap dt {
  display: block;
  font-weight: 600;
  font-size: 20px;
  color: #333;
}

.security-wrap dd {
  margin-top: 10px;
}

.security-wrap button {
  height: 45px;
  width: 200px;
  text-align: center;
  font-size: 16px;
  background-color: #0072de;
  color: #fff;
  margin-top: 20px;
}


/**검색단 입력 필드 버튼 사이즈 적용**/
.select-higt {
  height: 40px !important;
  padding: 0 10px !important;
}

.search-higt {
  height: 40px !important;
  padding: 0 10px !important;
}

.btn-higt {
  height: 42px !important;
}

.btn_blue {
  background-color: #021983;
  height: 42px !important;
  border: 1px solid #000f50;
}

/** 버튼 색상변경 **/
.search-day {
  width: 120px;
  height: 50px;
  padding: 0 20px;
}

.search-text {
  width: 320px;
  height: 50px;
  padding: 0 20px;
}

/** 컨텐츠 버튼 **/
.btn-wrap2 {
  text-align: center;
}

.btn-wrap2 .btn-next {
  display: inline-block;
  width: 90px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border: 1px solid #aaa;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap2 .btn-next .icon {
  vertical-align: top;
  padding-top: 10px;
}

.btn-wrap2 .btn-next:hover {
  color: #fff;
  border-color: #fff;
  background-color: rgb(16, 30, 90);
}

.btn-wrap2 .btn-cencel {
  display: inline-block;
  width: 90px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border: 1px solid #aaa;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap2 .btn-cencel .icon {
  vertical-align: top;
  padding-top: 10px;
}

.btn-wrap2 .btn-cencel:hover {
  color: #fff;
  border-color: #fff;
  background-color: rgb(16, 30, 90);
}


/***** 공통 *****/
.mt0 {
  margin-top: 0px
}

.mt03 {
  margin-top: 3px
}

.mt05 {
  margin-top: 5px
}

.mb20 {
  margin-bottom: 5px
}

.mt10 {
  margin-top: 10px
}

.mb20 {
  margin-bottom: 10px
}

.ml20 {
  margin-left: 20px;
}

.mt15 {
  margin-top: 15px
}

.mb20 {
  margin-bottom: 15px
}

.mt20 {
  margin-top: 20px
}

.mb20 {
  margin-bottom: 20px
}

.mt25 {
  margin-top: 25px
}

.mb25 {
  margin-bottom: 25px
}

.mt30 {
  margin-top: 30px
}

.mb30 {
  margin-bottom: 30px
}

.mt40 {
  margin-top: 40px
}

.mb40 {
  margin-bottom: 40px
}

.mt45 {
  margin-top: 45px
}

.mb45 {
  margin-bottom: 45px
}

.mt50 {
  margin-top: 50px
}

.mb50 {
  margin-bottom: 50px
}

.mt60 {
  margin-top: 60px
}

.mb60 {
  margin-bottom: 60px
}

.mt70 {
  margin-top: 70px
}

.mb60 {
  margin-bottom: 70px
}

.mt90 {
  margin-top: 90px
}

.mb90 {
  margin-bottom: 90px
}

.pr20 {
  padding-right: 20px;
}

.w13p {
  width: 13% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.alL {
  text-align: left !important;
}

.alR {
  text-align: right !important;
}

.alC {
  text-align: center !important;
}

.vtop {
  vertical-align: top !important;
}

.vmid {
  vertical-align: middle !important;
}

.vbot {
  vertical-align: bottom !important;
}

.text-red {
  color: #e31d1a;
}

.text-base {
  color: #333;
}

.refer-wrap {
  margin-top: 10px;
}

.poppins {
  font-family: "Poppins", sans-serif !important;
}

.fs12 {
  font-size: 12px !important;
}

.red {
  color: #de5555 !important;
}

.txt-primary {
  color: #0a6fc5 !important;
}

.txt-muted {
  color: #6c757d !important;
}

.txt-success {
  color: #28a745 !important;
}

.txt-info {
  color: #17a2b8 !important;
}

.txt-warning {
  color: #ffc107 !important;
}

.txt-danger {
  color: #ff5969 !important;
}

.word_break {
  word-break: keep-all;
}

/***** 스크롤 색상 *****/
.scroll-box .scroll::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

.scroll-box .scroll::-webkit-scrollbar-thumb {
  background-color: #2f3542;
}

.scroll-box .scroll::-webkit-scrollbar-track {
  background-color: grey;
}


/***** Footer *****/
#footer {}

.footer {
  display: block;
  clear: both;
  position: static;
  padding-bottom: 10px;
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
  color: #999;
  width: 100%;
  bottom: 0px;
}

.footer .inner {
  position: relative;
  max-width: 1900px;
  padding-top: 10px;
}

.foo-bottom .address {
  margin-left: 50px;
}

.foo-bottom .address .copy,
.foo-bottom .address .addr {
  margin-top: 5px;
  font-size: 14px;
  display: inline-block;
}

.foo-bottom .address .copy {
  font-size: 13px !important;
  margin-left: 20px;
}

.foo-right {
  position: absolute;
  right: 40px;
  top: 0px;
}


/***** 모달팝업 *****/
.prive-pop {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 500px;
  height: 90%;
  max-height: 400px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: visibility .3s, opacity .3s;
  z-index: 1600;
}

.prive-pop.show {
  visibility: visible;
  opacity: 1;
}

.prive-pop .pop-close {
  position: absolute;
  top: -40px;
  right: -10px;
}

.prive-pop .pop-close .icon {
  display: inline-block;
  font-size: 40px;
  color: #fff;
}

.prive-pop .pop-inner {
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.prive-pop .title {
  text-align: center;
  font-size: 18px;
}

.prive-pop .text-box {
  width: 95%;
  height: calc(100% - 50px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
  margin-top: 10px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
}

.mask {
  position: fixed;
  display: block;
  visibility: hidden;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1550;
  -webkit-transition: opacity 0.25s linear, visibility 0.25s linear;
  transition: opacity 0.25s linear, visibility 0.25s linear
}

.mask.show {
  visibility: visible;
  opacity: 1
}

.show {
  display: none;
}

.body-pop {
  min-width: 100% !important;
  overflow-x: auto;
  overflow-y: scroll;
}

.pop-wrap {}

.pop-wrap .header {
  position: relative;
  height: 80px;
}

.pop-wrap .pop-header {
  background-color: #2950bb;
  padding: 15px 20px;
}

.pop-wrap h2 {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}

.pop-wrap .logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 500px;
  height: 40px;
}

.pop-wrap .logo img {
  vertical-align: top;
}

.pop-wrap .logo span {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #555;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -1px;
  vertical-align: top;
  margin-left: 20px;
  margin-top: 8px;
}

.pop-wrap .logo span::before {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 6px;
  width: 1px;
  height: 15px;
  background-color: #ccc;
}

.pop-wrap .topmenu {
  position: absolute;
  right: 20px;
  top: 10px;
  height: 70px;
}

.pop-wrap .topmenu .pop-mypage {
  vertical-align: middle;
  font-size: 32px;
  margin-right: 10px;
  margin-left: 10px;
  color: #707070;
}

.pop-wrap .topmenu .pop-allmenu {
  vertical-align: middle;
  font-size: 32px;
  color: #707070;
}

.pop-wrap .topmenu .icon-one {
  display: inline-block;
  background-color: #b9b9b9;
  color: #fff;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  text-align: center;
  margin-right: 5px;
}

.pop-wrap .topmenu .pop-system-hover {
  position: absolute;
  left: 0px;
  top: 43px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 4px 4px 10px 6px rgba(37, 73, 170, .05);
  width: 200px;
  padding: 15px 15px;
  box-sizing: border-box;
}

.pop-wrap .topmenu .pop-system-hover .title {
  font-weight: 500;
  position: relative;
}

.pop-wrap .topmenu .pop-system-hover .btn-close {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
}

.pop-wrap .topmenu .pop-system-hover ul {
  margin-top: 15px;
}

.pop-wrap .topmenu .pop-system-hover ul li {
  display: block;
  height: 35px;
}

.pop-wrap .topmenu .pop-system-hover ul li a:hover {
  color: #333;
}

.pop-wrap .topmenu .btn-system {
  border: 1px solid #ddd;
  width: 200px;
  height: 40px;
  line-height: 40px;
  padding-left: 20px;
  text-align: left;
  color: #333;
  background-color: #fff;
  background: url("../img/icon_select_arrow.png") no-repeat 180px center;
}

.pop-wrap .topmenu .pop-allmenu-hover {
  position: absolute;
  right: 0px;
  top: 43px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 4px 4px 10px 6px rgba(37, 73, 170, .05);
  width: 200px;
  padding: 15px 20px;
  box-sizing: border-box;
}

.pop-wrap .topmenu .pop-allmenu-hover .title {
  font-weight: 500;
  position: relative;
}

.pop-wrap .topmenu .pop-allmenu-hover .btn-close {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
}

.pop-wrap .topmenu .pop-allmenu-hover ul {
  margin-top: 15px;
}

.pop-wrap .topmenu .pop-allmenu-hover ul li {
  display: block;
  height: 35px;
}

.pop-wrap .topmenu .pop-allmenu-hover ul li a:hover {
  color: #333;
}

.pop-wrap .topmenu .pop-login-hover {
  position: absolute;
  right: 0px;
  top: 43px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 4px 4px 10px 6px rgba(37, 73, 170, .05);
  width: 200px;
  padding: 15px 20px;
  box-sizing: border-box;
}

.pop-wrap .topmenu .pop-login-hover .title {
  font-weight: 500;
}

.pop-wrap .topmenu .pop-login-hover .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
}

.pop-wrap .topmenu .pop-login-hover ul {
  margin-top: 10px;
}

.pop-wrap .topmenu .pop-login-hover ul li {
  display: block;
  text-align: center;
  color: #555;
  font-size: 13px;
}

.pop-wrap .topmenu .pop-login-hover .pop-user {
  display: block;
  margin: 0 auto;
  width: 68px;
  height: 68px;
  margin-bottom: 10px;
  background: url("../img/pop-login-img.png") no-repeat center center;
}

.pop-wrap .topmenu .pop-login-hover .name {
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

.pop-wrap .topmenu .pop-login-hover .btn-time {
  height: 27px;
  line-height: 27px;
  font-size: 13px;
  padding: 0px 10px;
  margin-top: 5px;
  color: #fff;
  background-color: #0888e1;
}

.pop-wrap .spot {
  height: 198px;
  padding-top: 50px;
  box-sizing: border-box;
  background: url("../img/pop_img1.png") no-repeat center center #2950bb;
}

.pop-wrap .spot p {
  color: #fff;
  font-size: 32px;
  text-align: center;
  font-weight: 600;
}

.pop-wrap .spot span {
  display: block;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  padding-top: 5px;
}

.btn-search-pop {
  position: absolute;
  right: 30px;
  top: 2px;
  /*display: flex;  justify-content:center;*/
}

.pop-content {
  padding-bottom: 50px;
}

.pop-con {
  padding: 20px 20px;
}

.pop-inner {
  max-width: 100% !important;
}


/** 커뮤니티 룸 **/
.Community-wrap {
  height: 100vh;
  width: 1263px;
  background: url("../img/Community-bg.png") no-repeat 270px top #f5f8fa;
  box-sizing: border-box;
}

.Community-wrap .header {
  position: relative;
  height: 190px;
  padding-top: 40px;
  padding-left: 50px;
}

.Community-wrap .header h2 {
  font-size: 40px;
  color: #333;
}

.Community-wrap .header p {
  font-size: 20px;
  color: #555;
  margin-top: 5px;
}

.Community-wrap .content {}

.Community-wrap .visual-img {
  display: flex;
  justify-content: start;
  height: 628px;
}

.Community-wrap .visual-img .left-con {
  width: 640px;
  background: url("../img/visual-img.jpg") no-repeat -150px top;
  border-left: 1px solid #333;
}

.Community-wrap .visual-img .right-con {
  width: 560px;
  margin-left: 45px;
  box-sizing: border-box;
}

.Community-wrap .visual-img .border-con {
  position: relative;
  width: 560px;
}

.Community-wrap .visual-img .border-con h3 {
  font-size: 28px;
  color: #333;
}

.Community-wrap .visual-img .border-con .btn-more {
  position: absolute;
  right: 0px;
  top: -5px;
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.Community-wrap .visual-img .border-con ul {
  margin-top: 20px;
}

.Community-wrap .visual-img .border-con ul li {
  position: relative;
  margin-bottom: 15px;
  font-size: 17px;
}

.Community-wrap .visual-img .border-con ul li a {
  display: inline-block;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 75%;
}

.Community-wrap .visual-img .border-con ul li span {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #555;
  font-weight: 300;
}

.Community-wrap .visual-img .border-con ul li a.btn-down {
  border: 1px solid #ddd;
  padding: 5px 15px;
  border-radius: 2px;
  font-size: 14px;
}

.user-pop.on,
.link-pop.on {
  display: block;
}

.user-pop,
.link-pop {
  display: none;
}

.etc-menu {
  position: absolute;
  right: 20px;
  top: 50px;
}

.etc-menu a {
  color: #555;
  font-size: 35px;
  margin-left: 10px;
}

.etc-item {
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 20;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, .20);
  width: 250px;
  height: 180px;
  padding: 20px 30px;
  background: url("../img/etc-item.png") no-repeat 210px 140px #fff;
}

.bgnone {
  background-color: #fff;
}

.etc-item span {
  font-size: 18px;
  font-weight: 500;
}

.etc-item ul {
  margin-top: 20px;
}

.etc-item ul li {
  position: relative;
  margin-bottom: 10px;
}

.etc-item ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.etc-item ul li a {
  font-size: 14px;
  font-weight: 500;
}

.btn-close {
  position: absolute;
  right: 30px;
  top: 20px;
  z-index: 30;
  width: 10px;
  height: 10px;
  text-align: center;
  font-size: 18px;
  background-color: #fff;
}

.btn-close:hover {
  border: 0px !important;
}

.etc-item .login-info {
  position: relative;
  padding-left: 85px;
  padding-top: 15px;
}

.etc-item .login-info img {
  position: absolute;
  left: 0px;
  top: 20px;
}

.etc-item .login-info p {
  position: relative;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 3px;
}

.etc-item .btn-time {
  position: absolute;
  right: -10px;
  top: 0px;
  display: inline-block;
  font-size: 12px;
}

.etc-item .btn-con {
  text-align: center;
}

.etc-item .btn-mypage {
  display: inline-block;
  background-color: #558cf0;
  font-size: 14px;
  color: #fff;
  padding: 2px 15px;
  border-radius: 2px;
  height: 30px;
  margin-top: 10px;
}

.etc-item .btn-logout {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #555;
  padding: 2px 15px;
  border-radius: 2px;
  height: 30px;
  margin-top: 10px;
}

/** 커뮤니티 룸 **/

/*** 로그인 화면 ***/
.login-section {
  position: relative;
  height: 100vh;
  background: url("../img/login-bg.jpg") no-repeat center center;
  background-size: cover;
}

.login-section .login-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-section .login-box .login-logo {
  margin-top: 10px;
}

.login-section .login-box .login-logo img {
  margin-right: 40px;
}

.login-section .etc-wrap {
  margin-top: 30px;
}

.login-section .etc-wrap>span {
  display: block;
  font-weight: 600;
  font-size: 15px;
  padding-left: 20px;
  background: url("../img/title-bu.png") no-repeat left center;
}

.login-section .etc-wrap a {
  display: inline-block;
  padding: 5px 10px 5px 13px;
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 14px !important;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.login-section .etc-wrap a:hover {
  border: 1px solid #333;
  color: #333;
}

.login-section .etc-wrap dl {
  margin-top: 10px;
}

.login-section .etc-wrap dt {
  display: block;
  font-weight: 600;
  font-size: 15px;
  padding-left: 20px;
  background: url("../img/title-bu.png") no-repeat left center;
  margin-bottom: 5px;
}

.login-section .etc-wrap dd {
  position: relative;
  display: block;
  color: #666;
  margin-top: 3px;
  padding-left: 10px;
}

.login-section .etc-wrap dd::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.login-section .etc-wrap dd:last-child::before {
  display: none;
}

.login-section .etc-wrap dd a {
  display: inline-block;
  padding: 5px 10px 5px 13px;
  margin-top: 10px;
  font-size: 14px !important;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.login-section .etc-wrap dd a:hover {
  border: 1px solid #333;
  color: #333;
}

.login-section .login-con {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, .10);
  padding: 10px 10px;
  box-sizing: border-box;
  margin-top: 15px;
  width: fit-content;
}

.login-section .login-con .left {
  width: 50%;
  padding: 30px 40px;
}

.login-section .login-con .right {
  position: relative;
  background-color: #fff;
  padding: 30px 40px;
  width: 50%;
}

.login-section .login-con .right::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 35px;
  height: 430px;
  width: 1px;
  background-color: #eee;
}

.login-section .login-con .right .title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.login-section .login-con .right .cert-login {
  height: 180px;
}

.login-section .login-con .right .btn-login {
  display: block;
  color: #fff;
  text-align: center;
  height: 55px;
  line-height: 55px;
  font-weight: 500;
  width: 342px;
  border-radius: 2px;
  background-color: #575dcd;
  background: linear-gradient(0deg, rgb(65 78 201) 0%, rgb(65 78 201) 50%, rgb(87 95 206) 51%, rgb(87 95 206) 100%);
}

.login-section .login-con .right .btn-renew {
  display: block;
  background-color: #276cea;
  color: #fff;
  text-align: center;
  height: 47px;
  line-height: 45px;
  font-weight: 500;
  width: 342px;
  margin-top: 7px;
  margin-left: 0px !important;
  border-radius: 2px;
}

.login-section .login-con .right .id-login {}

.login-section .login-con .right .id-login span {
  display: block;
  margin-bottom: 7px;
}

.login-section .login-con .right .id-login .btn-login {
  display: block;
  background-color: #2e5bb1;
  color: #fff;
  text-align: center;
  height: 45px;
  line-height: 45px;
  font-weight: 500;
  width: 342px;
}

.login-section .login-con .right .login-info {
  margin-top: 20px;
}

.login-section .login-con .right .login-info a {
  position: relative;
  font-size: 14px;
  color: #666;
  height: 27px;
  padding: 0 10px;
  display: inline-block;
  margin-right: 22px;
}

.login-section .login-con .right .login-info a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.login-section .idpw {
  height: 45px !important;
  padding: 0 10px;
  width: 340px !important;
  border: 1px solid #ddd !important;
  font-size: 15px !important;
  background-color: rgb(232, 240, 254);
}

.login-section .idpw:hover {
  border: 1px solid #ccc;
}

/*** 로그인 화면  ***/


/***** 사이트맵 *****/
.sitemap-wrap {
  display: flex;
  flex-wrap: wrap;
}

.sitemap-wrap .map-item {
  width: 25%;
  height: 300px;
  box-sizing: border-box;
  padding-right: 40px;
  margin-bottom: 30px;
}

.sitemap-wrap .map-item dl {
  border-radius: 2px;
}

.sitemap-wrap .map-item dt {
  position: relative;
  border: 1px solid #ddd;
  padding: 0 30px 0px 30px;
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #333;
  height: 40px;
  padding-top: 15px;
  text-align: center;
  background-color: #efefef;
}

.sitemap-wrap .map-item dd {
  padding: 0 30px 0px 30px;
  border: 1px solid #ddd;
  border-top: none;
  height: 240px;
  padding-top: 10px;
}

.sitemap-wrap .map-item dd a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #555;
  padding-left: 10px;
  margin-top: 10px;
}

.sitemap-wrap .map-item dd a:hover {
  color: #000;
  text-decoration: underline;
}

.sitemap-wrap .map-item dd a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 3px;
  height: 2px;
  background: #aaa;
}


/* 레이어팝업 */
#layer-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
}

#layer-popup .popup {
  width: 800px;
  height: 640px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -320px 0 0 -400px;
  border-radius: 3px;
  background-color: #ffffff;
  overflow: hidden;
}

#layer-popup .popup .popup-top {
  height: 60px;
  line-height: 60px;
  position: relative;
  background: #2950bb;
  /* background:linear-gradient(90deg, rgba(55,127,194,1) 0%, rgba(70,199,179,1) 100%); */
  padding: 0 20px;
}

#layer-popup .popup .popup-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  padding-top: 20px;
}

#layer-popup .popup .popup-close {
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  display: block;
  background: url(../../images/ico-close-white.svg) no-repeat center center;
  background-size: 70%;
  position: absolute;
  right: 25px;
  top: 25px;
}

#layer-popup .popup .popup-content {
  padding: 20px;
  height: calc(100% - 50px);
  overflow-y: auto;
}

#layer-popup .popup.w300 {
  margin-left: -150px;
}

#layer-popup .popup.w400 {
  margin-left: -200px;
}

#layer-popup .popup.w500 {
  margin-left: -250px;
}

#layer-popup .popup.w600 {
  margin-left: -300px;
}

#layer-popup .popup.w700 {
  margin-left: -350px;
}

#layer-popup .popup.w800 {
  margin-left: -400px;
}

#layer-popup .popup.w900 {
  margin-left: -450px;
}

#layer-popup .popup.w1000 {
  margin-left: -500px;
}

#layer-popup .popup.w1200 {
  margin-left: -600px;
}

#layer-popup .popup.w1600 {
  margin-left: -800px;
}

#layer-popup .popup.h200 {
  margin-top: -100px;
}

#layer-popup .popup.h250 {
  margin-top: -125px;
}

#layer-popup .popup.h270 {
  margin-top: -145px;
}

#layer-popup .popup.h300 {
  margin-top: -150px;
}

#layer-popup .popup.h350 {
  margin-top: -175px;
}

#layer-popup .popup.h400 {
  margin-top: -200px;
}

#layer-popup .popup.h500 {
  margin-top: -250px;
}

#layer-popup .popup.h600 {
  margin-top: -300px;
}

#layer-popup .popup.h700 {
  margin-top: -350px;
}

#layer-popup .popup.h750 {
  margin-top: -375px;
}

#layer-popup .popup.h800 {
  margin-top: -400px;
}

#layer-popup .popup.h900 {
  margin-top: -450px;
}

#layer-popup .popup.h1000 {
  margin-top: -500px;
}

.message-text {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  padding: 0px 20px;
  color: #333;
  font-size: 16px;
}

.poptop-btn {
  position: relative;
  height: 40px;
}

.poptop-btn .popup-close {
  position: absolute;
  right: 30px !important;
  top: 20px !important;
  width: 40px;
  height: 20px;
  text-indent: -9999px;
  color: #555 !important;
  display: block;
  background: url(../../images/ico-close-white.svg) no-repeat center center;
  filter: brightness(1) invert(1);
  background-size: 70%;
}

/***** 아이디, 비번 찾기 가이드 *****/
.content-body .info-con {
  margin: 30px 0 0 40px;
}

.content-body .info-text {}

.content-body .img-idpw {
  position: relative;
  padding-left: 100px;
}

.content-body .img-idpw ::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/idpw-img.png) no-repeat 20px center #ebeff3;
}

.content-body .img-con1 {
  position: relative;
  padding-left: 100px;
}

.content-body .img-con1::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/img-con1.png) no-repeat 20px center #ebeff3;
}

.content-body .img-con2 {
  position: relative;
  padding-left: 100px;
}

.content-body .img-con2::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/img-con2.png) no-repeat 20px center #ebeff3;
}

.content-body .img-con3 {
  position: relative;
  padding-left: 100px;
}

.content-body .img-con3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/img-con3.png) no-repeat 20px center #ebeff3;
}

.content-body .info-text .blue-text {
  color: #021983;
  margin-bottom: 10px;
}

.btn-certifi {
  display: inline-block;
  padding: 0 15px;
  height: 40px;
  background: #2166c4;
  color: #fff;
}


/* 빅데이터플랫폼 소개 */
.bigdp-intro {
  padding: 45px 40px;
  border: 1px solid #ddd;
  margin-top: 30px;
  background-image: url(../img/bigdp-intro.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  border-radius: 10px;
}

.bigdp-intro p {
  font-size: 24px;
  color: #08a2db;
  font-weight: 700;
}

.bigdp-intro p>span {
  color: #555;
}

.bigdp-intro .logo {
  margin-top: 10px;
  margin-bottom: 30px;
}

.bigdp-intro .logo img {
  display: block;
}

.bigdp-intro .txt span {
  color: #777777;
  font-size: 17px;
  font-weight: 300;
  display: block;
  word-break: keep-all;
}

.bigdp-content {
  margin-top: 30px;
}

.bigdp-content h4 {
  font-size: 18px;
  font-weight: 600;
}

.bigdp-content h4 span {
  color: #08a2db;
}

.bigdp-content .list-intro {
  margin-top: 20px;
}

.bigdp-content .list-intro::after {
  clear: both;
  display: block;
  content: '';
}

.bigdp-content .list-intro li {
  width: 47%;
  float: left;
  min-height: 300px;
  box-sizing: border-box;
}

.bigdp-content .list-intro li:nth-child(2n+1) {
  margin-right: 6%;
}

.bigdp-content .list-intro li:first-child,
.bigdp-content .list-intro li:nth-child(2) {
  margin-bottom: 30px;
}

.bigdp-content .list-intro .img-area {
  height: 260px;
  background: #e6eaf6;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center 100%;
}

.bigdp-content .list-intro .img-area.bg-1 {
  background-image: url(../img/bigdp-list-1.png);
}

.bigdp-content .list-intro .img-area.bg-2 {
  background-image: url(../img/bigdp-list-2.png);
}

.bigdp-content .list-intro .img-area.bg-3 {
  background-image: url(../img/bigdp-list-3.png);
}

.bigdp-content .list-intro .img-area.bg-4 {
  background-image: url(../img/bigdp-list-4.png);
}

.bigdp-content .list-intro .txt-area>p,
.bigdp-content .list-intro .txt-area strong,
.bigdp-content .list-intro .txt-area span {
  display: block;
  text-align: center;
}

.bigdp-content .list-intro .txt-area>p {
  margin-top: 20px;
  color: #777;
  font-size: 16px;
  font-weight: 300;
}

.bigdp-content .list-intro .txt-area strong {
  margin-bottom: 30px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.bigdp-content .list-intro .txt-area span {
  font-size: 16px;
  color: #666;
  font-weight: 300;
}

.bigdp-content .list-intro li:first-child .img-area,
.bigdp-content .list-intro li:last-child .img-area {
  background-position: center center;
}





/* 탭 세로 스타일 2023.04.10 추가*/
.row-wrap {
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

.row-wrap .tab-wrap03 {
  background: #FFF;
  width: 15%;
  height: 100%;
  overflow: hidden;
}

ul.tab_type03 {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  float: left;
  display: block;
}

.row-wrap .tab-wrap03>ul {
  width: 200px;
}

ul.tab_type03 li {
  border: 1px solid #e7e7e7;
  height: 50px;
  padding: 0 13px;
}

ul.tab_type03 li a {
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  transition: all .3s ease;
}

.tab-content-wrap03 {
  width: 95%;
}

.tab_type03 li.on {
  z-index: 1;
  background-color: #5c87d8;
}

.tab_type03 li.on a {
  color: #fff;
}

.tab_type03 li:hover {
  background-color: #5c87d8;
}

.tab_type03 li:hover a {
  color: #fff;
}

/* 2023-06-08 추가 */
/* .inner button:focus {
  border: 2px solid #727272;
}

.inner a:focus {
  border: 2px solid #727272;
}

.input-tbl button:focus {
  border: 2px solid #727272;
}

.btns button:focus {
  border: 2px solid #727272;
} */

/* 팝업창 */
.ui-dialog-titlebar button:focus {
  border: 2px solid #727272;
}

.search-inner .btn-search-wrap .btn-search .icon,
 .search-inner .btn-search-wrap .btn-refrish .icon{
 margin-top: 0;
 margin-right: 4px;
 }

.btn-calendar .icon{
 margin-top: 0;
 }

 .multiselect-dropdown span.optext {font-size: 14px; margin-top: 5.5px;}
 .multiselect-dropdown-list-wrapper, .search-wrap .search-con .multiselect-dropdown-list div label {font-size:14px;}