@charset "UTF-8";
/* CSS Document */
@import url(/resources/css/font.css);
@import url("https://use.fontawesome.com/releases/v5.10.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
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, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  list-style: none;
  font-style: normal;
}

em, em * {
  font-style: italic;
}

/* HTML5 display-role reset for older browsers */
html,
body {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1;
  width: 100%;
  min-width: 1440px;
  word-wrap: break-word;
  word-break: keep-all;
  letter-spacing: -0.5px;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
main {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

select {
  width: 100%;
  font-family: "Noto Sans KR", sans-serif;
  height: 34px;
  line-height: 1.5;
  font-size: 15px;
  color: #333;
  border: 1px solid #D3DCE7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 10px;
  vertical-align: middle;
  -webkit-background: #fff url(/resources/image/bg/bg-select-off.svg) right 15px center/10px no-repeat;
  background: #fff url(/resources/image/bg/bg-select-off.svg) right 15px center/10px no-repeat;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

button {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  outline: none;
  letter-spacing: -1px;
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=checkbox] + label,
input[type=radio] + label {
  position: relative;
  letter-spacing: -1px;
  line-height: 31px;
}

input[type=checkbox].chk-text + label::before,
input[type=radio] + label::before {
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 6px;
  position: relative;
  font-size: 19px;
  transition: all 0.3s;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 2px;
}

input[type=checkbox] + label::before {
  width: 20px;
  height: 20px;
  line-height: 20px;
  position: relative;
  font-size: 19px;
  transition: all 0.3s;
  border-radius: 50px;
  overflow: hidden;
}

input[type=checkbox] + label::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  content: "\f058";
  color: #D3DCE7;
  font-weight: 700;
}

input[type=radio] + label::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  content: "\f111";
  color: #D3DCE7;
  font-weight: 500;
}

input[type=checkbox] + label:hover:before,
input[type=radio] + label:hover:before {
  color: #98B1CC;
}

input[type=checkbox]:checked + label,
input[type=radio]:checked + label {
  position: relative;
  font-weight: 700;
}

input[type=checkbox]:checked + label::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  content: "\f058";
  color: #3566D6;
  font-weight: 700;
  background: #fff;
}

input[type=radio]:checked + label::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  content: "\f192";
  color: #3566D6;
  font-weight: 500;
  background: #fff;
}

.btn-check > div,
.btn-radio > div {
  margin-right: 15px;
  padding: 2px 0;
}

.btn-check.row,
.btn-radio.row {
  flex-wrap: wrap;
}

/* border있는 checkbox 선택 영역수정 */
.btn-checkbox input[type=checkbox] + label {
  padding: 0 18px 0 14px;
}

/* checkbox disable*/
.btn-checkbox.off input[type=checkbox]:checked + label {
  position: relative;
  font-weight: 400;
}
.btn-checkbox.off input[type=checkbox]:checked + label::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  content: "\f058";
  color: #D3DCE7;
  font-weight: 700;
  background: #fff;
}
.btn-checkbox.off input[type=checkbox] + label:hover:before,
.btn-checkbox.off input[type=radio] + label:hover:before {
  color: #D3DCE7;
}

input[type=tel],
input[type=time],
input[type=text],
input[type=password],
input[type=search],
input[type=email],
input[type=file],
input[type=url],
input[type=number],
input[type=date] {
  width: 100%;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  height: 34px;
  border: 1px solid #D3DCE7;
  background: #fff;
  text-indent: 10px;
  padding-right: 10px;
  vertical-align: middle;
  line-height: 34px;
}

input::-webkit-input-placeholder {
  color: #8B949E;
  font-size: 15px;
  line-height: 100%;
}

input.sch-lg::-webkit -input-placeholder {
  font-size: 16px;
}

input.sch-lg {
  width: 100%;
  height: 100%;
  padding-right: 50px;
  background-color: transparent;
  border: 2px solid transparent;
}

input.mini,
select.mini {
  width: 80px;
  min-width: 80px;
}

input.sm,
select.sm {
  width: 138px;
  min-width: 138px;
}

input.md,
select.md {
  width: 250px;
  min-width: 250px;
}

input.lg,
select.lg {
  width: 400px;
  min-width: 400px;
}

/* input, select percent width */
input.w-10,
select.w-10 {
  width: 10%;
}

input.w-20,
select.w-20 {
  width: 20%;
}

input.w-30,
select.w-30 {
  width: 30%;
}

input.w-40,
select.w-40 {
  width: 40%;
}

input.w-50,
select.w-50 {
  width: 50%;
}

input.w-60,
select.w-60 {
  width: 60%;
}

input.w-70,
select.w-70 {
  width: 70%;
}

input.w-80,
select.w-80 {
  width: 80%;
}

input.w-90,
select.w-90 {
  width: 90%;
}

input.w-100,
select.w-100 {
  width: 100%;
}

input.pass,
input.error {
  padding-right: 35px;
}

input.pass {
  background: url(/resources/image/bg/bg-input-pass.svg) right 12px center/14px no-repeat;
  border-color: #37BC9B;
}

input.error {
  background: url(/resources/image/bg/bg-input-error.svg) right 12px center/14px no-repeat;
  border-color: #FA495B;
}

.txt-error {
  position: absolute;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  background-color: #FA495B;
  padding: 8px 15px;
  margin-top: 4px;
  border-radius: 50px;
}
.txt-error::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid #FA495B;
}

textarea {
  padding: 10px 12px;
  width: 100%;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  border: 1px solid #D3DCE7;
  background: #fff;
  vertical-align: middle;
  resize: vertical;
  line-height: 1.5;
}

select:focus,
textarea:focus,
input:focus {
  outline: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #98B1CC;
}

.sch-lg.input-focus:focus {
  outline: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #6457B9;
  box-shadow: 0 0 10px rgba(0, 126, 229, 0.15);
  transition: all 0.3s;
}

input[type=tel][readonly],
input[type=text][readonly],
input[type=password][readonly],
input[type=email][readonly],
input[type=search][readonly],
input[type=tel][disabled],
input[type=text][disabled],
input[type=password][disabled],
input[type=search][disabled],
input[type=email][disabled] {
  background: #eaeaea;
  border-color: #D3DCE7;
  color: #666;
  -webkit-appearance: none;
  font-size: 15px;
  outline: none;
}

textarea[readonly],
textarea[disabled] {
  padding: 5px;
  font-size: 15px;
  color: #EFF1F5;
  font-weight: normal;
  line-height: 140%;
  height: 78px;
  background: #eaeaea;
  border: 1px solid #EFF1F5;
}

a {
  cursor: pointer;
}

.row {
  display: flex !important;
  flex-direction: row;
}
.row.right {
  justify-content: flex-end;
}
.row.center {
  justify-content: center;
}
.row.adjust {
  justify-content: space-between;
}

.w-100 {
  width: 100% !important;
}

.fw-100 {
  flex-basis: 100% !important;
}

.w-50 {
  width: 50%;
}

.w-48 {
  width: 48%;
}

.w-45 {
  width: 45%;
}

hr {
  display: inline-block;
  width: 100%;
  height: 50px;
  margin-top: 50px;
  border: none;
  border-top: 1.5px solid #E9E9F1;
}
hr.pop-hr {
  height: 15px;
  margin-top: 25px;
}

.info-common {
  line-height: 1.5;
}

/* 텍스트 굵기, 색상 */
.bold {
  font-weight: 700;
}

.txt-red {
  color: #FA495B;
}

.txt-blue {
  color: #6457B9;
}

.txt-yellow {
  color: #FF9838;
}

.txt-green {
  color: #37BC9B;
}

.txt-gray {
  color: #888;
}

.txt-gray-dark {
  color: #65707C;
}

.txt-link {
  color: #3566D6;
}

/* 텍스트 정렬 */
.txt-al {
  text-align: left !important;
}

.txt-ac {
  text-align: center !important;
}

.txt-ar {
  text-align: right !important;
}

/* 패딩,마진 스타일 */
.pd-0 {
  padding: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pd-5 {
  padding: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pd-10 {
  padding: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pd-15 {
  padding: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pd-20 {
  padding: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pd-25 {
  padding: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pd-30 {
  padding: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pd-35 {
  padding: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pd-40 {
  padding: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.mg-0 {
  margin: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mg-5 {
  margin: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mg-10 {
  margin: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mg-15 {
  margin: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mg-20 {
  margin: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mg-25 {
  margin: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mg-30 {
  margin: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mg-35 {
  margin: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mg-40 {
  margin: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

/* 간격 스타일 */
.space-5 {
  height: 5px;
}

.space-10 {
  height: 10px;
}

.space-15 {
  height: 15px;
}

.space-20 {
  height: 20px;
}

.space-25 {
  height: 25px;
}

.space-30 {
  height: 30px;
}

.space-35 {
  height: 35px;
}

.space-40 {
  height: 40px;
}

.space-45 {
  height: 45px;
}

.space-50 {
  height: 50px;
}

/* 로그인 */
.login-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url(/resources/image/bg/bg-log.png) center/cover no-repeat; */
}

.login-section {
  position: absolute;
  width: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
}
.login-section > div:first-child {
  position: relative;
  font-weight: 500;
  color: #fff;
  border-bottom: 5px solid #6457B9;
}
.login-section > div:first-child span {
  display: inline-block;
  padding: 13px 80px 10px;
  background-color: #6457B9;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.25);
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.25);
}

.login-box {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  padding: 55px 20px;
  border-bottom-right-radius: 8px;
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
}
.login-box div {
  width: 48%;
  position: relative;
}
.login-box div:first-child:before {
  content: "";
  position: absolute;
  right: 40px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #E9E9F1;
}
.login-box div img {
  display: inline-block;
  width: 180px;
  height: auto;
  vertical-align: middle;
  padding-top: 27px;
  margin-left: 10px;
}

.login-btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 16px;
  background-color: #65707C;
  margin: 10px 0 20px 0;
}

.pointer {
  cursor: pointer;
}

.btn-area {
  display: flex;
  flex-wrap: wrap;
}
.btn-area button {
  padding: 10px 25px;
  margin-left: 5px;
}
.btn-area.right {
  justify-content: flex-end;
}
.btn-area.center {
  justify-content: center;
}
.btn-area.adjust {
  justify-content: space-between;
}

.btn-area > .btn-group:first-child button:first-child,
div.row.adjust > div:first-of-type > button:first-of-type,
div.row.adjust > button:first-of-type {
  margin-left: 0;
}

.list-count {
  margin-left: 10px;
  margin-right: auto;
  align-self: center;
  font-size: 14px;
}
.list-count span {
   	font-weight: 600;
    color: #6457b9;
}

button {
  position: relative;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  outline: none;
  border: none;
  letter-spacing: -1px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s;
}
button.btn {
  height: 34px;
  padding: 4px 20px 5px;
}
button.btn.btn-icon i {
  margin-right: 5px;
}
button.btn:disabled {
  cursor: default;
  background-color: #c9c9c9;
  border-color: #c9c9c9;
  color: #fff;
}
button.btn:disabled:hover {
  cursor: default;
  background-color: #c9c9c9;
  border-color: #c9c9c9;
  color: #fff;
}
button.sm {
  width: 35px;
  height: 35px;
  margin-left: 5px;
  padding: 0;
  border: 1px solid #D3DCE7;
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
}
button.sm.tb {
  width: auto;
  height: 23px;
  line-height: 21px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px;
  border: none;
}
button.sm.tb.arrow-up, button.sm.tb.arrow-down {
  position: relative;
  width: 23px;
  height: 23px;
  border: none;
  margin-left: 0;
}
button.sm.tb.arrow-up:after, button.sm.tb.arrow-down:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 700;
  color: #D3DCE7;
  font-family: "Font Awesome 5 Free";
  transition: all 0.3s;
}
button.sm.tb.arrow-up:hover:after, button.sm.tb.arrow-down:hover:after {
  color: #98B1CC !important;
}
button.sm.tb.arrow-up.arrow-up:after, button.sm.tb.arrow-down.arrow-up:after {
  content: "\f139";
}
button.sm.tb.arrow-up.arrow-down:after, button.sm.tb.arrow-down.arrow-down:after {
  content: "\f13a";
}
button.sm.tb.arrow-up {
  margin-left: 0;
}
button.sm.tb.link {
  border: none;
  padding: 0;
  font-weight: 700;
  color: #3566D6;
  border-bottom: 1px solid #3566D6;
}
button.sm.tb.del {
  position: relative;
}
button.sm.tb.del:before {
  content: "\f2ed";
  position: absolute;
  width: 25px;
  font-size: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
button.sm.down {
  background-image: url(/resources/image/btn/btn-down-sm.svg);
}
button.sm.excel {
  background-image: url(/resources/image/btn/btn-excel.svg);
}
button.sm.pdf {
  background-image: url(/resources/image/btn/btn-pdf.svg);
}
button.sm.import {
  background-image: url(/resources/image/btn/btn-import.svg);
}
button.sm.write {
  background-image: url(/resources/image/btn/btn-write.svg);
  background-size: 18px;
  background-position: top 9px center;
}
button.sm.del {
  position: relative;
  border-color: #D3DCE7;
}
button.sm.del:hover {
  background-color: #fff;
}
button.sm.del:before {
  content: "\f2ed";
  position: absolute;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
button.sm.del:hover {
  color: #FA495B !important;
}
button.sm:hover {
  border-color: #98B1CC;
}
button.outline-01 {
  border: 1px solid #D3DCE7;
}
button.outline-01:hover {
  border-color: #98B1CC;
}
button.outline-02 {
  border: 1px solid #D3DCE7;
  color: #6a7581;
}
button.outline-02 > i {
  color: #6a7581;
  transition: all 0.3s;
}
button.outline-02:hover {
  color: #fff;
  background-color: #65707C;
  border-color: #65707C;
}
button.outline-02:hover > i {
  color: #fff;
}
button.outline-02.click {
  padding-left: 40px;
  color: #fff;
  background-color: #65707C;
  border: none;
}
button.outline-02.click:after {
  content: "\f00c";
  position: absolute;
  left: 15px;
  top: 9px;
  color: #fff;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  border: none;
}
button.outline-02 > i {
  color: #333;
}
button.outline-03 {
  color: #6457B9;
  border: 1px solid #6457B9;
}
button.outline-03:hover {
  color: #fff;
  background-color: #7569CA;
}
button.primary {
  color: #fff;
  background-color: #6457B9;
}
button.primary:hover {
  background-color: #7569CA;
}
button.gray {
  background-color: #65707C;
  color: #fff;
}
button.gray:hover {
  background-color: #606b77;
}
button.save {
  color: #fff;
  background-color: #37BC9B;
}
button.save:hover {
  background-color: #00c997;
}
button.del {
  color: #98B1CC;
  border: 1px solid #FA495B;
}
button.del:hover {
  color: #fff;
  background-color: #FA495B;
}
button.del.outline {
  color: #FA495B;
  border: 1px solid #FA495B;
}
button.del.outline:hover {
  color: #fff;
  background-color: #FA495B;
}

.btn-x {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  vertical-align: middle;
  background: #D3DCE7 url(/resources/image/btn/btn-x.svg) center/8px no-repeat;
  transition: all 0.3s;
}
.btn-x:hover {
  background-color: #98B1CC;
}
.btn-x.pop {
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  height: 55px;
  background-color: transparent;
  background-size: 15px;
  opacity: 0.5;
}
.btn-x.pop:hover {
  opacity: 1;
}

.btn-area.btn-code .btn-x,
.btn-area.btn-code .primary {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  padding: 0;
}
.btn-area.btn-code .btn-x {
  position: relative;
  background: #98B1CC;
  margin-left: 20px;
}
.btn-area.btn-code .btn-x:hover {
  background-color: #FA495B;
}
.btn-area.btn-code .btn-x:before {
  content: "\f2ed";
  position: absolute;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 13px;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Free";
  color: #fff;
  font-weight: 700;
}
.btn-area.btn-code .btn-x.line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  left: -10px;
  top: 3px;
  background-color: #D3DCE7;
  cursor: default;
}
.btn-area.btn-code .primary {
  position: relative;
}
.btn-area.btn-code .primary:before {
  content: "\f067";
  position: absolute;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  color: #fff;
  font-weight: 700;
}

.sch-lg-input > .btn-x {
  position: absolute;
  right: 20px;
  top: 14px;
  width: 20px;
  height: 20px;
  background-size: 10px;
}

.required-mark {
  font-weight: 700;
  color: #FA495B;
  padding-left: 3px;
}

.comment {
  display: inline-block;
  width: auto;
  color: #6457B9;
  padding-left: 10px;
  font-size: 13px;
  font-weight: 500;
  vertical-align: middle;
}

.tb-importance {
  font-weight: 500;
  margin-bottom: 10px;
}
.tb-importance span {
  color: #3566D6;
  margin-left: 5px;
}

.tb-multi-line {
  display: flex;
  flex-direction: column;
}
.tb-multi-line li {
  position: relative;
  padding-left: 17px;
  margin-top: 5px;
  word-break: break-all;
  line-height: 1.3;
}
.tb-multi-line li:first-child {
  margin-top: 0;
}
.tb-multi-line li:before {
  content: "\f00c";
  position: absolute;
  color: #3566D6;
  font-weight: 700;
  font-size: 10px;
  left: 0;
  top: 4px;
  font-family: "Font Awesome 5 Free";
}

.tb-list {
  table-layout: fixed;
  width: 100%;
  white-space: nowrap;
  border-top: 1px solid #333;
  border-bottom: 1px solid #D3DCE7;
}
.tb-list tbody tr {
  border-top: 1px solid #D3DCE7;
  transition: all 0.3s;
}
.tb-list th {
  height: 52px;
  line-height: 52px;
  font-weight: 500;
  text-align: center;
}
.tb-list td {
  line-height: 1.5;
  padding: 16px 5px;
  vertical-align: middle;
  text-align: center;
  display: table-cell;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-list td .tb-state {
  display: inline-block;
  height: 23px;
  padding: 2px 15px 3px;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.tb-list td .tb-state.c-01 {
  background-color: #6457B9;
}
.tb-list td .tb-state.c-02 {
  background-color: #FA495B;
}
.tb-list td .tb-state.c-03 {
  background-color: #37BC9B;
}
.tb-list td .tb-state.c-04 {
  background-color: #dadee7;
  color: #65707C;
}
.tb-list td .tb-state.c-05 {
  background-color: #FF9838;
}
.tb-list td .tb-state.c-06 {
  background-color: #6e8d8f;
}
.tb-list td p {
  text-align: left;
}
.tb-list td p span {
  display: block;
  padding-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-list td p b {
  display: block;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tb-list.hover tbody tr:hover {
  background-color: #F3F6F9;
}

.tb-list.show {
  overflow: unset;
  text-overflow: unset;
  word-break: break-all;
  white-space: normal;
}

.tb-list tfoot {
  border-top: 2px solid #D3DCE7;
  font-weight: 700;
  color: #3566D6;
}

.tb-list.in th, .tb-list.in td {
  height: 20px;
  line-height: 20px;
  padding: 10px;
  vertical-align: middle;
  font-size: 14px;
}
.tb-list.in th {
  background-color: #fff;
}

.no-data,
.tb-list td.no-data {
  position: relative;
  width: 100%;
  height: 200px;
  color: #888;
  padding-top: 85px;
}
.no-data::before,
.tb-list td.no-data::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -55%);
  background: url(/resources/image/icon/ic-nodata.svg) center top/contain no-repeat;
}

.no-data {
  min-height: 200px;
  padding-top: 90px;
}

.tb-list.in.code {
  border: none;
  margin-bottom: 8px;
}
.tb-list.in.code tr {
  border: none;
}
.tb-list.in.code th {
  text-align: left;
  padding: 0 5px;
  font-size: 13px;
  color: #65707C;
}
.tb-list.in.code th:first-child {
  padding-left: 0;
}
.tb-list.in.code th:last-child {
  padding-right: 0;
}
.tb-list.in.code td {
  text-align: left;
  padding: 5px;
}
.tb-list.in.code td:first-child {
  padding-left: 0;
}
.tb-list.in.code td:last-child {
  padding-right: 0;
}

.pagenation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 65px auto;
  text-align: center;
}
.pagenation > a {
  width: 40px;
  height: 40px;
  border: 1px solid #E9E9F1 !important;
  margin-right: 5px;
  transition: all 0.3s;
}
.pagenation > a:last-child, .pagenation > a:nth-child(2) {
  margin-right: 0;
}
.pagenation > a.on {
  border-color: #D3DCE7;
}
.pagenation > a.on:hover {
  border-color: #98B1CC !important;
}
.pagenation > a.btn-first, .pagenation > a.btn-prev, .pagenation > a.btn-next, .pagenation > a.btn-last {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.pagenation > a.btn-prev, .pagenation > a.btn-next {
  background-size: 6px;
}
.pagenation > a.btn-first {
  background-image: url(/resources/image/btn/btn-first-off.svg);
}
.pagenation > a.btn-first.on {
  background-image: url(/resources/image/btn/btn-first-on.svg);
}
.pagenation > a.btn-prev {
  background-image: url(/resources/image/btn/btn-prev-off.svg);
}
.pagenation > a.btn-prev.on {
  background-image: url(/resources/image/btn/btn-prev-on.svg);
}
.pagenation > a.btn-next {
  background-image: url(/resources/image/btn/btn-next-off.svg);
}
.pagenation > a.btn-next.on {
  background-image: url(/resources/image/btn/btn-next-on.svg);
}
.pagenation > a.btn-last {
  background-image: url(/resources/image/btn/btn-last-off.svg);
}
.pagenation > a.btn-last.on {
  background-image: url(/resources/image/btn/btn-last-on.svg);
}
.pagenation > a:hover {
  border-color: #98B1CC;
}
.pagenation ul {
  display: flex;
  flex-direction: row;
  margin: 0 10px;
}
.pagenation ul li {
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin-right: 5px;
  border: 1px solid #D3DCE7;
  cursor: pointer;
  transition: all 0.3s;
}
.pagenation ul li:hover {
  border-color: #98B1CC;
}
.pagenation ul li:last-child {
  margin-right: 0;
}
.pagenation ul li.click {
  background-color: #142E47;
  border-color: #142E47;
}
.pagenation ul li.click a {
  font-weight: 700;
  color: #fff;
}

.tb-view {
  table-layout: fixed;
  white-space: nowrap;
  border-top: 1px solid #98B1CC;
  word-break: break-all;
  line-height: 1.5;
}
.tb-view tr {
  border-bottom: 1px solid #ebeef3;
}
.tb-view th, .tb-view td {
  height: 64px;
  vertical-align: middle;
  padding: 15px 20px;
}
.tb-view th {
  font-weight: 500;
  background-color: #F3F6F9;
}
.tb-view td {
  display: table-cell;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.tb-view.show {
  overflow: unset;
  text-overflow: unset;
  word-break: break-all;
  white-space: normal;
}


.tb-view tr.popup_g td input {
  width: 125px;
  height: 32px;
}
.tb-view tr.popup_g td p {
  font-size: 14px;
  margin-top: 4px;
}


.code-info-group {
  display: inline-block;
  margin-bottom: 10px;
}

.code-area {
  position: relative;
  padding: 15px 20px;
  border: 10px solid #F8F9FD;
  border-top: none;
  border-radius: 5px;
}
.code-area:first-of-type {
  border-top: 10px solid #f8f9fd !important;
}
.code-area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 12px;
}
.code-area ul li {
  flex-basis: 205px;
  margin-bottom: 10px;
}
.code-area ul li div {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #142E47;
}
.code-area ul li.code-num {
  flex-basis: 90px;
}
.code-area ul li.code-num.reset {
  flex-basis: 205px;
}

.code-sm-txt {
  display: inline-block;
  font-size: 12px;
  min-width: 25px;
  line-height: 34px;
  padding-left: 3px;
}

.b-tit {
  position: relative;
  display: inline-block;
  font-weight: 500;
  text-align: center;
  border-radius: 3px;
  padding-left: 10px;
}
.b-tit::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 0;
  top: 12px;
  background-color: #6457B9;
  border-radius: 50%;
}

.code-total {
  height: 34px;
  line-height: 34px;
  border-bottom: 1px solid #D3DCE7;
}

.code-comment {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}

.date-group.tb-in {
  width: 191px;
}

.txt-between {
  display: inline-block;
  height: 34px;
  line-height: 34px;
  margin: 0 5px;
}

.tb-info-box.none {
  border: 1px solid #D3DCE7;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-top: 20px;
}

td > a.link {
  font-size: 14px;
}

.link {
  font-weight: 700;
  color: #3566D6;
  border-bottom: 1px solid #3566D6;
  cursor: pointer;
}

.account-list > div {
  margin-top: 10px;
}
.account-list > div:first-child {
  margin-top: 0;
}

.fa-times {
  color: #65707C;
}

.fa-circle {
  font-size: 16px;
  color: #6457B9;
}

.ic-file {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.ic-file::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
}
.ic-file.pdf::before {
  background: url(/resources/image/icon/ic-pdf.svg) left center/contain no-repeat;
}
.ic-file.xls::before {
  background: url(/resources/image/icon/ic-xls.svg) left center/contain no-repeat;
}
.ic-file.xml::before {
  background: url(/resources/image/icon/ic-xml.svg) left center/contain no-repeat;
}
.ic-file.doc::before {
  background: url(/resources/image/icon/ic-doc.svg) left center/contain no-repeat;
}
.ic-file.hwp::before {
  background: url(/resources/image/icon/ic-hwp.svg) left center/contain no-repeat;
}
.ic-file.ppt::before {
  background: url(/resources/image/icon/ic-ppt.svg) left center/contain no-repeat;
}
.ic-file.txt::before {
  background: url(/resources/image/icon/ic-txt.svg) left center/contain no-repeat;
}
.ic-file.ai::before {
  background: url(/resources/image/icon/ic-ai.svg) left center/contain no-repeat;
}
.ic-file.psd::before {
  background: url(/resources/image/icon/ic-psd.svg) left center/contain no-repeat;
}
.ic-file.png::before {
  background: url(/resources/image/icon/ic-png.svg) left center/contain no-repeat;
}
.ic-file.jpg::before {
  background: url(/resources/image/icon/ic-jpg.svg) left center/contain no-repeat;
}
.ic-file.gif::before {
  background: url(/resources/image/icon/ic-gif.svg) left center/contain no-repeat;
}
.ic-file.mp4::before {
  background: url(/resources/image/icon/ic-mp4.svg) left center/contain no-repeat;
}
.ic-file.avi::before {
  background: url(/resources/image/icon/ic-avi.svg) left center/contain no-repeat;
}
.ic-file.zip::before {
  background: url(/resources/image/icon/ic-zip.svg) left center/contain no-repeat;
}
.ic-file.etc::before {
  background: url(/resources/image/icon/ic-etc.svg) left center/contain no-repeat;
}
.ic-file.exe::before {
  background: url(/resources/image/icon/ic-exe.svg) left center/contain no-repeat;
}
.ic-file.csv::before {
  background: url(/resources/image/icon/ic-csv.svg) left center/contain no-repeat;
}
.ic-file.code-comment::before {
  background: url(/resources/image/icon/ic-txt.svg) left center/contain no-repeat;
}

.file-group {
  display: block;
  min-width: 120px;
  margin: 10px 20px 0 0;
}
.file-group:first-child {
  margin-top: 0;
}
.file-group.sm {
  display: block;
  min-width: 120px;
  margin: 10px 20px 0 0;
}
.file-group > a {
  display: inline-block;
}

.tb-half-wrap {
  min-height: 500px;
  max-height: 500px;
  overflow: auto;
  position: relative;
}
.tb-half-wrap .tb-list thead th {
  position: sticky;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #D3DCE7;
}
.tb-half-wrap .tb-list thead th::before, .tb-half-wrap .tb-list thead th::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}
.tb-half-wrap .tb-list thead th::before {
  top: -1px;
  background-color: #333;
}
.tb-half-wrap .tb-list thead th::after {
  bottom: -1px;
  background-color: #D3DCE7;
}

.tb-list .btn-area.inline,
.tb-view .btn-area.inline {
  display: inline-block;
  vertical-align: middle;
}

.status-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.status-wrap .tb-status {
  font-size: 12px;
  background-color: #ccc;
  display: inline-block;
  padding: 4px 8px 5px;
  border-radius: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}
.status-wrap .tb-status:last-of-type {
  margin-bottom: 0;
}
.status-wrap .tb-status.primary {
  background-color: #e4fff8;
  color: #0eb389;
}
.status-wrap .tb-status.secondary {
  color: #FF9838;
  background-color: #fff7ec;
}

td .file-group:first-of-type {
  margin-top: 0px;
}
td .txt-al {
  padding-left: 10px;
  padding-right: 10px;
}
td button.sm {
  margin-left: 0 !important;
}
td img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

header {
  position: relative;
}
header > ul {
  display: flex;
  justify-content: flex-end;
  height: 50px;
  width: 100%;
  line-height: 50px;
  background-color: #F7F9FA;
  font-size: 14px;
  font-weight: 500;
  padding-right: 145px;
}
header > ul > li {
  display: flex;
  flex-direction: row;
  margin-left: 25px;
  position: relative;
  letter-spacing: -1px;
  cursor: pointer;
}
header > ul > li.click .notibox {
  display: inline-block;
}
header > ul > li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  top: 16px;
  right: -13px;
  background-color: #D3DCE7;
  cursor: default;
}
header > ul > li:last-child:before {
  display: none;
}
header > ul > li:last-child > a {
  padding-right: 18px;
  background: url(/resources/image/btn/btn-logout.svg) right top 16px/14px no-repeat;
}
header > ul > li .ic-bell {
  display: inline-block;
  position: absolute;
  width: 14px;
  height: 20px;
  left: -18px;
  top: 14px;
  background: url(/resources/image/icon/ic-bell-off.svg) center/14px no-repeat;
}
header > ul > li .ic-bell.on {
  background-image: url(/resources/image/icon/ic-bell-on.svg);
}
header > ul > li .ic-bell.on::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 1px;
  width: 8px;
  height: 8px;
  background-color: #FA495B;
  border-radius: 100%;
  z-index: 2;
}
header > ul > li .ic-bell.on::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -1px;
  width: 12px;
  height: 12px;
  background-color: #FA495B;
  border-radius: 100%;
  z-index: 1;
  animation: bell 0.5s ease-in-out 0s infinite alternate;
}
@keyframes bell {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.6);
    opacity: 0.2;
  }
}
header > ul > li b {
  color: #3566D6;
  font-weight: 700;
  padding-left: 3px;
}

.notibox {
  position: absolute;
  min-width: 350px;
  max-height: 500px;
  left: 0;
  top: 45px;
  background-color: #fff;
  border: 1px solid #F3F6F9;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  border-radius: 3px;
  z-index: 999;
  letter-spacing: -0.6px;
  overflow: auto;
  padding: 10px 15px;
  display: none;
}
.notibox li {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  padding: 8px 10px;
  border-bottom: 1px dotted #D3DCE7;
  transition: all 0.3s;
}
.notibox li:hover {
  background-color: #F3F6F9;
}
.notibox li:last-child {
  border-bottom: none;
}
.notibox li > a {
  width: 100%;
  height: 100%;
}
.notibox li .noti-date {
  color: #888;
  font-weight: 400;
  font-size: 12px;
}
.notibox li > a > div:first-child {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-weight: 500;
  height: 22px;
  line-height: 22px;
}
.notibox li > a > div:first-child > div {
  display: flex;
  flex-direction: row;
  font-size: 13px;
  padding-left: 15px;
  position: relative;
}
.notibox li > a > div:first-child > div:before {
  content: "\f05a";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  left: 0;
  top: 1px;
  font-size: 11px;
  color: #6457B9;
}
.notibox li > a > div:first-child > div > span {
  display: inline-block;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notibox li > a > div:first-child > div > b {
  display: inline-block;
  position: relative;
  max-width: 116px;
  padding-left: 15px;
  color: #333;
  font-weight: 500;
  color: #888;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notibox li > a > div:first-child > div > b:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  left: 7px;
  top: 11px;
  background-color: #D3DCE7;
  border-radius: 50%;
}
.notibox li > a > div:nth-child(2) {
  max-width: 290px;
  height: 20px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

nav {
  position: relative;
  display: flex;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 70px;
  border-bottom: 1px solid #D3DCE7;
}
nav > .logo {
  position: absolute;
  top: -50px;
  left: 135px;
  min-width: 185px;
  height: 50px;
  /* margin-right: 177px; */
  background: url(/resources/image/admin-logo.svg) left center/contain no-repeat;
}
nav .gnb {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
nav .gnb > ul {
  display: flex;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2px;
  text-align: center;
  overflow: hidden;
}
nav .gnb > ul:hover {
  overflow: visible;
}
nav .gnb > ul > li {
  height: 100%;
  position: relative;
  /* padding: 0 40px; */
  flex: 1 1 auto;
}
nav .gnb > ul > li a {
  height: 100%;
  position: relative;
  display: block;
  min-width: 90px;
  letter-spacing: -1.3px;
}
nav .gnb > ul > li > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #6457B9;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.3s;
}
nav .gnb > ul > li:hover a:after, nav .gnb > ul > li.click a:after {
  width: 100%;
}
nav .gnb > ul li ul {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  left: 0;
  z-index: 998;
  padding-top: 10px;
}
nav .gnb > ul li ul li {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  z-index: 2;
}
nav .gnb > ul li ul li a {
  display: block;
  min-width: 130px;
  /* padding: 0 20px; */
  transition: all 0.3s;
  letter-spacing: -1.3px;
}
nav .gnb > ul li ul li:hover a {
  color: #6457B9;
}

.gnb + div {
  position: absolute;
  display: block;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  z-index: 997;
  opacity: 0;
  transition: all 0.1s;
}

.gnb:hover + div {
  height: auto;
  min-height: 450px;
  opacity: 1;
  border-bottom: 1px solid #D3DCE7;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.3);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.3);
}

.wrap {
  width: 100%;
  height: 100%;
}

.con-wrap.dash {
  width: 1440px;
  min-height: 780px;
  margin: 0 auto;
  padding: 25px 15px 10px;
}
.con-wrap.dash .h2-dash {
  display: none;
}

.option-area {
  margin-bottom: 15px;
}

.btn-checkbox,
.select-dash-group {
  display: flex;
  height: 35px;
  line-height: 33px;
  border: 1px solid #D3DCE7;
  border-radius: 50px;
  margin-right: 8px;
  background-color: #EFF1F5;
  opacity: 0.6;
}
.btn-checkbox.on,
.select-dash-group.on {
  opacity: 1;
  font-weight: 500;
  background-color: #fff;
}

.select-dash-group {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 135px;
  padding: 0 18px;
  background-position: right 15px center;
  background-size: 10px;
  background-repeat: no-repeat;
  background-image: url(/resources/image/bg/bg-select-off.svg);
  cursor: default;
}
.select-dash-group.click {
  background-image: url(/resources/image/bg/bg-select-click.svg);
}
.select-dash-group.click > div:first-child {
  font-weight: 700;
}
.select-dash-group.click > .select-dash {
  display: inline-block;
}
.select-dash-group .select-dash {
  position: absolute;
  z-index: 1;
  width: 100%;
  max-height: 230px;
  overflow: auto;
  left: 0;
  top: 40px;
  border-radius: 3px;
  border: 1px solid #D3DCE7;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  display: none;
}
.select-dash-group .select-dash li {
  padding: 3px 18px;
}
.select-dash-group .select-dash li:hover {
  background-color: #F3F6F9;
}

.group-dash-01 {
  width: 1400px;
}
.group-dash-01.other {
  width: 450px;
}
.group-dash-01 .tit-dash {
  text-align: center;
}
.group-dash-01 .tit-dash.bg-navy, .group-dash-01 .tit-dash.bg-blue {
  color: #fff;
}
.group-dash-01 .tit-dash.bg-navy {
  background-color: #38354E;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.group-dash-01 .tit-dash.bg-blue {
  background-color: #6457B9;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tit-dash {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  letter-spacing: -2px;
}

.info-card > li {
  position: relative;
  letter-spacing: -1.5px;
}

.info-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 12px;
}
.info-card.dash-card-01 > li {
  width: 165px;
  height: 64px;
  padding: 12px;
  font-weight: 700;
  border: 1px solid #EDEDF4;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
}
.info-card.dash-card-01 > li div:first-child {
  font-size: 14px;
  margin-bottom: 6px;
}
.info-card.dash-card-01 > li div:last-child {
  font-size: 15px;
  text-align: right;
  color: #005393;
}
.info-card.dash-card-01 > li div:last-child span {
  font-size: 13px;
  padding-left: 2px;
}
.info-card.dash-card-01 > li:nth-child(5), .info-card.dash-card-01 > li:nth-child(6), .info-card.dash-card-01 > li:nth-child(7), .info-card.dash-card-01 > li:nth-child(8) {
  /*margin-top: 12px;*/
}
.info-card.dash-card-02, .info-card.dash-card-03 {
  width: 100%;
  height: 64px;
  padding: 12px 17px;
  font-weight: 700;
  border: 1px solid #DEE9FF;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
}
.info-card.dash-card-02 > li {
  width: 74px;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
}
.info-card.dash-card-02 > li:last-child div:last-child {
  color: #FA495B;
}
.info-card.dash-card-02 > li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  right: -21px;
  top: 8px;
  background-color: #DEE9FF;
}
.info-card.dash-card-02 > li:last-child::before {
  display: none;
}
.info-card.dash-card-02 div:first-child {
  font-size: 14px;
  margin-bottom: 6px;
}
.info-card.dash-card-02 div:last-child {
  font-size: 15px;
  color: #3566D6;
}
.info-card.dash-card-02 div:last-child span {
  font-size: 13px;
  padding-left: 1px;
}
.info-card.dash-card-03 > li {
  width: 45%;
  line-height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.info-card.dash-card-03 > li div:first-child {
  font-size: 14px;
}
.info-card.dash-card-03 > li div:last-child {
  font-size: 15px;
  color: #3566D6;
}
.info-card.dash-card-03 > li div:last-child span {
  font-size: 13px;
  padding-left: 1px;
}
.info-card.dash-card-03 > li:first-child:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  right: -23px;
  top: 8px;
  background-color: #DEE9FF;
}

.group-dash-02 {
  width: 210px;
  position: relative;
}
.group-dash-02 > .tit-dash {
  line-height: 43px;
}
.group-dash-02 .info-card-system {
  width: 100%;
}
.group-dash-02 .info-card-system li {
  position: relative;
  height: 68px;
  border-radius: 10px;
  background-color: #38354E;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  margin-bottom: 16px;
}
.group-dash-02 .info-card-system li div {
  max-width: 180px;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
}
.group-dash-02 .info-card-system li span {
  font-size: 12px;
}
.group-dash-02 .info-card-system li:last-child {
  margin-bottom: 0;
}
.group-dash-02 .info-card-system li.system-ing:before, .group-dash-02 .info-card-system li.system-ready:before, .group-dash-02 .info-card-system li.system-done:before {
  position: absolute;
  width: 57px;
  height: 24px;
  line-height: 24px;
  top: -8px;
  right: 0;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px 10px 0 10px;
}
.group-dash-02 .info-card-system li.system-ing:before {
  content: "점검중";
  background-color: #EB1E2D;
}
.group-dash-02 .info-card-system li.system-ready:before {
  content: "점검예정";
  background-color: #222;
}
.group-dash-02 .info-card-system li.system-done:before {
  content: "점검완료";
  background-color: #65707C;
}
.group-dash-02 .btn-system {
  position: absolute;
  top: 5px;
  right: 0;
  cursor: default;
}
.group-dash-02 .btn-system > button {
  width: 30px;
  height: 30px;
  background-size: 7px;
  background-position: center;
  background-repeat: no-repeat;
}
.group-dash-02 .btn-system > button:first-child {
  margin-right: 5px;
  background-image: url(/resources/image/btn/btn-arrow-dash-l-on.svg);
}
.group-dash-02 .btn-system > button.off:first-child {
  background-image: url(/resources/image/btn/btn-arrow-dash-l-off.svg);
}
.group-dash-02 .btn-system > button:last-child {
  background-image: url(/resources/image/btn/btn-arrow-dash-r-on.svg);
}
.group-dash-02 .btn-system > button.off:last-child {
  background-image: url(/resources/image/btn/btn-arrow-dash-r-off.svg);
}

.group-dash-03 .tit-dash {
  margin-top: 8px;
}
.group-dash-03 .row.adjust > div {
  width: 690px;
}
.group-dash-03 .row.adjust > div .dash-left-03 {
  max-height: 437px;
  overflow: hidden;
}
.group-dash-03 .row.adjust > div > ul {
  width: 100%;
  height: 437px;
  overflow-y: auto;
  border-radius: 10px;
}
.group-dash-03 .row.adjust > div > ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 145px;
  padding: 20px 30px;
  cursor: pointer;
}
.group-dash-03 .row.adjust > div > ul li > div {
  display: flex;
  flex-direction: row;
}
.group-dash-03 .row.adjust > div > ul li:before {
  content: "";
  position: absolute;
  width: 630px;
  height: 1px;
  left: 30px;
  bottom: 0;
  background-color: #D3DCE7;
}
.group-dash-03 .row.adjust > div > ul li:hover {
  background-color: #F3F6F9;
  transition: all 0.3s;
}
.group-dash-03 .row.adjust > div > ul li.click {
  background-color: #F3F6F9;
  border-bottom: none;
}
.group-dash-03 .row.adjust > div > ul li.click > div:first-child span {
  font-weight: 700;
}
.group-dash-03 .row.adjust > div > ul li.click > div:first-child > div:last-child {
  display: inline-block;
}
.group-dash-03 .row.adjust > div > ul li.click:before {
  background-color: transparent;
}
.group-dash-03 .row.adjust > div > ul li.click .dash-list-01 span {
  display: inline-block;
  max-width: 470px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.group-dash-03 .row.adjust > div > ul li.click .dash-btn-group,
.group-dash-03 .row.adjust > div > ul li.click .dash-btn-group button {
  opacity: 1;
  display: inline-block;
}

.dash-list-01 {
  margin-bottom: 15px;
}
.dash-list-01 p {
  display: inline-block;
  min-width: 56px;
  height: 54px;
  line-height: 54px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-right: 11px;
}
.dash-list-01 p.state-time-01 {
  background-color: #FF8B03;
}
.dash-list-01 p.state-time-02 {
  background-color: #3566D6;
}
.dash-list-01 p.state-time-03 {
  color: #65707c;
  background-color: #dadee7;
}
.dash-list-01 .dash-tit-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dash-list-01 .dash-tit-box > div:first-child {
  width: 50px;
  height: 22px;
  line-height: 21px;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.dash-list-01 .dash-tit-box > div:first-child.state-01 {
  background-color: #222;
  padding: 0 15px;
}
.dash-list-01 .dash-tit-box > div:first-child.state-02 {
  background-color: #6E8D8F;
  padding: 0 11px;
}
.dash-list-01 span {
  display: inline-block;
  line-height: 22px;
  padding-top: 3px;
  font-size: 16px;
  font-weight: 500;
  max-width: 468px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-list-01 .dash-btn-group {
  display: flex;
  flex-direction: row;
  position: absolute;
  right: 30px;
  opacity: 0;
}
.dash-list-01 .dash-btn-group button {
  width: 38px;
  height: 38px;
  background-color: #fff;
  border-radius: 50px;
  margin-left: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  display: none;
}
.dash-list-01 .dash-btn-group .btn-excel {
  background-image: url(/resources/image/btn/btn-excel.svg);
}
.dash-list-01 .dash-btn-group .btn-add {
  background-image: url(/resources/image/btn/btn-add.svg);
}

.dash-list-02 {
  margin-bottom: 6px;
}

.dash-list-02 div,
.dash-list-03 div {
  position: relative;
  letter-spacing: -1px;
  font-weight: 500;
  padding-right: 10px;
  margin-right: 10px;
  font-size: 13px;
}
.dash-list-02 div:before,
.dash-list-03 div:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  top: 2px;
  right: 0;
  background-color: #D3DCE7;
}
.dash-list-02 span,
.dash-list-03 span {
  font-size: 13px;
}

.dash-list-03 span {
  font-weight: 500;
  color: #111;
}

.dash-right-03 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 25px;
  border-radius: 10px;
  background-color: #F3F6F9;
}
.dash-right-03 .box-dash {
  width: 200px;
  height: 149px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 17px;
}
.dash-right-03 .box-dash > div {
  height: 38px;
  line-height: 38px;
  background-color: #78739E;
  color: #fff;
  text-align: center;
  background-position: left;
  background-size: 15px;
  background-repeat: no-repeat;
}
.dash-right-03 .box-dash > div img {
  display: inline-block;
  width: 15px;
  height: 12px;
  margin-right: 3px;
  vertical-align: middle;
  margin-bottom: 2px;
}
.dash-right-03 .box-dash.other > div {
  background-color: #5C577D;
}
.dash-right-03 .box-dash ul {
  width: 100%;
}
.dash-right-03 .box-dash ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 36px;
  line-height: 36px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #F3F6F9;
}
.dash-right-03 .box-dash ul li span {
  font-weight: 700;
}
.dash-right-03 .box-dash ul li:last-child {
  border-bottom: none;
}
.dash-right-03 .box-dash.count-01 ul li {
  height: 55px;
  line-height: 55px;
}
.dash-right-03 .box-dash.count-02 ul li {
  height: 27px;
  line-height: 27px;
}

.box-dash-last {
  width: 153px;
  height: 65px;
  background-color: #fff;
  border-radius: 10px;
}
.box-dash-last li {
  padding: 10px 12px 15px;
  font-weight: 700;
}
.box-dash-last li div {
  font-size: 14px;
}
.box-dash-last li div img {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 6px;
  vertical-align: middle;
}
.box-dash-last li span {
  display: inline-block;
  width: 100%;
  text-align: right;
  font-size: 13px;
}
.box-dash-last:last-child span {
  color: #FA495B;
}

.dash-foot {
  width: 1400px;
  margin: 5px auto 0;
  border: none;
  padding: 0 !important;
}

.con-wrap {
  width: 1440px;
  min-height: 782px;
  margin: 0 auto;
  padding: 55px 30px 9px;
}

h2, h3 {
  font-size: 24px;
  font-weight: 700;
}

h3 {
  color: #111;
}

h4 {
  height: 46px;
  line-height: 46px;
  display: inline-block;
  position: relative;
  padding: 0 9px;
  font-size: 18px;
  font-weight: 700;
}
h4:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background-color: #6457B9;
}

h5 {
  height: 55px;
  line-height: 38px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 700;
}
h5:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  color: #6457B9;
  border: 3px solid #6457B9;
  left: 0;
  top: 15px;
  border-radius: 50%;
}

h6 {
  height: 48px;
  line-height: 40px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: 17px;
  padding-left: 15px;
  font-weight: 700;
}
h6:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 18px;
  border: none;
  border-radius: 0;
  left: 0;
  top: 12px;
  background-color: #98B1CC;
}

.tooltip {
  position: absolute;
  visibility: visible;
  display: inline-block;
  line-height: 1.3;
  min-width: 100px;
  max-width: 500px;
  color: #6457B9;
  background-color: #e3f1fd;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  z-index: 10003;
}

.tooltip-wrap {
  position: absolute;
  left: 150px;
  right: 100px;
  top: 975px;
  z-index: 1004;
}

.tooltip-group {
  min-width: 200px;
  max-width: 100%;
  background-color: #fff;
  border: 5px solid #D3DCE7;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.8);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.8);
  transition: all 0.3s;
  padding: 25px 30px;
  border-radius: 25px;
  font-size: 13px;
  line-height: 1.4;
}
.tooltip-group.left {
  position: relative;
}
.tooltip-group.left::after {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  top: -21px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #D3DCE7;
}
.tooltip-group.right {
  position: relative;
}
.tooltip-group.right::after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: -21px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #D3DCE7;
}
.tooltip-group ul {
  display: flex;
  flex-direction: column;
}
.tooltip-group ul li {
  display: flex;
  padding-bottom: 10px;
}
.tooltip-group ul li:last-of-type {
  padding-bottom: 0;
}
.tooltip-group ul .tooltip-left {
  color: #888;
  font-weight: 500;
  width: 90px;
  padding-right: 10px;
  word-break: break-all;
}
.tooltip-group ul .tooltip-right {
  width: calc(100% - 90px);
  color: #222;
}
.tooltip-group p {
  color: #222;
  line-height: 1.4;
}

.border-wrap {
  padding: 30px;
  border: 1px solid #D3DCE7;
}
.border-wrap+.border-wrap{
  margin-top: 30px;
}
.border-wrap.no-img {
  text-align: center;
  border: 1px solid #D3DCE7;
}
.border-wrap.no-img > img {
  display: inline-block;
  width: 150px;
}
.border-wrap.no-img > span {
  display: block;
  padding-top: 20px;
  color: #888;
}
.border-wrap.no-img > span > b {
  color: #6457B9;
  font-weight: 500;
}

.left-menu {
  width: 280px;
}
.left-menu > ul {
  width: 100%;
  margin-top: 30px;
}
.left-menu > ul > li {
  position: relative;
  line-height: 54px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #D3DCE7;
  transition: all 0.3s;
}
.left-menu > ul > li > a {
  padding: 0 21px;
}
.left-menu > ul > li > a .left-ic-arrow {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  right: 0px;
  top: 12px;
  background: url(/resources/image/bg/bg-leftmenu-off.svg) center/8px no-repeat;
  transition: all 0.3s;
}
.left-menu > ul > li.click > a {
  color: #6457B9 !important;
}
.left-menu > ul > li.click > a .left-ic-arrow {
  transform: rotate(90deg);
  transition: all 0.3s;
}
.left-menu ul > li > ul {
  padding: 16px 0 18px;
  border-top: 1px solid #D3DCE7;
}
.left-menu ul > li > ul li {
  position: relative;
  line-height: 30px;
  font-size: 15px;
  font-weight: 500;
  padding-left: 5px;
}
.left-menu ul > li > ul li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 14px;
  left: 21px;
  background-color: #888;
  border-radius: 50px;
}
.left-menu ul > li > ul li:hover:before {
  background-color: #65707C;
}
.left-menu ul > li > ul li.on:before {
  background-color: #333;
}
.left-menu ul > li > ul li.on a {
  color: #333;
}
.left-menu ul > li > ul li a {
  padding: 0 10px 0 30px;
  color: #888;
  transition: all 0.3s;
}
.left-menu ul > li > ul li a:hover {
  color: #333;
}

.sub-wrap {
  width: 1038px;
  min-height: 670px;
  padding-bottom: 50px;
  margin-top: 24px;
  position: relative;
}
.sub-wrap .breadcrumb {
  display: flex;
  flex-direction: row;
  margin: 20px 0 50px;
}
.sub-wrap .breadcrumb li {
  position: relative;
  padding-right: 31px;
}
.sub-wrap .breadcrumb li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  right: 15px;
  top: 2px;
  background-color: #999;
}
.sub-wrap .breadcrumb li:last-child:before {
  display: none;
}
.sub-wrap .breadcrumb li a {
  color: #888;
}
.sub-wrap .breadcrumb li a:hover {
  color: #65707C;
}

.sch-wrap {
  position: relative;
  margin-bottom: 50px;
}
.sch-wrap .sch-lg-input {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 50px;
  line-height: 50px;
  width: 100%;
  font-size: 16px;
  background-color: #F3F6F9;
  text-indent: 20px;
  border: 2px solid #F3F6F9;
}
.sch-wrap .sch-lg-input > .btn-x {
  display: none;
}
.sch-wrap .sch-lg-input.on > .btn-x {
  display: inline-block;
}

.btn-sch-wrap button {
  min-width: 108px;
  height: 50px;
  padding: 0 25px;
  font-size: 16px;
  transition: all 0.3s;
}
.btn-sch-wrap .btn-sch {
  margin-left: 12px;
  color: #fff;
  background-color: #6457B9;
}
.btn-sch-wrap .btn-sch:hover {
  background-color: #7569CA;
}
.btn-sch-wrap .btn-detail {
  margin-left: 8px;
  border: 1.5px solid #D3DCE7;
  transition: all 0.3s;
}
.btn-sch-wrap .btn-detail:hover {
  border-color: #98B1CC;
}

.search-mid {
  display: flex;
  padding-top: 3px;
}
.search-mid > select {
  width: 200px;
}
.search-mid .sch-tit {
  min-width: 50px;
  line-height: 34px;
  font-size: 14px;
  font-weight: 500;
}

.detail-wrap {
  display: none;
  position: absolute;
  width: 100%;
  top: 60px;
  padding: 10px 35px 30px 35px;
  border: 1px solid #E9E9F1;
  background-color: #fff;
  z-index: 2;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
}
.detail-wrap.on {
  display: inline-block;
  position: static;
  margin-top: 10px;
}
.detail-wrap ul {
  margin-bottom: 20px;
}
.detail-wrap ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
}
.detail-wrap ul li > .w-half {
  width: 48%;
}
.detail-wrap ul li > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.detail-wrap ul li > div > .sch-tit {
  min-width: 100px;
  font-weight: 500;
  font-size: 14px;
}
.detail-wrap ul li > div > .sch-view {
  width: 100%;
  flex-wrap: wrap;
}
.detail-wrap ul li > div > .sch-view.num-02 {
  justify-content: space-between;
}
.detail-wrap ul li > div > .sch-view.num-02 > select, .detail-wrap ul li > div > .sch-view.num-02 > input {
  width: 48%;
}

.date-group:focus {
  outline: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #98B1CC !important;
}

.date-group {
  position: relative;
  width: 47%;
  height: 34px;
  border: 1px solid #D3DCE7;
}
.date-group input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding-right: 30px;
}
.date-group button {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 30px;
  height: 32px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
  padding: 0;
}
.date-group button:before {
  content: "\f073";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  color: #98B1CC;
  width: 30px;
  height: 32px;
  line-height: 32px;
  top: 0;
  right: 0;
  font-size: 15px;
  transition: all 0.3s;
}
.date-group button:hover, .date-group.on button {
  background-color: #f3f6fd;
}
.date-group button:hover:before, .date-group.on button:before {
  color: #3566D6;
}

.sch-word {
  margin-top: 20px;
  height: 30px;
  line-height: 30px;
}
.sch-word div {
  font-weight: 700;
}
.sch-word div span {
  color: #6457B9;
}
.sch-word ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: 19px;
}
.sch-word ul li {
  display: flex;
  flex-direction: row;
  min-width: 30px;
  height: 30px;
  line-height: 15px;
  padding: 7px 9px 7px 15px;
  margin: 0 5px 8px 0;
  background-color: #F1F5F9;
  color: #65707C;
  border-radius: 50px;
}
.sch-word ul li div {
  font-size: 13px;
  font-weight: 400;
  margin-right: 12px;
}

.select-row {
  display: flex;
}
.select-row .select-label {
  font-weight: 500;
  font-size: 13px;
  line-height: 35px;
  padding-right: 10px;
}

.select-custom {
  display: flex;
  flex-direction: column;
  position: relative;
}
.select-custom div {
  width: 155px;
  height: 35px;
  line-height: 34px;
  margin-left: 10px;
  padding: 0 15px;
  border: 1px solid #D3DCE7;
  background: url(/resources/image/bg/bg-select-off.svg) right 15px center/10px no-repeat;
}
.select-custom div span {
  color: #6457B9;
}
.select-custom ul {
  display: none;
  position: absolute;
  width: 155px;
  top: 40px;
  left: 10px;
  padding: 5px 0;
  background-color: #fff;
  border: 1px solid #D3DCE7;
  z-index: 1;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.5);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.5);
}
.select-custom ul li {
  padding: 10px 15px;
  cursor: pointer;
}
.select-custom ul li:hover {
  background-color: #F3F6F9;
}
.select-custom ul li span {
  color: #6457B9;
}
.select-custom.click ul {
  display: inline-block;
}

.tab-box-wrap {
  position: relative;
}
.tab-box-wrap > ol {
  display: flex;
}
.tab-box-wrap > ol > li {
  height: 50px;
  line-height: 48px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 500;
  border-right: 1px solid #D3DCE7;
  border-top: 1px solid #D3DCE7;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-box-wrap > ol > li.click {
  color: #fff;
  background-color: #65707C;
}
.tab-box-wrap > ol > li.click:hover {
  color: #fff;
  background-color: #65707C;
}
.tab-box-wrap > ol > li:first-child {
  border-left: 1px solid #D3DCE7;
}
.tab-box-wrap > ol > li:hover {
  background-color: #F3F6F9;
}
.tab-box-wrap > .tab-box {
  padding: 30px;
  border: 1px solid #D3DCE7;
}

.info-time {
  color: #65707C;
  font-size: 14px;
  line-height: 48px;
}
.info-time span {
  display: inline-block;
  font-weight: 500;
  margin-right: 8px;
  line-height: 45px;
}

.info-imgbox {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 180px;
  background-color: #F3F6F9;
  text-align: center;
  z-index: -1;
  padding-bottom: 20px;
}
.info-imgbox:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  z-index: -1;
}
.info-imgbox.imgbox-primary:before {
  background-color: #6457B9;
}
.info-imgbox.imgbox-warning:before {
  background-color: #FF9838;
}
.info-imgbox.imgbox-fail:before {
  background-color: #FA495B;
}
.info-imgbox div {
  width: 800px;
  min-height: 150px;
  margin: 30px auto 0 auto;
  background-color: #fff;
  border-radius: 3px;
  padding: 0 30px 30px;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
}
.info-imgbox div img {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  display: inline-block;
  width: 50px;
  height: 50px;
}
.info-imgbox div span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding-top: 100px;
  line-height: 1.2;
}
.info-imgbox div span b.imgbox-txt-primary {
  color: #6457B9;
}
.info-imgbox div span b.imgbox-txt-fail {
  display: block;
  margin-bottom: 5px;
  margin-right: 5px;
  font-size: 16px;
}
.info-imgbox div span b.imgbox-txt-fail > strong {
  color: #FA495B;
}

.imgbox-fail div span {
  font-size: 14px;
}

.pr-step {
  padding: 35px 30px;
  border: 1px solid #E9E9F1;
  margin-bottom: 30px;
  -webkit-box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  box-shadow: 3px 3px 5px rgba(223, 223, 235, 0.25);
  border-radius: 3px;
}
.pr-step > ol {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.pr-step > ol > li {
  min-width: 200px;
  max-width: 200px;
  margin-right: 50px;
  position: relative;
  padding-top: 17px;
  margin-top: 20px;
  word-break: break-all;
}
.pr-step > ol > li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
  background-color: #E9E9F1;
  border-radius: 50px;
}
.pr-step > ol > li.on:before {
  background-color: #7569CA;
}
.pr-step > ol > li.on div,
.pr-step > ol > li.on span {
  color: #7569CA;
}
.pr-step > ol > li:nth-of-type(4n+4) {
  margin-right: 0;
}
.pr-step > ol > li:nth-of-type(1), .pr-step > ol > li:nth-of-type(2), .pr-step > ol > li:nth-of-type(3), .pr-step > ol > li:nth-of-type(4) {
  margin-top: 0;
}
.pr-step > ol > li div {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.pr-step > ol > li span {
  font-size: 13px;
  color: #888;
  line-height: 1.2;
}

footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: 11px;
  color: #D3DCE7;
  border-top: 1px solid #E9E9F1;
  padding: 22px 0 40px;
}

.bb-chart-arcs .bb-chart-arcs-title {
  fill: #333;
  font-weight: 500;
  font-size: 16px !important;
}

.bb line,
.bb path {
  stroke: #555;
}

g text,
tspan {
  font-family: "Noto Sans KR", sans-serif;
}

.tox .tox-editor-container {
  font-family: "Noto Sans KR", sans-serif;
}

/* popup */
.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  overflow: auto;
}

.pop-wrap,
.pop-wide-wrap,
.alert-wrap {
  position: relative;
  width: 900px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  z-index: 10001;
}

.alert-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 150px;
  max-width: 300px;
  margin: 0 auto;
}

.alert-header {
  height: 50px;
  line-height: 50px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
}

.alert-content {
  min-height: 80px;
  padding: 20px;
  text-align: center;
}

.alert-foot .btn-area button {
  width: 50%;
}

.pop-wide-wrap {
  width: 1300px;
}

.pop-lg-wrap {
  width: 1700px;
}

.pop-header {
  position: relative;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #38354E;
}

.pop-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  max-height: 700px;
  overflow-y: auto;
}
.pop-content h5 {
  font-size: 16px;
  height: 45px;
  line-height: 40px;
  padding-left: 15px;
  white-space: nowrap;
}
.pop-content h5:after {
  width: 4px;
  height: 4px;
  top: 16px;
}
.pop-content h6 {
  font-size: 15px;
  padding-left: 12px;
}
.pop-content > .detail-wrap.on {
  position: inherit;
  padding: 10px 30px 25px 30px;
  margin-bottom: 20px;
}
.pop-content .tb-list.in {
  font-size: 14px;
}
.pop-content .tb-list.in td {
  padding: 10px 5px;
}
.pop-content .tb-list.in td.no-data {
  padding-top: 90px;
  cursor: default;
}
.pop-content .tab-box-wrap > ol > li {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
}
.pop-content .tab-box-wrap > .tab-box {
  padding: 10px 20px;
  max-height: 500px;
  overflow: auto;
}
.pop-content .pagenation {
  margin: 25px auto 15px auto;
}
.pop-content .pagenation a {
  width: 30px;
  height: 30px;
}
.pop-content .pagenation ul li {
  width: 30px;
  height: 30px;
  line-height: 27px;
}

.pop-half-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.pop-half-wrap .pop-half {
  width: 48.5%;
}

.info-work ul {
  display: flex;
  flex-direction: row;
}
.info-work ul li {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #D3DCE7;
  border-top: 1px solid #D3DCE7;
  border-bottom: 1px solid #D3DCE7;
  text-align: center;
  padding: 20px 10px;
}
.info-work ul li:first-child {
  border-left: 1px solid #D3DCE7;
}
.info-work ul li > span {
  display: inline-block;
  width: 100%;
}
.info-work ul li > span i {
  font-size: 23px;
  color: #fff;
  background-color: #3566D6;
  border-radius: 50%;
  padding: 10px;
}
.info-work ul li > div {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}
.info-work ul li > div > div {
  font-size: 17px;
  font-weight: 700;
}
.info-work ul li > div span {
  display: inline-block;
  font-weight: 500;
  margin: 10px 0;
}

.fa-chart-bar {
  color: #3566D6;
  text-align: center;
  font-size: 25px;
}

.slt-items {
  margin-left: 10px;
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
}
.slt-items > div {
  position: relative;
  width: 100%;
  height: 30px;
  overflow: hidden;
}
.slt-items > div ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.slt-items > div ul li {
  display: flex;
  align-items: center;
  margin-right: 8px;
  padding-bottom: 5px;
}
.slt-items > div ul li div {
  font-size: 13px;
}
.slt-items > div ul li .btn-x {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  margin-left: 2px;
  background-size: 6px;
}
.slt-items .arrow-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50px;
  height: 24px;
  border-radius: 12px;
  margin-right: 5px;
  margin-bottom: 2px;
  background-color: F3F6F9;
}
.slt-items .arrow-box button {
  padding: 8px;
  vertical-align: middle;
  margin-bottom: 2px;
  background-color: #F3F6F9;
}
.slt-items .arrow-box button i {
  color: #7e8892;
}
.slt-items .arrow-box button:hover i {
  color: #65707C;
}

.pop_content_d01 {
  border-color: transparent;
}



/* 2023.11.27 추가 */
.blind {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  width: 1px;
  height: 1px;
}
._flex{
  display: flex;
}
._alignCenter{
  align-items: center;
}
._justifyBetween{
  justify-content: space-between;
}
._justifyCenter{
  justify-content: center;
}
.mt-75{margin-top: 75px;}


.chart_wrap{
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.chart_wrap+.chart_title{
  margin-top: 80px;
}
.chart_title{
  margin: 20px 0px 10px 10px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px; /* 114.286% */
  letter-spacing: -0.28px;
}
.btn_refresh{
  width: 24px;
  height: 24px;
  background: url("../image/icon/btn_refresh.svg") no-repeat center;
}

.chart_left_wrap{
  flex: 0 0 320px;
  text-align: center;
}
.chart_right_wrap{
  flex: 0 0 420px;
}
.chart_ul_item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 350px;
  min-height: 100px;
  margin-top: 12px;
  border: 1px solid #DBDBE7;
  border-radius: 12px;
  padding: 30px 36px;
}
.chart_ul_item:first-of-type{
  margin-top: 0px;
}
.chart_ul_title{
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px; /* 100% */
  letter-spacing: -0.28px;
}
.chart_ul_data{
  color: #746CC6;
  font-size: 40px;
  font-weight: 700;
  line-height: 42px; /* 105% */
  letter-spacing: -0.8px;
}
.chart_ul_column{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chart_ul_column .chart_ul_item{
  flex-direction: column;
  min-width: 100px;
  min-height: 120px;
  margin-top: 0px;
  margin-left: 25px;
  padding: 30px;
}
.chart_ul_column .chart_ul_item:first-of-type{
  margin-left: 0px;
}
.chart_ul_column .chart_ul_title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  color: #888;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px; /* 114.286% */
  letter-spacing: -0.28px;
}
.chart_ul_column .chart_ul_title::after{
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  margin-top: 12px;
  background-color: #D3DCE7;
}
.chart_ul_column .chart_ul_data{
  color: #4E79DA;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px; /* 111.111% */
  letter-spacing: -0.36px;
}
/* 2023.11.27 추가 */


/* 2025.03.07 추가 */

.chart_ul_column.st02 {
  flex-wrap: wrap;
  margin: 0 -4px;
}

.chart_ul_column .chart_ul_item:first-of-type,
.chart_ul_column .chart_ul_item:last-of-type {
  width: 100%;
}
.chart_ul_column .chart_ul_item:first-of-type .border ,
.chart_ul_column .chart_ul_item:last-of-type .border {
  min-height: auto;
}
.chart_ul_column .chart_ul_item {
  width: 33.3%;
  text-align: center;
  margin: 0;
  padding: 4px;
  border: 0;
  min-width: auto;
  min-height: auto;
}
.chart_ul_column .chart_ul_item .border {
  border: 1px solid #DBDBE7;
  border-radius: 12px;
  width: 100%;
  min-width: 100px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

/* 2025.03.07 추가 */


/* 2023.12.18 추가 */
.tab-box-wrap .tab_list_top_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tab-box-wrap .tab_list_top_wrap > ol {
  display: flex;
}
.tab-box-wrap .tab_list_top_wrap > ol > li{
  height: 50px;
  line-height: 48px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 500;
  border-right: 1px solid #D3DCE7;
  border-top: 1px solid #D3DCE7;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-box-wrap .tab_list_top_wrap > ol > li:first-child {
  border-left: 1px solid #D3DCE7;
}
.tab-box-wrap .tab_list_top_wrap > ol > li.click{
  color: #fff;
  background-color: #65707C;
}


/* 2023.12.19 */
.hidden{display: none !important;}



/* 2024.01.02 */
.chart_subtitle{
  margin-bottom: 28px;
  color: #746CC7;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px; /* 111.111% */
  letter-spacing: -0.36px;
}
.chart_ul_row{
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 12px;
}
.chart_ul_row.fstart {
  justify-content: flex-start;
}
.chart_ul_row .chart_ul_item{
  min-width: initial;
  min-height: initial;
  border: none;
  padding: 0px;
}
.chart_ul_row .chart_ul_title{
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px; /* 116.667% */
  letter-spacing: -0.24px;
}
.chart_ul_row .chart_ul_data{
  margin-left: 4px;
  color: #4E79DA;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px; /* 114.286% */
  letter-spacing: -0.28px;
}
.chart_ul_row .chart_ul_item{
  margin-top: 0px;
  margin-left: 16px;
}
.chart_ul_row .chart_ul_item:first-child{
  margin-left: 0px;
}


/*# sourceMappingURL=style.css.map */

.n-label-1 {
  background-color: #7569CA;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 4px;
  margin-right: 8px;
  padding: 4px 8px;
  opacity: 0.8;
  text-align: center;
  letter-spacing: 0.5px;
}

.data-list.__qa_type_style .n-label-1{
  display: inline-block;
  min-width: 90px;
  height: 25px;
  line-height: 25px;
  padding: 0 8px;
}


/* 240807 키워드 클래스 추가 */
#keywordDiv {
  width: 100%;
}
.input_form {
  display: flex;
}
.input_form__head {
  display: flex;
  justify-content: end;
}
.input_form__body {
  flex: 1 1 100%;
  line-height: 30px;
}
.keyword_wrap {
  display: flex;
}
.btn_keyword {
  position: relative;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 16px;
  margin-left: 5px;
  outline: none;
  border: none;
  letter-spacing: -1px;
  cursor: pointer;
  background-color: #2B273D;
  color: #fff;
  border-radius: 3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  min-width: 120px;
  height: 35px;
  padding: 5px 10px;
  line-height: 1;
}
.input_form__txt {
  color: #666;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.24px;
  margin-top: 4px;
}
.form_center_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.tag_list {
  display: flex;
  flex-wrap: wrap;
}
.tag_list__item {
  margin-right: 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 240px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #737FA3;
  padding: 0 0 0 24px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.tag_list__remove {
  display: inline-block;
  width: 8px;
  height: 8px;
  padding: 24px;
  background: url('../image/icon/ico-close-white.svg') no-repeat 50% 50%;
}



/* 240809 썸네일 이미지 클래스 추가 */
.thum-imgbox {
  width: 20%;
  padding-bottom: 20%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.thum-imgbox > .img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.thum-imgbox.left {
  margin-right: auto;
}

.tb-view td .file_upload {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tb-view td .file_upload__dd {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.32px;
}
.tb-view td .file_upload__or {
  color: #AAA;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.28px;
  margin-top: 12px;
}
.tb-view td .btn-in {
  min-width: 130px;
  font-size: 16px;
  background-color: #2B273D;
  color: #fff;
  border-radius: 3px;
  padding: 6px 15px 8px 15px;
}
.tb-view td .btn-in > i {
  font-size: 11px;
  margin-right: 5px;
}
.tb-view td .file-group .file-img {
  display: inline-flex;
  width: 15px;
  height: 17px;
  margin-right: 5px;
  vertical-align: bottom;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.tb-view td .file_upload .file-group > a {
  font-size: 14px;
}

.tb-view .tit-depth-01 {
  position: relative;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  padding-left: 24px;
  height: auto;
  line-height: normal;
}
.tb-view .tit-depth-01::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('../image/icon/ic-sub-tit.svg') center center / contain no-repeat;
  position: absolute;
  left: 0;
  top: 5px;
}
.tb-view .tit-depth-01::after {
  display: none;
}
.tb-view .txt-line {
  padding-bottom: 10px;
  line-height: 1.5;
  word-break: break-all;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
}
.tb-view .txt-line::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #6457B9;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 13px;
}
.tb-view .pop-comment {
  color: #5e6f85;
  padding: 15px 30px 15px 50px;
  position: relative;
  background-color: #ECEBF2;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}
.tb-view .pop-comment::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  content: "\f00c";
  color: #3566d6;
  position: absolute;
  left: 25px;
  top: 15px;
}


.file-group .file-img.pdf {
  background-image: url(/resources/image/icon/ic-pdf.svg);
}

.file-group .file-img.xls, .file-group .file-img.xlsx {
  background-image: url(/resources/image/icon/ic-excel.svg);
}

.file-group .file-img.hwp {
  background-image: url(/resources/image/icon/ic-hwp.svg);
}

.file-group .file-img.doc {
  background-image: url(/resources/image/icon/ic-doc.svg);
}

.file-group .file-img.ppt {
  background-image: url(/resources/image/icon/ic-ppt.svg);
}

.file-group .file-img.txt {
  background-image: url(/resources/image/icon/ic-txt.svg);
}

.file-group .file-img.ai {
  background-image: url(/resources/image/icon/ic-ai.svg);
}

.file-group .file-img.jpg {
  background-image: url(/resources/image/icon/ic-jpg.svg);
}

.file-group .file-img.png {
  background-image: url(/resources/image/icon/ic-png.svg);
}

.file-group .file-img.mp4 {
  background-image: url(/resources/image/icon/ic-mp4.svg);
}

.file-group .file-img.avi {
  background-image: url(/resources/image/icon/ic-avi.svg);
}

.file-group .file-img.csv {
  background-image: url(/resources/image/icon/ic-csv.svg);
}

.file-group .file-img.etc {
  background-image: url(/resources/image/icon/ic-etc.svg);
}

.file-group .file-img.exe {
  background-image: url(/resources/image/icon/ic-exe.svg);
}

.file-group .file-img.gif {
  background-image: url(/resources/image/icon/ic-gif.svg);
}

.file-group .file-img.psd {
  background-image: url(/resources/image/icon/ic-psd.svg);
}

.file-group .file-img.xml {
  background-image: url(/resources/image/icon/ic-xml.svg);
}

.file-group .file-img.zip {
  background-image: url(/resources/image/icon/ic-zip.svg);
}


/* 240912 테이블 썸네일 이미지 추가 */




/* 240926 마켓플레이스 관리 / 등록자원 관리 수정 */
.form_center_box .check_box {
  display: flex;
  margin-bottom: 20px;
}
.form_center_box .check_box > section ul {
  padding: 0 20px;
  border: 1px solid #DBDBE7;
  height: 250px;
  overflow-y: auto;
}
.form_center_box .check_box > section {
  padding: 0;
  overflow: initial;
  height: auto;
  flex: 0 0 50%;
}
.form_center_box .check_box .check_box_dp1 ul {
  border-right: 0;
}
.form_center_box .check_box .check_select__item {
  padding: 2px 0;
}






/* 2506 account control 계정 제어 퍼블 */
.under-border {
  border-bottom: solid 1px #333;
}


.top-btn {
  position: fixed;
  right: 50px;
  bottom: 50px;
}
.top-btn .top {
  font-size: 0;
  width: 48px;
  height: 48px;
  background: url('../image/icon/ico-topbtn.png') no-repeat center / cover;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0px 4px 6px -1px rgba(46, 46, 46, 0.10), 0px 2px 4px -1px rgba(46, 46, 46, 0.06);
}
.top-btn .top:hover {
  box-shadow: none;
  background: url('../image/icon/ico-topbtn-hover.png') no-repeat center / cover;
}


.btn02 {
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  padding: 15px 20px;
  height: auto;
  border: solid 1px transparent;
  display: flex;
  align-items: center;
}
.btn02 + .btn02 {
  margin-left: 10px;
}
.btn02.add-icon {
  padding: 6px 15px 6px 10px;
  font-size: 13px;
}
.btn02.add-icon img {
  margin-right: 4.5px;
}
.btn02.btn-primary {
  background-color: #333;
  color: #fff;
}
.btn02.btn-primary:hover {
  background-color: #666;
}
.btn02.btn-secondary {
  border-color: #E0E0E0;
  background-color: #fff;
}
.btn02.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.08);
  background-color: #F0F0F0;
}
.btn02.btn-third {
  background-color: #78739E;
  color: #fff;
}
.btn02.btn-third:hover {
  background-color: #5C577D;
  color: #fff;
}

.all-open.active img {
  transform: rotate(180deg);
}



.input-check[type=checkbox] + label::before {
  cursor: pointer;
  content: '';
  width: 24px;
  height: 24px;
  background: url('../image/icon/ico-check-off.png') no-repeat center / cover;
}
.input-check[type=checkbox]:checked + label::before {
  content: '';
  background-image: url('../image/icon/ico-check-on.png');
}



.badge {
  font-size: 13px;
  font-weight: 600;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 100px;
  color: #fff;
}
.badge.st01 {
  background-color: #37BC9B;
}
.badge.st02 {
  background-color: #DADEE7;
  color: #65707C;
}
.badge.st03 {
  background-color: #D5061B;
}
.badge.st04 {
  background-color: #6e8d8f;
}




.account-list-box {
  border-radius: 10px;
  border: solid 1px #E0E0E0;
  overflow: hidden;
  transition: 0.3s;
}
.account-list-box.active {
  border-color: #A59ED6;
}
.account-list-box + .account-list-box {
  margin-top: 20px;
}
.account-detail-box {
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.accout-check {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.account-tit {
  max-width: 640px;
  min-width: 640px;
  flex: 1;
}
.account-tit .tit {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0;
}
.account-tit .desc {
  font-size: 15px;
  color: #111;
  line-height: 1.6;
}
.account-desc {
  flex: 1;
  padding-left: 20px;
}
.account-desc .box {
  display: flex;
}
.account-desc .box + .box {
  margin-top: 12px;
  padding-top: 12px;
  border-top: dashed 1px #E0E0E0;
}
.account-desc .category {
  font-size: 13px;
  font-weight: 600;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}
.account-desc .list > li + li {
  margin-top: 5px;
}
.account-desc .list > li a {
  font-size: 13px;
  color: #333;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 2px 5px;
  line-height: 1.5;
  word-break: break-all;
  transition: 0.3s;
  display: inline-block;
}
.account-desc .list > li a:hover {
  background-color: #F5EBFF;
}



.account-table-box {
  background-color: #f4f4f4;
  border-top: #E0E0E0;
  display: none;
}
.account-table-box.active {
  display: block;
}
.account-table-box .add-btn-box {
  display: flex;
  flex-direction: column;
}
.account-table-box .add-btn-box .add-btn {
  background-color: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  height: 60px;
  border-top: solid 1px #E0E0E0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.account-table-box .add-btn-box .add-btn i {
  display: block;
  margin-right: 3px;
  width: 25px;
  height: 24px;
  background: url('../image/icon/ico-plus.png') no-repeat center / cover;
}
.account-table-box .add-btn-box .add-btn:hover {
  background-color: #F5EBFF;
  color: #6457B9;
}
.account-table-box .add-btn-box .add-btn:hover i {
background: url('../image/icon/ico-plus-hover.png') no-repeat center / cover;
} 

.accout-open-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.accout-obtn {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  font-size: 0;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  background: url('../image/icon/ico-obtn.png') #fff no-repeat center / cover;
  transition: none;
}
.accout-obtn:hover {
  background-image: url('../image/icon/ico-obtn-hover.png');
}
.accout-obtn.active {
  background-image: url('../image/icon/ico-obtn02.png');
}
.accout-obtn.active:hover {
  background-image: url('../image/icon/ico-obtn-hover02.png');
}
.accout-obtn:disabled {
  cursor: default;
  box-shadow: none;
  background-image: url('../image/icon/ico-obtn-off.png');
}


.account-table-box .detail-box {
  padding: 20px;
  border-top: solid 1px #E0E0E0;
}
.account-table-box .group-box {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.account-table-box .group-box .tit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-width: 130px;
  border-right: solid 1px #E0E0E0;
}
.account-table-box .group-box .tit p {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.account-table-box .group-box .tit .ico {
  margin-left: 10px;
  font-size: 0;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: url('../image/icon/ico-edit.png') no-repeat center / 18px;
  transition: 0.3s;
  border: solid 1px #e0e0e0;
}
.account-table-box .group-box .tit .ico:hover {
  background-color: #F4F4F4;
}
.account-table-box .group-box ul {
  display: flex;
  padding: 10px 20px;
}
.account-table-box .group-box li {
  display: flex;
  align-items: center;
}
.account-table-box .group-box li + li {
  margin-left: 40px;
}
.account-table-box .group-box li p {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
}
.account-table-box .group-box li p::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #e0e0e0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.account-table-box .group-box li span {
  font-size: 15px;
  color: #111;
}
.account-table-box .group-box + .table-box {
  margin-top: 10px;
}
.account-table-box .table-box {

}
.account-table-box .table-box table {
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}
.account-table-box .table-box caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.account-table-box .table-box th {
  border: solid 1px #e0e0e0e0;
  background-color: rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: #333;
  padding: 10px 3px;
}
.account-table-box .table-box td {
  border: solid 1px rgba(0, 0, 0, 0.08);
  padding: 5px;
  vertical-align: middle;
  text-align: center;
}
.account-table-box .table-box td p {
  color: #111;
  font-size: 15px;
  font-weight: 600;
}
.account-table-box .table-box td span + p {
  margin-top: 5px;
}
.account-table-box .table-box td span {
  color: #333;
  font-size: 15px;
}
.account-table-box .table-box td .error {
  color: #B50000;
}
.account-table-box .table-box .user {
  text-align: center;
}
.account-table-box .table-box .user p {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  line-height: 1.25;
}
.account-table-box .table-box .user span {
  color: #111;
  font-size: 15px;
}
.account-table-box .table-box .list-btn {
  display: flex;
  margin: 0 -2.5px;
}
.account-table-box .table-box .list-btn li {
  width: 25%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 2.5px;
}
.account-table-box .table-box .list-btn li button {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  border-radius: 5px;
  background-color: #fff;
  border: solid 1px #E0E0E0;
  width: 100%;
  padding: 4px 10px;
  height: 100%;
  transition: 0.3s;
  min-height: 32px;
  position: relative;
}
.account-table-box .table-box .list-btn li button:hover {
  background-color: #6457B9;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}
.account-table-box .table-box .list-btn li button::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 6px;
  right: 6px;
}
.account-table-box .table-box .list-btn li button.start::after {
  background-color: #008A1E;
}
.account-table-box .table-box .list-btn li button.stop::after {
  background-color: #FA495B;
}
.account-table-box .table-box .list-btn .ico-mail {
  font-size: 0;
  background: url('../image/icon/ico-mail-color.png') no-repeat center / 24px;
  background-color: #F5EBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  width: 100%;
  margin-top: 5px;
  transition: 0.3s;
  border-radius: 5px;
  border: solid 1px rgba(0, 0, 0, 0.08);
}
.account-table-box .table-box .list-btn .ico-mail:hover {
  background-image: url('../image/icon/ico-mail.png');
  background-color: #bab3c2;
}


.td-state {
  font-size: 13px;
  color: #333;
  height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  border: solid 1px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  transition: 0.3s;
}
.td-state::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.td-state + .td-state {
  margin-left: 4px;
}
.td-state.green {
  border-color: #CEE9D4;
}
.td-state.green:hover {
  border-color: #006E18;
  background-color: #EEF7F0;
}
.td-state.green::before {
  background-color: #008A1E;
}
.td-state.green:hover::before {
  background-color: #006E18;
}
.td-state.red {
  border-color: #FDABB3;
}
.td-state.red:hover {
  border-color: #D5061B;
  background-color: #FEDCE0;
}
.td-state.red::before {
  background-color: #FA495B;
}
.td-state.red:hover::before {
  background-color: #D5061B;
}



.assignment-desc + .listTr {
  border-top: 0;
}
.assignment-link {
  transition: 0.3s;
  font-size: 13px;
  color: #333;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  background-color: #fff;
  width: 70px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.assignment-link:hover {
  background-color: #6457B9;
  border-color: rgba(0, 0, 0, 0.08);
  color: #fff;
}
.assignment-link + .assignment-link {
  margin-left: 4px;
}
.assignment-link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  background-color: #008A1E;
  top: 6px;
  right: 6px;
}
.assignment-link.red::after {
  background-color: #FA495B;
}
.assignment-desc td {
  background-color: #f4f4f4;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.assignment-desc td:first-child {
  border-bottom-left-radius: 10px;
}
.assignment-desc td:last-child {
  border-bottom-right-radius: 10px;
}





.popup-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.08);
  display: none;
}
.popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 720px;
  width: 90%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px -1px rgba(46, 46, 46, 0.10), 0px 2px 4px -1px rgba(46, 46, 46, 0.06);
  padding: 20px;
}
.popup-tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #E0E0E0;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.popup-tit p {
  font-size: 17px;
  font-weight: 600;
  color: #111;
}
.popup-tit .popup-close-btn {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url('../image/icon/ico-close.png') no-repeat center / cover;
}
.popup-detail .point-txt {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 30px;
}
.popup-detail .point-txt.center {
  text-align: center;
}
.popup-detail .point-txt + table {
  margin-top: -15px;
}
.popup-detail .scroll-table {
  overflow-y: auto;
  max-height: 200px;
  margin-bottom: 30px;
}
.popup-detail table {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1px;
}
.popup-detail table caption {
  display: none;
}
.popup-detail table th {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  background-color: #F4F4F4;
  padding: 10px;
  border: solid 1px #E0E0E0;
}
.popup-detail table td {
  font-size: 15px;
  color: #111;
  text-align: center;
  padding: 10px;
  border: solid 1px #E0E0E0;
}
.popup-detail .point-box {
  box-shadow: 0px 4px 6px -1px rgba(46, 46, 46, 0.10), 0px 2px 4px -1px rgba(46, 46, 46, 0.06);
  background-color: #f4f4f4;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
}
.popup-detail .point-box p {
  font-size: 15px;
  color: #111;
  line-height: 1.6;
  margin-bottom: 10px;
}
.popup-detail .point-box input {
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  background-color: #fff;
  color: #111;
  font-size: 15px;
  height: 45px;
}
.popup-detail .point-box input::placeholder {
  color: #666;
}
.popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-btn .btn02 {
  
}


/* 2506 account control 계정 제어 퍼블 */