@charset "utf-8";

@import url(//fonts.googleapis.com/earlyaccess/nanumgothic.css);

/* material icon */
/* iconfont */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../iconfont/material-icons.eot); /* For IE6-8 */
    src: local('Material Icons'),
        local('material-icons'),
        url(../iconfont/material-icons.woff2) format('woff2'),
        url(../iconfont/material-icons.woff) format('woff'),
        url(../iconfont/material-icons.ttf) format('truetype');
}
.material-icons {
    font-family: 'Material Icons' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
    }

/* Binggrae */
@font-face {
    font-family: 'Binggrae';
    font-style: normal;
    font-weight: 400;
    src: local('Binggrae Regular'), url(/font/Binggrae/Binggrae.woff) format('woff');
}

@font-face {
    font-family: 'Binggrae';
    font-style: normal;
    font-weight: 500;
    src: local('Binggrae Bold'), url(/font/Binggrae/Binggrae-Bold.woff) format('woff');
}

html,
body {
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.clearfix:before, 
.clearfix:after {
    display: block;
    content: '';
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

img {
    vertical-align: top;
    border: 0;
}

.hidden {
    border: 0; 
    clip: rect(0 0 0 0); 
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px); 
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px); 
    height: 1px; 
    margin: -1px; 
    overflow: hidden; 
    padding: 0; 
    position: absolute; 
    width: 1px; 
    white-space: nowrap; 
}

/* 대쉬보드에서 승인 목록에 마우스를 올릴 때 */
.man:hover{
    cursor: pointer;
}
.man{
    color: #c18401;
}

/* 로딩 스피너 */
.layerPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    margin: -30px 0 0 -30px;
}
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spinner 2s linear infinite;
}
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Style guide */
.impotant { color: #cd0000;}
/* font */
.tit {
    margin-bottom:15px;
    font-size:2.25rem;
}
.section-tit {
    margin-bottom:15px;
    font-size: 1.5rem;
}
.txt {
    font-size:1rem;
}
/* Text */
.text-black { color: #111 !important; }
.text-dark { color: #444 !important; }
.text-gray { color: #737373 !important; }
.text-red { color: #cd0000 !important; }
.text-blue { color: #0681e3 !important; }

/* Bg */
.bg-light { background-color: #fafafa !important; }
.bg-lightblue { background-color: #ebf3f7 !important; }

/* Border */
.border-blue { border-color: #F05E16 !important; }
.border-darkgray { border-color: #666 !important; }
.border-gray { border-color: #ccc !important; }
.border-lightgray { border-color: #dfdfdf !important; }

/* Typography */
.title { font-size: 1.857rem; font-weight: 600; }
.stitle { font-size: 1.429rem; font-weight: 800; }
.stitle.type1 { display: inline-block; position: relative; }
.stitle.type1::before { content: ''; position: absolute; height: 8px; background-color: #deeaf2; left: -3px; right: -3px; bottom: 2px; z-index: -1; border-radius: 4px; }
.title .tooltip { vertical-align: top; margin-top: 2px; }

/* Button */
.btn { display: inline-block; font-weight: 500; color: #111; text-align: center; text-decoration: none; vertical-align: middle; cursor: pointer; user-select: none; background-color: transparent; border: 1px solid transparent; padding: 0 15px; font-size: 14px; height: 32px; line-height: 30px; border-radius: 16px; min-width: 70px; transition: all .3s ease; }
.btn-normal { color:#fff; background-color: #FA9A44; border-color: #FA9A44; }
.btn-import { background-color: #E64318; border-color: #E64318; color: #fff; }
.btn-gray { background-color: #eaeaea; border-color: #eaeaea; }
.btn:disabled,
.btn[disabled] { background-color: #ccc; border-color: #ccc; color: #737373; pointer-events: none; }
.btn-normal:hover,
.btn-normal:focus { background-color: #F67404; border-color: #F67404; }
.btn-import:hover,
.btn-import:focus { background-color: #A6300C; border-color: #A6300C; }
.btn-gray:hover,
.btn-gray:focus { background-color: #ccc; border-color: #ccc; }
#joinbtn:disabled{
    opacity: 0.5;
}

.btn.full { border-radius: 5px; height:100%;}


.btn-wrap {margin:30px 0 8px; text-align:center;}
.btn-wrap.right {text-align: right;}
.btn-wrap .col-left {float:left;}
.btn-wrap .col-right {float:right;}
.btn-wrap:after {display:block; content:''; clear:both;}

/* 메뉴관리 span */
.menuName{
    color: #f87c18;
}

.menuName:hover {
    cursor: pointer;
}
/* Tabs */
.tabs { display: flex; flex-wrap: wrap; width: 100%; padding-bottom: 30px; }
.tabs .tabs-item { flex: 1; }
.tabs .tabs-link { display: block; padding: 11px 10px 10px; text-align: center; background: #F7BE6D; color: #666; text-decoration: none; height: 40px; border: 1px solid #FA9C1B; border-left: 0; }
.tabs .tabs-link .count { color:#FA9A44;}
.tabs .active .tabs-link { font-weight: 600; background: #F05E16; border-color: #F05E16; color: #fff; }
.tabs .tabs-item:first-child .tabs-link { border-left: 1px solid #FA9C1B; }
.tabs .tabs-item:first-child.active .tabs-link { padding: 11px 10px 10px 11px; margin-left: -1px; border-left: 1px solid #F05E16; }
.tabs-content .tabs-content-item { display: none; padding: 15px;}
.tabs-content .tabs-content-item.active { display: block; }

.tabs.category {
    margin:20px 0;
    padding:0;
    border-bottom:1px solid #FA9A44;
}
.tabs.category li {
    margin-bottom:-1px;
}
.tabs.category li a {
    border-width: 0 0 1px 0;
    border-color:transparent;
    border-radius: 4px 4px 0 0;
    background-color: transparent;
}
.tabs.category li a:hover { border-width: 0 0 1px 0; border-color:#FA9A44; background-color:#eee;}
.tabs.category li.active a {
    color:#FA9A44;
    border:1px solid #FA9A44;
    border-bottom-color:transparent;
    background-color: #fff;
}
.tabs.category .tabs-item:first-child .tabs-link { border-left:0; }
.tabs.category .tabs-item.active:first-child .tabs-link { border-left:1px solid #FA9C1B; }

/* Checkbox, Radio */
.chk { position: relative; padding-left: 23px; }
.chk.single { padding-left: 16px; }
.chk input { opacity: 0; position: absolute; top: 0; left: 0; width: 16px; height: 16px; margin: 0; }
.chk .chk-label::before { content: ''; position: absolute; top: 0; left: 0; width: 16px; height: 16px; border: 1px solid #87695e; }
.chk.radio .chk-label::before { border-radius: 50%; }
.chk input:checked + .chk-label::after { content: ''; position: absolute; top: 0; left: 0; width: 10px; height: 10px; background: #f87c18; margin: 3px; border-radius: 50%; }
.chk.checkbox input:checked + .chk-label::after { content: ''; position: absolute; top: 4px; left: 3px; width: 10px; height: 5px; background: #fff; margin: 0; border-radius: 0; border-left: 2px solid #f87c18; border-bottom: 2px solid #f87c18; transform: rotate(-45deg); }
.chk input:disabled + .chk-label::before { background: #ccc; border-color: #ccc; }


.frm-file {
    position: relative;
}
input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 78px;
    height: 40px;
    line-height: 4rem;
    opacity: 0;
}
input[type="file"] + label {
    margin-left:10px;
    display: inline-block;
    height: 32px;
    margin-right: 5px;
    padding: 0 10px;
    background-color: #E64318;
    line-height: 32px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
}
input[type="file"]:focus + label {
    outline: auto !important;
}

 /* Form */
.input-default { display: block; width: 100%; padding: 7px 10px; font-size: 1rem; color: #111; background-color: #fff; background-clip: padding-box; border: 1px solid #666; border-radius: 2px; height: 32px; }
.input-default.textarea { resize: vertical; height: auto; min-height: 100px; padding: 10px; }
.input-default:disabled { background-color: #ccc; border-color: #ccc; color: #737373; opacity: 1; }
.input-select { display: inline-block; position: relative; width: 100%; }
.input-select select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23111111%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E"); background-size: 12px; background-position: calc(100% - 12px) center; background-repeat: no-repeat; }
.input-select select:disabled { background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23888888%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }
.form-inline { display: flex; }
.form-inline .btn { margin-left: 5px; border-radius: 2px; }
.form-inline.form-datepicker { align-items: center; }
.form-inline.form-datepicker .wave { margin: 0 11px; }
.form-inline.form-datepicker .input-default { border-radius: 2px 0 0 2px; }

.attach-file {margin-bottom:8px;}
.attach-file.inline {display: inline-block; margin-right:8px;}
.attach-file .thumb {display:inline-block; max-width: 143px; height:auto;}
.attach-file .thumb img {width:100%;}
.attach-file .file-name {display: inline-block;}


.form-inline { 
    display: flex;
    align-items: center;
}
.form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;;
    margin-bottom: 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin-right: -5px;
    margin-left: -5px;
}
.form-row + .form-row {
    margin-top:10px;
}
.form-row>.col, .form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}
.flex-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.flex-box.justify {
    justify-content: space-between;
}
.flex-box .input-select {
    margin:0 10px;
}
.flex-box input,
.flex-box .input-select {
    flex: 1;
    min-width: 0 !important;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col.right {
    text-align: right;
}
.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
    
/* Datepicker */
.ui-datepicker { padding: 15px; border-radius: 2px; width: 245px; border-color: #666; box-shadow: 0px 2px 5px 0px rgba(153,153,153,0.29); margin-top: -1px; transform: translateX(-25%); }
.ui-datepicker .ui-datepicker-header { background: none; padding: 0; border: 0; }
.ui-datepicker .ui-datepicker-title { font-weight: 600; }
.ui-datepicker .ui-datepicker-title .ui-datepicker-year,
.ui-datepicker .ui-datepicker-title .ui-datepicker-month { font-size: 14px; color: #222; }
.ui-datepicker table thead th { text-align: center; padding: 15px 0; }
.ui-datepicker table thead th > span { color: #737373; }
.ui-datepicker td span, 
.ui-datepicker td a { text-align: center; }
.ui-datepicker td a:hover { font-weight: 600; background: #efefef; }
.ui-datepicker td:first-child a { color: #cd0000; }
.ui-datepicker td:last-child a { color: #F05E16; }
.ui-datepicker .ui-state-default { background: none; border: 0; color: #111; padding: 2px 0; margin: 0 2px; }
.ui-datepicker .ui-state-active { background-color: #F05E16; color: #fff !important; border-radius: 2px; }
.ui-datepicker .ui-datepicker-prev span, 
.ui-datepicker .ui-datepicker-next span { background: none; }
.ui-datepicker .ui-datepicker-prev::before, 
.ui-datepicker .ui-datepicker-next::before { content: ''; width: 8px; height: 8px; border-left: 2px solid #111; border-bottom: 2px solid #111; position: absolute; top: 7px; left: 5px; }
.ui-datepicker .ui-datepicker-prev::before { transform: rotate(45deg); left: 9px; }
.ui-datepicker .ui-datepicker-next::before { transform: rotate(-135deg); }
.ui-datepicker .ui-state-hover,
.ui-datepicker .ui-widget-content .ui-state-hover,
.ui-datepicker .ui-widget-header .ui-state-hover,
.ui-datepicker .ui-state-focus,
.ui-datepicker .ui-widget-content .ui-state-focus,
.ui-datepicker .ui-widget-header .ui-state-focus { border: 0; background: none; font-weight: normal; }
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover { top: 2px; }
.ui-datepicker .ui-datepicker-prev-hover { left: 2px; }
.ui-datepicker .ui-datepicker-next-hover { right: 2px; }
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker-trigger { cursor: pointer; top: 1px; }

/* Paging */
.paging { margin:40px 0 8px; display: flex; justify-content: center;}
.paging.add-btn .pagination,
.paging.add-btn .btn-wrap {margin-left:auto;}
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}
.page-link {
    position: relative;
    display: block;
    padding: 8px 14px;
    margin-left: -1px;
    line-height: 1.25;
    color: #f87c18;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.pagination .page-item {
    margin:0 3px;
}
.pagination .page-item .page-link {
    font-size: 1rem;
    color: #212529;
    background-color: transparent;
    border: 0;
    outline: 0;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #f87c18;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.pagination .page-item .page-link:focus-visible {
    outline: auto;
}
.pagination .page-item.prev {
    margin-right:10px;
}
.pagination .page-item.next {
    margin-left:10px;
}
.pagination .page-item > button.page-link {
    margin-top:1px;
    /*width: 0;*/
    height:33px;
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
}
.pagination .page-item.first > button.page-link {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='레이어_1' x='0' y='0' style='enable-background:new 0 0 44 52' version='1.1' viewBox='0 0 44 52'%3E%3Cstyle%3E.st0%7Bfill:none;stroke:%23666666;stroke-width:2;stroke-miterlimit:10%7D%3C/style%3E%3Cpath d='M39.8 2.9 16.6 26.1l23 23' class='st0'/%3E%3Cpath d='M27.4 2.9 4.2 26.1l23.1 23' class='st0'/%3E%3C/svg%3E");
}
.pagination .page-item.prev > button.page-link {
    background-size: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 32 52' viewBox='0 0 32 52'%3E%3Cpath d='M27.6 2.9 4.4 26.1l23 23' style='fill:none;stroke:%23666666;stroke-width:2;stroke-miterlimit:10'/%3E%3C/svg%3E");
}
.pagination .page-item.next > button.page-link {
    background-size: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 32 52' viewBox='0 0 32 52'%3E%3Cpath d='m4.4 2.9 23.2 23.2-23 23' style='fill:none;stroke:%23666666;stroke-width:2;stroke-miterlimit:10'/%3E%3C/svg%3E");
}
.pagination .page-item.last > button.page-link {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='레이어_1' x='0' y='0' style='enable-background:new 0 0 44 52' version='1.1' viewBox='0 0 44 52'%3E%3Cstyle%3E.st0%7Bfill:none;stroke:%23666666;stroke-width:2;stroke-miterlimit:10%7D%3C/style%3E%3Cpath d='m4.2 2.9 23.2 23.2-23 23' class='st0'/%3E%3Cpath d='m16.6 2.9 23.2 23.2-23.1 23' class='st0'/%3E%3C/svg%3E");
}

.pagination .page-item > button.page-link[disabled] {
    cursor: default;
    opacity: 0.4;
}

/* Tooltip */
.tooltip {padding:0; width: 28px; height: 28px; position: relative; background-color: transparent; border: 0; border-radius: 50%; vertical-align: middle; z-index: 10; }
.tooltip .material-icons {font-size:2.2rem; color:#f87c18;}
.tooltip .tooltip-cont { position: absolute; top: 38px; left: 50%; padding: 13px; white-space: nowrap; background: #fff; border: 1px solid #666; transform: translateX(-50%); box-shadow: 0px 2px 5px 0px rgba(153,153,153,0.5); text-align: left; display: none; }
.tooltip .tooltip-cont::before { content: ''; position: absolute; display: block; border-color: transparent; border-style: solid; top: -8px; left: 50%; margin-left: -8px; border-width: 0 8px 8px 8px; border-bottom-color: #fff; z-index: 5; }
.tooltip .tooltip-cont::after { content: ''; position: absolute; display: block; border-color: transparent; border-style: solid; top: -9px; left: 50%; margin-left: -8px; border-width: 0 8px 8px 8px; border-bottom-color: #333; }
.tooltip:hover .tooltip-cont,
.tooltip:focus .tooltip-cont { display: block; }

/* Bullet */
.bul-dot { position: relative; padding-left: 10px; }
.bul-dot::before { content: ''; position: absolute; width: 3px; height: 3px; background: #bbb; top: 50%; left: 0; margin-top: -2px; }
.bul-warning { position: relative; }
.bul-warning .material-icons { font-size:13px; color:#cd0000;}

/* Popup */
.popup { display: none; position: fixed; left: 50%; top: 50%; z-index: 200; padding: 0; min-width: 500px; background-color: #fff;  transform: translateX(-50%) translateY(-50%);}
.popup .pop-header { height: 50px; line-height: 50px; padding: 0 30px; font-size: 20px; font-weight: 800; background-color: #F05E16; color: #fff; }
.popup .pop-body { padding: 30px 30px 20px; max-height:85vh; overflow-y: auto; border: 1px solid transparent; }
.popup .line-box { margin-top:15px; padding:5px 15px; border:1px solid #ddd;}
.popup .line-box .chk {margin:10px 0; width:25%; }
.popup .pop-close:before, 
.popup .pop-close { position: absolute; width: 30px; height: 30px; right: 25px; top: 10px; }
.popup .pop-close:after,
.popup .pop-close:before { position: absolute; left: 15px; top: 5px; content: ' '; height: 20px; width: 2px; background-color: #fff; }
.popup .pop-close:before { transform: rotate(45deg); }
.popup .pop-close:after { transform: rotate(-45deg); }
.popup .pop-btn-area { margin-top: 20px; text-align: center; }
.popup .pop-btn-area .btn { margin: 0 3px; }
#dimmed { position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 150; background-color: #000; opacity: .5; }

/* Popup - window */
.popup.window { display: block; position: relative; top: 0; left: 0; }
body.window-popup { min-width: unset; overflow-x: hidden; }

.alert { display: none; position: fixed; left: 50%; top: 50%; z-index: 200; padding: 0; min-width: 300px; background-color: #fff; }
.alert .alert-body { text-align: center; border: 1px solid #666; padding: 20px; }
.alert .alert-cont { padding: 30px 0 10px; line-height: 24px; }
.alert .alert-btn-area { margin-top: 20px; text-align: center; }
.alert .alert-btn-area .btn { margin: 0 3px; }

/* 이름 삭제 버튼 */
.del:hover{
    cursor: pointer;
}
.del {display:inline-block;*display:inline;}
.del:after {display: inline-block;content: "\00d7"; font-size:15pt;}

/* Table */
.table-top {
    margin:8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.table-top span {vertical-align: baseline;}

.tbl {margin-top:20px;}
.tbl.scroll-x {
    overflow-x:auto;
}
.tbl.scroll-y {
    overflow-y:auto;
}
.tbl.fix-head {
    position: relative;
    overflow: auto;
}
.tbl.fix-head  table {
   
}
.tbl.fix-head thead th[scope=col] {
    position: sticky;
    top:0;
    z-index:2;
}
.tbl.fix-head thead th[scope=col]::before {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    width: 100%;
    border-bottom: 1px solid #dfdfdf;
}
.tbl.fix-head thead th[scope=col]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 100%;
    border-bottom: 1px solid #dfdfdf;
}
.tbl.scroll-x table { min-width:1200px; }
.tbl.scroll-x .annual tr { height:52px; }
.tbl table { width: 100%; table-layout: fixed; }
.tbl table a {color:#f87c18;}
.tbl table a:hover {text-decoration: underline; text-underline-position: under;}
.tbl table th,
.tbl table td { padding: 12px 10px; border: 1px solid #dfdfdf; }
.tbl table th { font-weight:500; background-color: #fafafa; }
.tbl table.tbl-row th { text-align: left; font-weight: 500; }
.tbl .tbl-line th,
.tbl .tbl-line td { border-width:0 0 1px 0; }
.tbl .tbl-line th { position:relative; }
.tbl .tbl-line th + th::after {
    display:block;
    content:'';
    position:absolute;
    top:50%;
    left:0;
    margin-top:-5px;
    width: 1px;
    height:10px;
    background:#dfdfdf;
}
.tbl .tbl-mbox { margin: -6px 0; }
.tbl .tbl-chk-inline .chk { margin-right: 25px; }
.tbl .tbl-chk-block .chk { margin-top: 8px; display: block; }
.tbl .tbl-chk-block .chk:first-child { margin-top: 0; }
.tbl .btn { font-weight: 600; }
.tbl .tbl-btn-area { padding-top: 10px; }
.tbl .tbl-btn-area.right { text-align: right; }
.tbl .center { text-align: center; }
.tbl .right { text-align: right; }
.tbl .empty { padding:20px; text-align:center;}
.tbl .tbl-paging { position: relative; text-align: center; display: flex; justify-content: center; margin-top: 30px; }
.tbl .tbl-paging .paging-select { margin-left: 40px; }
.tbl .tbl-paging .paging-info { position: absolute; top: 8px; right: 0; }
.tbl .tbt-bg{ background-color:#fedebe;}

/* 미리보기 */

/* Badge */
.badge { display: inline-block; font-size: 14px; font-weight: 600; min-width: 70px; height: 24px; line-height: 22px; text-align: center; padding: 0 5px; color:#f7f7f7; border-radius: 12px; border: 1px solid transparent; }





@media (max-width: 1400px) {
  
}
@media (max-width: 480px) {
  .popup {
    width: 100%;
    min-width: 100%;
  }
}
/* 모바일 기기에서 스타일 적용 */
@media (max-width: 768px) {

  .form-row > .m-w100 {
    margin: 5px 0;
    flex: 0 0 100% !important;

/* ===== 관리자 메뉴 수정 V5 - 최우선 적용, 공통 CSS 무시 ===== */

/* 1. RENOSOFT관리 링크만 숨기기 - 매우 구체적인 셀렉터 */
header nav > ul > li > a[href="#"]:first-child,
.header nav > ul > li > a[href="#"]:first-child,
nav.main-nav > ul > li > a[href="#"]:first-child {
    display: none !important;
}

/* 2. depth2 영역 전체 설정 - 120px 고정 높이, 최우선 적용 */
header nav ul li div.depth2,
.header nav ul li div.depth2,
nav.main-nav ul li div.depth2,
nav ul li div.depth2 {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: 120px !important;
    line-height: 120px !important;
    z-index: 9999 !important;
}

/* 3. ul 컨테이너 */
header nav ul li div.depth2 ul,
.header nav ul li div.depth2 ul,
nav.main-nav ul li div.depth2 ul,
nav ul li div.depth2 ul {
    display: inline-flex !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: transparent !important;
    height: 120px !important;
    align-items: center !important;
    border: none !important;
    box-shadow: none !important;
}

/* 4. li 항목들 */
header nav ul li div.depth2 ul li,
.header nav ul li div.depth2 ul li,
nav.main-nav ul li div.depth2 ul li,
nav ul li div.depth2 ul li {
    display: inline-block !important;
    margin: 0 3px !important;
    padding: 0 !important;
    list-style: none !important;
    border-right: 1px solid rgba(255,255,255,0.4) !important;
    border-left: none !important;
    border-top: none !important;
    border-bottom: none !important;
    height: 120px !important;
    line-height: 120px !important;
    background: transparent !important;
}

header nav ul li div.depth2 ul li:last-child,
.header nav ul li div.depth2 ul li:last-child,
nav.main-nav ul li div.depth2 ul li:last-child,
nav ul li div.depth2 ul li:last-child {
    border-right: none !important;
}

/* 5. 링크 스타일 - 모든 공통 CSS 무시 */
header nav ul li div.depth2 ul li a,
.header nav ul li div.depth2 ul li a,
nav.main-nav ul li div.depth2 ul li a,
nav ul li div.depth2 ul li a {
    display: inline-block !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0 20px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    height: 120px !important;
    line-height: 120px !important;
    vertical-align: middle !important;
    border: none !important;
    background: transparent !important;
}

/* 6. 모든 상태에서 흰색 유지 - 최우선 */
header nav ul li div.depth2 ul li a:link,
header nav ul li div.depth2 ul li a:visited,
header nav ul li div.depth2 ul li a:active,
header nav ul li div.depth2 ul li a:focus,
.header nav ul li div.depth2 ul li a:link,
.header nav ul li div.depth2 ul li a:visited,
.header nav ul li div.depth2 ul li a:active,
.header nav ul li div.depth2 ul li a:focus,
nav ul li div.depth2 ul li a:link,
nav ul li div.depth2 ul li a:visited,
nav ul li div.depth2 ul li a:active,
nav ul li div.depth2 ul li a:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    background: transparent !important;
}

/* 7. hover 효과 */
header nav ul li div.depth2 ul li a:hover,
.header nav ul li div.depth2 ul li a:hover,
nav ul li div.depth2 ul li a:hover {
    text-decoration: none !important;
    background-color: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    border: none !important;
}

/* 8. 현재 메뉴 하이라이트 (파란색) */
header nav ul li div.depth2 ul li a.current-menu,
.header nav ul li div.depth2 ul li a.current-menu,
nav ul li div.depth2 ul li a.current-menu {
    background-color: #007bff !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: none !important;
}

/* 9. 특정 페이지별 active 상태 */
body.annual-page header nav ul li div.depth2 ul li a[href*="annual"],
body.annual-page .header nav ul li div.depth2 ul li a[href*="annual"],
body.annual-page nav ul li div.depth2 ul li a[href*="annual"],
body.emp-page header nav ul li div.depth2 ul li a[href*="emp"],
body.emp-page .header nav ul li div.depth2 ul li a[href*="emp"],
body.emp-page nav ul li div.depth2 ul li a[href*="emp"],
body.admin-page header nav ul li div.depth2 ul li a[href*="admin"],
body.admin-page .header nav ul li div.depth2 ul li a[href*="admin"],
body.admin-page nav ul li div.depth2 ul li a[href*="admin"] {
    background-color: #007bff !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: none !important;
}

/* 10. 모든 하위 요소 흰색 강제 적용 */
header nav ul li div.depth2 ul li a *,
.header nav ul li div.depth2 ul li a *,
nav ul li div.depth2 ul li a * {
    color: #ffffff !important;
    text-decoration: none !important;
}






/* 최종 RENOSOFT관리 메뉴 수정 */
nav ul li {
    height: 60px !important;
    background-color: #f87c18 !important;
    display: flex !important;
    align-items: center !important;
}

nav ul li > a {
    color: white !important;
    font-size: 14px !important;
    height: 60px !important;
    line-height: 60px !important;
    text-decoration: none !important;
    padding: 0 15px !important;
}

nav ul li .depth2 {
    position: static !important;
    display: inline-block !important;
    background: transparent !important;
    height: 60px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

nav ul li .depth2 ul {
    display: inline-block !important;
    background: transparent !important;
    height: 60px !important;
    padding: 0 !important;
    margin: 0 !important;
}

nav ul li .depth2 ul li {
    display: inline-block !important;
    background: transparent !important;
    height: 60px !important;
    margin: 0 5px !important;
}

nav ul li .depth2 ul li a {
    color: white !important;
    font-size: 14px !important;
    background: transparent !important;
    height: 60px !important;
    line-height: 60px !important;
    padding: 0 10px !important;
    text-decoration: none !important;
}

nav ul li .depth2 ul li a:hover {
    color: #ffeb3b !important;
    background: transparent !important;
    text-decoration: none !important;
}

nav ul li .depth2 ul li.active a {
    color: #4caf50 !important;
    background: transparent !important;
    text-decoration: none !important;
}
