@charset "UTF-8";

/*------------------------------------
date: 2022.09
developed by: smartport
developer url: smartport
------------------------------------*/





/****************
***** reset *****
****************/


*{
    box-sizing: border-box;
}
html{
    height: 100%;
    font-size: 10px;
    line-height: 1;
    color:#222;
}
body{
    min-width: 320px;
    height: 100%;
    font-size: 1.2rem;
}
input, button, strong, textarea, select {
    font-size: 100%;
}
html,body,header,nav,section,article,aside,footer,
table,th,td,div,dl,dt,dd,ol,ul,li,a,button,input,img,
select,textarea,
fieldset,form,label,legend,
h1,h2,h3,h4,h5,h6,p,span,i,b,strong,em,sub,
figcaption,figure{
    margin: 0;
    padding: 0;
    font-family: 'Pretendard','dotum', 'verdana', sans-serif;
    font-style: normal;
    text-transform: none;
    vertical-align: baseline;
    background: transparent;
    border: 0;
    font-weight: 600;
}
section, article, aside, footer, header, nav, hgroup{
    display: block;
}
table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
strong{
    font-weight: 600;
}
audio,
canvas,
progress,
video{
    display: inline-block;
    vertical-align: baseline;
}
img{
    vertical-align: middle;
}
input,
label{
    vertical-align: middle;
}
input[type=submit],
input[type=reset],
input[type=button],
button{
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
input[type="text"],
input[type="password"]{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="text"]::-ms-clear{
    display: none;
}
/* input[type="password"]{
   font-family: sans-serif;
} */
input[type="password"]::-ms-reveal{
    display: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=search]::-webkit-inner-spin-button,
input[type=search]::-webkit-outer-spin-button{
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}
input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 30px #fff inset;
    -webkit-text-fill-color: #000;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    transition: background-color 5000s ease-in-out 0s;
}
i{
    margin: 0;
    padding: 0;
    display: inline-block;
    text-decoration: none;
    vertical-align: text-top;
}
a{
    display: inline-block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
a:visited,
a:focus,
a:hover,
input:focus,
button:focus,
textarea:focus,
select:focus{
    outline: none;
    text-decoration: none;
}
ol,
ul,
li{
    list-style: none;
}
hr{
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #eee;
}
.clear:after{
    content: "";
    display: block;
    clear: both;
}



/****************
***** common ****
****************/

/* text */
.ell{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: inherit;
}
.ell.line2{
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    word-wrap: break-word !important;
}
.ell.line5{
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    -webkit-box-orient: vertical !important;
    word-wrap: break-word !important;
}
.taL{
    text-align: left;
}
.taC{
    text-align: center !important;
}
.taR{
    text-align: right !important;
}
th.ell,
td.ell{
    display: table-cell;
}
.brk{
    word-break: break-all;
}


/* select */
.slctBoxJq {
    display: inline-block;
}
.slctBoxJq .ui-button{
    height: 26px;
    padding: 0 10px;
    line-height: 26px;
    vertical-align: middle;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    background: #fff;
}
.slctBoxJq .ui-button .ui-selectmenu-text{
    color: #999;
    line-height: 26px;
}
.slctBoxJq.data .ui-button .ui-selectmenu-text{
    color: #666;
    font-weight: 400;
}
.slctBoxJq .ui-button .ui-icon,
.slctBoxJq .ui-button:hover .ui-icon,
.slctBoxJq .ui-button:focus .ui-icon{
    width: 20px;
    height: 20px;
    /* margin-top: 2px; */
    background: url('../images/arr_down.png')no-repeat;
}
.slctBoxJq .ui-button.ui-selectmenu-button-open .ui-icon{
    background: url('../images/arr_up.png')no-repeat;
}

.slctBoxJq.inTbl .ui-button{/*테이블 안에 있을 경우 231031 기쁨 추가*/
/*     width:auto; */
    height: 22px;
    padding:0 2px 0 10px;
    line-height: 22px;
}
.slctBoxJq.inTbl .ui-button .ui-selectmenu-text{
    line-height: 22px;
}
.slctBoxJq.inTbl .ui-button .ui-icon,
.slctBoxJq.inTbl .ui-button:hover .ui-icon,
.slctBoxJq.inTbl .ui-button:focus .ui-icon{
	margin-top:0
	}
/* select - jqeury-ui */
.ui-selectmenu-open {
    z-index: 10001;
}
.ui-selectmenu-menu .ui-menu{
    /*!*position: absolute;*! 231219 셀렉트메뉴 위치어긋남 수정 지웅*/
    top: 5px;
    border:1px solid #cbcbcb;
    border-radius: 5px;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item-wrapper{
    padding: 0 10px;
    padding-right: 25px;
    color: #222;
    line-height: 26px;
}
.ui-selectmenu-menu .ui-menu .ui-state-focus,
.ui-selectmenu-menu .ui-menu .ui-state-active {
    margin: 0;
}
.ui-selectmenu-menu .ui-state-active, .ui-widget-content .ui-state-active {
    background: #F5F5F5;
    border: 0;
}




/* input & button */
input[type=text],
input[type=password],
input[type=file],
input[type=email],
input[type=number],
input[type=tel],
input[type=time],
input[type=date],
input[type=week],
input[type=month],
input[type=datetime-local],
input[type=search],
input[type=url],
input[type=color],
select,
input{
    height: 22px;
    padding: 0 10px;
    color: #222;
    line-height: 22px;
    vertical-align: middle;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    background: #fff;
}
::placeholder{
    color: #999;
    font-size: 0.9em;
    font-weight: 400;
}
::-webkit-input-placeholder{
    color: #999;
    font-size: 0.9em;
    font-weight: 400;
}
:-ms-input-placeholder{
    color: #999;
    font-size: 0.9em;
    font-weight: 400;
}
::-ms-input-placeholder{
    color: #999;
    font-size: 0.9em;
    font-weight: 400;
}
::selection{
    color: #2a2a2a;
    background: #DDE1E8;
}

input[readonly],
pre.rdonly{
    padding: 0 10px;/*231031 기쁨 수정*/
    border: 0;
}
input[readonly] {
	background:#f1f1f1;
	border: 1px solid #cbcbcb;
    border-radius: 5px;
}

input[type=file]{
    padding-left: 0;
    cursor: pointer;
}
input[type=color]{
    width: 35px;
    cursor: pointer;
}
input[type=submit],
input[type=reset],
input[type=button]{
    min-width: 100px;
    height: 20px;
    padding: 0 10px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    background: #607d8b;
    border-radius: 3px;
}

textarea{
    width: 100%;
    min-height: 30px;
    padding: 10px;
    overflow: auto;
    background: #fff;
    border: 1px solid #d5dae2;
    border-radius: 6px;
    resize: none;
}
pre{
    white-space:pre-line;
    line-height: 20px;
    color: #6a6a6a;
}

/* check/radio */
.chkBox,
.rdoBox {
    margin-right: 5px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.chkBox.txtN,
.rdoBox.txtN {
    width: 13px;
    height: 13px;
}
.chkBox label,
.rdoBox label{
    padding-left: 18px;
    font-weight: 400;
    line-height: 26px;
    vertical-align: middle;
    cursor: pointer;
}
.chkBox>input.ipt,
.rdoBox>input.ipt{
    width: 13px;
    height: 13px;
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
    background: none;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.chkBox:before,
.rdoBox:before{
    content: "";
    width: 13px;
    height: 13px;
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
    display: block;
}
.chkBox:before {
    background: url('../images/check.png')no-repeat center;
    background-size:cover;
}
.chkBox.on:before{
    background: url('../images/check_on.png')no-repeat center;
    background-size:cover;
}
.light .chkBox.on:before{
    background: url('../images/check_onL.png')no-repeat center;
    background-size:cover;
}
.rdoBox:before{
    background: url('../images/radio.png')no-repeat center;
    background-size:cover;
}
.rdoBox.on:before{
    background: url('../images/radio_on.png')no-repeat center;
    background-size:cover;
}
.light .rdoBox.on:before{
    background: url('../images/radio_onL.png')no-repeat center;
    background-size:cover;
}

input[type=checkbox],
input[type=radio]{
    accent-color: #1d70ff
}
.light input[type=checkbox],
.light input[type=radio]{
    accent-color:#029776;
}

table .chkBox:before {/*테이블 안에 체크박스*/
    top: calc(50% - 9px);
}

/* dateRgBox */
.daterangepicker {
    z-index: 10001;
}
.dateRgBox{
    display: inline-block;
    position: relative;
}
.dateRgBox .val{
    width: 100%;
    height: 22px;
    color: #999;
    font-size: 12px;
    cursor: pointer;
}
.dateRgBox.data .val{
    color: #666;
    font-weight: 500;
}
.dateRgBox .val.ico{
    width: 200px;
    padding-right: 26px;
    background: #fff url('../images/ico_date.png')no-repeat right 10px center;
}
.dateRgBox .val.ico.sm{
	width:110px
}
.dateRgBox.Sg .val{
    width: 160px;
}
.dateParent{
    position: relative;
}
.daterangepicker select {
    border: 0;
    box-shadow: none;
}
.daterangepicker .calendar-table th{
    color: #A7AFBB;
    font-weight: 500;
}
.daterangepicker .calendar-table th.month{
    color: #E60012;
}
.daterangepicker .calendar-table td {
    font-weight: 400;
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span{
    border-color: #E60012;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background: #E60012;
}
.daterangepicker .drp-buttons .btn {
    color: #757B85;
    font-weight: 500;
    background: #DDE1E8;
    border-radius: 30px;
    transition: ease 0.2s;
}
.daterangepicker .drp-buttons .btn:hover {
    color: #fff;
    background: #05101C;
}
.dateTwin {
    width: 100%;
}
.dateTwin .hpn {
    margin: 0 5px;
}


/* paging */
.paging {
    margin: 50px 0;
}
.paging ul {
    display: flex;
    justify-content: center;
}
.paging ul li {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.paging ul li:last-child {
    margin-right: 0;
}
.paging ul li a {
    width: 24px;
    height: 24px;
    display: block;
    color: #666;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
}
.paging ul li a:hover {
    color: #E60012;
}
.paging ul li.on a {
    color: #fff;
    font-weight: 700;
    background: #E60012;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}
.paging ul li.btnMv a {
    text-indent: -999em;
}
.paging ul li.btnMv.first a {
    background: url('../images/arr_pg_fst.png')no-repeat center;
    transition: ease 0.2s;
}
.paging ul li.btnMv.last a {
    background: url('../images/arr_pg_lst.png')no-repeat center;
    transition: ease 0.2s;
}
.paging ul li.btnMv.pre a {
    background: url('../images/arr_pg_prv.png')no-repeat center;
    transition: ease 0.2s;
}
.paging ul li.btnMv.next a {
    background: url('../images/arr_pg_nxt.png')no-repeat center;
    transition: ease 0.2s;
}
.paging ul li.btnMv.first a:hover {
    background: #D5DAE2 url('../images/arr_pg_fst.png')no-repeat center;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}
.paging ul li.btnMv.last a:hover {
    background: #D5DAE2 url('../images/arr_pg_lst.png')no-repeat center;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}
.paging ul li.btnMv.pre a:hover {
    background: #D5DAE2 url('../images/arr_pg_prv.png')no-repeat center;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}
.paging ul li.btnMv.next a:hover {
    background: #D5DAE2 url('../images/arr_pg_nxt.png')no-repeat center;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}


/****************
**** popup ****
****************/
.popCont {
    padding: 10px;
}
.popCont .popTit {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;
}


/* 밑에 부분 나중에 다 날리기 */
/* 새창팝업 */
body.popup {
    min-width: inherit;
}
.popWrap {
    width: 100%;
    height: 100%;
}
/* .popWrap .popTit {
    padding: 0 20px;
    height: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
    background: #05101C;
} */
.popWrap .popConWrap {
    width: 100%;
    height: auto;
    padding: 10px;
}
.popConWrap .subtit {
    margin-bottom: 10px;
}
.popWrap .btnWrap {
    margin: 0;
    margin-top: 40px;
}
.popWrap .btnWrap button {
    height: 40px;
}

/* 레이어팝업 */
.popDf .popBtn {
    color: #fff;
    background: #040947;
}
.popDf .popCont {
    width: auto;
    min-width: 400px;
    height: auto;
    min-height: 300px;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    z-index: 10;
}
/* .popCont .popTit {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 60px;
    background: #05101C;
} */
/* .popCont .content {
    padding: 20px 20px 30px 20px;
} */
.popDf .btnWrap {
    margin: 0;
    margin-top: 10px;
}
.popDf .popBtn.close {
    height: 20px;
    padding: 0 5px;
}
/* 여기까지 날리기 - 다른 부분 틀어질 수 있어서 일단 남김 */

/* .fixBG */
.fixBG{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: rgba(60,62,77,0.75);
    z-index: 10000;
}
.fixCont{
    z-index: 10001 !important;
}

/************
*** 로딩바 -다현 추가(임시사용)- ***
************/
.loadingBar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
}
.loadingBar .blind {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    opacity: 0.75;
    z-index: 1;
}
.loadingBar .bar {
    position: absolute;
    left: calc(50% - 31px);
    top: calc(50% - 11px);
    z-index: 2;
}
.loadingBar .bar i {
    width: 14px;
    height: 22px;
    margin-right: 10px;
    position: relative;
    background-color:  #1D70FF;
    border-radius: 16px;
    transition: 0.4s ease;
    animation-duration: 0.9s;
    animation-iteration-count: infinite;
    animation-name: loadingBar;
}
.loadingBar .bar i.scd {
    animation-delay: 0.1s;
    background-color: #1b2b45;
}
.loadingBar .bar i.trd {
    margin-right: 0;
    animation-delay: 0.15s;
    background-color: #c1b8af;
}
@keyframes loadingBar {
    35% {
        height: 22px;
        top: 0px;
    }
    70% {
        height: 14px;
        top: 22px;
    }
    100% {
        height: 22px;
        top: 0px;
    }
}

.taRight
{
    text-align: right;
}
.taCenter
{
    text-align: center;
}
.taLeft
{
    text-align: left;
}
.taColor
{
    color:red;
}


.hdHeight
{
    height: 50px !important;
    line-height: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}













/*운송장*/
header { 
	width: 360px;
	height: 44px;
	position: relative;
	margin: 0 auto;
	display: table;
	background: #EAEAEF;
}
header h1 {
	padding-left: 10px;
	display: table-cell;
	vertical-align: middle;
	font-size: 20px;
	font-weight: 500;
}
header .button_1 {
	padding: 6px;
	position: absolute;
	top: 7px;
	right: 70px;
	color: #fff;
	font-size: 12px;
	background: #1D70FF;
	border-radius: 5px;
}
header .button_2 {
	padding: 6px;
	position: absolute;
	top: 7px;
	right: 10px;
	color: #fff;
	font-size: 12px;
	background: #1D70FF;
	border-radius: 5px;
}
.wrap_1 {
	width: 340px;
	height: auto;
	margin: 0 auto;
	position: relative;
	padding-top: 15px;	
}
#PDA_SCAN {
	width: 340px;
	height: 44px;
	border: 1px solid #2E2E2E;
	border-radius: 25px;
	color: #070707;
}
.wrap_1 .text_1 {
	position: absolute;
	top: 18px;
	right: 45px;
	font-size: 12px;
}
.wrap_1 .text_2 {
	position: absolute;
	top: 18px;
	right: 15px;
	font-size: 12px;
}
.wrap_1 .schInputBtn {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 26px;
    left: 305px;
    background: url(../images/icon_input_search_b.png)no-repeat;
    background-size: 20px;
    cursor: pointer;
}
.wrap_2 {
	width: 340px;
	height: auto;
	margin: 0 auto;
	padding-top: 15px;	
}

:root {
	--hubnetPoint :#00BD93;
	--hubnetHover :#029776;
}
/*그리드 관련 css 파일이 따로 있어서 그 안에서 수정하고 불필요한 부분 삭제함
css/ui.jqgrid.css + vendor/jquery-ui-1.13.2/jquery-ui.min.css 파일임*/
.ui-jqgrid .ui-common-table, .ui-jqgrid .ui-jqgrid-htable th, .ui-jqgrid .ui-jqgrid-htable th div,
.ui-jqgrid .ui-jqgrid-htable td {
    font-size: 12px;
    line-height: 20px;
}