@import url(reset.css);

.center {
    width: 1400px;
    margin: auto;
}
.ml-0{
    margin-left: 0 !important;
}

.mr-1{
    margin-right: 10px !important;
}
.dataTables_length label{
    display: none;
}
/*===================================================
                    HEADER
=====================================================*/

#header {
    /* display: flex; */
    position: fixed;
    height: 80px;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 999;
}

#header .center {
    display: flex;
    align-items: center;
    height: 100%;
}

#header h1 {
    margin-right: 100px;
}
#header .nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}
#header .nav .depth1 {
    display: flex;
    align-items: center;
}

#header .nav .depth1 > li {
    cursor: pointer;
}

#header .nav .depth1 > li:not(:first-child) {
    margin-left: 70px;
}

#header .nav .depth1 > li > .menu {
    display: flex;
    position: relative;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 80px;
    box-sizing: border-box;
}

/* #header .nav .depth1 > li > .menu.active {
    color: #ED1C24;
} */
#header .nav .depth1 > li > .min.menu.active{
    color: #ED1C24;
}
#header .nav .depth1 > li:hover > .menu::after {
    display: inline-block;
    content: "";
    position: absolute;
    bottom: 13px;
    left: calc(50% - 2px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ED1C24;
}

#header .nav .depth1 > li:hover .depth2_wrap {
    display: flex;
}

#header .nav .depth2_wrap {
    display: none;
    position: absolute;
    align-items: center;
    top: 80px;
    height: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

#header .nav .depth1 li:nth-of-type(1) ul.depth2{
    padding-left: 220px;
}
#header .nav .depth1 li:nth-of-type(2) ul.depth2{
    padding-left: 375px;
}
#header .nav .depth1 li:nth-of-type(3) ul.depth2{
    padding-left: 514px;
}
/*#header .nav .depth1 li:nth-of-type(4) ul.depth2{*/
/*    padding-left: 592px;*/
/*}*/
#header .nav .depth2 > li {
    color: #333;
    font-size: 16px;
    line-height: 24px;
}

#header .nav .depth2 > li:not(:first-child) {
    margin-left: 50px;
}

#header .nav .depth2 > li .menu {
    display: inline-block;
    position: relative;
    word-break: keep-all;
    font-weight: 500;
    font-size: 17px;
    line-height: 55px;

}

#header .nav .depth2 > li .menu::after {
    content: "";
    display: block;
    bottom: -1px;
    left: 0;
    width: 100%;
    border-bottom: 2px solid transparent;
}
#header .nav .depth2 > li .menu:hover::after {
    content: "";
    display: block;
    bottom: -1px;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #ed1c24;
}
/*#header .nav .depth1 li:nth-of-type(2) ul.depth2{*/
/*    padding-left: 357px;*/
/*}*/

#main {
    min-height: 100vh;
    padding: 120px 0 40px;
    background: #f3f3f3;
}

#main h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 33px;
    font-weight: 600;
}

/* input 박스 */
input[type="text"],
input[type="number"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    height: 41px;
    padding: 0 10px;
    border: 1px solid #DFDFDF;
    border-radius: 2px;
    color: #333;
}

input::placeholder {
    color: #999;
}


/*체크박스*/
.checks {
    position: relative;
}

.checks input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.checks input[type="checkbox"] + label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.label_disable {
    cursor: default !important;
}

.checks input[type="checkbox"] + label::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: -3px 10px 0 0;
    text-align: center;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 1px;
    box-sizing: border-box;
}

.checks input[type="checkbox"]:checked + label:before {
    background: #fff url(../images/ico_checked.png) no-repeat center;
    border: 1px solid #ED1C24;
}

.checks input[type="checkbox"]:disabled + label::before {
    background: #eee url(../images/ico_disabled.png) no-repeat center;
    border: 1px solid #d1d1d1;
}

/*라디오버튼*/
.radios {
    position: relative;
}

.radios input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.radios input[type="radio"] + label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.radios input[type="radio"] + label::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: -3px 10px 0 0;
    text-align: center;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 50%;
    box-sizing: border-box;
}

.radios input[type="radio"]:checked + label:before {
    background: url(../images/ico_radio.png) no-repeat center;
    border: 1px solid #ED1C24;
}

/*페이지네이션*/
.dataTables_paginate {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    cursor: pointer;
}
.dataTables_paginate a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #333;
    font-size: 14px;
}
.dataTables_paginate span .current {
    color: #fff;
    background-color: #222;
    border-radius: 50%;
    box-sizing: border-box;
    font-weight: 500;
}
.paginate_button.previous{
    text-indent: -9999px;
    overflow: hidden;
    width: 24px; height: 24px;
    background: url('../images/arr_prev.png') no-repeat center;
}
.paginate_button.next{
    text-indent: -9999px;
    overflow: hidden;
    width: 24px; height: 24px;
    background: url('../images/arr_next.png') no-repeat center;
}
.dataTables_paginate span {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.dataTables_paginate span a:not(:first-child) {
    margin-left: 10px;
}

/*버튼*/
.reset_btn {
    /* display: inline-block; */
    height: 42px;
    width: 120px;
    border-radius: 3px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reset_btn2 img{margin-right: 3px;}

.reset_btn2 {
    /* display: inline-block; */
    height: 42px;
    width: 120px;
    border-radius: 3px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reset_btn img{margin-right: 3px;}
.btn_wrap {
    display: flex;
}
.btn_wrap.view_num{
    justify-content: end;
    margin-bottom: 20px;
}
.btn_wrap.upload_btn{
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}
.btn_wrap.upload_btn .right_area button:nth-of-type(2){
    margin-left: 6px;
    position: relative;
}
.page_btn_wrap {
    margin-top: 40px;
}
.excel_upload{
    padding: 7px 26px 7px 46px !important;
    background: url(../images/excel_upload.png) no-repeat 15px center;
    margin-right: 8px;
}
.dt-button.buttons-excel.buttons-html5{
    padding: 10px 18px 10px 41px !important;
    /* margin-right: 8px; */
    /* padding: 7px 19px; */
    border: 1px solid #dfdfdf;
    color: #222;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    background: url(../images/excel_download.png) no-repeat 15px center;
}
#datatable-tabletools_filter{
    display: none;
}
.cnt_num{
    margin-bottom: 10px;
}
.right_box{
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}
.right_box .right_box-inner{
    display: flex;
    align-items: center;
}
.right_box .row{
    margin-bottom: 15px;
}
.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection{
    border-color: #ED1C24 !important;
    box-shadow: none !important;
}
.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background-color: #ED1C24 !important;
    color: #fff;
}
.select2-container--bootstrap .select2-dropdown{
    border-color: #ED1C24 !important;
    box-shadow: none !important;
}
.select2-container--bootstrap .select2-selection--single {
    height: 41px !important;
    line-height: 1.828571 !important;
    padding: 6px 24px 6px 12px;
    font-size: 15px !important;
}
.select2-container--bootstrap{
    width: 122px !important;
}
/*카드 버튼*/
.card_btn {
    padding: 8px 45px;
    border: 1px solid #222;
    border-radius: 3px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    background: #222;
    line-height: 24px;
}

.reset_btn + .card_btn {
    margin-left: 10px;
}

.reset_btn2 + .card_btn {
    margin-left: 10px;
}

.card_btn + .card_btn {
    margin-left: 10px;
}

/*페이지 버튼*/
.page_basic_btn {
    padding: 9px 80px;
    border: 1px solid #FF3B14;
    background: #fff;
    border-radius: 40px;
    font-size: 16px;
    color: #FF3B14;
    font-weight: 500;
    line-height: 24px;
}

.page_basic_btn + .page_basic_btn {
    margin-left: 10px;
}

/*테이블 버튼*/
.tb_basic_btn {
    padding: 7px 19px;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 22px;
}

.tb_basic_btn + .tb_basic_btn {
    margin-left: 5px;
}

.tb_btn {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 40px;
    font-size: 12px;
    background: #FF3B14;
    font-weight: 600;
    color: #fff;
    line-height: 18px;
}

.tb_btn.small_btn {
    padding: 5px 10px;
}

.tb_btn.large_btn {
    width: 68px;
    font-size: 13px;
    line-height: 19.5px;
}

.gray_outline {
    border: 1px solid #dfdfdf;
    color: #222;
}

.gray_btn {
    background: #ECECEC;
    color: #AFAFAF;
}
.grayb_btn {
    background: #84868B;
    border-radius: 3px;
    width: 100px;
    color: #fff;
    height: 38px;
    border: none;
}
.black_btn {
    background: #222;
    border: 1px solid #222;
    color: #fff !important;
}

.c_btn {
    background: #3C3C3C;
    border: 1px solid #3C3C3C;
    color: #fff;
}

.gray_btn {
    background: #ECECEC;
    color: #AFAFAF;
}
.manual_upload_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
 }
 .manual_upload_btn .confirm_btn{
    margin-left: 10px;
 }
 .unconfirm_btn{
    color: #43495A;
    color: #fff;
 }
 .cancel_btn{
     display: inline-block;
     height: 42px;
     width: 120px;
     border-radius: 3px;
     border: 1px solid #222;
     background: #fff;
     color: #222;
 }
/* select 박스 */

select {
    width: 158px;
    background: url('../images/arr_select.png') no-repeat center right 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

.select_box {
    display: inline-block;
    position: relative;
    min-width: 150px;
    height: 41px;
    padding: 9px 27px 9px 15px;
    border: 1px solid #DFDFDF;
    border-radius: 2px;
    background: url('../images/arr_select.png') no-repeat center right 9px;
    cursor: pointer;
}

.select_box.active {
    border-radius: 2px 2px 0 0;
    border: 1px solid #ED1C24;
    background: url('../images/arr_select_close.png') no-repeat center right 9px;
}

.select_box label {
    display: flex;
    line-height: 23px;
    cursor: pointer;
}

.select_box ul {
    display: none;
    position: absolute;
    min-width: 150px;
    top: 39px;
    left: -1px;
    background: #fff;
    border: 1px solid #ED1C24;
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    z-index: 99;
}

.select_box.active ul {
    display: block;
    border: 1px solid #ED1C24;
    border-top: 1px solid #DFDFDF;
}

.select_box ul li {
    width: 100%;
    padding: 9px 15px;
    line-height: 22px;
    cursor: pointer;
}

.select_box ul li:hover {
    background: #ED1C24;
    color: #fff;
}
/***.select_box.small***/
.select_box.small {
    height: 37px;
    width: 116px;
    min-width: auto;
    padding: 8px 24px 8px 12px;
}

.select_box.small label {
    font-size: 14px;
    line-height: 21px;
}

.select_box.small ul {
    top: 35px;
    width: 116px;
    min-width: auto;
}

.select_box.small ul li {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 21px;
}
/***.select_box.mid***/
.select_box.mid {
    height: 40px;
    width: 138px;
    min-width: auto;
    padding: 8px 24px 8px 20px;
    margin-bottom: 10px;
}

.select_box.mid label {
    font-size: 14px;
    line-height: 21px;
}

.select_box.mid ul {
    top: 35px;
    width: 138px;
    min-width: auto;
}

.select_box.mid ul li {
    padding: 8px 20px;
    font-size: 14px;
    line-height: 21px;
}
.select_box.large{
    width: 250px;
    min-width: 250px;
}
.select_box.large ul{
    width: inherit;
}
.select_box.full{
    width: 100%;
    min-width: 100%;
}
.select_box.full ul{
    width: calc(100% + 2px);
}
/*카드*/
.card {
    width: 1400px;
    margin: auto;
    background: #fff;
    padding: 40px;
}
.gray.card{
    background-color: #ccc;
}
.card + .card {
    margin-top: 40px;
}

.card + h2 {
    margin-top: 40px;
}

.tb_form .btn_wrap {
    justify-content: center;
    margin-top: 40px;
}

.card_title, .card_sub_tit {
    display: flex;
    position: relative;
    padding-left: 13px;
    margin-bottom: 20px;
}

.card_title::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 3px;
    height: 16px;
    background: #ED1C24;
}

.card_title p {
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    color: #3C3C3C;
}
.card_sub_tit p{
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    color: #3C3C3C;
}
/*검색폼/작성폼*/
.tb_form table {
    width: 100%;
    border-bottom: 1px solid #F2F2F4;
}

.tb_form table tr th,
.tb_form table tr td {
    height: 60px;
    padding: 0 20px;
    border-top: 1px solid #F2F2F4;
    line-height: 20px;
}
.tb_form table tr td.issuance_status,
.tb_form table tr td.use_status { display: block; height: auto; max-height:200px; overflow-y:auto; padding:20px; }
.tb_form table tr td.issuance_status .desc,
.tb_form table tr td.use_status .desc { display:block; }
.tb_form table tr td.issuance_status .desc + .desc,
.tb_form table tr td.use_status .desc + .desc { margin:10px 0 0; }

.tb_form table tr th {
    padding: 0 20px;
    background: #F9F9F9;
    text-align: left;
}

.tb_form table tr th.align_top {
    vertical-align: top;
}

.tb_form .date {
    display: flex;
    align-items: center;
    position: relative;
}
.tb_form .date label::after{
    content: '';
    background-color: #f4f4f4;
    width: 40px; height: 40px;
    position: absolute;
    top: 0; left: 0;
    border-right: 1px solid #dfdfdf;
    /* z-index: -1; */
}
.tb_form .date label:nth-of-type(2)::after{
    left: 240px;
}
.tb_form .datepicker {
    display: inline-block;
    width: 220px;
    /* padding-left: 46px; */
    padding-left: 0px;
    background: url(../images/ico_calendar.png) no-repeat left 0px bottom 0px;
    cursor: pointer;
    color: #aaa;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.tb_form .datepicker::before{
    content: '';
    background-color: #dfdfdf;
    width: 40px; height: 40px;
    position: absolute;
    left: 0; top: 0;
}
.tb_form .checks {
    display: inline-block;
}

.tb_form .checks:not(:first-child) {
    margin-left: 30px;
}

.tb_form .search_word_wrap {
    display: flex;
}

.search_word {
    display: inline-block;
    margin-left: 5px;
    width: 305px;
}

.selectBoxWrap {
    display: flex;
}

.selectBoxWrap .select_box:not(:first-child) {
    margin-left: 5px;
}

/*테이블 리스트*/
.cnt_wrap {
    /* margin-bottom: 20px; */
    /* padding: 0 5px; */
}

.cnt_wrap span {
    line-height: 21px;
    font-size: 14px;
}
.cnt_wrap .total_wrap{
    margin-left: 3px;
}
.cnt_wrap #selected_cnt {
    font-weight: 500;
    margin: 0 3px 0 5px;
}

.cnt_wrap .total_cnt {
    color: #838383;
}

.single_cnt_wrap {
    font-size: 14px;
    color: #747474;
}

.single_cnt_wrap .total_cnt {
    color: #000;
    font-weight: 500;
}

.tb_list {
    width: 100%;
}

.tb_list th {
    height: 55px;
    background: #f9f9f9;
    line-height: 20px;
}

.tb_list td {
    padding: 20px 10px;
    line-height: 22px;
    text-align: center;
    border-bottom: 1px solid #F2F2F4;
}
.tb_list td p.status_map{
    background: #84868B;
    border-radius: 3px;
    color: #fff;
    padding: 8px 25px;
    display: block;
}
.tb_list td.tb_status{
    position: relative;
}
.tb_list td.tb_status .status_num{
    display: none;
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 165px;
    transform: translateX(-50%);
    background-color: #f9f9f9;
    padding: 15px 10px;
    z-index: 1;

    filter: drop-shadow(4px 4px 11px rgba(0, 0, 0, 0.2));
}
.tb_list td.tb_status .status_num::after{
    content: '';
    background-color: #f9f9f9;
    width: 10px; height: 10px;
    position: absolute;
    top: -4px;
    left: 21px;
    transform: rotate(45deg);
}
.tb_list td.tb_status:hover .status_num{
    display: block;
    transition: all .3s ease-out;
}
.tb_list td.tb_maping .mpaing_nb a{
    background: #D9D9D9;
    border-radius: 3px;
    color: #fff;
    padding: 8px 20px;
}

.tb_list .checks input[type="checkbox"] + label::before {
    margin-right: 0;
}

.tb_list_popup {
    width: 100%;
}

.tb_list_popup th {
    padding: 0 !important;
    height: 55px;
    background: #f9f9f9;
}

.tb_list_popup td {
    padding: 20px 10px !important;
    line-height: 22px;
    text-align: center;
    border-bottom: 1px solid #F2F2F4;
}

.tb_list_popup .checks input[type="checkbox"] + label::before {
    margin-right: 0;
}

.tag {
    display: inline-block;
    padding: 0 6px;
    margin-bottom: 3px;
    border: 1px solid #FF3B14;
    border-radius: 3px;
    color: #FF3B14;
    font-size: 11px;
    line-height: 17px;
}

/*날짜*/
#ui-datepicker-div.ui-datepicker {
    width: 320px;
    height: 320px;
    padding: 25px;
    margin-top: 10px;
    font-family: 'Noto Sans KR';
    border-radius: 2px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

#ui-datepicker-div .ui-widget.ui-widget-content {
    border: 1px solid #DFDFDF;
}

#ui-datepicker-div.ui-datepicker p,
#ui-datepicker-div.ui-datepicker span {
    font-family: 'Noto Sans KR';
}

#ui-datepicker-div .ui-widget-header {
    padding: 0;
    margin-bottom: 20px;
    background: #fff;
    border: none;
}

#ui-datepicker-div .ui-widget-header .ui-icon {
    background-image: url(../images/arr_next.png);
}

#ui-datepicker-div .ui-icon-circle-triangle-w,
#ui-datepicker-div .ui-icon-circle-triangle-e {
    background-position: center;
}

#ui-datepicker-div .ui-widget-header .ui-icon-circle-triangle-w {
    background-image: url(../images/arr_prev.png);
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-title {
    padding-top: 3px;
    font-size: 16px;
    line-height: 23px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-month,
#ui-datepicker-div.ui-datepicker .ui-datepicker-year {
    width: auto;
    border: none;
    font-weight: 500;
}

#ui-datepicker-div.ui-datepicker table th {
    padding: 0 0 9px 0;
    height: 31px;
    font-weight: 400;
    font-size: 14px;
}

#ui-datepicker-div.ui-widget-content .ui-state-default,
#ui-datepicker-div .ui-state-disabled .ui-state-default {
    border: none;
    background: #fff;
}

#ui-datepicker-div.ui-datepicker td {
    padding: 5px 0;
    text-align: center;
}

#ui-datepicker-div.ui-datepicker td .ui-state-default {
    width: 28px;
    height: 28px;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    line-height: 28px;
    font-size: 14px;
    color: #000;
    text-align: center;
}

#ui-datepicker-div.ui-widget-content td .ui-state-highlight {
    background: rgba(255, 59, 20, 0.15);
    border-radius: 50%;
    font-weight: 500;
    color: #000;
}

#ui-datepicker-div.ui-widget-content td .ui-state-active {
    background: #5E72E4;
    border-radius: 50%;
    color: #fff;
    font-weight: 500;
}

#ui-datepicker-div.ui-widget-content td.ui-datepicker-week-end a {
    color: #DE5E45;
}

#ui-datepicker-div.ui-widget-content td.ui-datepicker-week-end a.ui-state-active {
    color: #fff;
}

/*alert 팝업*/
.popup {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}
.popup.on{
    display: flex;
}

.dimmed {
    background: rgba(0, 0, 0, 0.6);
}

.confirm_popup .popup_inner {
    width: 370px;
    height: 220px;
    padding: 70px 0 30px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 17px;
    line-height: 25px;
}

.confirm_popup .popup_inner .btn_wrap {
    justify-content: center;
    margin-top: 50px;
}


/*==============================
일반 팝업=======================*/

/*일반 팝업*/
.normal_popup .popup_wrap {
    max-height: 800px;
    width: 520px;
}

.popup_wrap {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.popup_title {
    position: relative;
    padding: 19px 0;
    border-bottom: 1px solid #f1f2f3;
}

.popup_title p {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
}
.popup_title .pop_close {
    position: absolute;
    top: 25px;
    right: 30px;
}
.popup_wrap .popup_inner {
    overflow-y: auto;
    max-height: calc(800px - 67px);
    padding: 30px;
}
.popup_wrap .btn_wrap {
    margin-top: 30px;
    justify-content: center;
}

/*팝업 버튼*/
.pop_btn + .pop_btn {
    margin-left: 10px;
}
.pop_btn {
    display: inline-block;
    width: 150px;
    padding: 7px 19px;
    border: 1px solid #333;
    border-radius: 2px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 21px;
}
.long_btn {
    width: 310px;
}

/*닫기 버튼*/
.close_popin{
    background: url(../images/close_pop.png) no-repeat;
    width: 32px; height: 32px;
    cursor: pointer;
}
/*엑셀팦업*/
.modal_popup{
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    /* background: rgba(0, 0, 0, .5); */
    width: 100%;
    height: 100%;
    display: none;
}
.excel_select .filebox input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}
.excel_popup .top_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.excel_popup .top_inner > p{
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #222222;
    margin-left: 35px;
}
.excel_popup .exxelPop_inner{
    width: 520px;
    height: 238px;
    background: #f9f9f9;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(4px 4px 11px rgba(0, 0, 0, 0.25));
}
.excel_popup .exxelPop_inner .inner{
    width: 440px;
    margin: 0 auto;
}
.excel_popup .exxelPop_inner .inner .excel_select{
    padding-top: 40px;
}
.excel_select .filebox{
    display: flex;
    align-items: center;
}
.excel_select .filebox label {
    width: 115px;
    height: 38px;
    background: #43495A;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.excel_select .filebox .upload-name {
    display: inline-block;
    background: #FFFFFF;
    border: 1px solid #DFDFDF;
    border-radius: 3px;
    width: 315px;
    height: 40px;
    color: #000;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 11px 5px;
}
.excel_popup .exxelPop_inner .inner .excel_dwload{
    float: right;
    position: relative;
    margin-top: 30px;
    padding: 11px 20px;
    background-color: #fff;
    border: 1px solid #DFDFDF;
    border-radius: 3px;
}
.excel_popup .exxelPop_inner .inner .excel_dwload a{
    display: flex; align-items: center;
}
.excel_popup .exxelPop_inner .inner .excel_dwload a img{
    padding-right: 10px;
}
/*영수증/ 바텀라벨 팝업*/

.rpli{
    display: block;
    width: 95px; height: 95px;
    margin-left: auto;
    margin-right: auto;
}
.registappli_admin_wrap .rpli .ig_inner{
    display: block;
    cursor: pointer;
}
.rpli img{width: 100%; }
.ig_inner{
    cursor: pointer;
}
.pop, .pop_img_md{
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background-color: #f9f9f9;
    filter: drop-shadow(4px 4px 11px rgba(0, 0, 0, 0.25));
    z-index: 99;
}
.pop_img_md{
    padding: 5px;
}
.pop_img_md .pop_img_inner{
    width: 520px; height: 645px;
    overflow-y: auto;
    padding: 5px;
}
/* 스크롤바 설정*/
.pop_img_md .pop_img_inner::-webkit-scrollbar{
    width: 6px;
}

/* 스크롤바 막대 설정*/
.pop_img_md .pop_img_inner::-webkit-scrollbar-thumb{
    height: 17%;
    background-color: rgba(237,28,36,1);
    border-radius: 10px;
}

/* 스크롤바 뒷 배경 설정*/
.pop_img_md .pop_img_inner::-webkit-scrollbar-track{
    background-color: rgba(235,198,200,0.33);
}


.pop_img_md .md_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 21px;
}
.pop_img_md .md_top > p{
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #222222;
    margin-left: 60px;
}
.pop_img_md .md_top .close_popin{
    margin-right: 35px;
}
.pop_img_md .pt_inner{
    display: flex;
    justify-content: center;
    width: 85%;
    margin: 85px auto;
}
.pop_img_md .pt_inner img{
    width: 100%;
}
.appli_admin_wrap .right_area{
    display: flex;
    align-items: center;
}
.appli_admin_wrap .right_area .tb_basic_btn.grayb_btn{
    margin-right: 8px;
}
.manual_upload_wrap tr.tb_expend_inner td:nth-of-type(6) select{
    height: 40px;
    width: 138px;
    min-width: auto;
    padding: 8px 24px 8px 20px;
    margin-bottom: 10px;
    background: url(../images/arr_select.png) no-repeat center right 9px;
    border: 1px solid #DFDFDF;
    -webkit-appearance: none; /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
.manual_upload_wrap tr.tb_expend_inner td:nth-of-type(6) select option{
    display: block;
    /* width: 100%; */
    padding: 20px 20px;
    font-size: 14px;
    line-height: 21px;
    /* background: #ED1C24; */
}
.manual_upload_wrap tr.tb_expend_inner td:nth-of-type(6) select option:hover{
    background: #ED1C24;
    color: #fff;
}
.manual_upload_wrap tr.tb_expend_inner td:nth-of-type(6) select:focus{
    /* border-color: #ED1C24; */
    /* background: url(../images/arr_select_close.png) no-repeat center right 9px; */
}
/*추가된 아이템*/
.added_item_list {
    display: flex;
    flex-wrap: wrap;
}

.added_item_list .added_item {
    display: inline-block;
    position: relative;
    padding: 5px 35px 6px 13px;
    background: #43495A;
    border-radius: 3px;
}

.added_item_list .added_item:not(:last-child) {
    margin-right: 10px;
}

.added_item_list .added_item p {
    line-height: 22px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

.added_item_list .added_item .del_prd_btn {
    position: absolute;
    top:10px;
    right: 13px;
    cursor: pointer;
}

.category_hide {
    display: none;
}

.hidetype {
    display: none;
}

.detail_disabled {
    cursor: default !important;
}

.review_view_list_container > .checks {
    display: inline-block;
}

.review_view_list_container > .checks:not(:first-child) {
    margin-left: 30px;
}

.btn_container {
    display: flex;
    justify-content: space-around;
}

.url_preview_container {
    display: flex;
    flex-direction: column;
}

.url_preview_string {
    font-size: 16px;
    word-break: break-word;
    margin-bottom: 10px;
}

.file_popup {
    width: 800px !important;
    min-width: 600px !important;
}

.word_hiding {
    display: none;
    color: white;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dashboard_tippy_word {
    display: -webkit-box;
    display: -ms-flexbox;
    display: box;
    margin-top:1px;
    overflow:hidden;
    vertical-align:top;
    text-overflow: ellipsis;
    word-break:break-all;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    line-height: 1.4;
    max-height: 2.8em;
}

.ig_inner{display: block; margin: 8px 0;}
.ig_inner img{
    width: 95px; height: 95px;
}
.regist_history_form table tbody tr th{
    text-align: center;
}
.regist_history_change table thead tr th,
.regist_history_change table tbody tr td{
    text-align: center;
}

#reject_pop .popup_wrap .popup_inner{
    overflow-y: visible;
}
.dataTables_empty {
    vertical-align: middle;
}

.ui-timepicker-container {
    z-index: 99999 !important;
}
.timepicker{
    width: 60px;
}
