@charset "UTF-8";
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.ellipsis-2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: inherit;
  -webkit-line-clamp: 2;
  word-break: break-all;
}

.ellipsis-3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: inherit;
  -webkit-line-clamp: 3;
  word-break: break-all;
}

.ellipsis-4 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: inherit;
  -webkit-line-clamp: 4;
  word-break: break-all;
}

.ellipsis-5 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: inherit;
  -webkit-line-clamp: 5;
  word-break: break-all;
}

@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Pretendard/Pretendard-Regular.woff") format("woff"), url("../fonts/Pretendard/Pretendard-Regular.ttf") format("TrueType"), url("../fonts/Pretendard/Pretendard-Regular.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Pretendard/Pretendard-Medium.woff") format("woff"), url("../fonts/Pretendard/Pretendard-Medium.ttf") format("TrueType"), url("../fonts/Pretendard/Pretendard-Medium.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Pretendard/Pretendard-Bold.woff") format("woff"), url("../fonts/Pretendard/Pretendard-Bold.ttf") format("TrueType"), url("../fonts/Pretendard/Pretendard-Bold.otf") format("OpenType");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

body {
  margin: 0;
  font-family: "Pretendard";
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  line-height: 1;
  color: #111;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  letter-spacing: -0.02em;
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin: 0;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 400;
}

dd {
  margin-left: 0;
}

blockquote {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

em,
i {
  font-style: normal;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #a6f0b7;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #000;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

figure {
  margin: 0;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

legend,
caption {
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  visibility: hidden;
  overflow: hidden;
  white-space: nowrap;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 1em;
  line-height: 0;
  color: #fff;
  letter-spacing: -0.02em;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: none;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

[class^=icon-] {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  flex-shrink: 0;
}

.icon-aside-arrow {
  width: 10px;
  height: 5px;
  background-image: url("../images/icon-arrow.svg");
}

.icon-intro-01 {
  width: 81px;
  height: 82px;
  background-image: url("../images/icon-intro-01.png");
}

.icon-intro-02 {
  width: 69px;
  height: 69px;
  background-image: url("../images/icon-intro-02.png");
}

.icon-intro-03 {
  width: 75px;
  height: 76px;
  background-image: url("../images/icon-intro-03.png");
}

.icon-intro-04 {
  width: 75px;
  height: 77px;
  background-image: url("../images/icon-intro-04.png");
}

.icon-intro-link {
  width: 18px;
  height: 18px;
  background-image: url("../images/icon-intro-link.png");
}

.icon-select-arrow {
  width: 8px;
  height: 5px;
  background-image: url("../images/icon-select-off.svg");
}

.icon-home {
  width: 11px;
  height: 13px;
  background-image: url("../images/icon-home.svg");
}

.icon-search {
  width: 13px;
  height: 12px;
  background-image: url("../images/icon-search.svg");
}

.icon-plus {
  width: 12px;
  height: 12px;
  background-image: url("../images/icon-plus.png");
}

.icon-minus {
  width: 12px;
  height: 12px;
  background-image: url("../images/icon-minus.png");
}

.icon-file {
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-clip.png");
}

.icon-pagination-left-twin {
  width: 13px;
  height: 12px;
  background-image: url("../images/icon-pagination-left-twin.png");
}

.icon-pagination-left {
  width: 6px;
  height: 12px;
  background-image: url("../images/icon-pagination-left.png");
}

.icon-pagination-right-twin {
  width: 13px;
  height: 12px;
  background-image: url("../images/icon-pagination-left-twin.png");
  transform: rotate(180deg);
}

.icon-pagination-right {
  width: 6px;
  height: 12px;
  background-image: url("../images/icon-pagination-left.png");
  transform: rotate(180deg);
}

.icon-submit {
  width: 20px;
  height: 20px;
  background-image: url("../images/icon-submit.png");
}

.icon-recyclebin {
  width: 16px;
  height: 18px;
  background-image: url("../images/icon-recyclebin.png");
}

.icon-warning {
  width: 22px;
  height: 19px;
  background-image: url("../images/icon-warning.png");
}

.icon-close-w {
  width: 14px;
  height: 14px;
  background-image: url("../images/icon-close-w.png");
}

.icon-edit {
  width: 18px;
  height: 18px;
  background-image: url("../images/icon-edit.png");
}

.icon-exist-depth {
  width: 20px;
  height: 16px;
  background-image: url("../images/icon-menu-depth1.png");
}

.icon-none-depth {
  width: 20px;
  height: 20px;
  background-image: url("../images/icon-menu-depth2-active.png");
}

.icon-download {
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-download.png");
}

.icon-download-active {
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-download-active.png");
}

.icon-recyclebin-bk {
  width: 14px;
  height: 16px;
  background-image: url("../images/icon-recyclebin-bk.png");
}

.icon-view {
  width: 85px;
  height: 21px;
  background-image: url("../images/icon-view.png");
}

.icon-img-download {
  width: 81px;
  height: 16px;
  background-image: url("../images/icon-img-download.png");
}

.icon-monitor {
  width: 22px;
  height: 18px;
  background-image: url("../images/icon-monitor.png");
}

.icon-portal {
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-portal.png");
}

.icon-portal-type {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-portal-type.png");
}

.icon-top {
  width: 60px;
  height: 60px;
  background-image: url("../images/top-btn.png");
}

.overflow-y-scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-t-15 {
  padding-top: 15px;
}

.p-r-20 {
  padding-right: 20px;
}

.g-6px {
  --bs-gutter-x: 6px;
  --bs-gutter-y: 6px;
}

.g-20px {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.text-lightgray {
  color: #989898 !important;
}

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

.font-sm {
  font-size: 12px;
  line-height: 1.42;
  color: #000;
}

.box-shadow-none {
  box-shadow: none !important;
}

.line {
  background-color: #f3f3f3;
  width: 100%;
  height: 10px;
}

.title-line {
  width: 48px;
  height: 2px;
  background-color: #e9ecef;
}

.w-80 {
  width: 80%;
}

.w-70 {
  width: 70%;
}

.w-60 {
  width: 60%;
}

.fw-medium {
  font-weight: 500;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.btn {
  width: 100%;
  height: 40px;
  display: inline-block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #000;
  padding: 14px 18px 13px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn.btn-auto {
  width: auto;
  padding: 0;
}
.btn.btn-min {
  min-width: 80px;
}
.btn.btn-md {
  padding: 12px 18px;
}
.btn.btn-sm {
  padding: 9px 20px 8px;
  font-size: 14px;
}
.btn.round {
  border-radius: 60px;
}
.btn.min-width {
  min-width: 140px;
}
.btn.btn-green {
  background-color: #009881 !important;
  color: #fff !important;
  border: 1px solid #009881 !important;
}
.btn.btn-green:disabled {
  background-color: #c9c9c9 !important;
  border: 1px solid #c9c9c9 !important;
  color: #fff !important;
}
.btn.btn-outline-green {
  background-color: #fff !important;
  border: 1px solid #009881 !important;
  color: #009881 !important;
}
.btn.btn-light-green {
  background-color: #cdebe7 !important;
  color: #009881 !important;
  border: 1px solid #cdebe7 !important;
}
.btn.btn-outline-dark {
  background-color: #fff !important;
  border: 1px solid #111 !important;
  color: #111 !important;
}
.btn.btn-dark {
  background-color: #111 !important;
  border: 1px solid #111 !important;
  color: #fff !important;
}
.btn.btn-outline-gray {
  background-color: #fff !important;
  border: 1px solid #ddd !important;
  color: #111 !important;
}
.btn.btn-blue {
  background-color: #0d4483 !important;
  border: 1px solid #0d4483 !important;
  color: #fff !important;
}
.btn.btn-blue:disabled {
  background-color: #c9c9c9 !important;
  border: 1px solid #c9c9c9 !important;
  color: #fff !important;
}
.btn.btn-excel {
  background-color: #cceae6 !important;
  border: 1px solid #cceae6 !important;
  color: #009881 !important;
}

.btn-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 17px;
}

.page-link {
  color: #bbb;
  font-size: 16px;
  font-weight: 500;
}

.page-link.active > .page-link, .active > .page-link {
  border-bottom: 1px solid #009881;
  color: #009881;
}
.page-link.active .icon-pagination-left-twin, .active .icon-pagination-left-twin {
  background-image: url("../images/icon-pagination-left-twin-active.png");
  transform: rotate(180deg);
}
.page-link.active .icon-pagination-left, .active .icon-pagination-left {
  background-image: url("../images/icon-pagination-left-active.png");
  transform: rotate(180deg);
}
.page-link.active .icon-pagination-right-twin, .active .icon-pagination-right-twin {
  background-image: url("../images/icon-pagination-left-twin-active.png");
  transform: rotate(0);
}
.page-link.active .icon-pagination-right, .active .icon-pagination-right {
  background-image: url("../images/icon-pagination-left-active.png");
  transform: rotate(0);
}

/* checkbox/radio */
.form-check {
  display: flex;
  align-items: center;
  min-height: 16px;
  padding-right: 24px;
  color: #777;
}
.form-check.block {
  display: block;
  text-align: center;
  padding-right: 0;
}
.form-check.block .form-check-label {
  display: block;
  margin-left: 0;
  color: #777;
}
.form-check.block .form-check-label p {
  font-size: 15px;
  margin: 5px 0;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.form-check-input[type=checkbox] {
  background-image: url("../images/btn-chk-off.png");
}
.form-check-input[type=radio] {
  border-radius: 50%;
  border: 1px solid #ccc;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("../images/btn-chk-on.png");
}
.form-check-input:checked[type=radio] {
  background-color: #fff;
  border: 1px solid #666;
  position: relative;
}
.form-check-input:checked[type=radio]::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #009881;
  border-radius: 50%;
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.check-badge {
  display: none;
}
.check-badge + .check-badge-label {
  border: 1px solid #aaa;
  font-size: 14px;
  color: #aaa;
  padding: 6px 10px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
}
.check-badge:checked + .check-badge-label {
  border: 1px solid #000;
  color: #000;
}

.inline-form-radio .form-check {
  margin-right: 40px;
}

.form-check-label {
  font-size: 15px;
  margin-left: 13px;
  vertical-align: sub;
  cursor: pointer;
}

/* radio btn 커스텀 */
.btn-radio-wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  position: relative;
}
.btn-radio-wrap .btn-radio {
  width: 100%;
}
.btn-radio-wrap input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
.btn-radio-wrap input:checked + label {
  background-color: #F0EEE6;
  border: 1px solid #666;
  color: #000;
}
.btn-radio-wrap label {
  text-align: center;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 11px;
  color: #333;
  width: 100%;
  cursor: pointer;
}
.btn-radio-wrap.flex-column label {
  width: 100%;
}

/* switch */
.form-switch {
  padding-left: 56px;
}
.form-switch .form-check-input {
  width: 48px;
  margin-left: -56px;
  background-color: #b9b9b9;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 3em;
  transition: background-position 0.15s ease-in-out;
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-color: #2E4DBB;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.label-empty {
  padding-left: 48px;
}
.form-switch.label-empty .form-check-input {
  margin-left: -48px;
  margin-top: 0;
}

.form-check-inline {
  display: inline-flex;
  margin-right: 1rem;
  vertical-align: middle;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .inline-form-radio .form-check {
    margin-right: 0;
  }
  .form-check-input {
    width: 18px;
    height: 18px;
  }
  .form-check-label {
    font-size: 12px;
    line-height: 1.7;
  }
}
.counter-wrap {
  display: flex;
  justify-content: center;
}
.counter-wrap input {
  border: 1px solid #eee;
  max-width: 32px;
  border-left: 0;
  border-right: 0;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.like-wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.custom-radio {
  display: flex;
}

.custom-radio input {
  display: none;
}

.custom-radio label {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  color: #777;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14.5px;
  padding: 13px 20px 12px;
  background-color: #f5f5f5;
}

.custom-radio input:checked + label {
  color: #009881;
  border: 1px solid #009881;
  background-color: #fff;
}

.form-control {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: solid 1px #ebebeb;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 4px;
  color: #777;
  background-color: #fff;
  line-height: 1;
}
.form-control.white {
  background-color: #fff;
  border: 1px solid #ddd;
}
.form-control::-moz-placeholder {
  color: #bbb;
}
.form-control::placeholder {
  color: #bbb;
}
.form-control:-moz-read-only {
  background-color: #fff;
}
.form-control:read-only {
  background-color: #fff;
}
.form-control[type=file] {
  margin-top: 10px;
}
.form-control[type=number]::-webkit-outer-spin-button, .form-control[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-control:disabled {
  background-color: #f5f5f5;
  color: #bbb;
  font-weight: 400;
  border: 1px solid #ddd;
}
.form-control.form-textarea {
  overflow-y: hidden;
  line-height: 25.5px;
}
.form-control.title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  padding: 7px 20px;
}

.search-form {
  position: relative;
}
.search-form .form-control {
  padding: 10px 20px;
}
.search-form .icon-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.form-password .input-pw-wrap {
  position: relative;
}
.form-password .input-pw-wrap.success .view-pw {
  right: 54px;
}
.form-password .input-pw-wrap.success .icon-success {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.form-password .view-pw {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.form-password .icon-success {
  display: none;
}

.input-form {
  display: flex;
  align-items: center;
}
.input-form .input-form-label {
  width: 80px;
  line-height: 1;
  flex-shrink: 0;
}
.input-form .form {
  width: 100%;
  display: flex;
  gap: 10px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-column.scroll {
  max-height: 400px;
  overflow-y: auto;
}
.form-column.scroll::-webkit-scrollbar {
  width: 9px;
  border-radius: 4px;
}
.form-column.scroll::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.form-column.scroll::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-file-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-file-custom .file-name {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 12px 20px;
  color: #bbb;
  font-size: 15px;
  line-height: 1;
  height: 40px;
}
.form-file-custom .file-name.select {
  color: #777;
}
.form-file-custom #fileLabel {
  height: 40px;
  display: inline-block;
  padding: 10px;
  color: #111;
  cursor: pointer;
  line-height: 1;
  padding: 12px 16px 12px 15px;
  border: 1px solid #111;
  border-radius: 4px;
}
.form-file-custom #fileInput {
  display: none;
}

.exe-input {
  position: relative;
  border: solid 1px #ebebeb;
  border-radius: 4px;
}
.exe-input .form-control {
  padding: 10px 65px 10px 20px;
  border: 0;
  height: 40px;
}
.exe-input .exe-txt {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #999;
  font-size: 13px;
}
.exe-input.lg .form-control {
  padding: 8px 130px 10px 20px;
}

.exe-lg-input {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.exe-lg-input .form-control {
  padding: 10px 65px 10px 20px;
  border: 0;
  height: 140px;
  border: solid 1px #ebebeb;
  border-radius: 4px;
}
.exe-lg-input .exe-txt {
  color: #999;
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1.5;
}
.exe-lg-input.lg .form-control {
  padding: 8px 130px 10px 20px;
}

.textarea-form {
  height: 240px;
}

.input-icon {
  padding: 9px 12px;
  border-radius: 4px;
  border: 1px solid #EEF1F3;
  display: flex;
  justify-content: space-between;
}
.input-icon.sm {
  padding: 5px 12px;
}
.input-icon.sm .datepicker {
  font-size: 15px;
  line-height: 1;
  max-width: 110px;
}
@media (max-width: 991.98px) {
  .input-icon.sm {
    padding: 4px 8px;
  }
  .input-icon.sm .datepicker {
    font-size: 13px;
    max-width: 80px;
  }
  .input-icon.sm .icon-calendar {
    width: 18px;
    height: 18px;
  }
}
.input-icon .datepicker {
  border: 0;
  width: 100%;
}
.input-icon.slash {
  position: relative;
}
.input-icon.slash::before {
  content: "/";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #999;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .input-icon.slash::before {
    font-size: 12px;
    left: -9px;
  }
}

.custom-select {
  position: relative;
}
.custom-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background-image: url("../images/icon-select-off.png");
  width: 8px;
  height: 5px;
  background-size: cover;
}
.custom-select.disabled::after {
  content: none;
}
.custom-select .form-select {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #ebebeb;
  color: #777;
  font-size: 15px;
  line-height: 1;
  border-radius: 4px;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select .form-select:disabled {
  border: solid 1px #ddd;
  background-color: #f5f5f5;
}

.select-wrap {
  width: 100%;
  position: relative;
}
.select-wrap .select-btn {
  width: 100%;
  padding: 12px 20px 11px;
  border: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777;
  font-size: 15px;
  line-height: 1;
  border-radius: 4px;
  background-color: #fff;
}
.select-wrap .optionlist {
  border: 1px solid #111;
  border-radius: 4px;
  position: absolute;
  top: 54px;
  background-color: #fff;
  display: none;
  z-index: 1;
  padding: 20px 10px;
}
.select-wrap .optionlist .optionitem {
  padding: 10px;
  cursor: pointer;
  color: #777;
  font-size: 15px;
  line-height: 1;
  position: relative;
}
.select-wrap .optionlist .optionitem.active {
  color: #009881;
}
.select-wrap .optionlist .optionitem.active::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  border-radius: 36px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.select-wrap.show .select-btn {
  border: 1px solid #111;
  color: #111;
}
.select-wrap.show .select-btn .icon-select-arrow {
  background-image: url("../images/icon-select-on.svg");
}
.select-wrap.show .optionlist {
  display: block;
  width: 100%;
}

.birth-date {
  display: flex;
  gap: 18px;
}

.nav-tabs .nav-link {
  cursor: pointer;
}
.nav-tabs .nav-link:hover {
  border-color: transparent;
}
.nav-tabs.mypage {
  margin-bottom: 24px;
}
.nav-tabs.mypage .nav-link {
  padding: 13px 20px;
  font-size: 18px;
  color: #ccc;
  border-bottom: 1px solid #999;
  width: 50%;
  line-height: normal;
}
.nav-tabs.mypage .nav-link.active {
  color: #000;
  background-color: #F0EEE6;
  border: 1px solid #999;
  border-bottom: 0;
}
.nav-tabs.payment {
  margin-bottom: 60px;
}
.nav-tabs.payment .nav-link {
  border-radius: 0;
  width: 50%;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #333;
  padding: 11px;
}
.nav-tabs.payment .nav-link.active {
  background-color: #F0EEE6;
  border: 1px solid #999;
  color: #000;
}

@keyframes subVisualScale {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes subVisualText {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  25% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.content-head {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content-head .bg-img {
  width: 100%;
  height: 100%;
  animation: subVisualScale 3s;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
.content-head .bg-img.newsroom-banner {
  background: url(../images/newsroom-banner.png) no-repeat center center;
  background-size: cover;
}
.content-head .bg-img.career-banner {
  background: url(../images/career-banner.png) no-repeat center center;
  background-size: cover;
}
.content-head .bg-img.contact-banner {
  background: url(../images/contact-banner.png) no-repeat center center;
  background-size: cover;
}
.content-head .bg-img.about-banner {
  background: url(../images/about-banner.png) no-repeat center center;
  background-size: cover;
}
.content-head .bg-img.whatwedo-banner {
  background: url(../images/whatwedo-banner.png) no-repeat center center;
  background-size: cover;
}
.content-head .bg-img.policy-banner {
  background: url(../images/policy-banner.png) no-repeat center center;
  background-size: cover;
}
.content-head .title-wrap {
  text-align: center;
  width: 100%;
  color: #fff;
}
.content-head .title-wrap .title-top {
  font-size: 20px;
  animation: subVisualText 2s both 0.25s;
}
.content-head .title-wrap .title {
  font-size: 38px;
  font-weight: 700;
  animation: subVisualText 2s;
  line-height: normal;
}
@media (min-width: 992px) {
  .content-head {
    height: 720px;
  }
  .content-head .title-wrap .title-top {
    font-size: 32px;
  }
  .content-head .title-wrap .title {
    font-size: 72px;
  }
}

.table-wrap {
  border: solid 1px #ebebeb;
  border-radius: 8px;
  margin-top: 45px;
}

.table-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #111;
  margin-top: 33px;
}

.table {
  width: 100%;
  table-layout: fixed;
}
.table .table-scroll {
  overflow: auto;
}
.table thead th {
  font-size: 16px;
  line-height: normal;
  padding: 23px 0 22px 0;
  font-weight: 500;
}
.table tbody tr td {
  padding: 20px 5px;
  line-height: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  border-top: 1px solid #ccc;
}
.table.table-row th {
  padding: 22px 30px 22px;
  border: 0;
  background-color: #fafafa;
  font-weight: 500;
  line-height: 1;
  font-size: 15px;
}
.table.table-row th.row-col {
  padding: 0 10px;
  text-align: center;
  border-left: 1px solid #ebebeb;
}
.table.table-row td {
  height: 60px;
  padding: 10px 30px;
  border: 0;
  font-weight: 400;
  white-space: wrap;
  line-height: 1;
  color: #777;
  font-size: 14.5px;
}
.table.table-row tr {
  border-bottom: 1px solid #ebebeb;
}
.table.table-row tr:first-child th {
  border-radius: 8px 0 0 0;
}
.table.table-row tr:last-child {
  border-bottom: 0;
}
.table.table-row tr:last-child th {
  border-radius: 0 0 0 8px;
}
.table.table-row .th-txt {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table.table-row .th-txt.flex-column {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.table.table-row .th-txt .exe-txt {
  color: #999;
  font-size: 13px;
  line-height: 1;
}
.table.th-table th {
  font-size: 14.5px;
  background-color: #fafafa;
  padding: 13px 10px;
}
.table.th-table td {
  font-size: 14.5px;
  color: #777;
  padding: 13px 10px;
}
.table.th-table tbody td {
  border-top: 0;
  border-bottom: 1px solid #ebebeb;
}

.table-scroll {
  height: 250px;
  overflow: auto;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 17px;
}

.page-link {
  color: #bbb;
  font-size: 16px;
  font-weight: 500;
}

.page-link.active > .page-link, .active > .page-link {
  border-bottom: 1px solid #009881;
  color: #009881;
}
.page-link.active .icon-pagination-left-twin, .active .icon-pagination-left-twin {
  background-image: url("../images/icon-pagination-left-twin-active.png");
  transform: rotate(180deg);
}
.page-link.active .icon-pagination-left, .active .icon-pagination-left {
  background-image: url("../images/icon-pagination-left-active.png");
  transform: rotate(180deg);
}
.page-link.active .icon-pagination-right-twin, .active .icon-pagination-right-twin {
  background-image: url("../images/icon-pagination-left-twin-active.png");
  transform: rotate(0);
}
.page-link.active .icon-pagination-right, .active .icon-pagination-right {
  background-image: url("../images/icon-pagination-left-active.png");
  transform: rotate(0);
}

.scroll-bar {
  overflow-y: auto;
}

.scroll-bar::-webkit-scrollbar {
  width: 4px;
  height: 50px;
  background-color: transparent;
}

.scroll-bar::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #b7b9bb;
}

.modal {
  --bs-modal-header-padding: 1rem 1.5rem;
  --bs-modal-padding: 2rem 1.5rem;
  --bs-modal-inner-border-radius: 1rem;
  overflow: hidden;
}
.modal.alert {
  --bs-modal-width: 340px;
  --bs-modal-padding: 2rem;
}
.modal .modal-dialog.modal-xlg {
  width: 1200px;
  max-width: 1200px;
}

.modal-header {
  padding: 15px 30px;
  background-color: #003868;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}
.modal-header .btn-close {
  --bs-btn-close-opacity: 1;
  --bs-btn-close-hover-opacity: 1;
  --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.5449 17.954C19.7563 18.1653 19.875 18.452 19.875 18.7509C19.875 19.0497 19.7563 19.3364 19.5449 19.5477C19.3336 19.7591 19.0469 19.8778 18.748 19.8778C18.4492 19.8778 18.1625 19.7591 17.9512 19.5477L11.999 13.5937L6.04492 19.5459C5.83358 19.7572 5.54693 19.8759 5.24805 19.8759C4.94916 19.8759 4.66251 19.7572 4.45117 19.5459C4.23983 19.3345 4.12109 19.0479 4.12109 18.749C4.12109 18.4501 4.23983 18.1635 4.45117 17.9521L10.4052 11.9999L4.45305 6.04586C4.2417 5.83451 4.12297 5.54787 4.12297 5.24898C4.12297 4.9501 4.2417 4.66345 4.45305 4.45211C4.66439 4.24076 4.95103 4.12203 5.24992 4.12203C5.54881 4.12203 5.83545 4.24076 6.0468 4.45211L11.999 10.4062L17.953 4.45117C18.1644 4.23983 18.451 4.12109 18.7499 4.12109C19.0488 4.12109 19.3355 4.23983 19.5468 4.45117C19.7581 4.66251 19.8769 4.94916 19.8769 5.24804C19.8769 5.54693 19.7581 5.83358 19.5468 6.04492L13.5927 11.9999L19.5449 17.954Z' fill='black'/%3E%3C/svg%3E%0A");
  margin: 0;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background-position: 0 0;
  background-size: contain;
}
.modal-header button {
  line-height: 1;
}

.modal-title {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 26px;
}
.modal-title.text-center {
  margin-left: 24px;
}

.modal-content {
  box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.15);
  border-color: #0d1517;
}

.modal-body {
  overscroll-behavior: none;
  padding: 35px 30px;
  -webkit-overflow-scrolling: touch;
}
.modal-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.modal-body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.modal-body .bor-tb {
  height: 480px;
  overflow-y: auto;
}
.modal-body .bor-tb::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.modal-body .bor-tb::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.modal-body .bor-tb::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.modal-body .bor-tb table {
  width: 100%;
  border-top: 1px solid #000;
  margin-bottom: 20px;
  table-layout: fixed;
}
.modal-body .bor-tb table tr {
  border-bottom: 1px solid #ebebeb;
}
.modal-body .bor-tb table tr th {
  padding: 12px 0;
  line-height: 1.76;
  border-right: 1px solid #ebebeb;
  text-align: center;
  font-size: 14.5px;
  font-weight: 500;
}
.modal-body .bor-tb table tr td {
  padding: 10px 0 10px 10px;
  border-right: 1px solid #ebebeb;
  color: #777777;
  font-size: 15px;
}
.modal-body .user-authority {
  display: flex;
  border-top: 1px solid #000000;
}
.modal-body .user-authority .list-box {
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}
.modal-body .user-authority .list-box .title {
  padding: 12px 0;
  margin-bottom: 10px;
  line-height: 1.76;
  text-align: center;
  font-size: 14.5px;
  font-weight: 500;
  border-bottom: 1px solid #ebebeb;
}
.modal-body .user-authority .list-box .list {
  display: flex;
  flex-direction: column;
}
.modal-body .user-authority .list-box .list li {
  width: 100%;
}
.modal-body .user-authority .list-box .list li .form-check {
  padding: 10px 15px;
  position: relative;
  z-index: 1;
}
.modal-body .user-authority .list-box .list li .form-check label {
  width: calc(100% - 35px);
}
.modal-body .user-authority .list-box .list li .form-check input:checked + label {
  color: #009881;
}
.modal-body .user-authority .list-box .list li .form-check input:checked + label::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 4px;
  background-color: #f5f5f5;
}
.modal-body .user-authority .list-box .list li .form-check.select {
  background-color: #f5f5f5;
  border-radius: 4px;
}
.modal-body .user-authority .list-box.first {
  border-right: 1px solid #ebebeb;
  width: 34%;
}
.modal-body .user-authority .list-box.role {
  width: 66%;
  height: 400px;
  overflow-y: auto;
}
.modal-body .user-authority .list-box.role .role-sub-wrap {
  display: none;
}
.modal-body .user-authority .list-box.role .role-sub-wrap .sub-title {
  font-size: 15px;
  font-weight: bold;
  color: #111;
  padding: 14px 16px 16px 30px;
}
.modal-body .user-authority .list-box.role .role-sub-wrap .form-check {
  padding-left: 30px;
}
.modal-body .user-authority .list-box.role::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.modal-body .user-authority .list-box.role::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.modal-body .user-authority .list-box.role::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.modal-body .bor-tb2 table tr th {
  border: 0;
}
.modal-body .bor-tb2 table tr td {
  border: 0;
  text-align: center;
}
.modal-body .row-tb-top {
  display: flex;
  margin-bottom: 25px;
}
.modal-body .row-tb-top dl {
  display: flex;
  flex: 1;
}
.modal-body .row-tb-top dl dt {
  position: relative;
  width: 50px;
  font-size: 15px;
  margin-right: 11px;
  font-weight: 500;
}
.modal-body .row-tb-top dl dt::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #ebebeb;
  content: "";
}
.modal-body .row-tb-top dl dd {
  color: #777;
  font-size: 14.5px;
}
.modal-body .row-tb {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 5px;
}
.modal-body .row-tb table {
  width: 100%;
}
.modal-body .row-tb table th {
  font-weight: 500;
  font-size: 15px;
}
.modal-body .row-tb table td {
  padding: 5px 0;
}
.modal-body .btn3 {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.modal-body .btn3 button {
  width: 80px;
  padding: 12px 20px;
}
.modal-body .btn3 .btn-md-box {
  margin: 0;
}
.modal-body .btn-md-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}
.modal-body .btn-md-box button {
  width: 80px;
}
.modal-body .srch-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.modal-body .srch-box label {
  width: 70px;
  font-size: 15px;
  font-weight: 500;
}
.modal-body .srch-box .form-select {
  width: 160px;
}
.modal-body .srch-box input {
  width: 270px;
}
.modal-body .srch-box .btn {
  width: 90px;
}
.modal-body .btn-min {
  height: 40px;
  padding: 11px 20px;
}

.modal-footer {
  gap: 0.5rem;
  justify-content: center;
  padding: 1.25rem 1.5rem;
}
.modal-footer > * {
  margin: 0;
}
.modal-footer.py-3 {
  padding-bottom: calc(constant(safe-area-inset-bottom) + 1rem) !important;
  padding-bottom: calc(env(safe-area-inset-bottom) + 1rem) !important;
}

/*시스템 리스트 설정*/
#modal-system-set .modal-dialog {
  width: 660px;
  max-width: 660px;
}

#modal-classification-add .modal-dialog {
  width: 660px;
  max-width: 660px;
}

#modal-role-reg .modal-dialog {
  width: 640px;
  max-width: 640px;
}
#modal-role-reg .modal-dialog .modal-body {
  padding: 30px;
}
#modal-role-reg .modal-dialog .modal-body .select-line {
  display: flex;
  gap: 10px;
}
#modal-role-reg .custom-select {
  width: 240px;
}

#modal-role-modifty .modal-dialog {
  width: 380px;
  max-width: 380px;
}

/* alert */
.alert .modal-dialog {
  width: 380px;
}
.alert .modal-dialog .modal-content {
  box-shadow: none;
  border: 0;
}
.alert .modal-dialog .modal-body {
  padding: 35px;
  border-radius: 8px;
}
.alert .modal-dialog .modal-body .alert-message {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 30px;
  color: #333;
}
.alert .modal-dialog .modal-body .alert-message .txt1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 34px;
}
.alert .modal-dialog .modal-body .alert-message .txt2 {
  font-size: 16px;
  line-height: 33px;
}
.alert .modal-dialog .modal-body .alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  background-color: #f2f4f6;
  border-radius: 10px;
}

.modal-filter {
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}

.modal-backdrop ~ .modal-backdrop {
  z-index: 1061;
}
.modal-backdrop ~ .modal-backdrop ~ .modal-backdrop {
  z-index: 1063;
}

.modal[data-overlap=true] {
  z-index: 1062;
}

.ui-datepicker {
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  min-width: 300px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10 !important;
}
.ui-datepicker.ui-widget-content {
  border: 1px solid #ddd;
}
.ui-datepicker table {
  margin-bottom: 0;
  font-size: 14px;
  table-layout: fixed;
}
.ui-datepicker .ui-widget-header {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 1rem;
}
.ui-datepicker .ui-widget-header .ui-icon {
  display: none;
}
.ui-datepicker .ui-datepicker-month::after {
  content: "월";
}
.ui-datepicker .ui-datepicker-title {
  line-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ui-datepicker th {
  font-weight: 500;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 32px;
  height: 32px;
  top: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
  border: 0;
}
.ui-datepicker .ui-datepicker-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.64853 11.6899C7.1799 12.1034 6.4201 12.1034 5.95147 11.6899L0.351473 6.7487C0.126429 6.55013 5.15612e-07 6.28082 5.40929e-07 6C5.66246e-07 5.71918 0.126429 5.44987 0.351473 5.2513L5.95147 0.310122C6.4201 -0.103375 7.1799 -0.103375 7.64853 0.310122C8.11716 0.723619 8.11716 1.39403 7.64853 1.80752L2.89706 6L7.64853 10.1925C8.11716 10.606 8.11716 11.2764 7.64853 11.6899Z' fill='white'/%3E%3C/svg%3E%0A");
}
.ui-datepicker .ui-datepicker-next {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.351472 11.6899C0.820101 12.1034 1.5799 12.1034 2.04853 11.6899L7.64853 6.7487C7.87357 6.55013 8 6.28082 8 6C8 5.71918 7.87357 5.44987 7.64853 5.2513L2.04853 0.310122C1.5799 -0.103375 0.8201 -0.103375 0.351471 0.310122C-0.117158 0.723619 -0.117158 1.39403 0.351471 1.80752L5.10294 6L0.351472 10.1925C-0.117157 10.606 -0.117157 11.2764 0.351472 11.6899Z' fill='white'/%3E%3C/svg%3E%0A");
}
.ui-datepicker .ui-state-default {
  border: 0;
  border-radius: 50%;
  background: transparent;
}
.ui-datepicker .ui-state-default.ui-state-highlight {
  background: rgba(46, 77, 187, 0.16);
  color: #000;
}
.ui-datepicker .ui-state-default.ui-state-active {
  color: #fff;
  background: #2E4DBB !important;
}
.readonly .ui-datepicker tbody td,
.readonly .ui-datepicker tbody a {
  pointer-events: none !important;
}
.ui-datepicker tbody td {
  padding: 0;
}
.ui-datepicker tbody td > span,
.ui-datepicker tbody td > a {
  padding: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

[data-picker=date] {
  padding-right: calc(0.75rem + 25px);
  background-size: 16px 18px;
  font-size: 15px;
  padding: 10px 16px 10px 10px;
  background-repeat: no-repeat;
  background-position: 88% 50%;
  background-image: url("../images/icon-calendar.png");
}
[data-picker=date].form-control-sm {
  background-position: right 0.5rem top 50%;
  padding-right: calc(0.5rem + 20px);
}

[month-data-picker=date] {
  padding-right: calc(0.75rem + 25px);
  background-size: 16px 18px;
  font-size: 15px;
  padding: 10px 16px 10px 10px;
  background-repeat: no-repeat;
  background-position: 88% 50%;
  color: #777;
  background-image: url("../images/icon-calendar.png");
  border: 1px solid #ebebeb;
  border-radius: 4px;
}
[month-data-picker=date].form-control-sm {
  background-position: right 0.5rem top 50%;
  padding-right: calc(0.5rem + 20px);
}

select.mtz-monthpicker {
  border: 1px solid #ebebeb;
  padding: 5px 24px 5px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../images/icon-select-off.png");
  background-repeat: no-repeat;
  background-position: 86% 50%;
  font-size: 15px;
  color: #777;
  background-size: 8px 5px;
}

.ui-datepicker .ui-state-default.ui-state-active {
  background: #009881 !important;
  border-radius: 0 !important;
}

#wrap {
  min-width: 1900px;
  min-height: 100dvh;
  position: relative;
}
#wrap .content {
  width: 100%;
  display: flex;
  min-height: calc(100vh - 123px);
}
#wrap #aside {
  flex: 0 0 260px;
  border-right: 1px solid #e5e8eb;
  padding: 12px 30px;
}
#wrap #aside .menu-list > li {
  border-bottom: 1px solid #e5e8eb;
  cursor: pointer;
}
#wrap #aside .menu-list > li:last-child {
  border-bottom: 0;
}
#wrap #aside .menu-list > li.active a {
  color: #009881;
}
#wrap #aside .menu-list > li.active .dep2 {
  display: block;
}
#wrap #aside .menu-list .dep1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding: 24px 0;
}
#wrap #aside .menu-list .dep1.active .icon-aside-arrow {
  background-image: url("../images/icon-arrow-active.svg");
}
#wrap #aside .menu-list .dep1.active + .dep2 {
  opacity: 1;
  display: block;
  padding-bottom: 23px;
}
#wrap #aside .menu-list .dep2 {
  display: none;
  opacity: 0;
}
#wrap #aside .menu-list .dep2 > li {
  width: 100%;
  padding-bottom: 23px;
}
#wrap #aside .menu-list .dep2 > li.active {
  margin: -10px 0;
}
#wrap #aside .menu-list .dep2 > li a {
  font-size: 14px;
  color: #777;
  font-weight: 500;
  padding: 11px 15px;
}
#wrap #aside .menu-list .dep2 > li.active a {
  color: #009881;
  display: block;
  position: relative;
}
#wrap #aside .menu-list .dep2 > li.active a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f1f3f4;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#wrap #aside .menu-list .dep2 > li:last-child {
  padding-bottom: 0;
}
#wrap .sub-content {
  width: 100%;
  padding: 40px 30px 210px;
  position: relative;
}

.container {
  margin-left: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 35px;
}
.breadcrumb .breadcrumb-item {
  position: relative;
  color: #444;
  font-size: 13px;
}
.breadcrumb .breadcrumb-item a {
  color: #444;
  font-size: 13px;
}
.breadcrumb .breadcrumb-item::after {
  content: "";
  width: 6px;
  height: 10px;
  background-image: url("../images/icon-breadcrumb-arrow.png");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  background-size: cover;
}
.breadcrumb .breadcrumb-item:last-child::after {
  content: none;
}

.filter-wrap {
  border: 1px solid #ebebeb;
  background-color: #fafafa;
  padding: 20px 20px 20px 30px;
  border-radius: 8px;
  margin-top: 45px;
  margin-bottom: 100px;
}
.filter-wrap > .container {
  width: 100%;
  max-width: 100%;
}
.filter-wrap .filter-container {
  display: flex;
  justify-content: space-between;
}
.filter-wrap .filter-content {
  display: flex;
}
.filter-wrap .filter-flex {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter-wrap .search-btn {
  width: 100px;
  height: 100%;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.head-content {
  display: flex;
  justify-content: space-between;
}
.head-content .main-title {
  font-size: 24px;
  color: #000;
  letter-spacing: -1.2px;
  font-weight: 700;
}

.progress-wrap {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
.progress-wrap::before {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
  position: absolute;
}

.progress-bar {
  width: 400px;
  background-color: #ced6e5;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.progress-file-name {
  position: absolute;
  top: 48.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-size: 14px;
  color: #fff;
}

.progress-text {
  position: absolute;
  top: 52.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-size: 14px;
  color: #fff;
}

.progress {
  width: 0;
  height: 5px;
  border-radius: 2px;
  background-color: #14907f; /* 게이지 색상 */
  text-align: center;
  line-height: 5px;
  color: white;
}
@media (max-width: 767.98px) {
  .progress {
    height: 1.7px;
  }
}

.loading-wrap {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
.loading-wrap::before {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
  position: absolute;
}
.loading-wrap .loading-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.loading-wrap .loading {
  border: 4px solid #fff;
  border-top-color: #00b8a3;
  border-radius: 100%;
  height: 82px;
  width: 82px;
  animation: rotate 2s infinite linear;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.loading-wrap .loading-text {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  margin-top: 14px;
  font-weight: 500;
}

#header .top-head {
  height: 80px;
  background-image: url("../images/depth1-bg.png");
  padding: 0 40px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-size: cover;
}
#header .top-head .left-content {
  display: flex;
  align-items: center;
  gap: 140px;
  padding: 20px 0;
}
#header .gnb-depth1 {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: -25px;
}
#header .gnb-depth1 li {
  min-width: 150px;
}
#header .gnb-depth1 li a {
  color: #111;
  padding: 19px 16px;
  display: block;
  font-size: 16px;
  background-image: url("../images/gnb-menu1.png");
  background-size: cover;
  line-height: 1;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
  text-align: center;
}
#header .gnb-depth1 li.active a {
  background-color: #0d1517;
  color: #fff;
  background-image: none;
}
#header .user-info {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}
#header .user-info .portal-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  margin-right: 4px;
}
#header .user-info .portal-link.dashboard {
  border-radius: 8px;
  position: relative;
  z-index: 1;
  padding: 7px 10px;
}
#header .user-info .portal-link.dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/portal-bg.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
  border-radius: 8px;
}
#header .user-info .sign-btn {
  background-color: #0d1517;
  font-size: 14px;
  border-radius: 8px;
}
#header .info {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
}
#header .info .user-id {
  position: relative;
}
#header .info .user-id::before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #fff;
  opacity: 0.6;
  left: -10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#header .gnb-depth2 {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 65px;
  background-color: #282a35;
  padding: 15px 30px;
}
#header .gnb-depth2 li {
  position: relative;
}
#header .gnb-depth2 li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.86;
  position: relative;
}
#header .gnb-depth2 li:hover a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #10b497;
  left: 0;
  bottom: -10px;
  border-radius: 0.5px;
}
#header .gnb-depth2 li.active a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #10b497;
  left: 0;
  bottom: -10px;
}

footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  padding: 30px 80px;
}
footer .img {
  margin-bottom: 12px;
}
footer .company-info {
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .company-info p {
  font-size: 12px;
  color: #666;
  line-height: 18px;
}
footer .copyright {
  font-size: 12px;
  color: #666;
  line-height: 18px;
}

.intro .footer {
  max-width: 600px;
  margin: 0 auto;
}

.top-btn {
  position: fixed;
  bottom: 30px;
  right: 40px;
  display: none;
}
.top-btn:hover {
  transition: 0.5s;
}
.top-btn:hover .icon-top {
  background-image: url("../images/top-btn-hover.png");
}

.login-wrap {
  position: relative;
}

.sign-container {
  max-width: 600px;
  width: 100%;
  height: 100%;
  margin: 0 auto 0;
  padding: 2.5% 0;
}
.sign-container .content {
  display: flex;
  min-height: calc(100vh - 300px) !important;
  flex-direction: column;
  row-gap: 49px;
  align-items: center;
}
.sign-container .content .sign-content {
  max-width: 600px;
  width: 100%;
}
.sign-container .content .sign-content .sign-box {
  width: 100%;
  padding: 44px 49px;
  border: 1px solid #e6e8ea;
  border-radius: 20px;
}
.sign-container .content .sign-content .sign-box .sign-title {
  margin-bottom: 55px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}
.sign-container .content .sign-content .sign-box .link-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.sign-container .content .sign-content .sign-box .link-line a {
  color: #808080;
  font-size: 14px;
  text-decoration: underline;
}
.sign-container .content .sign-content .sign-box .btn-green {
  margin-top: 49px;
  width: 100%;
  height: 54px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
}
.sign-container .content .sign-content .sign-box .find-box {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 50px;
  font-size: 14px;
  color: #606060;
  text-align: center;
}
.sign-container .content .sign-content .sign-box .find-box strong {
  color: #009881;
  font-weight: 400;
  text-decoration: underline;
}
.sign-container .content .sign-content .sign-box .input-form {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}
.sign-container .content .sign-content .sign-box .input-form + .input-form {
  margin-top: 30px;
}
.sign-container .content .sign-content .sign-box .input-form .input-form-title {
  font-size: 14px;
  color: #222;
}
.sign-container .content .sign-content .sign-box .input-form .form-control {
  height: 48px;
  border-radius: 10px;
}
.sign-container .content .sign-content .info-text {
  display: flex;
  align-items: center;
  color: #606060;
  font-size: 14px;
  line-height: 16px;
}
.sign-container .content .sign-content .info-text::before {
  display: inline-block;
  margin-right: 10px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #000;
  content: "";
}
.sign-container footer {
  position: static;
  padding: 0 26px;
  margin-top: 15%;
}

.find-id-list {
  height: 205px;
  overflow: auto;
  padding: 20px;
  border-radius: 10px;
  border: solid 1px #e6e8ea;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.find-id-list::-webkit-scrollbar {
  width: 4px;
  height: 50px;
  background-color: transparent;
}
.find-id-list::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #b7b9bb;
}

.id-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 10px;
  border: solid 1px #e6e8ea;
  padding: 12px 20px 13px;
  position: relative;
}
.id-box .form-check {
  padding: 0;
}
.id-box .form-check-label {
  font-size: 16px;
}
.id-box .form-check-input:checked + .form-check-label::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  background-color: #fafafa;
  z-index: -1;
}
.id-box .info {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #606060;
}
.id-box .info .name {
  position: relative;
}
.id-box .info .name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #ddd;
}

#header.header-w .top-head {
  padding: 20px 40px 20px 30px;
  border-bottom: 1px solid #e6e8ea;
  background-image: linear-gradient(to bottom, #fff, #fff) !important;
}
#header.header-w .top-head .left-content {
  padding: 0;
}
#header.header-w .top-head .user-info {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
}
#header.header-w .top-head .user-info .info {
  color: #444;
  font-size: 15px;
}
#header.header-w .top-head .user-info .info .user-id::before {
  background-color: #c1c1c1;
}
#header.header-w .top-head .user-info .btn {
  padding: 13px 20px;
  color: #fff;
  background-color: #0d1517;
  font-size: 14px;
  border-radius: 8px;
}

.intro-list {
  display: flex;
  gap: 20px;
  margin: 200px auto;
}
.intro-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 290px;
  height: 480px;
  padding: 155px 25px 145px 30px;
  border: 1px solid #e6e8ea;
  border-radius: 10px;
  overflow: hidden;
}
.intro-list li .text-box {
  display: flex;
  flex-direction: column;
}
.intro-list li .text-box [class^=icon-intro] {
  position: absolute;
  top: 38px;
}
.intro-list li .text-box .txt1 {
  color: #222;
  font-size: 24.5px;
}
.intro-list li .text-box .txt2 {
  margin-top: 19px;
  color: #666;
  font-size: 16.5px;
  line-height: 26.5px;
}
.intro-list li .text-box button {
  width: 104px;
  height: 40px;
  padding: 7px 0;
  margin-top: 35px;
  border-radius: 40px;
  background-color: #fff;
  border-width: 2px !important;
}
.intro-list li .intro-link {
  position: absolute;
  bottom: 35px;
  right: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: #222;
  font-size: 16px;
  text-align: right;
}
.intro-list li .intro-link i {
  transition: 0.2s;
}
.intro-list li .intro-link:hover i {
  transform: translateX(8px);
}
.intro-list li::after {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  transform: skew(-50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
  background-image: linear-gradient(to top, #07cc82, #003b69), linear-gradient(to bottom, #f8f9fa, #f8f9fa);
  transition: all 0.5s;
  content: "";
  z-index: -1;
}
.intro-list li:hover {
  box-shadow: 5px 8.7px 10px 0 rgba(0, 0, 0, 0.06);
}
.intro-list li:hover::after {
  width: 330%;
  height: 100%;
}
.intro-list li:hover .txt1 {
  color: #fff;
}
.intro-list li:hover .txt2 {
  color: #fff;
}
.intro-list li.disabled {
  background-color: #e6e8ea;
}
.intro-list li.disabled button {
  background-color: transparent !important;
  border-color: #999 !important;
  color: #999 !important;
  pointer-events: none;
}
.intro-list li.disabled .icon-intro-01 {
  background-image: url("../images/icon-intro-01-off.png");
}
.intro-list li.disabled .icon-intro-02 {
  background-image: url("../images/icon-intro-02-off.png");
}
.intro-list li.disabled .icon-intro-03 {
  background-image: url("../images/icon-intro-03-off.png");
}
.intro-list li.disabled .icon-intro-04 {
  background-image: url("../images/icon-intro-04-off.png");
}
.intro-list li.disabled .icon-intro-link {
  background-image: url("../images/icon-intro-link-off.png");
}
.intro-list li.disabled .txt1 {
  color: #999;
}
.intro-list li.disabled .txt2 {
  color: #999;
}
.intro-list li.disabled .intro-link {
  pointer-events: none;
  color: #999;
}
.intro-list li.disabled .intro-link:hover i {
  transform: translateX(0);
}
.intro-list li.disabled::after {
  display: none;
}
.intro-list li.disabled:hover {
  box-shadow: none;
}
.intro-list li.disabled:hover .txt1 {
  color: #999;
}
.intro-list li.disabled:hover .txt2 {
  color: #999;
}

.btns-sign {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: solid 1px #ebebeb;
  flex-shrink: 0;
}

.img-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preveiw-img {
  width: 534px;
  height: 240px;
  margin: 20px 0;
}
.preveiw-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin-top: 30px;
}

.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.table-head.border-head {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.table-head .text-green {
  color: #009881;
}
.table-head .btn-group {
  margin-top: 0;
}
.table-head .case {
  display: flex;
  align-items: center;
  gap: 32px;
}
.table-head .case p {
  position: relative;
}
.table-head .case p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #ebebeb;
  left: -16px;
}
.table-head .case p:first-child::before {
  content: none;
}
.table-head .case.border-case .form-check-label {
  font-size: 16px;
  margin-left: 10px;
  color: #999;
}
.table-head .case.border-case p {
  position: relative;
}
.table-head .case.border-case p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: #cbced2;
  left: -16px;
}

.ag-grid {
  width: 100%;
  max-height: auto;
}

.input-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.success-msg {
  font-size: 15px;
  color: #4285f4;
  margin-top: 10px;
}

.fail-msg {
  font-size: 15px;
  color: #fe3b30;
  margin-top: 10px;
}

.table-mode {
  border: 1px solid #ebebeb;
  border-radius: 8px;
}
.table-mode .table-head {
  display: flex;
  background-color: #fafafa;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.table-mode .table-head .table-head__tr {
  text-align: center;
  padding: 23px 0 22px;
  font-size: 14.5px;
  font-weight: 500;
}
.table-mode .table-body .table-body__row {
  display: flex;
  border-bottom: 1px solid #ebebeb;
}
.table-mode .table-body .table-body__row.none-data {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}
.table-mode .table-body .table-body__td {
  text-align: center;
  padding: 23px 8px;
  font-size: 15px;
  color: #777;
  word-break: break-all;
}
.table-mode.role .table-body {
  height: 636px;
  overflow-y: auto;
}
.table-mode.role .table-body .table-body__row {
  justify-content: space-between;
}
.table-mode.role .table-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.table-mode.role .table-body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.table-mode.role .table-body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.table-mode.api {
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.table-mode.api .table-head .table-head__tr {
  padding: 13px 0;
}
.table-mode.api .table-body {
  height: 210px;
  overflow-y: auto;
}
.table-mode.api .table-body .table-body__td {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-mode.api .table-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.table-mode.api .table-body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.table-mode.api .table-body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.table-mode.layer .table-head .table-head__tr {
  padding: 24px 0;
}
.table-mode.layer.popup .table-body {
  height: 350px;
}
.table-mode.layer .table-body {
  height: 320px;
  overflow-y: auto;
}
.table-mode.layer .table-body .table-body__td {
  padding: 24px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-mode.layer .table-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.table-mode.layer .table-body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.table-mode.layer .table-body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.table-mode.user .table-head .table-head__tr {
  padding: 24px 0;
}
.table-mode.user .table-body {
  height: 365px;
  overflow-y: auto;
}
.table-mode.user .table-body .table-body__td {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-mode.user .table-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.table-mode.user .table-body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.table-mode.user .table-body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.table-mode.infra .table-head {
  justify-content: inherit;
}
.table-mode.infra .table-body {
  height: 636px;
  overflow-y: auto;
}
.table-mode.infra .table-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.table-mode.infra .table-body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.table-mode.infra .table-body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.width-1 {
  width: 1%;
}

.width-2 {
  width: 2%;
}

.width-3 {
  width: 3%;
}

.width-4 {
  width: 4%;
}

.width-5 {
  width: 5%;
}

.width-6 {
  width: 6%;
}

.width-7 {
  width: 7%;
}

.width-8 {
  width: 8%;
}

.width-9 {
  width: 9%;
}

.width-10 {
  width: 10%;
}

.width-11 {
  width: 11%;
}

.width-12 {
  width: 12%;
}

.width-13 {
  width: 13%;
}

.width-14 {
  width: 14%;
}

.width-15 {
  width: 15%;
}

.width-16 {
  width: 16%;
}

.width-17 {
  width: 17%;
}

.width-18 {
  width: 18%;
}

.width-19 {
  width: 19%;
}

.width-20 {
  width: 20%;
}

.width-21 {
  width: 21%;
}

.width-22 {
  width: 22%;
}

.width-23 {
  width: 23%;
}

.width-24 {
  width: 24%;
}

.width-25 {
  width: 25%;
}

.width-26 {
  width: 26%;
}

.width-27 {
  width: 27%;
}

.width-28 {
  width: 28%;
}

.width-29 {
  width: 29%;
}

.width-30 {
  width: 30%;
}

.width-31 {
  width: 31%;
}

.width-32 {
  width: 32%;
}

.width-33 {
  width: 33%;
}

.width-34 {
  width: 34%;
}

.width-35 {
  width: 35%;
}

.width-36 {
  width: 36%;
}

.width-37 {
  width: 37%;
}

.width-38 {
  width: 38%;
}

.width-39 {
  width: 39%;
}

.width-40 {
  width: 40%;
}

.width-41 {
  width: 41%;
}

.width-42 {
  width: 42%;
}

.width-43 {
  width: 43%;
}

.width-44 {
  width: 44%;
}

.width-45 {
  width: 45%;
}

.width-46 {
  width: 46%;
}

.width-47 {
  width: 47%;
}

.width-48 {
  width: 48%;
}

.width-49 {
  width: 49%;
}

.width-50 {
  width: 50%;
}

.width-51 {
  width: 51%;
}

.width-52 {
  width: 52%;
}

.width-53 {
  width: 53%;
}

.width-54 {
  width: 54%;
}

.width-55 {
  width: 55%;
}

.width-56 {
  width: 56%;
}

.width-57 {
  width: 57%;
}

.width-58 {
  width: 58%;
}

.width-59 {
  width: 59%;
}

.width-60 {
  width: 60%;
}

.width-61 {
  width: 61%;
}

.width-62 {
  width: 62%;
}

.width-63 {
  width: 63%;
}

.width-64 {
  width: 64%;
}

.width-65 {
  width: 65%;
}

.width-66 {
  width: 66%;
}

.width-67 {
  width: 67%;
}

.width-68 {
  width: 68%;
}

.width-69 {
  width: 69%;
}

.width-70 {
  width: 70%;
}

.width-71 {
  width: 71%;
}

.width-72 {
  width: 72%;
}

.width-73 {
  width: 73%;
}

.width-74 {
  width: 74%;
}

.width-75 {
  width: 75%;
}

.width-76 {
  width: 76%;
}

.width-77 {
  width: 77%;
}

.width-78 {
  width: 78%;
}

.width-79 {
  width: 79%;
}

.width-80 {
  width: 80%;
}

.width-81 {
  width: 81%;
}

.width-82 {
  width: 82%;
}

.width-83 {
  width: 83%;
}

.width-84 {
  width: 84%;
}

.width-85 {
  width: 85%;
}

.width-86 {
  width: 86%;
}

.width-87 {
  width: 87%;
}

.width-88 {
  width: 88%;
}

.width-89 {
  width: 89%;
}

.width-90 {
  width: 90%;
}

.width-91 {
  width: 91%;
}

.width-92 {
  width: 92%;
}

.width-93 {
  width: 93%;
}

.width-94 {
  width: 94%;
}

.width-95 {
  width: 95%;
}

.width-96 {
  width: 96%;
}

.width-97 {
  width: 97%;
}

.width-98 {
  width: 98%;
}

.width-99 {
  width: 99%;
}

.width-100 {
  width: 100%;
}

.font-sm {
  font-size: 13px;
}

.text-green {
  color: #009881 !important;
}

.text-blue {
  color: #4285f4 !important;
}

.text-danger {
  color: #fe3b30 !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px;
}

.text-underline {
  text-decoration: underline;
}

.infra-info {
  width: 100%;
  height: 243px;
  border-radius: 4px;
  background-color: #f9f9f9;
  margin-top: 20px;
}

.half {
  display: flex;
  align-items: center;
  gap: 24px;
}
.half .after {
  position: relative;
}
.half .after::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #ebebeb;
  left: -12px;
}

.modal-form-title {
  font-size: 24px;
  font-weight: bold;
  color: #111;
}

.modal-form-desc {
  font-size: 15px;
  color: #444;
  margin-top: 14px;
}

.reject-form {
  height: 160px;
  margin-top: 14px;
}

.badge {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 24px;
  border-radius: 15px;
}
.badge.w-auto {
  width: auto;
  padding: 0 15px;
}
.badge.badge-dark {
  background-color: #0c2340;
}
.badge.badge-blue {
  background-color: #4285f4;
}
.badge.badge-green {
  background-color: #009881;
}
.badge.badge-danger {
  background-color: #fe3b30;
}
.badge.badge-orange {
  background-color: #f06314;
}
.badge.badge-purple {
  background-color: #6f43d6;
}
.badge.badge-lg {
  height: 30px;
  font-size: 15px;
}

.nav-tabs {
  margin-top: 40px;
  gap: 45px;
}
.nav-tabs .nav-item {
  padding: 0;
}
.nav-tabs .nav-link {
  font-size: 30px;
  font-weight: 700;
  color: #bbb;
  padding: 20px 0;
  border-right: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-tabs .nav-link.active {
  border-color: transparent;
  border-bottom: 3px solid #000;
  color: #000;
}

.api-search {
  width: 720px;
  padding: 10px 10px 10px 20px;
  border-radius: 4px;
  border: solid 1px #ebebeb;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 70px auto 55px;
}

.guide-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.guide-list .guide-content {
  width: calc(33.3% - 27px);
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 6px 8px 0 rgba(0, 0, 0, 0.05);
}
.guide-list .guide-content .btn-group {
  display: flex;
  gap: 0;
  background-color: #f8f8f8;
  border-radius: 0 0 8px 8px;
  margin-top: 20px;
  border-top: 1px solid #ddd;
}
.guide-list .guide-content .btn-group .btns {
  width: 50%;
  height: 60px;
  padding: 18px 0;
}

.guide-content__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 35px;
}

.guide-content__body {
  padding: 0 30px 0;
}
.guide-content__body .desc {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #999;
}
.guide-content__body .desc .after {
  position: relative;
}
.guide-content__body .desc .after::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #ebebeb;
  left: -10px;
}
.guide-content__body .move-link {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 60px;
  line-height: 1.5;
}
.guide-content__body .move-link:hover {
  text-decoration: underline;
}

.error-wrap {
  width: 100%;
  height: 100vh;
  background-image: url("../images/error-bg.png");
  background-size: cover;
  padding-top: 190px;
}
.error-wrap .title {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  color: #222;
}
.error-wrap .desc {
  font-size: 18px;
  line-height: 1.56;
  text-align: center;
  color: #777;
  margin-top: 35px;
}
.error-wrap .btn-group {
  margin-top: 66px;
}
.error-wrap .btn-group .btn {
  width: 170px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.05);
}
.error-wrap .btn-group .btn.back-btn {
  background-color: #fff;
  color: #000;
}
.error-wrap .btn-group .btn.main-btn {
  background-color: #009982;
  color: #fff;
}

.br-text {
  line-height: 25px;
}

.menu-container {
  display: flex;
  gap: 60px;
  margin-top: 33px;
}

.system-wrap {
  width: 302px;
}
.list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.list-title p {
  font-size: 20px;
  font-weight: 500;
}
.list-title .list-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-title .list-btn.edit-btn:hover .icon-edit {
  background-image: url("../images/icon-edit-hover.png");
}
.list-title .list-btn.menu-btn:hover .icon-plus {
  background-image: url("../images/icon-plus-hover.png");
}

.system-wrap .system-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.system-wrap .system-list .system-list__content {
  border-radius: 8px;
  background-color: #f1f3f4;
  padding: 22px 29px;
  cursor: pointer;
}
.system-wrap .system-list .system-list__content:hover {
  background-image: url("../images/system-content-bg.png");
  background-size: cover;
}
.system-wrap .system-list .system-list__content.active {
  background-color: #009881;
  color: #fff;
}

.menu-wrap {
  width: 380px;
}
.menu-wrap .menu-list {
  width: 100%;
  height: 700px;
  overflow: auto;
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ebebeb;
  padding: 30px;
}
.menu-wrap .menu-list::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.menu-wrap .menu-list::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.menu-wrap .menu-list::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.menu-wrap .menu-list span.active {
  color: #009881;
}
.menu-wrap .menu-list label {
  cursor: pointer;
}
.menu-wrap .menu-list .large-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.menu-wrap .menu-list .large-menu span {
  font-size: 18px;
  font-weight: 500;
  color: #111;
}
.menu-wrap .menu-depth1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-wrap .menu-depth1 > li > div {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.menu-wrap .menu-depth1 > li > div.open .icon-plus {
  width: 12px;
  height: 12px;
  background-image: url("../images/icon-minus-active.png");
}
.menu-wrap .menu-depth1 > li > div .dep1-desc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
}
.menu-wrap .menu-depth2 {
  display: none;
  flex-direction: column;
  padding: 20px 0 0 40px;
  cursor: pointer;
}
.menu-wrap .menu-depth2 > li {
  padding-bottom: 15px;
}
.menu-wrap .menu-depth2 > li:last-child {
  padding-bottom: 0;
}
.menu-wrap .menu-depth2 > li > div {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.menu-wrap .menu-depth2 > li .dep2-desc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  position: relative;
}
.menu-wrap .menu-depth2 > li .dep2-desc .icon-plus {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-wrap .menu-depth2 > li .dep2-desc.open .icon-plus {
  width: 12px;
  height: 12px;
  background-image: url("../images/icon-minus-active.png");
}
.menu-wrap .menu-depth2 > li.active .menu-depth3 {
  display: block;
}
.menu-wrap .menu-depth3 {
  display: none;
  flex-direction: column;
  padding: 15px 0 0 37px;
  position: relative;
  cursor: pointer;
}
.menu-wrap .menu-depth3::before {
  content: "";
  position: absolute;
  left: 25px;
  width: 1px;
  height: calc(100% - 15px);
 /*  background-color: #e0e0e0; */
}
.menu-wrap .menu-depth3 > li {
  padding-bottom: 18px;
}
.menu-wrap .menu-depth3 > li:last-child {
  padding-bottom: 0;
}
.menu-wrap .menu-depth3 > li .dep3-desc {
  /* font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px; */
   display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.menu-wrap .menu-depth3 > li .dep3-desc .icon-plus {
  /*position: absolute;*/
  left: 10px;
  top: 33%;
  /*transform: translateY(60%);*/
}
.menu-wrap .menu-depth3 > li .dep3-desc.open .icon-plus {
  width: 12px;
  height: 12px;
  background-image: url("../images/icon-minus-active.png");
}

.menu-wrap .menu-depth3 > li.active .dep3-desc {
  position: relative;
}
.menu-wrap .menu-depth3 > li.active .dep3-desc::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 1px;
  height: 16px;
  background-color: #009881;
}

.menu-wrap .menu-depth3 > li.active .menu-depth4 {
  display: block;
}
.menu-wrap .menu-depth3 .depth-input .form-control {
  background-color: #f1f3f4;
  height: 36px;
}
.menu-wrap .menu-depth4 {
  display: none;
  flex-direction: column;
  padding: 15px 0 0 37px;
  position: relative;
  cursor: pointer;
}
.menu-wrap .menu-depth4::before {
  content: "";
  position: absolute;
  left: 25px;
  width: 1px;
  height: calc(100% - 15px);
  background-color: #e0e0e0;
}
.menu-wrap .menu-depth4 > li {
  padding-bottom: 18px;
}
.menu-wrap .menu-depth4 > li:last-child {
  padding-bottom: 0;
}
.menu-wrap .menu-depth4 > li.active .dep4-desc {
  position: relative;
}
.menu-wrap .menu-depth4 > li.active .dep4-desc::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 1px;
  height: 16px;
  background-color: #009881;
}
.menu-wrap .menu-depth4 .dep4-desc {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-wrap .menu-depth4 .depth-input .form-control {
  background-color: #f1f3f4;
  height: 36px;
}

.role-wrap {
  width: 1150px;
}

.tool-wrap {
  width: 760px;
  flex-direction: column;
  gap: 35px;
  display: none;
}

.property-wrap .property-content {
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ebebeb;
  padding: 30px 30px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.property-wrap .property-content .btn-group {
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
}

.property-content__row {
  display: flex;
  gap: 56px;
}
.property-content__row .input-form {
  width: 50%;
}
.property-content__row .input-form-label {
  width: 92px;
}

.card-wrap {
  margin: 45px 0 62px;
}
.card-wrap .table-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-wrap .table-wrap {
  margin-top: 15px;
}

.none-data {
  font-size: 20px;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 51px 0 53px;
}

.authority-list {
  height: 320px;
  overflow-y: auto;
}
.authority-list li {
  font-size: 15px;
  color: #777;
  padding: 24px 30px;
  border-bottom: 1px solid #ebebeb;
}
.authority-list li:last-child {
  border-bottom: 0;
}
.authority-list::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.authority-list::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.authority-list::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.check-head {
  margin-bottom: 10px;
}
.check-head .cheko-head__title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.check-head .check-head__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.check-head .check-head__btns > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.editor-wrap {
  min-height: 240px;
  border: solid 1px #ebebeb;
  border-radius: 4px;
}

.dashboard-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

.dashboard-counting-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dashboard-counting-wrap .dashboard-counting-list {
  width: calc(20% - 12px);
}

.dashboard-counting {
  padding: 20px;
  background-color: #f2f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-counting.today {
  background-image: url(../images/bg-dashboard.png);
  background-size: cover;
  align-items: end;
}
.dashboard-counting.today .badge {
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1;
  padding: 5px 10px;
  width: 50px;
}
.dashboard-counting.today .date {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 23px;
}
.dashboard-counting.today .text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.dashboard-counting .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #777;
}
.dashboard-counting .cnt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  margin-top: 23px;
}
.dashboard-counting .img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-box {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
}
.dashboard-box.city {
  padding: 0;
}
.dashboard-box.city .dashboard-box__head {
  padding: 20px;
  margin-bottom: 0;
}

.dashboard-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dashboard-box__head .title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}
.dashboard-box__head .more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.dashboard-box__content .btns {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.dashboard-box__content .btn.active {
  background-color: #009881 !important;
  border: 1px solid #009881 !important;
  color: #fff !important;
}

.chart-wrap.h-240 {
  height: 240px;
}
.chart-wrap.h-300 {
  height: 300px;
}

.city-list {
  height: 320px;
  overflow: auto;
}
.city-list::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
}
.city-list::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
.city-list::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.city-list li {
  padding: 20px;
  border-top: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.city-list li .city {
  color: #777;
}
.city-list li .cnt {
  color: #009881;
  font-weight: bold;
}

#table-flex {
	display: flex;
	align-items: center;
}

#table-flex h5 {
	font-size: 15px;
	margin: 0 10px;
}

#process-btn {
	font-size: 12px;
	border-radius: 3px;
	width: 70px;
	height: 24px;
	background-color: #6a9e57;
}

.publish-status-backdrop,
.register-layer-backdrop {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.publish-status {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 560px;
	background-color: #ffffff;
}

.register-layer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
}

.publish-status .header {
	background-image: url(../images/depth1-bg.png);
	background-size: cover;
	width: 560px;
	height: 35px;
	display: flex;
	align-items: center;
	color: #ffffff;
}

.register-layer .header {
	background-image: url(../images/depth1-bg.png);
	background-size: cover;
	height: 45px;
	display: flex;
	align-items: center;
	color: #ffffff;
}

.publish-status .header h4 {
	margin-left: 20px;
}

.register-layer .header h4 {
	margin-left: 20px;
	font-size: 18px;
}

.publish-status table {
	width: 90%;
	text-align: center;
	margin: 20px auto;
}

.publish-status table th {
	background-color: #fAfAfA;
	height: 50px;
	border-bottom: 1px solid #D9D9D9;
}

.publish-status table tr {
	height: 50px;
}

.publish-status table tr td .process-work{
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: #1bd9bd;
	width: 100%;
	height: inherit;
	color:white;
	border-radius: 5px;
}

.publish-status table td {
	padding: 6px 8px;
	height: 42px;
}

.register-layer-tree {
	display:flex;
	justify-content : flex-start;
	padding: 20px 30px;
	min-width: 400px;
	max-width: 80vw;
	max-height: 75vh;
	overflow: auto;
}

.register-layer-tree > ul {
	width: 100%;
}


.register-layer-tree .menu-item {
	position: relative;
	padding: 10px 0;
}

.register-layer-tree .menu-item > div,
.register-layer-tree .menu-item > p {
	display:flex;
	align-items : center;
}

.register-layer-tree .menu-item div + ul {
	display:none;
	margin-left: 25px;
	margin-top: 15px;
}

.register-layer-tree .menu-item div.open + ul {
	display: flex;
	flex-direction : column;
}

.register-layer-tree .icon-plus {
	padding: 10px;
	width: 12px;
    height: 12px;
    background-image: url(../images/icon-plus.png);
    background-size: 12px;
}

.register-layer-tree i {
	margin-right: 10px;
}

.register-layer-tree ul > li > div.open .icon-plus {
    height: 12px;
    background-image: url(../images/icon-minus-active.png);
}

.register-layer-tree .menu-item div label,
.register-layer-tree .menu-item p label {
	display:flex;
	width: 100%;
}

.register-layer-tree .menu-item div input,
.register-layer-tree .menu-item p input {
	position: absolute;
	top: 10px;
	right: 0;
	width: 20px;
    height: 20px;
    vertical-align: top;
	background-image: url("../images/btn-chk-off.png");
    appearance: none;
    cursor: pointer;
}

.register-layer-tree .menu-item div input:checked,
.register-layer-tree .menu-item p input:checked {
	background-image : url(../images/btn-chk-on.png);
}

.register-layer .button-box {
	display:flex;
	justify-content: flex-end;
	padding: 10px;
}

/* 첫 번째 열의 너비를 30%로 설정합니다. */
.publish-status table td:nth-child(1) {
  width: 40%;
}

/* 두 번째 열의 너비를 40%로 설정합니다. */
.publish-status table td:nth-child(2) {
  width: 40%;
}

/* 세 번째 열의 너비를 30%로 설정합니다. */
.publish-status table td:nth-child(3) {
  width: 20%;
}



/* viewform 처리상태 text-flex 변경 */
td h5#remain-display {
	margin: 0 0 0 10px;
}

td h5#remain-display + #process-btn {
	margin-left: 10px;
}

/*# sourceMappingURL=maps/style.css.map */


/* CKEDITOR 스타일 설정 */
.cke_dialog_ui_hbox {
	margin : 0;
}

.custom-hbox div{
	width: 100% !important;
}

.cke_dialog_ui_labeled_content {
	margin : 0 !important;
}

.cke_dialog_title {
	background-color : white;
	text-align: center;
	height : 60px;
	border : none;
	display: flex;
	flex-direction : column;
	justify-content: flex-end;
	font-size : 25px;
}

.cke_dialog_ui_labeled_label {
	font-size : 12px;
	font-weight : 600;
}

.htmlPreview-label {
	font-size : 15px;
	font-weight : 600;
}

.cke_dialog_ui_vbox_child {
	padding : 2 0;
}

.cke_dialog_close_button {
	border : solid 3px black !important;
	border-radius : 50px;
	color : black !important;
	padding: 5px !important;
	display : flex !important;
	justify-content : center !important;
	align-items : center !important;
}

.reset-container-label {
	font-size : 15px;
	font-weight : 800;
}

.cke_btn_reset {
	margin-right : 100% !important;
}

.custom-upload-field {
    display: flex; /* 가로 정렬 */
    align-items: center; /* 수직 중앙 정렬 */
    gap: 10px; /* 텍스트와 버튼 간 간격 */
    margin-bottom: 10px; /* 하단 여백 */
}

.custom-upload-field tbody{
    display: flex; /* 가로 정렬 */
    align-items: center; /* 수직 중앙 정렬 */
    justify-content : space-between;
    width : 100% !important;
}

.file-name-display {
    flex: 1; /* 버튼 옆에서 최대 공간 차지 */
    padding: 5px 10px;
    font-size: 14px;
    color: #666;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.custom-upload-button {
    padding: 0px;
    font-size: 14px;
    color: #fff;
    height : 29px !important;
    position : relative;
}

.custom-upload-button div {
	opacity : 0;
}

.custom-upload-button label{
	position : absolute;
	width : 100%;
	height : 100%;
	top : 0;
	color : white;
	background-color : black;
	display : flex;
	justify-content : center;
	align-items : center;
	margin-top : 0.5px;
}

.cke_dialog_footer {
	display : flex;
	justify-content : center;
	align-items : center;
	height: 60px;
	border : none;
	padding : 5px;
	background : none;
}

.cke_dialog_footer table {
	width : 100% !important;
	height: 90%;
    
}

.cke_dialog_footer table tbody tr{
	width : 100% !important;
	height: 100%;

}

.cke_dialog_footer table tbody tr td:first-child {
    /* 원하는 스타일 */
    width : 75% ;
    height: 100% ;
}

.cke_dialog_footer table tbody tr td:first-child a {
    /* 원하는 스타일 */
    width : 100%;
    height: 100%;
    display : flex;
    justify-content : center;
    align-items: center;

    
}
.cke_dialog_footer table tbody tr td:first-child a span {
    /* 원하는 스타일 */
    font-size : 20px;
}

.cke_dialog_footer table tbody tr td:nth-child(2) {
    /* 원하는 스타일 */
    width : 25% ;
    height: 100% ;
}

.cke_dialog_footer table tbody tr td:nth-child(2) a {
    /* 원하는 스타일 */
    width : 100%;
    height: 100%;
    display : flex;
    justify-content : center;
    align-items: center;
}

.cke_dialog_footer table tbody tr td:nth-child(2) a span{
    /* 원하는 스타일 */
    font-size : 20px;

}

.cke_resizer_ltr {
	display : none;
	
}




