
.container{
    padding:0px;
    height: 100vh;
}
.container .wrap{
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    height: calc(100vh - 205px);
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

/*-----------------------------------------------------------------*/
/*pico ui 막기*/
@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }
}
/*-----------------------------------------------------------------*/



/* 모바일 화면을 위한 미디어 쿼리 */
@media (max-width: 500px) {/* max-width: 480px */
    .container .wrap {
        padding: 2px 10px;
    }
    .container .wrap .tablet-ui{
        display:none;
    }
    .container .wrap .mobile-ui{
        display:block;
    }

    .wrap .data-list-box .map-box{
        height:calc(100vh - 370px);
    }
}

/* 태블릿 화면을 위한 미디어 쿼리 */
@media (min-width: 501px){
    .container .wrap {
        padding: 6px 10px;
    }
    .container .wrap .tablet-ui{
        display:block;
    }
    .container .wrap .mobile-ui{
        display:none;
    }
    .wrap .data-list-box.flex{
        display: flex;
    }
    .wrap .data-list-box.flex.rev{
        flex-direction: row-reverse;
    }
    .wrap .data-list-box.flex .data-box{
        flex:1;
    }
    .wrap .data-list-box.flex:not(.rev) .data-box + .data-box{
        margin-left:20px;
    }
    .wrap .data-list-box.flex.rev .data-box + .data-box{
        margin-right: 20px;
    }
    .wrap .data-list-box.flex.rev .data-box .info-list{
        margin-top:0px;
    }
   
    .wrap .data-list-box .map-box{
        height:calc(100vh - 210px);
    }

    .component.select_box .area-custom-select ul li{
        width:100%;
    }

}

/* IOS 기기예외처리*/
@supports (-webkit-touch-callout: none) {
    .wrap .page .data-list-box.iphone{
        height: calc(100% - 150px);
    }
    .wrap .page .data-list-box.ipad{
        height: calc(100% - 150px);
    }
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
}


ul li{
    list-style: none; /* 점 없애기 */
}
a{
    font-size:14px;
    text-decoration: none; /* 밑줄 제거 */
}
a:active{
    color: #D8D8D8;
}

a.btn{
    display:flex;
    width:100px;
    height:35px;
    padding:8px 10px 8px 10px;
    text-align: center;
    border:1px solid #D5D5D5;
    border-radius: 5px;
    color:#8C8C8C;
}

a.btn i.icon{
    display:block;
    width:18px;
    height:18px;
    margin-right:5px;
}

button{
    background: #001E5E;
    color: #fff;
    border-color: #001E5E;
    width: 100%;
    max-width: 150px;
    height: 45px;
    padding: 6px;
    padding-top: 8px;
}
button:active{
    background: #fff;
    color: #001E5E;
}
button.check{
    background-color: #fff;
    color: #001E5E;
}
button.check:active{
    background-color: #001E5E;
    color: #fff;
}
button.cancel{
    border-color:#FF6464;
    background:#fff;
    color:#FF6464;
}
button.cancel:active{
    background-color: #FF6464;
    color:#fff;
    border-color:#FF6464;
}
label{
    font-size:13px;
}
input[type='text'],input[type='password']{
    border:1px solid #D5D5D5;
    padding: 6px 15px 5px 15px;
    height:45px;
    font-size:13px;
}

input[type="checkbox"]{
    width: 25px;
    height: 25px;
    border-radius: 2px;
}

input[type="checkbox"]:checked{
    background-color: #001E5E;
    border-color: #001E5E;
}



/*.table-container{
    height:100%;
}*/
.table-container table{
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.table-container .table-box{
    height: calc(100vh - 220px);
    overflow-y: auto;
    overflow-x: auto;
    width: auto;
}
.table-container .table-box::-webkit-scrollbar {
    width: 8px;  /* 스크롤바의 너비 */
    height: 16px;
}
.table-container .table-box::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #6D87B9; /* 스크롤바의 색상 */
    
    border-radius: 10px;
}
.table-container .table-box::-webkit-scrollbar-track {
    background: rgba(109, 135, 185, .1);  /*스크롤바 뒷 배경 색상*/
}
.table-container table thead tr th{
    background-color:#DCEAF7;
    border-width:1px;
    /*border-top:1px solid #6D87B9;
    border-bottom:1px solid #6D87B9;*/
    border-top: 1px solid #DCEAF7;
    border-bottom: 1px solid #DCEAF7;
    height: 40px;
    padding: 2px;
    font-size : 13px;
    font-weight:500;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
    /*padding-top: 10px;*/
    cursor: pointer;
    vertical-align : middle;
    font-weight: bold;
}
.table-container table thead tr th.hide,
.table-container table tbody tr td.hide{
    /*visibility: hidden; 자리는 잡아주면서 없어지는 것*/ 
    display: none;
}
.table-container table thead tr th.over{
    font-size:10px;padding-top:0px;padding-top: 0px;position: relative;
}
.table-container table thead tr th.over span{
    position: absolute; margin-left: -19px;margin-top: 6px;
}
.table-container table tbody tr td{
    font-size : 12px;
    padding: 5px 2px;
    /*height: 45px;*/
    height: 40px;
    width: 80px;
    text-align: center;
    /*border-bottom: 1px solid #EAEAEA;*/
    border-bottom: 1px solid #d1cece;
    vertical-align: middle;
    /*position: relative;*/
}
.table-container table tbody tr td.td-hidden{
    display:none;
}
.table-container table tbody tr td.link{
    
    background-color:#002060
    /*
    background-color:#e97132
    background-color: rgba(55, 82, 134, 0.2);*/
}
.table-container table tbody tr td input.cs{
    font-size: 13px;
    font-weight: bold;
    padding:4px
}
.table-container table tbody tr td.outsource_on{
    background-color:#e97132
}
.table-container table tbody tr.on td.on{
    background-color: rgba(55, 82, 134, 0.2);    
}
.table-container table tbody tr td .devide{
    display: flex;
    align-items: center;
}
.table-container table tbody tr td .devide.left .left{
    flex:0.3;
}
.table-container table tbody tr td .devide.left .right{
    flex:0.7;
}
.table-container table tbody tr td.w30{
    width:30px;
}
.table-container table tbody tr td.rowspan{
    padding-top:10px;
}
/*.table-container table tbody tr.n-bor td:nth-child(n+3){
    border-bottom:0px;
}*/
.table-container table tbody tr.n-bor td{
    border-bottom:0px;
}

.table-container table tbody tr td span.eplip{
    width:100%;
    white-space: nowrap; /* 줄바꿈 방지 */
    overflow: hidden; /* 넘치는 텍스트 숨김 */
    text-overflow: ellipsis; /* 말줄임표 표시 */
}

.table-container table tbody tr td span.box{
    padding: 10px;
    border: 0px;
    border-radius: 5px;
    font-weight: bold;
    font-size:13px;
}
.table-container table tbody tr td span.box.green{
    background-color: rgba(53, 206, 160, 0.2);
    color: #35CEA0;
}
.table-container table tbody tr td span.box.blue{
    background-color: rgba(202, 238, 251, 0.5);
    color: #375286;
}
.table-container table tbody tr td .sub-info-box{
    height:20px;
}
.table-container table tbody tr td input:not([type="radio"],[type="checkbox"]){
    margin-bottom: 0px;
    font-size: 13px;
    height:35px;
    text-align: center;
    border: none;
    background-color: transparent;
    /*padding: 5px;*/
}
.table-container table tbody tr td select{
    height:35px;
    margin-bottom:0px;
    display: flex;
    width:100%;
    padding: 5px 0px 5px 10px;
    font-size: 13px;
    background-position: center right .2rem;
    background-size: 12px;
}
.table-container table tbody tr td select.green{
    background-color: rgba(53, 206, 160, 0.2);
    color: #35CEA0;
    border:0px;
}
.table-container table tbody tr td select.blue{
    background-color: rgba(202, 238, 251, 0.5);
    color: #375286;
    border:0px;
}
.table-container table tbody tr td select.red{
    background-color: rgba(255, 65, 65, 0.2);
    color: #FF4141;
    border:0px;
}
.table-container table tbody tr td select option{
    font-size:13px;
}
.table-container table tbody tr td select option.red{
    color:red;
}
.table-container table tbody tr td select option.black{
    color:black;
}
.table-container table tbody tr td.sel-input:has(.sub-info-box){
     vertical-align: middle;
}
.table-container table tbody tr td.sel-input:has(.sub-info-box) select{
    height:25px;
}
.table-container table tbody tr td .sub-info-box{
    margin-top:2px;
}
.table-container table tbody tr td .sub-info-box input{
    height:25px;
    font-size : 12px;
    background-color: #fff;
}
.table-container table tbody tr td span{
    display: block;
    font-size:13px;
}
.table-container table tbody tr td span.blue{
    background-color: rgba(202, 238, 251, 0.5);
    color: #375286;
    border:0px;
    padding:8px 11px 5px 11px;
    border-radius:5px;
    font-weight: bold;
}
.table-container table tbody tr td span.green{
    background-color: rgba(53, 206, 160, 0.2);
    color: #35CEA0;
    border:0px;
    padding:8px 11px 5px 11px;
    border-radius:5px;
    font-weight: bold;
}
.table-container table tbody tr td span.red{
    background-color: rgba(255, 65, 65, 0.2);
    color: #FF4141;
    border:0px;
    padding:8px 11px 5px 11px;
    border-radius:5px;
    font-weight: bold;
}
.table-container table tbody tr td span.gray{
    background-color: rgba(234, 234, 234, 0.2);
    color: #8C8C8C;
    border:0px;
    padding:8px 11px 5px 11px;
    border-radius:5px;
}
.table-container table tbody tr td span.dark_gray{
    background-color: rgba(109, 107, 107, 0.2);
    color: #000000;
    border:0px;
    padding:8px 11px 5px 11px;
    border-radius:5px;
}
.table-container table tbody tr td .opt-box{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px;
    width: 100%;
}
.table-container table tbody tr td .opt-box.w-wide{
    width: 190px;
}
.table-container table tbody tr td .opt-box input.w70per{
    width: 70%;
}
.table-container table tbody tr td .opt-box input{
    flex:0.8;
}
.table-container table tbody tr td .opt-box a.add{
    width:30px;
    height:30px;
    background: url(/images/icon_add.png) no-repeat center;
    background-size: 25px 25px;
    cursor:pointer;
}
.table-container table tbody tr td .opt-box a.pen{
    width:20px;
    height:20px;
    background: url(/images/icon_edit_balck.png) no-repeat center;
    background-size: 10px 10px;
    background-color : #BBDBF9;
    cursor:pointer;
    border-radius: 20px;
}
.table-container table tbody tr td .opt-box a.dispatch-btn{
    width:20px;
    height:20px;
    background: url(/images/icon_delivery.png) no-repeat center;
    background-color : #BBDBF9;
    background-size: 15px 15px;
    cursor:pointer;
    border-radius: 20px;
}
.table-container table tbody tr td .opt-box a.add span{
    margin-bottom: 3px;
    font-size:18px;
}
.table-container table tbody tr td .opt-box .unipass_flow_btn{
    background: #1847ac;
    color: #fff;
    border-color: #001E5E;
    border-radius: 5px;
    /* font-weight: 500; */
    font-size:12px;
    width: 40px;
    height:28px;
    padding: 0px;
    background: url('/images/work_list_unipass_flow_state_btn.png') no-repeat center;  background-size: 45px 35px;
}
.table-container table tbody tr td .opt-box .unipass_flow_btn:hover{
    border-color: #efefef;
    color: #001E5E;
}
.table-container table tbody tr td .opt-box .unipass_flow_btn:active{
    background:#001E5E;
    color:  #fff;
    background: url('/images/work_list_unipass_flow_state_btn_click.png') no-repeat center;  background-size: 45px 35px;
}
.table-container table tbody tr td .opt-box a.w70per{
    width: 70%;
}
.table-container table tbody tr td .opt-box a.vd_comment{
    width:20px;
    height:20px;
    background: url(/images/icon_vd_comment.png) no-repeat center;
    /*background-color : #BBDBF9;*/
    background-size: 20px 20px;
    cursor:pointer;
    /*border-radius: 20px;*/
}
.table-container table tbody tr td .opt-box a.vd_comment.green{
    background: url(/images/icon_vd_comment_green.png) no-repeat center;
    background-size: 20px 20px;
}
.table-container table tbody tr td .opt-box a.vd_comment.orange{
    background: url(/images/icon_vd_comment_orange.png) no-repeat center;
    background-size: 20px 20px;
}
.table-container table tbody tr td a.btn{
    width: auto;
    border: 1px solid #001E5E;
    padding: 4px 10px 1px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    color: #001E5E;
}
.table-container table tbody tr td a.btn:active{
    background-color: #001E5E;
    color: #fff;
}
.table-container table tbody tr.on{
    background-color:rgba(187, 219, 249, 0.5);
}
/*
.table-container table tbody tr.on td{
    background-color:rgba(187, 219, 249, 0.5);
}*/
.table-container table tbody tr.on td:not(:first-child){
    background-color:rgba(187, 219, 249, 0.5);
}
.table-container table tbody tr.parent_on td{
    background-color:rgba(56, 95, 132, 0.5);
}
.table-container table tbody tr td .opt-box details{
    margin-bottom:0px;
    padding-bottom: 0px;
    border-bottom: 0px;
    border: none;
    width: 100%;
}
.table-container table tbody tr td .opt-box.w-wide details{
    margin-left: 10px;
}
.table-container table tbody tr td .opt-box details summary{
    margin-bottom:0px;
    height:35px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    /*width: 70px;*/
    width: 100%;
}
.table-container table tbody tr td .opt-box details summary span{
    width: 80%;
}
.table-container table tbody tr td .opt-box details summary::after{
    background-size:12px;
    background-position: center right .2rem;
}
.table-container table tbody tr td .opt-box details[open] summary{
    margin-bottom:0px;
}
.table-container table tbody tr td .opt-box details summary.green{
    background-color: rgba(53, 206, 160, 0.2);
    color: #35CEA0;
}
.table-container table tbody tr td .opt-box details summary.green span{
    color: #35CEA0;
}
.table-container table tbody tr td .opt-box details summary.blue{
    background-color: rgba(202, 238, 251, 0.5);
    color: #375286;
}
.table-container table tbody tr td .opt-box details summary.blue span{
    color: #375286;
}
.table-container table tbody tr td .opt-box details summary.red{
    background-color: rgba(255, 65, 65, 0.2);
    color: #FF4141;
}
.table-container table tbody tr td .opt-box details summary.red span{
    color: #FF4141;
}
.table-container table tbody tr td .opt-box details ul{
    /*position: absolute;*/
    padding-left: 0px;
    margin-top: 0px;
    box-shadow: 0px 2px 10px 2px gray;
    background-color: #fff;
    z-index: 2;
    padding-bottom : 15px;
}
.table-container table tbody tr td .opt-box details ul li{
    height : 20px;
    padding:5px;
    margin-bottom: 5px;
    margin-top:0px;
}
.table-container table tbody tr td .opt-box details ul li + li{
    margin-top: 10px;
}
.table-container table tbody tr td .opt-box details ul li:hover{
    cursor:pointer;
}
.table-container table tbody tr td .opt-box details ul li a{
    margin: 0;
}
.table-container table tbody tr td .opt-box details ul li.green a{
    background-color: rgba(53, 206, 160, 0.2);
    color: #35CEA0;
    border:0px;
    border-radius: 5px;
}
.table-container table tbody tr td .opt-box details ul li.blue a{
    background-color: rgba(202, 238, 251, 0.5);
    color: #375286;
    border:0px;
    border-radius: 5px;
}
.table-container table tbody tr td .opt-box details ul li.red a{
    background-color: rgba(255, 65, 65, 0.2);
    color: #FF4141;
    border:0px;
    border-radius: 5px;
}
.table-container table tbody tr td .opt-box details ul li a img{
    width:20px;
}
.table-container .bord-bottom-box{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.table-container .bord-bottom-box button{
    background: #001E5E;
    color: #fff;
    border-color: #001E5E;
    /* font-weight: 500; */
    font-size:14px;
    width: 100px;
    height:38px;
    padding: 10px;
    margin-top:18px;
}
.table-container .bord-bottom-box button:active{
    background: #fff;
    color: #001E5E;
}

.data-list-box .bord-btn-list,
.table-container .bord-btn-list{
    display: flex;
    justify-content: end;
    padding : 20px 20px;
    align-items: self-start;
    height: 70px;
}
.data-list-box .bord-btn-list ul li,
.table-container .bord-btn-list ul li{
    padding: 2px;
    font-size: 14px;
    font-weight:bold;
    height:30px;
    width:30px;
    display:flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #BBDBF9;
    color: #001E5E;
    border-radius: 10px;
    box-shadow: none;
}
.data-list-box .bord-btn-list ul li:hover,
.table-container .bord-btn-list ul li:hover{
    cursor: pointer;
    background-color: rgba(187, 219, 249, 0.8); 
}
.data-list-box .bord-btn-list ul li.on,
.table-container .bord-btn-list ul li.on{
    background-color: rgba(187, 219, 249, 0.8); 
}
.data-list-box .bord-btn-list ul li.prev,
.table-container .bord-btn-list ul li.prev{
    border-color: #EFEFEF;
    background: url(/images/left-arrow-b.png) no-repeat center;
    background-color: #EFEFEF;
    background-size: 15px 15px;
    box-shadow: none;
}
.data-list-box .bord-btn-list ul li.prev:hover,
.table-container .bord-btn-list ul li.prev:hover{
    background-color: rgba(187, 219, 249, 1); 
}
.data-list-box .bord-btn-list ul li.next,
.table-container .bord-btn-list ul li.next{
    border-color: #EFEFEF;
    background: url(/images/right-arrow-b.png) no-repeat center;
    background-color: #EFEFEF;
    background-size: 15px 15px;
    box-shadow: none;
}
.data-list-box .bord-btn-list ul li.next:hover,
.table-container .bord-btn-list ul li.next:hover{
    background-color: rgba(187, 219, 249, 1); 
    border-color: rgba(187, 219, 249, 1); 
}

.data-list-box .bord-btn-list ul li + li,
.table-container .bord-btn-list ul li + li{
    margin-left: 10px;
}
.data-list-box .bord-btn-list ul li span,
.table-container .bord-btn-list ul li span{
    font-size:15px;
    margin-top: 4px;
}
.data-list-box .bord-btn-list ul li.prev_double,
.table-container .bord-btn-list ul li.prev_double{
    border-color: #EFEFEF;
    background: url(/images/left-arrow-b-double.png) no-repeat center;
    background-color: #EFEFEF;
    background-size: 15px 15px;
    box-shadow: none;
}
.data-list-box .bord-btn-list ul li.prev_double:hover,
.table-container .bord-btn-list ul li.prev_double:hover{
    background-color: rgba(187, 219, 249, 1); 
}

.data-list-box .bord-btn-list ul li.next_double,
.table-container .bord-btn-list ul li.next_double{
    border-color: #EFEFEF;
    background: url(/images/right-arrow-b-double.png) no-repeat center;
    background-color: #EFEFEF;
    background-size: 15px 15px;
    box-shadow: none;
}
.data-list-box .bord-btn-list ul li.next_double:hover,
.table-container .bord-btn-list ul li.next_double:hover{
    background-color: rgba(187, 219, 249, 1); 
    border-color: rgba(187, 219, 249, 1); 
}

.data-list-box .bord-btn-list ul li:active,
.table-container .bord-btn-list ul li:active{
    background-color: #001E5E;
}
.data-list-box .bord-btn-list ul li:active span,
.table-container .bord-btn-list ul li:active span{
    color:#fff;
}
.data-list-box .bord-btn-list ul li.prev:active,
.table-container .bord-btn-list ul li.prev:active{
    background: url(/images/right-arrow-w.png) no-repeat center;
    transform: rotate(180deg);
    background-size: 15px 15px;
    background-color: #001E5E;
}
.data-list-box .bord-btn-list ul li.next:active,
.table-container .bord-btn-list ul li.next:active{
    background: url(/images/right-arrow-w.png) no-repeat center;
    background-size: 15px 15px;
    background-color: #001E5E;
}
.data-list-box .bord-btn-list ul li.next_double:active,
.table-container .bord-btn-list ul li.next_double:active{
    background: url(/images/right-arrow-w-double.png) no-repeat center;
    background-size: 15px 15px;
    background-color: #001E5E;
}
.data-list-box .bord-btn-list ul li.prev_double:active
.table-container .bord-btn-list ul li.prev_double:active{
    background: url(/images/left-arrow-w-double.png) no-repeat center;
    background-size: 15px 15px;
    background-color: #001E5E;
}







.component.select_box{
    position: relative;
    width:100%;
    height:35px;
    border-radius: 5px;
    cursor: pointer;
    background: url(/images/down-arrow.png) no-repeat center;
    background-color: #FBFCFC;
    background-size: 6px 6px;
    background-position : right 7px top 15px;
}
.component.select_box .area-custom-select{
    width: 100%;
    height: 100%;
}
.component.select_box .area-custom-select ul li{
    box-shadow: none;
}
.component.select_box .area-custom-select .custom-select.selected{
    width: 100%;
    height: 100%;
    padding: 8px 15px 10px 10px;
}
.component.select_box .custom-select .custom-select-text{
    display: inline-flex;
    font-size:12px;
}
.component.select_box.green{
    background-color: rgba(53, 206, 160, 0.2);
    /*background-color: #e2f0d9*/
}
.component.select_box.green .custom-select .custom-select-text{
    /*color:#79b251;*/
    color:#35CEA0; 
    font-weight: bold;
}
.component.select_box.blue{
    /*background-color: #bdd7ee;*/
    background-color:rgba(202, 238, 251, 0.5);
}
.component.select_box.blue .custom-select .custom-select-text{
    color: #23427b;
    font-weight: bold;
}
.component.select_box.red{
    background-color: rgba(255, 65, 65, 0.2);
}
.component.select_box.red .custom-select .custom-select-text{
    color: #FF4141;
    font-weight: bold;
}
.component.select_box.orange{
    background-color: #fbe5d6;
    
}
.component.select_box.orange .custom-select .custom-select-text{
    color: #e9660d;
    font-weight: bold;
}
.component.select_box.darkgray{
    background-color: #d9dadc
    
}
.component.select_box.darkgray .custom-select .custom-select-text{
    color: #000000;
    font-weight: bold;
}
.component.select_box .custom-select-list{
    position: absolute;
    width: 100%;
    margin-top: 5px;
    box-shadow: 0px 2px 10px 2px gray;
    background-color: #fff;
    z-index: 2;
    padding-bottom: 5px;
}
.component.select_box .custom-select-list li + li{
    margin-top:5px;
}
.component.select_box .custom-select-list li:first-child{
    margin-top:7px;
}
.component.select_box .custom-select-option{
    padding:0px 5px 0px 5px;
    height:28px;
    border: 0px;
}
.component.select_box .custom-select-option .text-box{
    width: 100%;
    height:100%;
    padding: 5px;
    border-radius: 5px;
}
.component.select_box .custom-select-option.gray .text-box{
    background-color: rgba(246, 246, 246, 1);
    color: #FBFCFC;
}
.component.select_box .custom-select-option.gray:hover,
.component.select_box .custom-select-option.gray.on{
    background-color: rgba(246, 246, 246, 1);
}
.component.select_box .custom-select-option.blue .text-box{
    /*
    background-color: #bdd7ee;
    color: #23427b;
    */
    background-color:rgba(202, 238, 251, 0.5);
    color: #23427b;
}
.component.select_box .custom-select-option.blue:hover,
.component.select_box .custom-select-option.blue.on{
    background-color:rgba(202, 238, 251, 0.5);
    
}
.component.select_box .custom-select-option.green .text-box{
    /*background-color: #e2f0d9;*/
    background-color: rgba(53, 206, 160, 0.2);
    /*color:#79b251;*/
    color:#35CEA0;
}
.component.select_box .custom-select-option.green:hover,
.component.select_box .custom-select-option.green.on{
    /*background-color: #e2f0d9*/
    background-color: rgba(53, 206, 160, 0.2);
}
.component.select_box .custom-select-option.red .text-box{
    background-color: rgba(255, 65, 65, 0.2);
    color: #FF4141;
}
.component.select_box .custom-select-option.red:hover,
.component.select_box .custom-select-option.red.on{
    background-color: rgba(255, 65, 65, 0.2);
}
.component.select_box .custom-select-option.orange .text-box{
    background-color: #fbe5d6;
    color: #e9660d
}
.component.select_box .custom-select-option.orange:hover,
.component.select_box .custom-select-option.orange.on{
    background-color: #fbe5d6;
}
.component.select_box .custom-select-option.darkgray .text-box{
    background-color: #d9dadc;
    color: #000000;
}
.component.select_box .custom-select-option.darkgray:hover,
.component.select_box .custom-select-option.darkgray.on{
    background-color: #d9dadc
}






.wrap .top-info{
    margin-top:15px;
}
.wrap .date-box{
    display: flex;   
}
.wrap .data-list-box{
    padding: 10px;
}
.wrap .data-list-box .table-container .table-box{
    /*height:auto;
    overflow-y:visible;
    overflow-x:clip;*/
    max-height: calc(100% - 70px);
    height: auto;
    overflow-y: auto;
}
.wrap .data-box .tit-box h1{
    font-size:18px;
}
.wrap .data-box .info-list{
    display: flex;
    flex-direction: column;
    margin-top:20px;
}
.wrap .data-box .info-list h1{
    font-weight: 500;
    margin-bottom:10px;
}
.wrap .data-box .info-list .row{
    height: 40px;
    display: flex;
}
.wrap .data-box .info-list .row.big{
    height:80px;
}
.wrap .data-box .info-list .row + .row{
    margin-top: 5px;
}
.wrap .data-box .info-list .row .item{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    display: flex;
}
.wrap .data-box .info-list .row .item + .item{
    margin-left:5px;
}
.wrap .data-box .info-list .row .item .tit{
    width:100px;
    height:100%;
    font-size:13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #001E5E;
    border-start-start-radius: 7px;
    border-end-start-radius: 7px;
    /*padding:10px 5px;*/
    text-align: center;
}
.wrap .data-box .info-list .row .item .tit span{
    color:#fff
}
.wrap .data-box .info-list .row .item .tit.bgsky{
    background-color: #DCEAF7;
}
.wrap .data-box .info-list .row .item .tit.bgsky span{
    color:#000;
}
.wrap .data-box .info-list .row .item .tit.bggreen{
    background-color: #38CFA2;
}
.wrap .data-box .info-list .row .item .tit.bggray{
    background-color: #5D6069;
}
.wrap .data-box .info-list .row .item .tit.bgorange{
    background-color: #FFA15D;
}
.wrap .data-box .info-list .row .item .tit.bgsal{
    background-color: #fbe5d6;
}
.wrap .data-box .info-list .row .item .tit.bgsal span{
    color:#000;
}
.wrap .data-box .info-list .row .item .tit.full{
    flex:1;
    border-radius: 7px;
    font-size:14px;
}
.wrap .data-box .info-list .row .item .tit.small{
    width:65px;
}
.wrap .data-box .info-list .row .item .tit span.ess::after{
    content: "";
    display: inline-block;
    vertical-align: super;
    margin-left: 5px;
    margin-bottom: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fe4040;
}
.wrap .data-box .info-list .row .item .tit span.bold{
    font-size:17px;
    font-weight: bold;
}
.wrap .data-box .info-list .row .item .input-box{
    height:100%;
    display:flex;
    flex:1;
    border-start-end-radius: 7px;
    border-end-end-radius: 7px;
    border: 1px solid #D5D5D5;
    background-color: #fbfcfc;
}
.wrap .data-box .info-list .row .item .input-box{
    justify-content: center;
}
.wrap .data-box .info-list .row .item .input-box + .input-box{
    margin-left:5px;
}
.wrap .data-box .info-list .row .item .input-box.borfull{
    border-radius: 7px;
}
.wrap .data-box .info-list .row .item .input-box input{
    height:100%;
    border:none;
    font-size:13px;
    font-weight: 500;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
    border-start-end-radius: 7px;
    border-end-end-radius: 7px;
}
.wrap .data-box .info-list .row .item .input-box textarea{
    height:100%;
    border:none;
    font-size:13px;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
    border-start-end-radius: 7px;
    border-end-end-radius: 7px;
    resize: none;
    padding:10px;
}
.wrap .data-box .info-list .row .item .input-box label{
    border: 1px solid #BABABA;
    border-radius: 20px;
    padding: 5px 10px;
    height:30px;
    min-width: 85px;
    margin-top:5px;
    text-align: center;
}
.wrap .data-box .info-list .row .item .input-box label + label{
    margin-left: 20px;
}
.wrap .data-box .info-list .row .item .input-box input[type="checkbox"]{
    width:32px;
    height:28px;
    border-radius: 5px;
    border:1px solid #D5D5D5;
    margin-top:6px;
    margin-left:5px;
}
.wrap .data-box .info-list .row .item .input-box input[type="radio"]{
    width: 0px;
    border:none;
    margin: 0;
    background-color: transparent;
}
.wrap .data-box .info-list .row .item .input-box input[type="radio"]:active{
    background-color: transparent;
}
.wrap .data-box .info-list .row .item .input-box label:has(input[type="radio"]:checked){
    border: 1px solid #394E93;
    border-radius: 20px;
    padding: 5px 0px;
    background-color: rgba(189, 204, 247, 1);
    color: #394E93;
}

.wrap .data-box .info-list .row .item .input-box input[type="radio"]:checked{
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-top: -2px;
    background: url(/images/icon_mark_color.png) no-repeat center;
    background-size: 60% 60%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    --pico-primary-focus: none;
    --pico-background-color : transparent;
}

.wrap .data-box .info-list .row .item .input-box select{
    height: 100%;
    border: none;
    background-color: #fff;
    font-size: 13px;
    border-radius: 7px;
    background-color: transparent;
}
.wrap .data-box .info-list .row .item .input-box select.small{
    width: 150px;
}
.wrap .data-box .info-list .row .item .input-box select.red{
    color:red;
}
.wrap .data-box .info-list .row .item .input-box select.green{
    color:green;
}
.wrap .data-box .info-list .row .item .input-box.flex-center{
    display:flex;
    align-items: center;
}
.wrap .data-box .info-list .row .item .input-box.flex-center input{
    border-radius: 7px;
}
.wrap .data-box .info-list .row .item .input-box.flex-center span{
    color:#D5D5D5;
}
.wrap .data-box .info-list .row .item .input-box .txt-span{
    width:auto;
    height:100%;
    padding: 10px 15px;
    font-size:13px;
}
.wrap .data-box .info-list .row .item .input-box .txt{
    width: 100%;
    height:100%;
    padding-left:10px;
    padding-top:7px;
}
.wrap .data-box .info-list .row .item .input-box .txt span{
    font-size: 13px;
    padding: 2px;
    border-radius: 5px;
    display: block;
    width: 100%;
    height: 23px;
    text-align: center;
    font-weight: bold;
    font-family: 'AppleSDGothicNeo', 'GmarketSans'
}
.wrap .data-box .info-list .row .item .input-box .txt span.w50{
    width:50px;
}
.wrap .data-box .info-list .row .item .input-box .txt span.red{
    background-color: rgba(255, 65, 65, 0.2);
    color: #FF4141;
}
.wrap .data-box .info-list .row .item .input-box .txt span.green{
    color: #38CFA2;
    background-color: rgba(56,207,162,0.2);
}
.wrap .data-box .info-list .row .item .input-box .txt span.blue{
    background-color: rgba(202, 238, 251, 1);
    color: #375286;
}
.wrap .data-box .info-list .row .item .input-box button{
    font-size: 13px;
    padding: 4px;
    width:90px;
    height:30px;
    background-color: #fff;
    color:#001E5E;
    border-radius:20px;
    margin-left: 5px;
    margin-right:3px;
    margin-top:4px;
}
.wrap .data-box .info-list .row .item .input-box button:active{
    background-color: #001E5E;
    color:#fff;
}
.wrap .data-box .info-list .row .item .input-box button.green{
    color: #38CFA2;
    border-color: #38CFA2;
}
.wrap .data-box .info-list .row .item .input-box button.green:active{
    background-color: #38CFA2;
    color:#fff;
}
.wrap .data-box .info-list .row .item .item-btn-box{
    flex:1;
    display:flex;
    justify-content: end;
}
.wrap .data-box .info-list .row .item .item-btn-box .btn{
    width: auto;
    height:30px;
    padding:5px 15px;
    border:1px solid #001E5E;
    border-radius: 15px;
    text-align: center;
    color:#001E5E;
    font-size: 13px;
}
.wrap .data-box .info-list .row .imp-txt{
    color:red;
    font-size:13px;
    display: block;
    width: 100%;
    text-align: end;
}
.wrap .data-box .info-list .row .item .btn-box .btn:active{
    background-color: #DCEAF7;
}
.wrap .btn-box{
    display:flex;
    justify-content: center;
    padding-top:10px;
}
.wrap .btn-box button + button{
    margin-left:10px;
}
.wrap .data-box .info-list .sign-box{
    width:100%;
    display:flex;
    justify-content: end;
}
.wrap .data-box .info-list .sign-box .item{
    width:100px;   
}
.wrap .data-box .info-list .sign-box .item + .item{
    margin-left:10px;
}
.wrap .data-box .info-list .sign-box .item .tit{
    width:100%;
    height: 30px;
    font-size: 15px;
    padding: 5px 5px;
    background-color: #001E5E;
    color: #fff;
    text-align: center;
    border-start-start-radius: 5px;
    border-start-end-radius: 5px;
}
.wrap .data-box .info-list .sign-box .item .tit span{
    color: #fff;
    font-size: 14px;
}
.wrap .data-box .info-list .sign-box .item .sign{
    width: 100px;
    height: 70px;
    border: 1px solid #DCEAF7;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap .data-box .info-box{
    flex: 1;
    margin-top:10px;
    background-color: #F4F6F9;
    padding: 5px;
    padding-bottom: 10px;
    border-radius: 5px;
}
.wrap .data-box .info-box .item{
    height: 15px;
    text-align: end;
}
.wrap .data-box .info-box .item.img{
    text-align: start;
}
.wrap .data-box .info-box .item span{
    font-size:12px;
}
.wrap .data-box .info-box .item.img img{
    width: 45px;
    height: 35px;
}





.wrap .page{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: #fff;
    z-index: 100;
}
.wrap .page .data-list-box{
    height: calc(100% - 150px);
    background-color: #fff;
    /*padding-bottom: 160px;*//*하단 메뉴 있을경우*/
}
.wrap .page .data-list-box.auto{
    height:auto;
}
.wrap .page .data-list-box .txt-box {
    width:100%;
}
.wrap .page .data-list-box .txt-box ul li{
    box-shadow:none;
    border-radius: 0;
    font-size: 11px;
    margin-top:0px;
}
.wrap .page .data-list-box .txt-box ul li + li{
    margin-left:0px;
}
.wrap .page .data-list-box .txt-box ul{
    flex-direction: column;
}
.wrap .page .data-list-box .txt-box ul li{
    width:100%;
}
.wrap .page .data-list-box .txt-box .sp-text{
    width: 100%;
    display: flex;
    justify-content: end;
    font-size: 15px;
    font-weight: bold;
}
.wrap .page .btn-box{
    position: fixed;
    width:100%;
    height:70px;
    bottom:70px;
    display:flex;
    background-color: #fff;
    padding:0 10px;
    padding-top:10px;
}




.wrap .data-list-box .data-box .map-box .map-overlay .tit-box{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #001E5E;
    color:#fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size:13px;
    padding-top:4px;
}
.wrap .data-list-box .data-box .map-box .map-overlay.lcl .tit-box{
    background-color: #EDA900;
    color:#000;
}
.wrap .data-list-box .data-box .map-box .map-overlay{
    position: absolute;
    display:flex;
    left: -100px;
    bottom: -10px;
    width:200px;
    height:130px;
    flex-direction: column;
    align-items: center;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info{
    width:200px;
    height:60px;
    display:flex;
    background-color:#fff;
    box-shadow: 0px 0px 5px 0px gray;
    padding: 5px;
    border-radius: 5px;
    z-index:1;
}

.wrap .data-list-box .data-box .map-box .map-overlay.on .info{
    box-shadow: 0px 0px 5px 0px red;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info .img-box{
    width: 75px;
    height: 40px;
    /*margin-right: 10px;*/
    /* background: url(/images/pro_img.png) no-repeat center;
    background-size: 30px 30px;
    background-color:#D9D9D9;
    border-radius:5px;*/
}

.wrap .data-list-box .data-box .map-box .map-overlay .info .img-box.none{
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info .img-box.none img{
    width:40px;
    height:40px;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info .img-box i.icon{
    display:block;
    width:100%;
    height:100%;
}
.wrap .data-list-box .data-box .map-box .map-overlay.fcl .info .img-box i.icon{
    width: 75px;
    height: 40px;
    margin-top: 2px;
    margin-left:5px;
    /*background: url(/images/icon_fcl_truck.png) no-repeat center;*/
    background: url(/images/image_fcl_car.png) no-repeat center;
    background-size: 100% 100%;
}
.wrap .data-list-box .data-box .map-box .map-overlay.lcl .info .img-box i.icon{
    width: 70px;
    height: 45px;
    margin-top: -4px;
    margin-left: 8px;
    /*background: url(/images/icon_lcl_truck.png) no-repeat center;*/
    background: url(/images/image_lcl_car.png) no-repeat center;
    background-size: 100% 100%;
}
.map-overlay.driver .info .txt-list{
    margin-left:15px;
}

.wrap .data-list-box .data-box .map-box .map-overlay img{
    width: 50px;
    height: 50px;
    border-radius:5px;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info .txt-list{
    display:flex;
    flex-direction: column;
    justify-content: center;
    margin-left:10px;
    flex:1;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info .txt-list .txt-box{
    height:21px;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info .txt-list .txt-box span{
    font-size:13px;
    font-family: "GmarketSans", system-ui, arial, sans-serif;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info a.del{
    width:15px;
    height:15px;
    background: url(/images/close@3x.png) no-repeat center;
    background-size: 100% 100%;
    cursor:pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}
.wrap .data-list-box .data-box .map-box .map-overlay .info a.del.white{
    background: url(/images/icon_close_w.png) no-repeat center;
    background-size: 100% 100%;
}

.wrap .data-list-box .data-box .map-box .map-overlay .triangle{
    margin-top:-10px;
    width:30px;
    height:30px;
    background: url(/images/triangle_w.png) no-repeat center;
    background-size: 100% 100%;
}

.wrap .data-list-box .data-box .map-box .map-overlay.on .triangle{
    background: url(/images/triangle_red.png) no-repeat center;
    background-size: 100% 100%;
}

.wrap .data-list-box .data-box .map-box .map-overlay.driver{
    width: 120px;
    left: -60px;
    bottom: -18px;
    height: 100px;
    cursor: pointer; 
    margin-bottom: 50px;
}
.wrap .data-list-box .data-box .map-box .map-overlay.driver .info{
    width:120px;
}

.wrap .data-list-box .data-box .map-box .map-overlay .info.dep-arrive{
    height:73px;
}
.wrap .data-list-box .data-box .map-box .map-overlay .info.dep-arrive .tag{
    position:absolute;
    display:flex;
    justify-content: center;
    align-items: center;
    /*width:70px;*/
    width:100%;
    height:23px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    left:0px;
    top:0;
    font-size:13px;
    font-weight:bold;
    padding-top:4px;
}
.wrap .data-list-box .data-box .map-box .map-overlay .info.dep-arrive .tag.arrive{
    background:#C90000;
    color:#fff;
}
.wrap .data-list-box .data-box .map-box .map-overlay .info.dep-arrive .tag.dep{
    background:#000CB7;
    color:#fff;
}
.wrap .data-list-box .data-box .map-box .map-overlay .info.dep-arrive .txt-list{
    margin-top:20px;
}

.wrap .top-info .process-box .process-list-box{
    width:100%;
    height:100px;
    background-color: #fff;
    display:flex;
    justify-content: center;
    padding-top:0px;
}
.wrap .top-info .process-box .process-list-box ul{
    display:flex;
    width:100%;
    height: 80px;
    align-items: center;
    justify-content: center;
}
.wrap .top-info .process-box .process-list-box ul.step-list li.circle{
    width: 38px;
    height: 38px;
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
    position: relative;
    border:2px solid #001E5E;
    margin-top:0px;
}
.wrap .top-info .process-box .process-list-box ul.step-list li.circle.on{
    background: url(/images/icon_mark_w.png) no-repeat center;
    background-color: #38CFA2;
    background-size: 60% 60%;
}
.wrap .top-info .process-box .process-list-box ul.step-list li.line{
    /*width:10px;*/
    flex: 0.12;
    height:5px;
    margin-top:0px;
    background-color: #001E5E;
}
.wrap .top-info .process-box .process-list-box ul.step-list li.circle .cnt{
    font-size:12px;
    font-weight: bold;
}
.wrap .top-info .process-box .process-list-box ul.step-list li.circle .btom-txt{
    position: absolute;
    width: 80px;
    top: 44px;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
}