/*
 * File       : styles.css
 * Date       : 2023. 06. 28
 */

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* **************************************** *
 * menu08_01
 * **************************************** */

.new_cont {
    font-family: 'Pretendard';
    line-height: 1;
    position: relative;
    margin: 0 10px;
}

.new_cont .content_top {
    align-items: center;
    display: flex;
}

.cont_title {
    align-items: center;
    color: #333;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.cont_title span {
    align-items: center;
    color: #FF6633;
    display: flex;
    font-size: 12px;
}

.cont_title span::before {
    background: url(../../images/common/trg_r.png) no-repeat;
    content: '';
    display: inline-block;
    height: 14px;
    margin: 0 8px;
    width: 14px;
}

.cont_calendar {
    position: relative;
}

.calendar_top {
    align-items: center;
    display: flex;
    height: 38px;
    justify-content: center;
    margin: 0 0 20px 0;
}

.legend {
    border-radius: 4px;
    border: 1px solid #CCC;
    box-sizing: border-box;
    display: flex;
    height: 38px;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 12px;
    position: absolute;
}

.legend li {
    align-items: center;
    color: #333;
    display: flex;
    font-size: 12px;
    margin: 0 16px 0 0;
}

.legend li:last-child {
    margin: 0;
}

.legend li span {
    align-items: center;
    display: flex;
}

.legend li span::before {
    background: #000;
    border-radius: 2px;
    content: '';
    display: inline-block;
    height: 10px;
    margin: 0 4px 0 0;
    width: 10px;
}

.legend .blue::before {
    background: #0038FF;
}

.legend .red::before {
    background: #FF0000;
}

.legend .gray::before {
    background: #999;
}

.legend .green::before {
    background: #00C32B;
}

.legend .orange::before {
    background: #FF6633;
}

.month {
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    height: 38px;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0 12px;
    width: 120px;
}

.month li {
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

.month .prev {
    background: url(../../images/chevron_left.png) no-repeat;
    cursor: pointer;
    height: 12px;
    width: 12px;
}

.month .next {
    background: url(../../images/chevron_right.png) no-repeat;
    cursor: pointer;
    height: 12px;
    width: 12px;
}

#calendar {
    border-collapse: collapse;
    text-align: center;
    width: 100%;
}

#calendar thead {
    background: rgba(255, 102, 51, 0.10);
}

#calendar thead tr th {
    border: 1px solid #dbdbdb;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
    text-align: center;
    width: calc(100% / 7);
}

#calendar thead tr th:first-child,
#calendar .holiday {
    color: #FF0000;
}

#calendar tbody tr td {
    border: 1px solid #dbdbdb;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    padding: 8px;
}

#calendar tbody tr td:first-child {
    color: #FF0000;
}

#calendar tbody tr {
    border-bottom: 1px solid #dbdbdb;
}

#calendar tbody tr:nth-child(2n) td {
    height: 80px;
    text-align: left;
    vertical-align: top;
}

#calendar .op {
    opacity: 0.2 !important;
}

#calendar ul {
    height: 100%;
    list-style: none;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
}

#calendar ul::-webkit-scrollbar {
    width: 4px;
}

#calendar ul::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 100px;
}

#calendar ul li {
    align-items: center;
    color: #333;
    cursor: pointer;
    display: flex;
    margin: 0 0 4px 0;
}

#calendar ul li:last-child {
    margin: 0;
}

#calendar .blue {
    color: #0038FF;
}

#calendar .red {
    color: #FF0000;
}

#calendar .gray {
    color: #999999;
}

#calendar ul li span {
    margin: 0 2px 0 0;
}

#calendar .today {
    background: rgba(255, 102, 51, 0.10);
}

#calendar .today>span {
    align-items: center;
    background: #FF6633;
    border-radius: 100px;
    color: #fff;
    display: flex;
    height: 16px;
    justify-content: center;
    margin: 0 auto;
    width: 16px;
}

.modal_schedule {
    border-radius: 8px;
    border: 1px solid #F63;
    background: #FFF;
    box-sizing: border-box;
    display: none;
    font-family: 'Pretendard';
    height: 138px;
    left: 50%;
    padding: 16px;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 258px;
    z-index: 100;
}

.modal_schedule .modal_header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 0 8px 0;
}

.modal_schedule .modal_title {
    color: #F63;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.modal_schedule .modal_btn {
    display: flex;
}

.modal_schedule .modal_btn>button {
    background: #fff;
    cursor: pointer;
    font-family: 'Pretendard';
    font-size: 12px;
    margin: 0 0 0 4px;
    padding: 2px 8px;
}


/* ¸ð´ÞÃ¢ sub ¼öÁ¤ÇÊ¿ä½Ã */
.modal_schedule_up {
    border-radius: 8px;
    border: 1px solid #F63;
    background: #FFF;
    box-sizing: border-box;
    display: none;
    font-family: 'Pretendard';
    height: 138px;
    left: 50%;
    padding: 16px;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 258px;
    z-index: 100;
}

.modal_schedule_up .modal_header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 0 8px 0;
}

.modal_schedule_up .modal_title {
    color: #F63;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.modal_schedule_up .modal_btn {
    display: flex;
}

.modal_schedule_up .modal_btn>button {
    background: #fff;
    cursor: pointer;
    font-family: 'Pretendard';
    font-size: 12px;
    margin: 0 0 0 4px;
    padding: 2px 8px;
}


.btn_save {
    border: 1px solid #F63;
    border-radius: 2px;
    color: #F63;
}

.btn_close {
    border: 1px solid #CCC;
    border-radius: 2px;
    color: #999;
}

.modal_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modal_list li {
    margin: 0 0 8px 0;
}

.modal_list li:last-child {
    margin: 0;
}

.check_group input {
    display: none;
}

.check_group label {
    align-items: center;
    cursor: pointer;
    color: #333;
    font-size: 12px;
    display: flex;
    margin: 0;
}

.check_group label::before {
    background: url(../../images/i_check.png) no-repeat;
    content: '';
    display: inline-block;
    height: 12px;
    margin: 0 4px 0 0;
    width: 12px;
}

.check_group input:checked+label::before {
    background: url(../../images/i_check_checked.png) no-repeat;
}




.check_group2 input {
	display: inline-block;
}

.check_group2 label {
    align-items: center;
    cursor: pointer;
    color: #333;
    font-size: 12px;
    display: flex;
    margin: 0;
}

.check_group2 label::before {
  
    content: '';
    display: inline-block;
    height: 12px;
    margin: 0 4px 0 0;
    width: 12px;
}

.check_group2 input:checked+label::before {
    
}

/* **************************************** *
 * menu08_02
 * **************************************** */

.schedule_title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.date_wrap {
    overflow: hidden;
}

.date_list {
    align-items: center;
    display: flex;
    list-style: none;
    margin: 0 -4px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0 0 10px 0;
    transform: translate(0, 0);
}

.date_list::-webkit-scrollbar {
    height: 4px;
}

.date_list::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 100px;
}

.date_list li {
    align-items: center;
    border-radius: 8px;
    background: #F1F1F1;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    height: 52px;
    margin: 0 4px;
    user-select: none;
    width: 40px;
}

.date_list li.today {
    background: #FF6633;
}

.date_list li.today dl dt,
.date_list li.today dl dd {
    color: #fff;
}

.date_list dl {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: 0;
    padding: 8px 0;
    width: 100%;
}

.date_list dt {
    color: #333;
    font-size: 14px;
    margin: 0 0 2px 0;
}

.date_list dd {
    color: #333;
    font-size: 14px;
    margin: 0;
}

.schedule_wrap {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    height: 596px;
    overflow: auto;
    margin: 20px 0 0 0;
}

#schedule {
    border-collapse: collapse;
    margin: 0;
    width: 100%;
}

#schedule thead tr th {
    background: #fff;
    border: 1px solid #CCCCCC;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
    text-align: center;
    width: 20%;
}

#schedule tbody tr td {
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    color: #333;
    font-size: 12px;
    height: 88px;
    padding: 8px;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: 20%;
}

#schedule tbody tr td:first-child {
    font-weight: 600;
    vertical-align: middle;
}

#schedule thead tr:first-child th {
    border-top: 0;
}

#schedule tbody tr:last-child td {
    border-bottom: 0;
}

#schedule ul {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    list-style: none;
    line-height: 1.4;
    margin: 0;
    max-height: 80px;
    overflow-y: scroll;
    padding: 0;
    text-align: left;
}

#schedule ul::-webkit-scrollbar {
    width: 4px;
}

#schedule ul::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 100px;
}

#schedule ul li {
    display: flex;
    margin: 0 0 4px 0;
}

#schedule ul li:last-child {
    margin: 0;
}

#schedule ul li.green span {
    border-radius: 4px;
    border: 1px solid rgba(0, 195, 43, 0.50);
    background: rgba(0, 195, 43, 0.05);
    color: #00C32B;
    cursor: pointer;
    display: inline-block;
    padding: 4px 8px;
}

#schedule ul li.orange span {
    border-radius: 4px;
    border: 1px solid rgba(255, 102, 51, 0.50);
    background: rgba(255, 102, 51, 0.10);
    color: #FF6633;
    cursor: pointer;
    display: inline-block;
    padding: 4px 8px;
}

#schedule ul li.blue span {
    border-radius: 4px;
    border: 1px solid rgba(0, 56, 255, 0.50);
    background: rgba(0, 56, 255, 0.05);
    color: #0038FF;
    cursor: pointer;
    display: inline-block;
    padding: 4px 8px;
}

#schedule ul li.red span {
    border-radius: 4px;
    border: 1px solid rgba(255, 0, 0, 0.50);
    background: rgba(255, 0, 0, 0.05);
    color: #FF0000;
    cursor: pointer;
    display: inline-block;
    padding: 4px 8px;
}

#schedule td.off {
    background: #D9D9D9;
    font-weight: 600;
    /*vertical-align: middle;*/
}

#schedule td.off .btn_off {
    display: none;
}

#schedule td.on .btn_on {
    display: none;
}

/* ÀÏÁ¤ÀÖ¾îµµ off°¡ °¡´ÉÇÏ±â¿¡ ±ÛÀÚ Á¦°Å
#schedule td.off::before {
    content: 'OFF';
}
*/
#schedule td button {
    bottom: 8px;
    right: 8px;
    position: absolute;
}

.btn_on {
    border-radius: 4px;
    border: 1px solid #F00;
    background: rgba(255, 0, 0, 0.05);
    color: #F00;
    cursor: pointer;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
}

.btn_off {
    border-radius: 4px;
    border: 1px solid #999;
    background: rgba(153, 153, 153, 0.05);
    color: #999;
    cursor: pointer;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
}

#schedule tr.now td:first-child {
    background: rgba(255, 102, 51, 0.10);
}

.schedule_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.schedule_list li {
    color: #333;
    font-size: 12px;
    margin: 0 0 8px 0;
}

.schedule_list li:last-child {
    margin: 0;
}

.modal_today_schedule {
    border: 1px solid #FF6633;
    border-radius: 8px;
    background: #fff;
    bottom: -68px;
    box-sizing: border-box;
    height: 104px;
    left: 104px;
    padding: 12px;
    position: absolute;
    position: absolute;
    top: 8px;
    transform: unset;
    right: auto;
    width: 190px;
}

#schedule tr td:last-child .modal_schedule {
    left: -188px;
}

#schedule tr:last-child .modal_schedule {
    left: 8px;
    top: -100px;
}

.modal_wrap {
    position: relative;
    line-height: 1.1;
}

.btn_x {
    background: url(../../images/i_x.png) no-repeat;
    border: 0;
    cursor: pointer;
    position: absolute;
    height: 12px;
    top: 0;
    right: 0;
    width: 12px;
}

/* **************************************** *
 * menu08_03
 * **************************************** */
.cont_wrap {
    height: 742px;
    overflow: auto;
}

.card_wrap,
.chart_wrap {
    border-radius: 8px;
    border: 1px solid #CCC;
    background: #FFF;
    box-sizing: border-box;
    padding: 20px;
}

.card_header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.card_header h1 {
    color: #F63;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.sta {
    border-collapse: collapse;
    text-align: center;
    width: 100%;
}

.sta tr th {
    border: 1px solid #ccc;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 8px;
    text-align: center;
}

.sta tr td {
    border: 1px solid #ccc;
    color: #F00;
    font-size: 12px;
    font-weight: 500;
    padding: 8px;
    text-align: center;
    text-decoration-line: underline;
    width: 20%;
}

.mb_5 {
    margin-bottom: 20px;
}

.chart_header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.chart_header h1 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.item_group {
    list-style: none;
    margin: 0;
    padding: 0;
}

.item_group li {
    margin: 0 0 16px 0;
}

.item_group li:last-child {
    margin: 0;
}

.item_box {
    align-items: center;
    border-radius: 8px;
    display: flex;
    height: 96px;
    justify-content: space-between;
    padding: 20px;
}

.item_group li:nth-child(1) .item_box {
    background: rgba(0, 195, 43, 0.05);
}

.item_group li:nth-child(2) .item_box {
    background: rgba(255, 0, 0, 0.05);
}

.item_group li:nth-child(3) .item_box {
    background: #F1F1F1;
}

.item_box dl {
    display: flex;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

.item_box dt {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.item_box dd {
    font-size: 20px;
    font-weight: 700;
}

.item_group li:nth-child(1) dd {
    color: #00C32B;
}

.item_group li:nth-child(2) dd {
    color: #F00;
}

.item_group li:nth-child(3) dd {
    color: #333;
}

.item_box_2 {
    border-radius: 8px;
    background: #FAFAFA;
    height: 70px;
    padding: 20px;
}

.item_box_2.sum {
    background: rgba(255, 0, 0, 0.05);
}

.item_box_2 dl {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.item_box2 dt {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.item_box_2 dd {
    color: #333;
    font-size: 20px;
    font-weight: 700;
}

.item_box_2.sum dd {
    color: #F00;
}

.row.item_list .col-xs-6 {
    padding-right: 10px;
    padding-left: 10px;
}

.input_group {
    position: relative;
}

.input_group input {
    display: none;
}

.input_group label {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
}

.input_group img {
    visibility: hidden;
}


.input_group input::-webkit-calendar-picker-indicator {
    padding: 0 0 0 100px;
}

/* **************************************** *
 * calendar custom
 * **************************************** */

#cuscalendar .fc-view-harness {
    height: 644px !important;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:nth-child(2)>div {
    align-items: center;
    display: flex;
    height: 38px;
    justify-content: space-between;
    width: 120px;
}

.fc .fc-toolbar.fc-header-toolbar button {
    background: #fff;
    border: 0;
    color: #333;
    font-size: 12px;
}


.fc .fc-toolbar.fc-header-toolbar button:hover,
.fc .fc-toolbar.fc-header-toolbar button:focus,
.fc .fc-toolbar.fc-header-toolbar button:active {
    background: #fff;
    box-shadow: none;
    border: 0;
    color: #333;
    outline: none;
}

.fc .fc-toolbar-title {
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

.fc .fc-col-header-cell-cushion {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    padding: 8px;
}

.fc .fc-daygrid-day-number {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    padding: 8px;
}

.fc .fc-scrollgrid-liquid {
    height: 644px;
}

.fc .fc-daygrid-day-top {
    border-bottom: 1px solid #ccc;
    justify-content: center;
}

.fc .fc-daygrid-day.fc-day-today {
    background: rgba(255, 102, 51, 0.10);
}

.fc-theme-standard th {
    background: rgba(255, 102, 51, 0.10);
}

.fc-theme-standard td, .fc-theme-standard th {
    border: 1px solid #ccc;
}

.fc .fc-daygrid-day-events {
    margin: 4px 4px 0 4px;
}

.fc-h-event .fc-event-title {
    font-size: 12px;
    padding: 4px;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    min-height: 108px;
    max-height: 108px;
    overflow-y: auto;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events::-webkit-scrollbar {
    width: 4px;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 100px;
}

.fc-daygrid-event-harness {
    margin-bottom: 4px;
}

/* Åä¿äÀÏ */
.fc-day-sat .fc-daygrid-day-number {
    color:#0000FF;
}

/* ÀÏ¿äÀÏ */
.fc-day-sun .fc-daygrid-day-number {
    color:#FF0000;
}

#cuscalendar {
    position: relative;
    top: -58px;
}

.fc .fc-scroller-liquid-absolute {
    height: 614px;
}

/* **************************************** *
 * sideList
 * **************************************** */
/*
#sideList {
    background: #FAFAFA;
    font-family: 'Pretendard';
    flex: 0 0 auto;
    padding: 10px;
    width: 360px;
}

#sideList h1 {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 76px;
    margin: 0;
    text-align: center;
}

#sideList .list_wrap {
    border-radius: 8px;
    border: 1px solid #F1F1F1;
    background: #FFF;
    padding: 12px;
}

#sideList .list_wrap ul {
    list-style: none;
    overflow-y: scroll;
    height: 777px;
    margin: 0;
    padding: 0 10px 0 0;
}

#sideList .list_wrap ul::-webkit-scrollbar {
    width: 4px;
}

#sideList .list_wrap ul::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 100px;
}

#sideList .list_wrap ul li {
    margin: 0 0 12px 0;
}

#sideList .list_wrap ul li:last-child {
    margin: 0;
}

.list_item {
    align-items: flex-start;
    border-radius: 4px;
    background: #FAFAFA;
    display: flex;
    padding: 12px;
}

.list_item h4 {
    color: #F63;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    width: 52px;
}

.list_item dl {
    margin: 0;
}

.list_item dt {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.list_item dd {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
*/
/* **************************************** *
 * custom
 * **************************************** */
/*
body {
    
    max-width: 1600px;
}


.sc_wrap {
	display: flex;
}

#wrap {
    position: relative;
    min-width: auto;
    width: 1270px;
}

#container {
    width: 1080px;
}

*/