@charset "UTF-8";

/*-------------------------------------------------
Author : WB,Seo
Create date : 2024. 08
Last update : 
-------------------------------------------------*/

/* CSS : import */
@import url("/resources/css/default/normalize.css");
@import url("/resources/css/assets/fonts.css");



:root {
    --input-border-color: #E2E2E2;
    --input-border-radius: 8px;
    --input-bg-color: var(--white-color);
    --main-color: #4187f6;
    --main2-color: #F9AF06;
    --red-color: #F66041;
    --white-color: rgb(255, 255, 255);
    --dark-color: #2b343b;

}

.__scroll-wrap {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    overflow-y: scroll;
    overflow-x: clip;
}

.__scroll-wrap::-webkit-scrollbar {
    width: 8px;
}

.__scroll-wrap::-webkit-scrollbar-thumb {
    width: 10px;
    background: rgba(0, 0, 0, 0.3);
    /* 스크롤바 색상 */
    border-radius: 10px;
    /* 스크롤바 둥근 테두리 */
}

.__base_wrap {
    max-width: 1600px;
    width: calc(100% - 30px);
    margin: 0 auto;
}

.__base_wrap.max-w-lg {
    max-width: 1400px;
}

.__base_wrap.max-w-ms {
    max-width: 1024px;
}

.--base_wrap.max-w-sm {
    max-width: 960px;
}

.__h-full {
    height: 100vh;
    min-height: 1080px;
}

.__flex {
    display: flex;
}

.__flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.__flex-auto[type="text"],
.__flex-auto {
    flex: 1 1 auto;
    width: auto;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.__reverse {
    flex-direction: row-reverse;
}

.__grid {
    display: grid;
}

.__fc-blue {
    color: #5F8BD6;
}

.__fc-main {
    color: var(--main-color);
}

.__fc-red {
    color: #D65F97;
}

.__circle {
    border-radius: 9999px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;

}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.p-row-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.bold {
    font-weight: 600;
    color: var(--main-color);
}

/* 기본 카드 형태 */
.__card-box {
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.__card-box:not(:last-of-type) {
    margin-bottom: 30px;
}

.deco {
    background-color: rgba(249, 175, 6, 0.4);
    display: inline-block;
    border-radius: 99px;
    font-weight: 500;
    height: 80%;
}

.__fs-ml {
    font-size: 20px;
}

/* 말줄임 한줄 */
.__txtCut {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

/* 말줄임 여러줄 */
.__txtCut-multi {
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 문장 형광펜 */
.txt-line {
    display: inline-block;
    position: relative;
}

.txt-line:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-color);
    opacity: 0.4;
    z-index: -1;
    width: 110%;
    height: 0.7em;
    border-radius: 99px;

}

/* 초기 값 셋팅 */
#initial * {
    margin: initial;
    padding: initial;
    /* font-size: initial; */
    border: initial;
    /* font: initial; */
    vertical-align: initial;
    list-style: initial;
    font-style: initial;
    font-weight: initial;
}

#initial b {
    font-weight: bold !important;
}

#initial b * {
    font-weight: bold !important;
}

.__main-wrap {
    margin: 0 30px 0 330px;
    max-width: 1552px;
    width: 100%;
    padding-bottom: 50px;
    box-sizing: border-box;
}

html {
    /* font: 400 16px/1.2 'SUITE', sans-serif; */
    font: 400 10px/1.2 'SCore_Dream', sans-serif;
    letter-spacing: -1.125px;
}

body {
    font-size: 1.6em;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-y: scroll;
    overflow-x: clip;
    background-color: #f8f8f8;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    width: 10px;
    background: rgba(0, 0, 0, 0.3);
    /* 스크롤바 색상 */
    border-radius: 10px;
    /* 스크롤바 둥근 테두리 */
}

.m_show {
    display: none;
}

.w-full {
    flex: 1 1 auto;
}

.w-auto {
    width: auto !important;
}


/* Header */
.navigation {
    position: fixed;
    height: 100vh;
    /* width: 70px; */
    width: 290px;
    background: var(--dark-color);
    /* box-shadow: 10px 0 0 var(--main-color); */
    border-left: 10px solid var(--dark-color);
    overflow-x: hidden;
    overflow-y: scroll;
    transition: width 0.5s;
    font-size: 20px;
}

.navigation .h1 {
    width: calc(100% - 30px);
    height: 80px;
    border: 5px solid var(--main-color);
    border-radius: 20px;
    box-sizing: border-box;
    color: var(--main-color);
    font-size: 30px;
    font-weight: 800;
    margin: 20px 0 0 10px;
}

.navigation .h1 a {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.navigation::-webkit-scrollbar {
    width: 10px;
    background: var(--main-color);
}

.navigation::-webkit-scrollbar-thumb {
    width: 3px;
    border: 3px solid var(--main-color);
    background: #132747;
    border-radius: 10px;
}

.navigation:hover {
    /* width: 300px; */
}

.navigation .nav-sidebar {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    padding-bottom: 50px;
    /* padding-left: 10px;
  padding-top: 40px; */
}

.navigation .nav-sidebar .nav-item {
    position: relative;
    list-style: none;
    width: 100%;
    /* border-top-left-radius: 20px;
  border-bottom-left-radius: 20px; */
}

/* .navigation .nav-sidebar .nav-item.active {
  background: var(--main-color);
} */

.navigation .nav-sidebar .nav-item .nav-link {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: #fff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.navigation .nav-sidebar .nav-item.active .nav-link {
    background: var(--main-color);
}

.navigation .nav-sidebar .nav-item.active .nav-link::before {
    content: '';
    position: absolute;
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--dark-color);
    border-radius: 50%;
    box-shadow: 15px 15px 0 var(--main-color);
}

.navigation .nav-sidebar .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--dark-color);
    border-radius: 50%;
    box-shadow: 15px -15px 0 var(--main-color);
}

.navigation .nav-sidebar .nav-item.active .icon.xicon:before {
    content: "\e937";
}

.navigation .nav-sidebar .nav-item .nav-link .icon {
    position: relative;
    min-width: 60px;
    line-height: 0;
    text-align: center;
}

.navigation .nav-sidebar .nav-item .nav-link .icon.xicon {
    font-size: 25px;
}

.navigation .nav-sidebar .nav-item .nav-link .icon.arrow {
    margin: 0 0 0 auto;
    transition: all 0.3s;
}

.navigation .nav-sidebar .nav-item.active .nav-link .icon.arrow {
    transform: rotate(90deg);
}

.navigation .nav-sidebar .nav-item .nav-link .icon ion-icon {
    position: relative;
    font-size: 1.5em;
    z-index: 1;
}

.navigation .nav-sidebar .nav-item .nav-link .title {
    position: relative;
    display: block;
    padding-left: 10px;
    height: 60px;
    line-height: 60px;
    white-space: nowrap;
}

.navigation .nav-sidebar .nav-group-sub {
    background-color: #fff;
    border-radius: 10px;
    /* padding: 10px; */
    box-sizing: border-box;
    width: calc(100% - 30px);
    margin-left: 5px;
    overflow: hidden;
    margin-top: 15px;
    position: relative;
    /* display: none; */
    transition: all 0.3s;
    max-height: 440px;
    overflow-y: scroll;
    box-sizing: border-box;
    padding-right: 0;
    font-size: 18px;
}

.navigation .nav-sidebar .nav-group-sub::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}

.navigation .nav-sidebar .nav-group-sub::-webkit-scrollbar-thumb {
    width: 5px;
    /* border: 3px solid var(--main-color); */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.navigation .nav-sidebar .nav-group-sub .sub-item {
    width: 100%;
    height: 55px;
    text-align: center;
    box-sizing: border-box;
}

.navigation .nav-sidebar .nav-group-sub .sub-item:not(:last-of-type) {
    border-bottom: 1px solid #eaeaea;
}

.navigation .nav-sidebar .nav-group-sub .sub-item:hover>a {
    background-color: #f5f5f5;
}

.navigation .nav-sidebar .nav-group-sub .sub-item.active>a {
    background-color: #eeeeee;
}

.navigation .nav-sidebar .nav-group-sub .sub-item>a {
    width: 100%;
    height: 100%;
}


/* Fix_set */
.fix-set-wrap {
    position: fixed;
    right: 50px;
    top: 30px;
    gap: 30px;
    z-index: 2;
}

.fix-set-wrap .setBtn {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background-color: #fff;
    color: var(--main-color);
    font-size: 30px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.fix-set-wrap .setBtn.on {
    background-color: var(--main-color);
    color: #fff;

}

.fix-set-wrap .fix-box {
    gap: 20px;
}

.fix-set-wrap .fix-item {
    width: 175px;
    height: 60px;
    border-radius: 99px;
    background-color: #fff;
    gap: 5px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(150%);
    /* z-index: -1; */
}

.fix-set-wrap .fix-item i {
    font-size: 20px;
}

.fix-set-wrap .fix-item.on {
    transform: translateX(0);
    opacity: 1;
}


.fix-set-wrap .fix-item:nth-of-type(1) i {
    color: var(--main-color);
}

.fix-set-wrap .fix-item:nth-of-type(2) {
    transition-delay: 0.15s;
}

/* Common Header */
.page-header {
    align-items: center;
    gap: 50px;
    padding: 25px 0 50px;
}

.page-header h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--main-color);
}

.page-header .total_num {
    height: 50px;
    border-radius: 99px;
    border: 1px solid #eaeaea;
    align-items: center;
    padding: 0 20px;
    color: #666;
    background-color: #fff;
    gap: 20px;
    font-size: 1.1em;
}

.page-header .total_num .before-bar {
    position: relative;
}

.page-header .total_num .before-bar:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translate(0, -50%);
    width: 1px;
    height: 15px;
    background-color: #ccc;

}

.page-header .total_num .num-box {
    font-weight: 600;
}

.page-header .total_num.update {
    background-color: #333;
    color: #fff;
    gap: 10px;
    border: none;
}

.page-header .total_num.update.default {
    background-color: var(--main2-color);
}

.page-header .total_num.update i {
    font-size: 20px;
}

.content-nav {
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
}

.content-nav .btn {
    background-color: #fff;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    gap: 5px;
    width: 150px;
    height: 45px;
    border-radius: 99px;
}

.content-nav .btn.tab {
    background-color: var(--main2-color);
    color: var(--white-color);
}

.content-nav .btn.tab i {
    color: var(--white-color);
}

.content-nav .btn i {
    color: var(--main-color);
    font-size: 25px;
}

.content-nav .btn span {
    font-size: 17px;
    font-weight: 500;
}

.content-nav .btn.back {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.content-nav .btn.back i {
    color: #333;
}

.content-nav .btn.del {
    border: 1px solid var(--red-color);
    color: var(--red-color);
    margin: 0 0 0 auto;
}

.content-nav .btn.del i {
    color: var(--red-color);
}

.content-nav .btn.succ {
    background-color: var(--main-color);
    color: var(--white-color);
}

.content-nav .btn.succ i {
    color: var(--white-color);
}

.content-nav .btn.download {
    margin: 0 0 0 auto;
    background-color: #43a879;
    color: var(--white-color);
    border: none;
    width: 180px;
}

.content-nav .btn.download i {
    color: var(--white-color);
}

.content-nav .all_chek.on {
    background-color: var(--main-color);
    color: #fff;
}

.content-nav .all_chek.on i {
    color: #fff;
}



/* back-btn */
.back-btn {
    gap: 5px;
    background-color: #bbb;
    color: #fff;
    width: 160px;
    height: 50px;
    border-radius: 2px 50px 50px 2px;
}

.back-btn i {
    font-size: 20px;
}

/* search-box */
.search-box {
    width: 100%;
    margin: 0 0 30px;
    gap: 20px 50px;
    flex-wrap: wrap;
    font-size: 18px;
}

.search-box .__flex_center {
    gap: 20px;
}

.search-box .btn_submit {
    background-color: var(--main-color);
    color: #fff;
    width: 60px;
    height: 50px;
    border-radius: 5px;
    font-size: 30px;
}

.search-box .btn_submit.reset {
    background-color: #079992;
    width: 120px;
    gap: 5px;
}

.search-box .btn_submit.reset span {
    font-size: 17px;
}

.search-box .select {
    width: 250px;
}

.search-box .txt-box {
    flex: 1 1 auto;
}

.search-box .datepicker-wrap {
    border: 1px solid #eaeaea;
    border-radius: 5px;
    gap: 0;
}

.search-box .datepicker-wrap input[type="datepicker"] {
    height: 50px;
    max-width: 200px;
}

.search-box .datepicker-wrap.date_max {
    position: relative;
    margin-left: 20px;
}

.search-box .datepicker-wrap.date_max:before {
    content: '~';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 25px;
    font-weight: 600;
    color: #999;
}


/* list-box */
aside.list-box:not(:last-of-type) {
    margin-bottom: 30px;
}

.list-box .list-wrap {
    width: 100%;
}

.list-box .list-wrap.list_title {
    /* 250306 background-color: var(--dark-color); */
    background-color: #1d639a;
    color: #fff;
    font-size: 18px;
}

.list-box .list-wrap.list_title.gray {
    background-color: #f5f5f5;
    color: #999;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.list-box .list_item {
    height: 50px;
    text-align: center;
    position: relative;
    font-size: 18px;
}

.list-box .list_item:not(:last-of-type):before,
.list-box .list_item.num:before {
    content: '';
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: 15px;
    background-color: #ccc;
}

.list_item .open-btn {
    border-radius: 5px;
    width: 75px;
    height: 30px;
    gap: 5px;
    background-color: var(--main2-color);
    color: var(--white-color);
}

.list_item .open-btn span {
    font-size: 16px;
}

.list-wrap .w-50 {
    flex: 0 0 50px;
}

.list-wrap .w-80 {
    flex: 0 0 80px;
}

.list-wrap .w-100 {
    flex: 0 0 100px;
}

.list-wrap .w-120 {
    flex: 0 0 120px;
}

.list-wrap .w-130 {
    flex: 0 0 130px;
}

.list-wrap .w-150 {
    flex: 0 0 150px;
}

.list-wrap .w-160 {
    flex: 0 0 160px;
}

.list-wrap .w-180 {
    flex: 0 0 180px;
}

.list-wrap .w-200 {
    flex: 0 0 200px;
}

.list-wrap .w-250 {
    flex: 0 0 250px;
}

.list-wrap .w-300 {
    flex: 0 0 300px;
}

.list-wrap .w-350 {
    flex: 0 0 350px;
}

.list-wrap .w-500 {
    flex: 0 0 500px;
}

.list-wrap .w-auto {

    flex: 1 1 auto;
}

.list-wrap .list_content {}

.list-wrap .content_item {
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.list-wrap .content_item.total {
    background-color: #EAF2FE;
}

.list-wrap .content_item.total .title {
    font-weight: 500;
    color: var(--main-color);
}

.list-wrap .content_item:hover,
.list-wrap .content_item.on {
    background-color: #F5F9FF;
}


.list-wrap .page_move {
    flex: 0 0 calc(100% - 50px);
}

.list-wrap .page_move.flex-full {
    flex: 0 0 100%;
}

.list-wrap .page_move:hover {
    opacity: 1;
}

.form_item .list_radio_wrap {
    margin-left: 20px;
}

.list_radio_wrap {
    gap: 20px;
}

.list_radio_wrap .chek_label {
    font-size: 15px;
    background-color: #eee;
    color: #999;
    border-radius: 99px;
    padding: 5px 10px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.list_radio_wrap .input_radio.yes:checked+.chek_label {
    background-color: var(--main-color);
    color: #fff;
}

.list_radio_wrap .input_radio:checked+.chek_label {
    background-color: #666;
    color: #fff;
}

.right_wrap {
    margin: 0 0 0 auto;
    gap: 20px;
}

.small_btn {
    width: 120px;
    height: 35px;
    font-size: 16px;
    color: #666;
    font-weight: 400;
    gap: 5px;
    border-radius: 5px;
    background-color: #eee;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.small_btn i {
    font-size: 18px;
    transition: all 0.3s;
}

.small_btn.more:hover i {
    transform: translateX(10px);
}

.small_btn span {
    margin-top: 2px;
}

.small_btn.update {
    background-color: var(--dark-color);
    color: #fff;
}

/* pagination-wrap */
.pagination-wrap {
    width: auto;
    max-width: 650px;
    margin: 30px auto 0;
    padding: 0;
    border-radius: 999px;
    overflow: hidden;
    /* justify-content: space-between; */
    justify-content: center;
}

.pagination-wrap .btn_move,
.pagination-wrap .num {
    width: 50px;
    height: 50px;
    border-bottom: 2px solid transparent;
}

.pagination-wrap .num:not(:last-of-type) {
    border-right: 1px solid #eaeaea;
}

.pagination-wrap .btn_move {
    border-right: 1px solid #eaeaea;
    font-size: 20px;
}

.pagination-wrap .btn_move.next {
    border-left: 1px solid #eaeaea;
    border-right: 0;
    color: var(--main-color);
}

.pagination-wrap .num.on {
    border-bottom-color: var(--main-color);
    color: var(--main-color);
}

/* Content Detail */
.form-header {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.form-header .header_hn {
    font-size: 23px;
    color: #666;
    font-weight: 500;
}

.form-detail {
    flex-wrap: wrap;
    gap: 20px;
    font-size: 18px;
}

.form-detail .form_item {
    border: 1px solid #EAEAEA;
    box-sizing: border-box;
    position: relative;
}

.form-detail .form_input,
.form-detail .form_select {
    width: calc(100% - 120px);
    border-radius: 0;
    border: none;
    border-left: 1px solid #eaeaea;
}

p.form_input {
    min-height: 50px;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
}

.yymm-select {
    width: 250px;
    gap: 10px;
}

.yymm-select.ing {
    position: relative;
    margin-left: 20px;
}

.yymm-select.ing:before {

    content: '~';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 25px;
    font-weight: 600;
    color: #999;
}

.form-detail .form_input:disabled {
    background-color: #f8f8f8;
    color: #666;
    position: relative;
}

.disabled_wrap {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
}

.disabled_wrap i {
    font-size: 25px;
    color: var(--red-color);
}

.disabled_txt {
    gap: 10px;
    align-items: center;
    margin-left: 50px;
}

.disabled_txt i {
    font-size: 25px;
    color: var(--red-color);
}

.disabled_txt>div.__flex {
    align-items: center;
    gap: 10px;
}

.disabled_txt p {
    color: var(--red-color);
    font-size: 18px;
}

.disabled_txt b {
    color: #666;
    font-size: 16px;
}

.disabled_txt .italic {
    font-style: italic;
    font-size: 13px;
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color);
}

/* .form-detail .disabled_wrap {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background-color: #fff;
} */

.form-detail .w-30 {
    flex: 1 1 calc((100% - 40px) / 3);
    max-width: 491px;
}

.form-detail .w-half {
    flex: 1 1 calc((100% - 20px) / 2);
}

.form-detail .w-full {
    flex: 1 1 100%;
}

.form-detail .w-flex_auto {
    flex: 1 1 auto;
}


.form-detail .max-w-auto {
    max-width: none;
}


.form-detail .form_title {
    width: 120px;
    background-color: #f8f8f8;
    color: #666;
    font-weight: 500;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
}

.form-detail .form_sep {
    width: calc(100% - 50px);
}

.form-detail .input-btn {
    background-color: var(--main-color);
    color: #fff;
    width: 100px;
    height: 50px;
}

.form-detail .form_profile_wrap {
    gap: 20px;
}

.form-detail .form_profile {
    /* height: 180px; */
    height: 198px;
    align-items: center;
    gap: 20px;
}

.form-detail .form_profile .profile_title {
    display: block;
    margin: 0 0 10px;
    color: #666;
    font-weight: 500;
}

.txt_sm_info {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.form-detail .btn_file {
    width: 80px;
    height: 45px;
    background-color: #333;
    color: #fff;
    margin-top: 10px;
    padding: 0 10px;
}

.form-detail .form_item-colum {
    flex-direction: column;
    gap: 20px;
    border: none;
}

.prev-thum {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background: #F8F8F8 url('/resources/images/common/default_img.png') no-repeat center/cover;
    margin-left: 20px;
}

.prev-thum img {
    min-height: 100%;
}

/* action-btns */
.action-btns {
    margin: 50px auto 100px;
    gap: 20px;
}

.action-btns .btn_item {
    width: 200px;
    height: 55px;
    border-radius: 99px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
}

.action-btns .btn_item.cancel {
    background-color: #333;
}

.action-btns .btn_item.cancel i {
    color: #333;
}

.action-btns .btn_item.del {
    background-color: var(--red-color);
}

.action-btns .btn_item.del i {
    color: var(--red-color);
}

.action-btns .btn_item i {
    width: 45px;
    height: 45px;
    font-size: 25px;
    font-weight: 600;
    background-color: #fff;
    color: var(--main-color);
}

.action-btns .btn_item span {
    width: calc(100% - 55px);
    padding-right: 20px;
    box-sizing: border-box;
}


/* 달력 */
.calendar-icon {
    /* width: 50px; */
    height: 50px;
    font-size: 25px;
    color: #666;
    padding-left: 20px;
}

.datepicker {
    padding: 0 20px 0 10px;
    height: 100%;
    font-weight: 600;
}

.datepicker input.datepicker {
    outline: 1px solid red;
}

.ui-datepicker {
    width: auto !important;
}

.ui-widget.ui-widget-content {
    border: 1px solid #eee !important;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.05);
}

.ui-datepicker .ui-widget-header {
    border: 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.ui-datepicker .ui-datepicker-header {
    padding: 10px 0 !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 50% !important;
    transform: translate(0, -50%);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none !important;
    background-color: #fff !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    color: #666 !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius: 999px;
}



.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    color: #fff !important;
    background-color: #6C93FF !important;
    border-radius: 999px;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 0.3;
}

.ui-datepicker-week-end {
    color: #D56464;
}

.ui-datepicker-calendar>thead>tr>th:last-child {
    color: #6C93FF;
}

.ui-datepicker .ui-datepicker-title select {
    height: 35px;
}


/* basic-table */
.table-wrap {
    gap: 30px;
    flex-wrap: wrap;
}

.table-wrap.list_table th,
.table-wrap.list_table td {
    /* 
    20250306
    height: 60px; */
    height: 45px;
}

.tw-half {
    width: 50%;
}

.tw-5 {
    width: 5%;
}

.tw-7 {
    width: 7%;
}

.tw-10 {
    width: 10%;
}

.tw-15 {
    width: 15%;
}

.tw-20 {
    width: 20%;
}

.tw-30 {
    width: 30%;
}

.cols_4 {
    width: calc(100% / 4);
}

.cols_5 {
    width: calc(100% / 5);
}

.cols_7 {
    width: calc(100% / 7);
}

.cols_8 {
    width: calc(100% / 8);
}

.cols_17 {
    width: calc(100% / 17);
}

.table-wrap .w-full {
    width: 100%;
}

.table-wrap .w-half {
    width: calc((100% - 30px) / 2);
}

.table-wrap .w-30 {
    width: calc((100% - (30px * 2)) / 3);
}

.basic-table {
    text-align: center;
    font-size: 18px;
}

.basic-table .bg_black_title {
    /* 20250306 background-color: #333; */
    background-color: var(--main-color);
    color: #fff;
    /* 20250306 font-size: 14px; */
    font-size: 20px;
    font-weight: 500;
    height: 35px;
    vertical-align: middle;
}

.basic-table th,
.basic-table td {
    font-size: 18px;
    border: 1px solid #eaeaea;
    height: 40px;
    vertical-align: middle;
}

.basic-table th {
    font-size: 18px;
    background-color: #f5f5f5;
    color: #666;
    font-weight: 500;
}

.basic-table td {
    font-weight: 500;
}

.basic-table .total {
    background-color: #EAF2FE;
}

.basic-table .total.nums {
    background-color: var(--main-color);
    color: #fff;
}

.basic-table th.total {
    color: var(--main-color);
    height: 55px;
}

.sub-header {
    margin: 0 0 20px 25px;
    font-size: 20px;
    font-weight: 500;
    align-items: center;
}

.sub-header .circle_hn {
    position: relative;
}

.sub-header .circle_hn:before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translate(0, -50%);
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 4px solid var(--main-color);
    border-radius: 99px;
    box-sizing: border-box;
}

.radio-btn_wrap {
    gap: 20px;
}

.radio-btn {
    /* outline: 1px solid red; */
}

.label_chk_input:checked+.label_chk {
    background-color: var(--main-color);
    color: #fff;
}

.label_chk_input:checked+.label_chk.delete {
    background-color: var(--red-color);
    color: #fff;
}

.label_chk {
    width: 120px;
    height: 30px;
    border-radius: 999px;
    background-color: #eee;
    color: #666;
    gap: 10px;
    font-size: 16px;
    vertical-align: bottom;
}

.label_chk span {
    margin-top: 2px;
}

.label_chk i {
    font-size: 20px;
}


input[type="text"].table_input_txt {
    border: none;
    text-align: center;
}


.editor_wrap {
    border: 1px solid #eaeaea;
    width: 100%;
    min-height: 500px;
    padding: 30px;
    box-sizing: border-box;
    font-size: 16px;
}


/* 다중파일 업로드 */
.muti_wrap {
    padding: 20px;
    box-sizing: border-box;
}

.muti_wrap .btn_file {
    margin: 0;
    text-align: center;
}

.muti_wrap .btn_file.download {
    width: auto;
    background-color: #43a879;
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    padding: 0 20px;
}

.btn_file.download i {
    font-size: 20px;
}

/* 
.muti_wrap .file-list {
  overflow: auto;
} */


.muti_wrap .file-list .file_item {
    gap: 20px;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
}

.muti_wrap .file-list .file_item .name {
    height: 35px;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 0 15px;
    align-items: center;
    color: #666;
}

.muti_wrap .file-list .file_item .name:before {
    content: "\ea9d";
    font-family: 'xeicon' !important;
    display: inline-block;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 20px;
}

.muti_wrap .file-list .file_item .delete {
    color: var(--red-color);
    border: 1px solid var(--red-color);
    border-radius: 5px;
    width: 80px;
    height: 35px;
}

.muti_wrap .file-list .file_item .delete i {
    font-size: 20px;
}

.muti_wrap .file-list .file_item .delete span {
    font-size: 14px;
}

/* 조직도 */
.user_chart_wrap {}

.chart_ul {
    flex-direction: column;
    gap: 20px;
}

.chart_depth_2_wrap {}

.chart_ul li:last-of-type:not(.chart_depth_5) {
    /* outline: 1px solid red; */
    margin-bottom: 30px;
}

.chart_ul .chart_depth_5 {}

/* .chart_ul li:not(:first-of-type) {
  outline: 1px solid red;
} */

/* .chart_ul li:not(:first-of-type) .depth_itme:after {
  content: '';
  position: absolute;
  left: -25px;
  top: -50%;
  width: 2px;
  height: 100%;
  background-color: red;
} */

/* .chart_depth_1 {
  gap: 50px;
} */

.depth_itme {
    width: 250px;
    height: 100px;
    align-items: center;
    flex-direction: column;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 10px;
    /* position: relative; */
}

/* .depth_itme:before {
  content: '';
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translate(0, -50%);
  width: 25px;
  height: 2px;
  background-color: #eaeaea;
} */

.depth_itme .area {
    background-color: var(--dark-color);
    width: 100%;
    height: 35px;
    color: #fff;
    font-weight: 500;
    border-radius: 10px 10px 0 0;
    font-size: 20px;

}

.depth_itme .rank {
    color: #666;
    font-size: 16px;
    margin: 10px 0 5px;
}

.depth_itme .name {
    font-weight: 600;
    font-size: 20px;
}

.depth_itme .rank2 {
    margin-bottom: 10px;
    font-weight: 500;
}

.chart_depth_1,
.chart_depth_2,
.chart_depth_3 {
    gap: 100px;
}

.chart_depth_4 {
    gap: 20px;
}

.chart_depth_5_wrap {
    gap: 20px;
}

.depth_2_item .area {
    background-color: #1d639a;
}

.depth_3_item .area {
    background-color: #9a1d1d;
}

/* 
.chart_depth_3 {
  gap: 50px44564;
} */

.depth_4_item .area{
    background-color: #F9AF06;
    /* border-radius: 99px;
    border-color: var(--dark-color);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2); */
}

button.depth_4_item:hover {
    background-color: var(--dark-color);
    color: #fff;
    opacity: 1;
}

.depth_5_item {
    border: none;
    background-color: var(--dark-color);
    color: #fff;
    border-radius: 999px;
    position: relative;
}

.depth_5_item:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translate(0, -50%);
    width: 20px;
    height: 2px;
    background-color: var(--dark-color);
}


/* 로그인 */

.logo-body {
    font: 400 10px/1.2 'SCore_Dream', sans-serif;
    letter-spacing: -1.125px;
    font-size: 1.6em;
    letter-spacing: -0.02em;
    word-break: keep-all;
    background-color: #f5f5f5;
}

.login_wrap {
    height: 450px;
    width: 900px;
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.login_wrap:before {
    content: '※ 아이디 및 비밀번호 분실 시 지역 간부에게 문의 바랍니다.';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    color: #666;
    line-height: 1.4;
}

.login_wrap.on:before {
    content: '※ 아이디 및 비밀번호 분실 시 컨설트인사이드에게 문의 바랍니다. 문의메일 : coin@acus.co.kr';
    bottom: -65px;
}

.login_wrap .bold {
    font-size: 30px;
    font-weight: 600;
}

.login_wrap .welcome-text {
    color: #fff;
}

.login_wrap .welcome {
    position: absolute;
    width: 400px;
    /* outline: 1px solid blue; */
    z-index: 30;
    text-align: center;
    color: #fff;
    top: calc(50% - 40px);
    transform: translate(0, -50%);
}

.login_wrap .hello {
    text-align: center;
    color: #fff;
    position: absolute;
    /* height: 50%; */
    top: calc(50% - 40px);
    right: 0;
    width: 400px;
    z-index: 30;
    display: none;
    /* outline: 1px solid red; */
    transform: translate(0, -50%);
}

.login_wrap .move {
    height: 100%;
    position: absolute;
    width: 400px;
    text-align: center;
    z-index: 20;
    background-color: var(--dark-color);
    transition: all .4s ease;
    border-radius: 10px 0px 0px 10px;
}

@keyframes moving {
    0% {
        width: 400px;
        transform: translate(0px);
    }

    50% {
        width: 550px;
        transform: translate(200px);
    }

    100% {
        width: 400px;
        transform: translate(500px);
    }
}

@keyframes start {
    0% {
        width: 400px;
        transform: translate(500px);
    }

    50% {
        width: 550px;
        transform: translate(200px);
    }

    100% {
        width: 400px;
        transform: translate(0px);
    }
}

@keyframes startForm {
    0% {
        width: 500px;
        transform: translate(0px);
    }

    50% {
        width: 650px;
        transform: translate(200px);
    }

    100% {
        width: 500px;
        transform: translate(400px);
    }
}

@keyframes movingForm {
    0% {
        width: 500px;
        transform: translate(400px);
    }

    50% {
        width: 650px;
        transform: translate(200px);
    }

    100% {
        width: 500px;
        transform: translate(0px);
    }
}

.login_wrap .moving {
    animation: moving .4s linear forwards;
    transition: all .4s ease-out;
    background-color: var(--main-color);
}

.login_wrap .moving .p-button {
    background-color: var(--dark-color);
}

.login_wrap .movingForm {
    animation: movingForm .4s linear forwards;
    transition: all .4s ease-out;
}

.login_wrap .start {
    animation: start .4s linear forwards;
    transition: all .4s ease-out;
}

.login_wrap .startForm {
    animation: startForm .4s linear forwards;
    transition: all .4s ease-out;
}

.login_wrap .p-button {
    animation-iteration-count: 5;
    color: #fff;
    font-size: 20px;
    border-radius: 25px;
    width: 350px;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, 0);
    text-align: center;
    cursor: pointer;
    transition: all .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    background-color: var(--main-color);
    font-weight: 500;
    transition: all .4s ease;
}

.login_wrap .p-button:hover {
    transition: all .4s ease;
    opacity: 0.7;
}

.login_wrap p {}

.login_wrap .text {
    margin: 0 auto;
    line-height: 1.4;
    font-size: 20px;
    margin-top: 20px;
}

.login_wrap .light {
    width: 90%;
    color: #999;
    font-size: 18px;
    margin: 10px 0 10px;
    border-bottom: 1px solid #eaeaea;
    padding: 0 0 20px;
}

.login_wrap .form {
    text-align: center;
    position: absolute;
    height: 100%;
    transform: translate(400px);
    width: 500px;
    background-color: #fff;
    border-radius: 0px 10px 10px 0px;
    flex-direction: column;
}

.login_wrap .b-button {
    background-color: #079992;
    color: white;
    padding: 12px 60px;
    color: #fff;
    font-size: 14px;
    border-radius: 25px;
}

.log_form_itme {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    margin-top: 20px;
}

.log_form_itme label {
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.log_form_itme input {
    display: block;
}

.log_submit {
    width: 90%;
    height: 55px;
    border-radius: 5px;
    background-color: var(--main2-color);
    color: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
    gap: 5px;
}

.log_submit i {
    font-size: 25px;
}


/* FullCalendar Custom */
.fc-customClass .fc-event-title {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.fc-event-time {
    display: none;
}

/* 달력 상세 */
.detail-form {
    transform: translateY(calc(-100% - 30px));
    z-index: -10;
    position: relative;
    opacity: 0;
    transition: all 0.3s;
}

.detail-form.active {
    transform: translateY(0);
    z-index: 0;
    opacity: 1;

}

.detail-form .date {
    gap: 10px;
    color: #999;
    margin: 0 auto 0 0;
}

.detail-form .btns-wrap {
    justify-content: flex-end;
    gap: 20px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #eaeaea;
}

.detail-form .btns-wrap .btn {
    border-radius: 5px;
    background-color: var(--main-color);
    color: #fff;
    gap: 5px;
    width: 100px;
    height: 35px;
    box-sizing: border-box;
    font-size: 14px;
}

.detail-form .btns-wrap .btn.del {
    border: 1px solid var(--red-color);
    color: var(--red-color);
    background-color: var(--white-color);
}

.check-btn {
    border-radius: 5px;
    width: 75px;
    height: 30px;
    /* background-color: #eee; */
    /* color: #666; */
    background-color: var(--main-color);
    color: var(--white-color);
    gap: 5px;
    font-size: 14px;
    vertical-align: bottom;
}

.check-btn.off {
    background-color: var(--red-color);
    font-size: 16px;
    width: 90px;
}

/* add */
.bigo input[type="text"] {
    height: 35px;
}

.copy_btn,
.remove_btn {
    background-color: #079992;
    color: #fff;
    width: 70px;
    height: 50px;
    border-radius: 5px;
    margin-top: 8px;
}

.remove_btn {
    background-color: var(--red-color);
}

.fc .fc-scrollgrid-section,
.fc .fc-scrollgrid-section table,
.fc .fc-scrollgrid-section>td {
    font-size: 1.05em;
}

.input_set input {
    width: 200px;
}