.container {
  width: 100%;
  min-width: 1360px;
  max-width: 1360px;
  padding: 0 30px;
  margin: 90px auto 80px;
}
.flex {
  display: flex;
}
.truncate {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #dedede;
  z-index: 11111;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1360px;
  height: 90px;
  padding: 0 30px;
  margin: 0 auto;
}
header .main-logo {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
header .main-logo img {
  width: 149px;
}
header .main-logo span {
  display: block;
  margin-top: 6px;
}
header .main-logo.horizontal {
  display: flex;
  align-items: center;
}
header .main-logo.horizontal img {
  width: 190px;
}
header .main-logo.horizontal span {
  margin-left: 20px;
  font-size: 22px;
  color: #3a3a3a;
  font-weight: 500;
}
header .main-nav > ul {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
header .main-nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 90px;
  font-size: 18px;
  font-weight: 500;
}
header .main-nav > ul > li.active > a {
  color: #1e71c1;
  font-weight: 700;
}
header .main-nav > ul > li > a .ic-arrow {
  width: 8px;
  height: 4px;
  margin-left: 8px;
  transform: rotate(180deg);
  transition: 0.2s;
}
header .main-nav > ul > .expanded .ic-arrow {
  transform: rotate(0);
}
header .main-nav > ul > li {
  position: relative;
}
header .main-nav .nav-sub {
  display: none;
  position: absolute;
  top: 0;
  left: calc(50% - 68px); /* 250605 수정 */
  width: 136px; /* 250605 수정 */
  border: 0.5px solid #000;
  border-radius: 9px;
  pointer-events: none;
  overflow: hidden;
}
/* 250605 삭제 */
/* header .main-nav #link-system .nav-sub {
  left: -10px;
} */
header .main-nav .nav-sub ul {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 11px;
  margin-top: 87px;
  padding-bottom: 27px;
  background: #fff;
  pointer-events: all;
}
header .main-nav .nav-sub ul li {
  width: 100%;
  background: #fff;
  text-align: center;
}
header .user-info {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
header .user-info .txt-greeting {
  font-size: 15px;
  font-weight: 500;
}
header .user-info .btn-logout {
  font-size: 15px;
  color: #929292;
  font-weight: 500;
}
footer {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 56px;
  margin: 0 auto;
  background: #ebebeb;
}
footer p {
  font-size: 12px;
  color: #646464;
}
footer .link-wrap {
  display: flex;
}
footer .link-wrap a {
  font-size: 12px;
  color: #646464;
  font-weight: 400;
}
footer .link-wrap a:first-of-type {
  color: #005dff;
}
footer .link-wrap a + a::before {
  content: '|';
  margin: 0 4px;
}
footer.user-type {
  height: 95px;
}
.breadcurmb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 17px 0 20px;
}
.breadcurmb img {
  width: 20px;
  height: 20px;
}
.breadcurmb .fixed {
  color: #b7b7b7;
  font-weight: 500;
}
.breadcurmb span {
  color: #646464;
  font-weight: 500;
}
.layout-side {
  display: flex;
  gap: 67px;
}
.layout-side .side-wrap {
  width: fit-content;
  width: 203px; /* 250605 추가 */
  margin-top: 25px;
}
.layout-side .side-wrap h2 {
  display: flex;
  align-items: center;
  width: 100%;
  height: 58px;
  border-bottom: 2px solid #aeaeae;
  font-size: 22px;
}
.layout-side .side-wrap > ul > li > p {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  color: #1e71c1;
  font-weight: 600;
}
.layout-side .side-wrap > ul > li > ul > li > a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
}
.layout-side .side-wrap > ul > li > ul > li.active > a {
  color: #1e71c1;
  font-weight: 600;
  text-decoration: underline;
}
.layout-side .main-wrap {
  flex: 1;
}
.layout-side .main-wrap .page-title-wrap {
  margin-top: 40px;
}
.layout-side .main-wrap .page-title-wrap h3 {
  font-size: 22px;
  font-weight: 400;
}
.layout-side.type2 {
  gap: 30px;
}
.layout-side.type2 .side-wrap {
  width: 354px;
}
.layout-side.type2 .main-wrap {
  width: 914px;
}
.page-title-wrap {
  display: flex;
  align-items: center;
}
.page-title-wrap .title {
  font-size: 25px;
  font-weight: 600;
}
.page-title-wrap .subtitle {
  margin-left: 35px;
  color: #999;
  font-weight: 200;
}
.quick-menu {
  position: fixed;
  top: 128px;
  left: calc(50% + 664px);
  width: 138px;
  padding: 36px 20px 43px;
  background: #fff;
  border: 1px solid #b7b7b7;
  border-radius: 10px;
  text-align: center;
  z-index: 11111;
}
.quick-menu .title {
  font-size: 22px;
  font-weight: 700;
}
.quick-menu ul {
  display: flex;
  flex-flow: column;
  gap: 12px;
  margin-top: 20px;
}
.quick-menu ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  border: 0.5px solid #808080;
  border-radius: 10px;
  font-size: 15px;
}
.search-wrap {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.search-wrap .input-wrap {
  flex: 1;
  height: 60px;
  box-sizing: border-box;
}
.search-wrap .select-wrap {
  width: 272px;
  height: 60px;
}
.search-wrap .custom-select-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
}
.search-wrap .custom-select-wrapper .ic-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  transition: 0.1s;
}
.search-wrap .custom-select-wrapper .ic-arrow.expanded {
  transform: rotate(180deg);
}
.search-wrap .custom-select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 1px solid #dbdbdb;
  background: #fff;
  font-weight: 200;
  cursor: pointer;
}
.search-wrap .custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #dbdbdb;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
}
.search-wrap .custom-select-options li {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  font-weight: 200;
  cursor: pointer;
}
.search-wrap .custom-select-options li:hover {
  background-color: #f0f0f0;
}
.search-wrap .input-wrap {
  position: relative;
}
.search-wrap .input-wrap input {
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 1px solid #dbdbdb;
  box-sizing: border-box;
  font-weight: 200;
}
.search-wrap .input-wrap .btn-search {
  position: absolute;
  right: 20px;
  top: 20px;
}
.search-wrap .input-wrap .btn-search img {
  width: 18px;
  height: 18px;
}
.board-wrap {
  margin-top: 38px;
}
.board-wrap .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.board-wrap .header-wrap .count {
  color: #999;
}
.board-wrap .header-wrap .count span {
  color: #1e71c1;
  font-weight: 600;
}
.board-wrap .header-wrap .btn-export {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 127px;
  height: 30px;
  padding: 0 10px;
  border: 0.5px solid rgba(51, 51, 51, 0.2);
  border-radius: 3px;
  font-weight: 500;
}
.board-wrap .header-wrap .btn-export img {
  width: 20px;
  height: 20px;
}
.board-wrap ul {
  margin-top: 18px;
  border-top: 2px solid #888;
  border-bottom: 1px solid #888;
}
.board-wrap li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  color: #555;
}
.board-wrap li + li {
  border-top: 1px solid #888;
}
/* 250610 추가 */
.board-wrap li.nodata {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  color: #999;
  font-weight: 200;
}
.board-wrap .head {
  background: #f8f8f8;
}
.board-wrap .btn-export img {
  width: 20px;
  height: 20px;
}
.board-wrap .pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 36px;
}
.board-wrap .pagination-wrap > button {
  width: 18px;
  height: 18px;
}
.board-wrap .pagination-wrap > button img {
  width: 18px;
  height: 18px;
}
.board-wrap .pagination-wrap .btn-next img {
  transform: rotate(180deg);
}
/* 250612 추가 */
.board-wrap .pagination-wrap .btn-prev:disabled,
.board-wrap .pagination-wrap .btn-next:disabled {
  background: inherit !important;
  opacity: 0.5;
  cursor: default;
}
.board-wrap .pagination-wrap .pages-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 30px;
}
.board-wrap .pagination-wrap .pages-wrap button {
  padding: 0 4px;
  color: #646464;
}
.board-wrap .pagination-wrap .pages-wrap .active {
  color: #1e71c1;
  border-bottom: 2px solid #1e71c1;
  font-weight: 700;
}
.board-wrap ul + .btns-wrap {
  margin-top: 30px;
}
.board-detail-wrap {
  margin-top: 37px;
  border-top: 2px solid #888;
}
.board-detail-wrap.no-attachment {
  border-bottom: 2px solid #888;
}
.board-detail-wrap .header-wrap {
  padding: 20px 25px;
  background: #f8f8f8;
}
.board-detail-wrap .header-wrap .title {
  font-size: 20px;
  font-weight: 500;
}
.board-detail-wrap .header-wrap .info-wrap {
  display: flex;
  gap: 86px;
  margin-top: 18px;
  color: #555;
  font-size: 12px;
}
.board-detail-wrap .contents-wrap {
  padding: 30px 20px 40px;
}
.board-detail-wrap .contents-wrap p {
  color: #555;
}
.board-detail-wrap .attachment-wrap {
  display: flex;
  border-top: 0.5px solid #999;
  border-bottom: 0.5px solid #999;
}
.board-detail-wrap .attachment-wrap .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
}
.board-detail-wrap .attachment-wrap ul {
  padding: 10px 20px;
  border-left: 0.5px solid #999;
}
.board-detail-wrap .attachment-wrap li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.board-detail-wrap .attachment-wrap li + li {
  margin-top: 10px;
}
.board-detail-wrap .attachment-wrap li .file-name {
  font-size: 12px;
  color: #555;
}
.board-detail-wrap .attachment-wrap li .btn-export {
  height: 26px;
  padding: 0 10px;
  border: 0.5px solid rgba(51, 51, 51, 0.2);
  border-radius: 3px;
}
.board-detail-wrap .btn-go-board {
  height: 44px;
  padding: 0 26px;
  margin-top: 37px;
  background: #373737;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}
.board-detail-wrap + .btns-wrap {
  margin-top: 30px !important;
}
.board-write-wrap {
  width: 100%;
  margin-top: 26px;
  border-top: 0.5px solid #888;
  border-bottom: 0.5px solid #888;
}
.board-write-wrap > ul > li {
  display: flex;
  min-height: 50px;
}
.board-write-wrap > ul > li + li {
  border-top: 0.5px solid #888;
}
.board-write-wrap ul li .title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 259px;
  background: #f8f8f8;
}
.board-write-wrap ul li .title-wrap p {
  font-weight: 500;
}
.board-write-wrap ul li .input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 12px 10px;
}
.board-write-wrap ul li .input-wrap p {
  padding: 10px 10px;
  color: #555;
}
.board-write-wrap ul li .input-wrap input[type='text'],
.board-write-wrap ul li .input-wrap input[type='number'],
.board-write-wrap ul li .input-wrap input[type='password'] {
  width: 100%;
  height: 40px;
  border: 0.5px solid #999;
  box-sizing: border-box;
}
.board-write-wrap ul li .input-wrap textarea {
  width: 100%;
  height: 220px;
  border: 0.5px solid #999;
  resize: none;
}
.board-write-wrap .attachment-wrap {
  flex: 1;
  padding: 12px 10px;
}
.board-write-wrap .attachment-wrap .files-wrap li {
  display: flex;
  align-items: center;
  gap: 17px;
}
.board-write-wrap .attachment-wrap .files-wrap li + li {
  margin-top: 7px;
}
.board-write-wrap .attachment-wrap .files-wrap li .file-name {
  font-size: 12px;
  color: #555;
}
.board-write-wrap .attachment-wrap .files-wrap li .btn-delete {
  height: 26px;
  padding: 0 10px;
  border: 0.5px solid rgba(51, 51, 51, 0.2);
  border-radius: 3px;
}
.board-write-wrap .attachment-wrap .files-wrawp + .file-input-wrap {
  margin-top: 15px;
}
.board-write-wrap .attachment-wrap .file-input-wrap li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.board-write-wrap .attachment-wrap .file-input-wrap .btn-select-files {
  height: 26px;
  padding: 0 10px;
  background: #ebebeb;
  border: 0.5px solid rgba(51, 51, 51, 0.2);
  font-size: 12px;
  color: #555;
  font-weight: 500;
}
.board-write-wrap .attachment-wrap .file-input-wrap .btn-add-input {
  height: 26px;
  padding: 0 10px;
  background: #fff;
  border: 0.5px solid rgba(51, 51, 51, 0.2);
  font-size: 12px;
  color: #555;
  font-weight: 500;
}
.board-write-wrap .attachment-wrap .file-input-wrap input {
  width: 320px;
  height: 26px;
  border: 0.5px solid #999;
  box-sizing: border-box;
}
.tree-wrap {
  width: 356px;
  min-width: 356px;
  height: 704px;
  min-height: 704px;
  max-height: 704px;
  border: 1px solid #b7b7b7;
  border-radius: 10px;
  overflow: hidden;
}
.tree-wrap .title-wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 76px;
  padding: 0 20px;
  background: #ebebeb;
}
.tree-wrap .title-wrap .title-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tree-wrap .title-wrap .title-group button {
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #8b8b8b;
  border-radius: 5px;
  color: #646464;
  font-size: 12px;
}
.tree-wrap .title-wrap span {
  margin-top: 9px;
  color: #999;
  font-weight: 200;
}
.tree-wrap .title-wrap p {
  font-size: 18px;
}
.tree-wrap .jstree {
  width: 100%;
  height: calc(100% - 76px);
  padding: 28px 30px;
  overflow-y: scroll;
}
.tree-wrap .jstree-anchor[aria-level='1'][aria-expanded='true'] .jstree-icon {
  width: 24px;
  height: 24px;
  background-image: url(../images/ic_tree_top_expanded.png);
  background-size: 20px;
  background-position: center;
}
.tree-wrap .jstree-anchor[aria-level='1'][aria-expanded='false'] .jstree-icon {
  width: 24px;
  height: 24px;
  background-image: url(../images/ic_tree_top_expanded.png);
  background-size: 20px;
  background-position: center;
}
.tree-wrap .jstree-anchor[aria-level='2'][aria-expanded='true'] .jstree-icon {
  width: 24px;
  height: 24px;
  background-image: url(../images/ic_tree_folder_expanded.png);
  background-size: 20px;
  background-position: center;
}
.tree-wrap .jstree-anchor[aria-level='2'][aria-expanded='false'] .jstree-icon {
  width: 24px;
  height: 24px;
  background-image: url(../images/ic_tree_folder.png);
  background-size: 20px;
  background-position: center;
}
.tree-wrap .jstree-anchor[aria-level='3'][aria-selected='true'] .jstree-icon {
  width: 24px;
  height: 24px;
  background-image: url(../images/ic_tree_item_selected.png);
  background-size: 20px;
  background-position: center;
}
.tree-wrap .jstree-anchor[aria-level='3'][aria-selected='false'] .jstree-icon {
  width: 24px;
  height: 24px;
  background-image: url(../images/ic_tree_item.png);
  background-size: 20px;
  background-position: center;
}
.tree-wrap .jstree-anchor[aria-selected='true'] {
  background: transparent;
  color: #1e71c1;
  box-shadow: unset;
}
.check-wrap .check-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.check-wrap .check-title {
  font-size: 20px;
  color: #646464;
  font-weight: 500;
}
.check-wrap .check-group-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 44px;
  margin-top: 22px;
}
.check-wrap .check-group {
  width: 267px;
  border-top: 2px solid #888;
}
.check-wrap .check-group li.head {
  background: #f8f8f8;
  font-weight: 500;
}
.check-wrap .check-group li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 13px;
}
.check-wrap .check-group li:not(.head) {
  border-top: 0.5px solid #888;
}
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 22px;
}
.custom-checkbox input[type='checkbox'] {
  display: none;
}
.checkbox-box {
  position: relative;
  width: 20px;
  height: 20px;
  background: url(../images/ic_check.png) no-repeat center 100%;
  background-size: 100%;
}
.custom-checkbox input:disabled + .checkbox-box {
  position: relative;
  width: 20px;
  height: 20px;
  background: url(../images/ic_check_disabled.png) no-repeat center 100%;
  background-size: 100%;
}
.custom-checkbox input:checked + .checkbox-box {
  position: relative;
  width: 20px;
  height: 20px;
  background: url(../images/ic_check_active.png) no-repeat center 100%;
  background-size: 100%;
}
.checkbox-label {
  font-size: 14px;
  color: #555;
  line-height: 1;
}
.subtitle + .custom-input-wrap {
  margin-top: 20px;
}
.custom-input-wrap {
  border-top: 0.5px solid #888;
  border-bottom: 0.5px solid #888;
}
.custom-input-wrap li {
  display: flex;
  min-height: 64px;
}
.custom-input-wrap li + li {
  border-top: 0.5px solid #888;
}
.custom-input-wrap li .input-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 182px;
  background: #f8f8f8;
  font-weight: 500;
}
.custom-input-wrap li .input-title.textarea {
  height: 133px;
}
.custom-input-wrap li .input-title.required::before {
  content: '*';
  margin-right: 4px;
  color: #ff0000;
}
.custom-input-wrap li .input-wrap {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 12px 10px;
}
.custom-input-wrap li .input-wrap p {
  padding: 10px 10px;
  color: #555;
}
.custom-input-wrap li .input-wrap.column {
  flex-flow: column;
  align-items: flex-start;
  gap: 10px;
}
.custom-input-wrap li .input-wrap .tip {
  font-size: 12px;
  color: #555;
}
.custom-input-wrap li .input-wrap .count {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.custom-input-wrap li .input-wrap .count p {
  padding: 0;
  font-size: 12px;
  color: #535353;
}
.custom-input-wrap li .input-wrap .count span.length {
  color: #1e71c1;
  font-weight: 700;
}
.custom-input-wrap li .input-wrap .tip::before {
  content: '·';
  margin: 0 8px;
}
.custom-input-wrap li .input-wrap input[type='text'],
.custom-input-wrap li .input-wrap input[type='number'],
.custom-input-wrap li .input-wrap input[type='password'] {
  width: 100%;
  height: 40px;
  border: 0.5px solid #999;
  box-sizing: border-box;
}
.custom-input-wrap li .input-wrap textarea {
  width: 100%;
  min-height: 102px;
  border: 0.5px solid #999;
  box-sizing: border-box;
}
.custom-input-wrap li .input-wrap .custom-checkbox {
  gap: 8px;
}
.custom-input-wrap li .input-wrap.file {
  gap: 8px;
}
.custom-input-wrap li .input-wrap.file .btn-select-files {
  height: 26px;
  padding: 0 10px;
  background: #ebebeb;
  border: 0.5px solid rgba(51, 51, 51, 0.2);
  font-size: 12px;
  color: #555;
  font-weight: 500;
}
.custom-input-wrap li .input-wrap.file input {
  height: 26px;
}
.custom-input-wrap.small li {
  min-height: 40px;
}
.custom-input-wrap.small li .input-title {
  width: 140px;
}
.custom-input-wrap.small li .input-wrap {
  padding: 0 10px;
}
.custom-input-wrap.w-135 .input-title {
  width: 135px;
}
.btns-wrap {
  display: flex;
  align-items: center;
}
.btns-wrap.center {
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.btns-wrap.between {
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
.btns-wrap.right {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.btns-wrap .pagination-wrap {
  margin-top: 0;
}
.btns-wrap button.custom + button.custom {
  margin: 0;
}
.btns-wrap .left-wrap {
  display: flex;
  gap: 20px;
  min-width: 200px;
}
.btns-wrap .right-wrap {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  min-width: 200px;
}
.btns-wrap button:disabled {
  background: #9d9d9d !important; /* 250605 추가 */
  cursor: unset;
}
button.custom {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 26px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  box-sizing: border-box;
  white-space: nowrap;
}
button.custom.blue {
  background: #2453a5;
}
button.custom.black {
  background: #373737;
}
button.custom.gray {
  background: #b7b7b7;
}
button.custom + button.custom {
  margin-left: 10px;
}
.modal-wrap {
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 22222;
}
.modal-wrap .modal-contents-wrap {
  position: relative;
  width: 713px;
  background: #fff;
  box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.1);
}
.modal-wrap .modal-contents-wrap.large {
  width: 885px;
}
.modal-wrap .modal-contents-wrap.x-large {
  width: 1146px;
}
.modal-wrap .modal-contents-wrap.x-large .contents-wrap {
  padding: 25px 30px 0;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap {
  display: flex;
  position: relative;
  gap: 68px;
  margin-bottom: 46px;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .user-list-wrap {
  width: 600px;
  height: 678px;
  padding: 25px 25px;
  background: #fff;
  border-radius: 15px;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .user-list-wrap .search-wrap {
  margin-top: 0;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .user-list-wrap .board-wrap {
  margin-top: 15px;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .user-list-wrap .search-wrap .select-wrap {
  width: 167px;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .btn-select {
  top: 320px;
  position: absolute;
  left: 615px;
  width: 38px;
  height: 38px;
  background: url(../images/ic_arrow_select_38.png) no-repeat center 100%;
  background-size: 100%;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .selected-list-wrap {
  display: flex;
  flex-flow: column;
  width: 419px;
  height: 678px;
  padding: 25px 25px;
  background: #fff;
  border-radius: 15px;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .selected-list-wrap .board-wrap {
  flex: 1;
  margin-top: 0;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .selected-list-wrap .txt-count {
  font-size: 18px;
  color: #2f2f2f;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .selected-list-wrap .btn-delete {
  width: 20px;
  height: 20px;
  background: url(../images/ic_delete.png) no-repeat center 100%;
  background-size: 100%;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .btns-wrap {
  padding: 0;
  margin-bottom: 0;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .btns-wrap > div {
  min-width: unset;
}
.modal-wrap .modal-contents-wrap.x-large .user-regist-wrap .pagination-wrap {
  margin-top: 15px;
}
.modal-wrap .modal-contents-wrap.bg-gray {
  background: #e8e8e8;
}
.modal-wrap .modal-contents-wrap .title-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 54px;
  padding: 0 25px;
  background: #fff;
}
.modal-wrap .modal-contents-wrap .title-wrap .title {
  font-size: 18px;
  color: #555;
  font-weight: 600;
}
.modal-wrap .modal-contents-wrap .title-wrap + .contents-wrap {
  border-top: 0.5px solid #888;
}
.modal-wrap .modal-contents-wrap .contents-wrap {
  padding: 25px 25px 0;
}
.modal-wrap .modal-contents-wrap .contents-wrap .subtitle {
  margin-bottom: 20px;
  color: #555;
  font-weight: 200;
}
.modal-wrap .modal-contents-wrap .btns-wrap {
  padding: 0 25px;
  margin: 20px 0 25px;
}
.modal-wrap .modal-contents-wrap .btn-close {
  position: absolute;
  top: 15px;
  right: 25px;
  width: 24px;
  height: 24px;
  background: url(../images/ic_close_24.png) no-repeat center 100%;
  background-size: 100%;
}
.custom-radio-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.custom-radio-wrap + .custom-radio-wrap {
  margin-left: 30px;
}
.custom-radio-wrap .custom-radio {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #5e47d2;
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.custom-radio-wrap .custom-radio:checked::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: #5e47d2;
  border-radius: 50%;
}
.custom-radio-wrap span {
  display: block;
  margin-top: 2px;
  margin-left: 8px;
  color: #555;
}
.custom-radio-wrap .custom-radio:disabled {
  border-color: #888;
}
.custom-radio-wrap .custom-radio:checked:disabled:before {
  background-color: #888;
}
/* 250609 추가 */
.date-range-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.date-picker-wrap {
  position: relative;
}
.date-picker-wrap::after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: url(../images/ic_calendar.png) no-repeat center;
  background-size: 100%;
}
#datepicker {
  position: relative;
  width: 147px;
  padding-right: 34px;
  cursor: pointer;
}
/* 기본 틀 */
.ui-datepicker {
  width: 300px;
  padding: 16px 16px;
}
/* 제목 영역 */
.ui-datepicker-header {
  padding: 0 !important;
  margin-bottom: 8px;
  background: transparent;
  border: 0;
  font-size: 15px;
  color: #14181f !important;
  font-weight: 500;
}
/* 좌우 화살표 */
.ui-datepicker-prev,
.ui-datepicker-next {
  width: 32px;
  height: 32px;
  border: 1px solid #dce0e5;
  border-radius: 8px;
  background: url(../images/ic_arrow_20.png) no-repeat center;
  background-size: 20px;
}
.ui-datepicker-next {
  transform: rotate(180deg);
}
.ui-datepicker thead th {
  color: #6f7c8e !important;
}
.ui-datepicker td a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px !important;
  height: 36px !important;
  background: #fff !important;
  border: 0 !important;
  font-size: 15px;
  color: #14181f !important;
  font-weight: 500;
}
.ui-datepicker td a[aria-current='true'] {
  background: #e0edff !important;
  color: #14181f !important;
  font-weight: 700;
}
.ui-datepicker-title,
.ui-datepicker thead th,
.ui-datepicker td a {
  font-family: 'Paperlogy', 'Malgun Gothic', '맑은 고딕', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}
.time-select-wrap {
  display: flex;
}
.time-select-wrap .custom-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.time-select-wrap .custom-select {
  display: flex;
  align-items: center;
  width: 69px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #dbdbdb;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  cursor: pointer;
}
.time-select-wrap .custom-select::after {
  content: '';
  position: absolute;
  right: 10px;
  width: 24px;
  height: 24px;
  background: url(../images/ic_arrow_24.png) no-repeat center 100%;
  background-size: 100%;
  transition: 0.1s;
}
.time-select-wrap .custom-select.expanded::after {
  transform: rotate(180deg);
}
.time-select-wrap .custom-options {
  display: none;
  position: absolute;
  top: 42px;
  left: 0;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  z-index: 10;
  width: 69px;
}
.time-select-wrap .custom-options li {
  min-height: unset;
  padding: 5px 10px;
  color: #333;
  cursor: pointer;
}
.time-select-wrap .custom-options li + li {
  border-top: 0;
}
.time-select-wrap .custom-options li:hover {
  background: #eee;
}
.time-select-wrap .txt {
  margin: 0 11px 0 8px;
}
.time-select-wrap .txt-between {
  margin: 0 20px 0 8px;
}

.dashboard-wrap .select-wrap {
  width: 130px;
  height: 32px;
}
.dashboard-wrap .custom-select-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
}
.dashboard-wrap .custom-select-wrapper .ic-arrow {
  position: absolute;
  top: 3px;
  right: 8px;
  width: 24px;
  height: 24px;
  transition: 0.1s;
}
.dashboard-wrap .custom-select-wrapper .ic-arrow.expanded {
  transform: rotate(180deg);
}
.dashboard-wrap .custom-select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  border: 1px solid #dbdbdb;
  background: #fff;
  font-weight: 200;
  cursor: pointer;
}
.dashboard-wrap .custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #dbdbdb;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
}
.dashboard-wrap .custom-select-options li {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 10px;
  font-weight: 200;
  cursor: pointer;
}
.dashboard-wrap .custom-select-options li:hover {
  background-color: #f0f0f0;
}
.tabs-wrap {
  display: flex;
  gap: 12px;
}
.tabs-wrap .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 32px;
  border: 0.5px solid #f0f0f0;
  border-radius: 5px;
  background: #f0f0f0;
  color: #ababab;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
  box-shadow: 0px 2px 1px 0px #4048520d;
}
.tabs-wrap .tab.active {
  background: #fbfcfe;
  color: #000;
}
