@charset "UTF-8";
body{
	background:#ffffff;
}

/*bootstrap primary color reset*/
.text-primary{
	color:#cb007e !important;
}
.bg-primary,.btn-primary{
	background:#cb007e !important;
	border-color: #cb007e !important;
	color:#fff;
}
.btn-primary:hover{
	background:#c6007b !important;
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active, 
.btn-outline-primary.dropdown-toggle.show, 
.btn-outline-primary:active {
	color: #fff;
	background-color: #cb007e;
	border-color: #cb007e;
}
.btn-outline-primary,
.btn-outline-primary:hover {
    color: #cb007e;
    background-color: #fff;
    border-color: #cb007e;
}
.row > [class*="col-"]{
	box-sizing:border-box;
}

/*bootstrap button*/
.btn{
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	font-weight:500;
}

/*bootstrap checkbox*/
.form-check{
	padding-left:0.5rem;
}
.form-check label{
	cursor:pointer;
}
.form-check-input{
	width:20px;
	height:20px;
	border-radius:2px;
}
.form-check-input[type=checkbox]{
	float:none;
}
.form-check-input:checked {
    background-color: #cb007e;
    border-color: #cb007e;
}
input[type='checkbox'] {
    -webkit-appearance: unset;
}

input[type="radio"], input[type="checkbox"] {
    vertical-align: middle !important;
    margin: -0.2em 3px 0 0 !important;
    background: none;
}
/*radio button*/
.radio-group{
	line-height:1.75rem;
}
input[type='radio']:after {
	width: 20px;
	height: 20px;
	border-radius: 20px;
	top: 8px;
	left: -1px;
	position: relative;
	background-color: #d1d3d1;
	content: '';
	display: inline-block;
	visibility: visible;
	cursor:pointer;
	border:0 !important;
}
input[type='radio']:before{
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	top: 3px;
	left: 14px;
	position: relative;
	background-color: #fff;
	visibility: visible;
	z-index:2;
	cursor:pointer;
}
input[type='radio']:checked:after {
	background-color: #DE149A;
}
input[type='radio'] + label.radio-label{
	cursor:pointer;
	color:#444;
	font-size:14px;
}

/* ballon (말풍선) */
.ballon {
	background-color: #FFFFFF;
	border: #D0D0D0 solid 1px;
	border-radius: 8px;
	color: #D648A0;
	font-size: 14px;
	font-weight: 500;
	height: auto;
	letter-spacing: -0.25px;
	padding: 5px 11px;
	position: relative;
	width: fit-content;
	z-index: 100;
}

.ballon::after {
	border-color: #FFFFFF transparent;
	border-style: solid;
	border-width: 8px 6px 0 6.5px;
	content: '';
	display: block;
	left: 49%;
	position: absolute;
	top: 100%;
	width: 0;
	z-index: 1;
}

.ballon::before {
	border-color: #D0D0D0 transparent;
	border-style: solid;
	border-width: 8px 6px 0 6.5px;
	content: '';
	display: block;
	left: 49%;
	position: absolute;
	top: calc(100% + 1px);
	width: 0;
	z-index: 0;
}

/*Header*/
#mainHeader{
	position:fixed;
	top:0;
	left:0;
	width:250px;
	height:59px;
	display:flex;
	justify-content:space-between;
	align-items:center;
    background:#fff;
	border-bottom:1px solid #eaeaea;
	padding:10px 16px 10px 45px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
    box-sizing:border-box;
	z-index:14;
	box-shadow: 0 1px 0 0 #f30a99;
}
#mainHeader h1{
	margin-left: 10px;
    margin-right: auto;
    cursor:pointer;
}
#mainHeader .btn-menu {
	position: relative;
    border: 0;
	width:40px; 
	height:40px; 
    background: none;
	text-align:center; 
	text-indent:-9999em; 
	z-index:92; 
	transition: all 0.5s ease-in-out;
}
#mainHeader .btn-menu span {
	position:absolute; 
	left: 10px;
    top: 20px;
	height:2px; 
	width:20px;
	background:#b5b5b5;
}
#mainHeader .btn-menu span:before,
#mainHeader .btn-menu span:after {
	content:" "; 
	position:absolute; 
	right:0; 
	width:20px; 
	height:2px; 
	background:#b5b5b5; 
	transition-duration:0.3s, 0.3s; 
	transition-delay:0.3s, 0s;
}
#mainHeader .btn-menu span:before {
	top:-8px; 
	transition-property:top, transform;
}
#mainHeader .btn-menu span:after {
	bottom:-8px; 
	transition-property:bottom, transform;
}
#mainHeader ~ .mobile-navigation{
    left: 0;
    right: auto;
    top: 70px;
    width: 250px;
    height:auto;
    border-radius: 8px;
    z-index: 999999999;
    transform: translate(-100%);
    padding:20px 10px;
}
html.menu-opened #mainHeader ~ .mobile-navigation.on{
    transform: translate(0);
    left:15px;
}




#mainHeader ~ .mobile-navigation .submenu{
	display:none;
}
#subHeader_menuDiv{
	max-height: calc(100vh - 125px);
}
#mainHeader ~ .mobile-navigation nav > ul > li{
	border-bottom:1px solid rgba(0,0,0,.1);
	margin-bottom:10px;
}
#mainHeader ~ .mobile-navigation nav > ul > li:hover,
#mainHeader ~ .mobile-navigation nav > ul > li.active{
	border-color:transparent;
}
#mainHeader ~ .mobile-navigation nav > ul > li.active .submenu{
	border-top:1px solid rgba(0,0,0,.1);
}

#mainHeader ~ .mobile-navigation nav > ul > li > a{
	font-size:16px;
	font-weight:normal;
	height:50px;
	border-radius: 4px;
	display:flex;
	align-items:center;
	padding:0 10px;
	text-decoration:none;
	color:#444;
}
#mainHeader ~ .mobile-navigation nav > ul > li > a:before{
	content:'';
	display:block;
	margin-right:10px;
	width:24px;
	height:24px;
}
#mainHeader ~ .mobile-navigation nav > ul > li.gnb-00 > a:before{
	background:url(/img/icon_gnb_01_off.svg) no-repeat center;
}
#mainHeader ~ .mobile-navigation nav > ul > li.gnb-01 > a:before{
	background:url(/img/icon_gnb_02_off.svg) no-repeat center;
}
#mainHeader ~ .mobile-navigation nav > ul > li.gnb-02 > a:before{
	background:url(/img/icon_gnb_03_off.svg) no-repeat center;
}
#mainHeader ~ .mobile-navigation nav > ul > li.gnb-03 > a:before{
	background:url(/img/icon_gnb_04_off.svg) no-repeat center;
}
#mainHeader ~ .mobile-navigation nav > ul > li.gnb-04 > a:before{
	background:url(/img/icon_gnb_05_off.svg) no-repeat center;
}
#mainHeader ~ .mobile-navigation nav > ul > li.gnb-05 > a:before{
	background:url(/img/icon_gnb_06_off.svg) no-repeat center;
}
#mainHeader ~ .mobile-navigation nav > ul > li.gnb-06 > a:before{
	background:url(/img/icon_gnb_06_off.svg) no-repeat center;
}
#mainHeader ~ .mobile-navigation nav > ul > li> a:hover:before{
filter: invert(12%) sepia(84%) saturate(7186%) hue-rotate(315deg) brightness(83%) contrast(102%);
}
#mainHeader ~ .mobile-navigation nav > ul > li > a:hover{
	color:#cb007e !important;
	background:rgba(203,0,126,0.08);
}
#mainHeader ~ .mobile-navigation nav > ul > li .submenu {
	padding:10px 0;
	background:none;
}
#mainHeader ~ .mobile-navigation nav > ul > li .submenu a{
	display:block;
	font-size:16px;
	border-radius: 8px;
	color:#6b6b6b;
	height: 50px;
    line-height: 50px;
    padding: 0 10px;
    cursor:pointer;
    text-decoration:none;
}
#mainHeader ~ .mobile-navigation nav > ul > li .submenu a:hover{
	background:#f1f1f1;
}
#mainHeader ~ .mobile-navigation nav.nav-menu .submenu>ul>li>a:after{
	display:none;
}
#mainHeader ~ .mobile-navigation .nav-menu>ul>li>a:after{
	border-color:#979797;
	width:7px;
	height:7px;
	border-width:1px;
}
#mainHeader .btn-m-menu.btn-menu{
	display:block;
	top:8px;
	margin:0;
	right:auto;
	left:0;
	position:fixed;
	z-index:99999
}
html.menu-opened #mainHeader ~ .mobile-overlay{
	top:59px;
	z-index:13;
}

#mainHeader ~ .btn-language{
	position:fixed;
	top:10px;
	right:10px;
	width:40px;
	height:40px;
	border-radius:50%;
	background:#f1f1f1;
	border:0;
	z-index:15
}
#mainHeader ~ .btn-profile{
	position:fixed;
	top:10px;
	right:60px;
	width:auto;
	display:flex;
	align-items:center;
	height:40px;
	border-radius:20px;
	background:#f1f1f1;
	border:0;
	z-index:15;
	padding:0 30px 0 5px;
	
}
#mainHeader ~ .btn-profile span{
	font-size:16px;
	color:#444;
}
#mainHeader ~ .btn-profile:before{
	content:"";
	background:url(/img/btn-profile.svg) no-repeat center;
	width:28px;
	height:28px;
	display: inline-block;
    vertical-align: middle;
    margin-right:5px;
}
#mainHeader ~ .btn-profile:after{
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-75%) rotate(45deg);
    border-right: 1px solid #979797;
    border-bottom: 1px solid #979797;
}


.menu-profile,
.menu-language{
/* 	display:none; */
	position:fixed;
	top:0;
	right:10px;
	z-index:14;
	transform: translateY(-100%);
	transition:.3s
}

.menu-profile.on,
.menu-language.on{
	top:50px;
	display:block;
	transform: translate(0);
}

.menu-profile,
.menu-language{
	width:240px;
}
.menu-profile .k-card-body,
.menu-language .k-card-body{
	padding:5px;
}
.btn-40{
	width:100%;
	height:40px;
	line-height:40px;
	border-radius:20px;
	background:#f9f9f9;
	color:#979797;
	font-size:16px;
	text-align:center;
	outline:0;
	box-shadow:none;
	border:0;
}
.list-item li a{
	display:block;
	height:40px;
	line-height:40px;
	padding:0 10px;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor:pointer;
    text-decoration:none;
}
.list-item li a:hover,
.list-item li a.active{
    background: rgba(203,0,126,0.08);
    color:rgba(203,0,126,1) !important;
    transition: .15s;
    -webkit-transition: .15s;
    -moz-transition: .15s;
}
.wrap{
    padding-top:80px;
    min-height: 100%;	
}
/*로그인 page*/
.login-wrap{
	padding-top:60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loginWrap h2{
	text-align:center;
}
#loginWrap h2 a{
	display:block;
}
#loginWrap .form-wrap{
	width: 480px;
	min-height: 560px;
	margin: 40px auto 0;
	padding: 40px 40px 60px;
	border-radius: 12px;
	border: solid 1px #dfdfdf;
	background-color: #fff;
}
#loginWrap .form-wrap h3{
	margin-bottom:20px;
	font-size: 30px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	color: #272727;
}
#loginWrap .login-user-type{
	border:0;
	display:flex;
	margin-bottom:36px;
}
#loginWrap .login-user-type > div{
	flex:1;
	text-align:center;
}
#loginWrap .login-user-type .btn-check:checked+.btn{
    color: #cb007e;
    background-color: transparent;
    border-color: #cb007e;
    border-width:0 0 2px 0;
}
#loginWrap .login-user-type .btn{
    width:100%;
	height:20px;
	line-height:1;
	padding:20px 1rem 38px;
	border-radius:0;
	flex:1;
	box-shadow:none !important;
    border-width:0 0 2px 0 !important;
	font-size:14px;
	font-weight:500;
	color:#979797;
    border-color:#efefef;
    white-space: nowrap;
}
#loginWrap .login-user-type .btn:hover {
    color: #cb007e;
    background-color: transparent;
}

.show-label{
	position:relative;
	/*margin-bottom:*/
}
.show-label input,
.show-label input:focus{
	width: 100%;
	height: 56px;
	border-radius: 8px;
	border:0 !important;
	background-color: #f3f3f3 !important;
	padding:16px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
    box-sizing:border-box;
    outline:0;
    box-shadow:none !important;
	font-size:15px;
    text-indent: 0;
    -webkit-animation-name: autoFillEnd;
    animation-name: autoFillEnd; 
}
.show-label label{
	position:absolute;
	display:block !important;
	align-items:center;
	margin-bottom:0;
    width: 100%;
	font-size:12px;
	color:#979797;
	transition:opacity .2s;
	margin-top:3px;
	line-height: 1.75em;
	height:0;
	opacity:0;	
}
.show-label input:valid ~ label{
	top: 7px;
    left: 16px;
	height:17px;
	opacity:100%;
}
.show-label input:valid{
	padding:26px 16px 6px
}
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip, 
.is-invalid ~ .invalid-feedback, 
.is-invalid ~ .invalid-tooltip{
    padding-left: calc(1.75em);
    background-image: url(/img/icon-invalid.svg);
    background-repeat: no-repeat;
    background-position: left 0.375em center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.invalid-feedback {
   color: #fa244a;
}
#loginWrap .form-wrap > .d-flex{
	color:#d8d8d8;
}
#loginWrap .form-wrap > .d-flex a{
	color:#444;
	font-weight:500;
	cursor:pointer;
}
#loginWrap .form-check {
	padding-left:0;
	color:#444;
	font-weight:500;
}
#loginWrap .a-btn-more{
	color:#444;
}
#loginWrap .a-btn-more.active{
	color:#cb007e;
}
.a-btn-more:after{
	content:"";
	display:inline-block;
	margin-left:5px;
	background:url(/img/btn-arrow-16px.svg) no-repeat center;
	width:16px;
	height:16px;
	vertical-align:middle;
}
.btn-submit{
	width: 100%;
	height: 60px;
	line-height:60px;
	text-align:center;
	margin: 36px 0 24px;
	border-radius: 8px;
	border:0;
	color:#fff;
	font-size: 20px;
	font-weight: bold;
	background:#b5b5b5;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	box-sizing: border-box;
    padding: 0;
}
.btn-submit:hover{
	color:#fff;
}
.btn-submit.active{
	background:#cb007e;
	color:#fff !important;	
}
.btn-cancel-submit{
	width: 100%;
	height: 60px;
	line-height:60px;
	text-align:center;
	margin: 36px 0 24px;
	border-radius: 8px;
	border: solid 1px #dfdfdf;
	color: #6b6b6b;
	font-size: 20px;
	font-weight: bold;
	background:#fff;
	t-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
    box-sizing:border-box;
}
[id*="_saveButton"].comm_btn_save{
	width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 36px 0 24px;
    border-radius: 8px;
    border: 0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background: #b5b5b5;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    box-sizing: border-box;
    padding: 0;
    background: #cb007e;
    color: #fff !important;
}
/*회원정보변경 팝업*/
#userInfoPopup_entryForm .show-label input,
#userInfoPopup_entryForm .show-label input:focus{
	background: #f3f3f3 !important;	
}

/*로그인 팝업 Alert*/
.loginAlert{
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius:12px;	
}
.loginAlert .k-dialog-content{
	padding:16px 40px;
}
.loginAlert b.fs-4{
	color:#272727;
}
/*로그인 팝업 dialog*/
.loginDialog,
.nomadDialog{
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius:12px;	
}
.loginDialog .k-dialog-titlebar,
.nomadDialog .k-dialog-titlebar,
.nomadDialog .k-window-titlebar{
	background:transparent;
	padding:40px 40px 20px;
	border-bottom:0;
}
.loginDialog .k-dialog-content,
.nomadDialog .k-dialog-content,
.nomadDialog .k-window-content{
	padding:16px 40px;
}
.loginDialog .k-dialog-titlebar .k-window-title,
.nomadDialog .k-dialog-titlebar .k-window-title,
.nomadDialog .k-window-titlebar .k-window-title{
	font-size:30px;
	color:#272727;
	font-weight:bold;
}
.loginDialog  .k-dialog-titlebar .k-button-overlay,
.loginDialog  .k-dialog-titlebar .k-button:before,
.nomadDialog  .k-dialog-titlebar .k-button-overlay,
.nomadDialog  .k-dialog-titlebar .k-button:before,
.nomadDialog  .k-window-titlebar .k-button-overlay,
.nomadDialog  .k-window-titlebar .k-button:before{
	background:none !important;
}
.loginDialog  .k-dialog-titlebar .k-button:after,
.nomadDialog  .k-dialog-titlebar .k-button:after,
.nomadDialog  .k-window-titlebar .k-button:after{
	box-shadow:none !important
}
.loginDialog  .k-dialog-titlebar .k-window-action,
.loginDialog  .k-dialog-titlebar .k-window-action:hover,
.nomadDialog  .k-dialog-titlebar .k-window-action,
.nomadDialog  .k-dialog-titlebar .k-window-action:hover,
.nomadDialog  .k-window-titlebar .k-window-action,
.nomadDialog  .k-window-titlebar .k-window-action:hover{
	color:#6b6b6b;
	background:transparent !important;
	background-image:none;
}
.loginDialog  .k-dialog-titlebar .k-window-action .k-i-close,
.nomadDialog  .k-dialog-titlebar .k-window-action .k-i-close,
.nomadDialog  .k-window-titlebar .k-window-action .k-i-close{
    width: 24px;
    height: 24px;
}
.loginDialog  .k-dialog-titlebar .k-window-action .k-i-close::before,
.nomadDialog  .k-dialog-titlebar .k-window-action .k-i-close::before,
.nomadDialog  .k-window-titlebar .k-window-action .k-i-close::before {
    content: url("/img/btn-close-24px.svg");
    width: 24px;
    height: 24px;
}



#sendVerificationCode a.fs-6{
	color:#6b6b6b;
	font-weight:500;
}

/*Tab Menu*/
.k-tabstrip-items .k-tab-on-top {
    z-index: 0;
}
.ui-widget.ui-widget-content.tab-menu{
	box-shadow:none;
	background:transparent;
	border-radius:0;
}
.ui-widget.ui-widget-content.tab-menu .ui-tabs-nav{
	display:flex;
	margin-bottom:36px;
}
.ui-widget.ui-widget-content.tab-menu .ui-tabs-nav .ui-tabs-tab{
	height:20px;
	line-height:1;
	padding:10px 0 8px;
	border-radius:0;
	flex:1;
	box-shadow:none !important;
    border-width:0 0 2px 0 !important;
	font-size:14px;
	font-weight:500;
	color:#979797;
    border-color:#efefef;
    border-style: solid;
    justify-content:center;
    text-align:Center;
}
.ui-widget.ui-widget-content.tab-menu .ui-tabs-nav .ui-tabs-tab a:hover{
	color: #cb007e;	
}
.ui-widget.ui-widget-content.tab-menu .ui-tabs-nav .ui-state-active{
	color: #cb007e;
    background-color: transparent;
    border-color: #cb007e;
    border-width: 0 0 2px 0;
}

/*회원가입*/
.wrap.join-wrap{
	max-width:1128px;
	margin:0 auto;
}
#joinWrap {
	padding:0 10px;
	box-sizing:border-box;
}
#joinWrap h2{
	font-size:32px;
	text-align:center;
	color:#272727;
	margin-bottom:40px;
}
#joinWrap h2 span{
	display:block;
	font-size:16px;
	color:#979797;
	margin-top:8px;
}
.join-wrap .card{
	padding:20px;
	box-sizing:border-box;
	border-radius:8px;
}
.join-wrap .card-header {
	background:transparent;
	display:flex;
	width:100%;
    padding-bottom: 20px;
	justify-content:space-between;
	align-items:center;
	place-content: center;
}
.join-wrap .card-body {
	padding-top: 30px;
}
.join-wrap .collapse:not(.show){
	display:block;
}
.join-wrap .card-header h3{
	font-size:16px;
	font-weight:bold;
	color:#272727;
	height: 40px;
    line-height: 40px;
}
.join-wrap .card-header .btn-card-collapse{
	display:none;
}

.join-label{
	color:#979797;
	font-size: 14px;
    font-weight: 500;
}
.form-control{
 	height:56px;
 	padding: 0.375rem 0.75rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    border: 1px solid #f3f3f3;
    border-radius: 8px;
 	background: #f3f3f3 !important;
 	color:#272727;
 	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-shadow:none !important;
	overflow:hidden;
	transition:none;
}
.form-control:focus,.form-control:active{
	background: #f3f3f3 !important;
	border: 1px solid #f3f3f3;
}
.join-wrap .form-group{
	margin-bottom:36px;
}
.form-group .btn{
    display: flex;
    align-items: center;
    font-size:16px;
    font-weight:500;
    cursor:pointer;
}
.join-wrap .a-btn-more,
.join-wrap .a-btn-more:hover{
	font-size:14px;
	color:#979797;
}
.join-wrap .btn-join{
	height: 60px;
    line-height: 60px;
    border: 0;
    padding: 0;
    width: 100%;
    max-width: 400px;
    font-size:20px;
    font-weight:bold;
  	background:#b5b5b5;
  	color:#fff;
}
.join-wrap .btn-join.activ{
	background:#cb007e !important
}
.join-wrap .dropdown-menu{
	width:240px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding:8px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form-control.dropdown-toggle{
	position:relative;
}
.form-control.dropdown-toggle{
	background: #f3f3f3 url(/img/btn-arrow-16px.svg) no-repeat right 10px center !important;
}
.dropdown-menu .list-item-sub{
	width:100%;
	text-decoration:none;
	cursor:pointer;
}
.dropdown-menu .list-item-sub li{
	padding:2px 0;
}
.dropdown-menu .list-item-sub li span{
	display:block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius:4px;
	font-size:15px;
	color:#444;
	padding:6px;
}
.dropdown-menu .list-item-sub li span:hover{
	background:rgba(203,0,126,0.08);
	transition:.15s;
	-webkit-transition:.15s;
	-moz-transition:.15s;	
	color:#cb007e;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-weight:500;
}
.dropdown-menu .list-item-title,
.dropdown-menu .list-item-sub + .btn-submit{
	display:none;
}





/*대시보드*/
#bodyContents{
	padding:0;
/* 	background:rgba(203,0,126,.08); */
	background:#ffffff;
}
.k-tabstrip > .k-content{
	background:none;
	border:0;
	box-shadow:none;
	outline: 0 !important;
}
/* .k-tabstrip > .k-content.k-state-active{
	background:#fafafa;
	border:0;
	box-shadow:none;
	outline: 0 !important;
} */
.k-tabstrip > .k-content #home-wrap{
	background:transparent
}
.k-tabstrip > .k-content.dashboard{
	background:transparent;
	overflow-x:hidden;
} 
/*스크롤바 스타일*/
.k-tabstrip > .k-content::-webkit-scrollbar,
::-webkit-scrollbar {
  width:5px; /*6px*/
  height:5px;
}
.k-tabstrip > .k-content::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,.1);
}
.k-tabstrip > .k-content::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: rgba(0,0,0,.14);
  transition:.3s;
}
.k-tabstrip > .k-content:hover::-webkit-scrollbar-thumb{
  background-color: rgba(0,0,0,.14);	
}

::-webkit-scrollbar {
/*   width: 0;
  height:0; */
}
::-webkit-scrollbar-track{
	  background-color:  rgba(0,0,0,.05);
}
*:hover::-webkit-scrollbar-track {
  background-color:  rgba(0,0,0,.15);
}

::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color:  rgba(0,0,0,.05);
  transition:.3s;
}

*:hover::-webkit-scrollbar-thumb{
  background-color: rgba(0,0,0,.15);	
}

#mainTabStrip{
	position:relative;
	z-index:11;	
	height:100vh;
}
#mainTabStrip > .k-tabstrip-items{
	margin-left:250px;
	padding-top: 26px;
    background: #fff;
    box-shadow: 0 1px 0 0 #f30a99;
	z-index:1;
}
#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-item{
	width:240px;
	border:1px solid #eaeaea;
	margin-right:10px;
	border-width:1px 1px 0 1px;
	color:#6b6b6b;
}
#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-link{
	justify-content: space-between;
	padding:6px 6px 6px 12px
}
#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-link b{
	font-weight:400 !important;
}
.k-i-close::before {
    content: url(/img/btn-close-14-px.svg);
}
#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-link .k-i-close{
	color:#979797;
}
#mainTabStrip.k-tabstrip>.k-content{
	height: calc(100vh - 60px);
    overflow: auto;
    margin:0;
    background:none;
    padding:0;
}
#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-item.k-state-active{
	border-color:#f30a99;
	color:#f30a99;
	box-shadow: 0 1px 0 0 #fff;
}
#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-item.k-state-active-loginHome{
	border-color:#f30a99;
	color:#f30a99;
	background-color: #fafafa;
}
#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-item {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-bottom: -1px;
}

#home-wrap > .k-tabstrip-items{
    text-align: center;
    justify-content: center;
    z-index:10;
    margin:30px auto 30px
}

/* Landscape phone */
@media (max-width: 640px) {
	body{
		background:#fff;
	}
	.login-wrap{
	display:block;
	}
	#loginWrap h2{
	display:none;
	}
	#loginWrap .form-wrap{
	border:0;
	}
	#loginWrap .form-wrap{
	margin-top:0;
	width:100%;
	height:auto;
	}
	#mainHeader .btn-menu{
	position: absolute;
    right: 16px;
    }
    #mainHeader .btn-language{
    display:none;
    }
    #loginWrap h2,
    #joinWrap h2{
    font-size:28px;
    }
    .join-wrap .card{
    border-width:1px 0 0 0;
    -webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius:0px;
    padding:0;
    }
    .join-wrap .card-header{
    padding-top:1rem;
    border-bottom:1px solid #979797;
    }
    .join-wrap .card-body{
    padding: 1rem 0.5rem;
	}
	.loginAlert b.fs-4{
	font-size:18px !important;
	}
	.loginDialog{
	left:0 !important;
	top:0 !important;
	max-width:100% !important;
	height:100% !important;
	border-radius:0;
	}
	.loginDialog .k-dialog-titlebar .k-window-actions{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	border-bottom:1px solid	#eaeaea;
	}
	.loginDialog .k-dialog-titlebar .k-window-action {
	height: 56px;
    width: 56px;
    padding: 0;
    }
	.loginDialog .k-dialog-titlebar .k-window-action .k-i-close:before{
	content: url(/img/btn-arrow-left-24px.svg);
	}
	.loginDialog .k-dialog-title{
	justify-content:center;
	padding:97px 0 40px;
	font-size:30px;
	}
	.show-label input, .show-label input:focus{
	height:50px;
	}
	.show-label input:valid ~ label {
    top: 5px;
	}
	.show-label input:valid {
	padding-top:23px;
	}
	.btn-submit,.btn-cancel-submit{
	font-size:20px;
	}
	.join-wrap .collapse:not(.show){
		display:none;
	}
	.join-wrap .card-header .btn-card-collapse{
	display:block;	
	}
	.btn-card-collapse{
	background:url(/img/btn-dropdown-up.svg) no-repeat center;
	width:20px;
	height:20px;
	border:none;
	outline:0;
	transition:.3s;
	}
	.btn-card-collapse.collapsed{
	transform:rotate(180deg)
	}
	.join-wrap .dropdown-menu.show{
    position: fixed !important;
    border: 0;
    width: 100%;
    height:100%;
    top: auto;
    bottom: 0 !important;
	left: 0 !important;
    transform: none !important;
    border: 0;
    padding:0;
    display: flex;
    flex-direction: column;
    justify-content: end;
	background:rgba(0,0,0,.5)
	}
	.join-wrap .dropdown-menu.show > div{
    padding:16px;
	background:#fff;
	border-radius:12px 12px 0 0;
	}
	.dropdown-menu .list-item-title{
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:100%;
	font-size:18px;
	font-weight:bold;
	color:#272727;
	padding:15px 0;
	border-bottom:1px solid #efefef;
	}
	.dropdown-menu .list-item-title button{
	width:20px;
	height:20px;
	background:url(/img/btn-close-24px.svg) no-repeat center;
	border: none;
    background-size: 20px;
	}
	.dropdown-menu .list-item-sub +.btn-submit{
	display:block;
	}
	.dropdown-menu .list-item-sub{
	background:#fff;
	}
	.dropdown-menu .list-item-sub li span{
	padding:12px 6px;
	}
}

.inner-tab.k-tabstrip-top > .k-tabstrip-items{
	height: 52px;
	padding: 5px;
	border-radius: 26px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
	background-color:#fff;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
.inner-tab.k-tabstrip-top > .k-tabstrip-items > .k-item{
	color:#aaa;
	cursor:pointer;
	border-radius:30px;
	height: 42px;
	padding: 0 20px;
	border-radius: 21px;
	font-size:19px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
    box-sizing:border-box;
	border:0
}
.inner-tab.k-tabstrip-top > .k-tabstrip-items > .k-item.k-state-active{
 	background-image: linear-gradient(to left,rgb(231,0,181) 0%,  rgb(186,61,249) 100%);
	color:#fff !important; 
}
.dashboard .container{
	max-width:1800px;
	gap:24px;
	padding-bottom:0.5rem;
	flex-wrap:wrap;
}
.dashboard .block-1{
	width:480px;
	margin-right:24px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}
.dashboard .block-1.k-card .k-card-body{
	padding:33px 34px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
    box-sizing:border-box;
}
.dashboard .form-control{
	height:52px;
}
.input-wrap.form-control {
    padding: 0;
}
.input-wrap.form-control > *{
	border-right:1px solid #eee;
	border-radius:0;
}
.input-wrap.form-control > *:last-child{
	border-right:0;
}
.dashboard .block-2{
	flex:1;
	overflow:hidden;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}
.dashboard .block-2 .block-2-1{
  height:338px;
  width:100%;
  margin-bottom:24px;
  border-radius: 12px;
  background-color:#5e55bf;
  background-image: linear-gradient(to bottom, #9d98f1, #5e55bf);
}
.dashboard .block-2 .block-2-2{
	width:54%;
	height:390px;
	margin-right:24px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}
.dashboard .block-2 .block-2-2 .card-body{
	overflow:hidden;
}
.dashboard .block-2 .block-2-3{
	width:46%;
	height:390px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}
.dashboard .block-1 h2{
	font-size:28px;
	color:#272727;
	margin-bottom:32px;
}
.nomad-tab.k-tabstrip-top > .k-tabstrip-items > .k-item{
	border:0;
	flex:1;
}
.nomad-tab.k-tabstrip-top > .k-tabstrip-items > .k-item > .k-link{
	justify-content:center;
	color:#979797;
	font-weight:500;
	font-size:16px;
}
.nomad-tab.k-tabstrip-top > .k-tabstrip-items > .k-item.k-state-active > .k-link{
	color:#cb007e;
	border-bottom:2px solid #cb007e;
	padding:6px 12px 4px;
}
.nomad-tab-body{
	padding:18px 0 0;
}
.select-location{
	align-items:center;
}
.select-location > div{
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background:#f3f3f3;
	display:flex;
	justify-content:center;
	align-items:center;
	flex:1;
	height:90px;
	cursor:pointer;
}
.select-location > button{
	width:36px;
	height:36px;
	border:1px solid #eaeaea;
	border-radius:50%;
	text-align:center;
	background:url(/img/btn-swap.svg) no-repeat center;
	margin:auto 12px;
}
.select-location > div .loc-code,
.select-location > div .loc-city{
	display:block;
	text-align:center;
}


.select-location > div .loc-code{
	color:#272727;
	font-size:22px;
	font-weight:bold;
}
.select-location > div .loc-city{
	color:#272727;
	font-size:16px;
	font-weight:bold;
}

.nomad-datepicker.form-control > span,
.nomad-comboBox.form-control > span,
.nomad-dropdownList.form-control > span,
.nomad-dateRagePicker.form-control > span{
	border-radius:0;
	border:0;
}
.nomad-datepicker.form-control.k-datepicker .k-picker-wrap{
	background:transparent;
}

.nomad-datepicker.form-control .k-input,
.nomad-comboBox.form-control .k-input,
.nomad-dropdownList.form-control .k-input,
.nomad-dateRagePicker.form-control .k-input,
.k-maskedtextbox.form-control .k-textbox{
	height:100%;
	font-size:16px;
	color:#272727;
}
.k-maskedtextbox.form-control .k-textbox{
	border: 0;
    background: none !important;
}

.nomad-comboBox .k-select,
.form-control .k-select,
.nomad-dropdownList .k-select 
.nomad-dateRagePicker.form-control .k-select {
	border-radius:0 8px 8px 0;
	background:transparent !important;
}
.nomad-dropdownList.right .k-select .k-icon:before{
    content: "\e014";
}
.nomad-datepicker .k-i-calendar::before {
    content: "";
    background: url(/img/btn-date.svg) no-repeat center;
}
.nomad-datepicker .k-picker-wrap .k-select {
    border-left: 0;
    padding-right: 15px;
}
.nomad-dateRangePicker{
	position:relative;
	display:flex;
}
.nomad-dateRangePicker:after{
	content:"";
	position:absolute;
	right: 10px;
    top: 50%;
    margin-top: -10px;
	display:block;
	width:20px;
	height:20px;
	background:url(/img/btn-date.svg) no-repeat center;
	z-index:0;
}
.nomad-dateRangePicker > .k-dateinput{
	flex:1;
    width: 130px;
    min-width: 130px;
}

.nomad-dateRangePicker > .k-dateinput:first-child:after {
	content: "~";
	display: flex;
	align-items: center;
	font-size: 16px;
	margin-right: 0.5em;
}
.nomad-dateRangePicker > .k-dateinput > .k-textbox:not(.form-control-sm){
	background:transparent !important;
	z-index:1;
}
.form-control .k-clear-value .k-icon{
	margin-top:5px;
}

hr.hr{
	display: block;
    background: #eaeaea;
    opacity: 1;
    margin:0.5rem 0;
}
.recentSearch-list{
	padding:1rem 0 0;
}
.recentSearch-list h3{
	font-size:16px;
	color:#444;
	font-weight:bold;
}
.recentSearch-list li{
	display:flex;
	font-size:14px;
	height:20px;
	justify-content:space-between;
	align-items:center;
	margin-bottom:1rem;
}
.recentSearch-list li:last-child{
	margin-bottom:0;
}
.recentSearch-list li button{
	background:none;
	border:none;
}
.recentSearch-list li span:not(.k-icon){
	padding-left:25px;
	background:url(/img/btn-map-pin.svg) no-repeat left center;
	color:#6b6b6b;
}
.recentSearch-list li span.k-icon{
	color:#ccc;
}
.dashboard .block-2 .block-2-1 > div{
	overflow:hidden !important;
	width:100% !important;
	border-radius:12px;
}
.dashboard .block-2 .block-2-1 .slider-wrap{
	position:relative;	
}
.dashboard .block-2 .block-2-1  .slick-slider{
	width:100%;
	height:100%;
	margin-bottom:0;
}
.dashboard .slick-slide .ad-wrap{
	width:100%;
	height:100%;
}
.dashboard .slick-track{
	width:100%;
}
.slick-dots {padding-left:0;}
/* .slick-dots li{display:none;width:100%;} */
.slick-dots li.slick-active{display:block;}
.sss{
   animation: next ease 1s forwards 0s;
 }

@keyframes next {
    to{
        transform: translateX(1000%);
    }
 }

.block-2-1 .slick-dots{
	background:rgba(0,0,0,.4);
	width: 84px;
  	height: 32px;
  	border-radius:16px;
  	position: absolute;
    bottom: 32px;
    left: 46px;
}
.block-2-1 .slick-dots li{
	color:#fff;
	text-align: center;
    line-height: 32px;
    margin:0;
    z-index:1;
}
.block-2-1 .slick-dots li span{
	opacity:0.4
}
.block-2-1 .slick-arrow.slick-next{
	position:Absolute;
    top: auto;
    bottom: 29px;
    left: 105px;
   	z-index:2;
}
.block-2-1 .slick-arrow.slick-prev{
	position:Absolute;
	top:auto;
	bottom: 29px;
    left: 52px;
    z-index:2;
}
.block-2-1 .slider-play,
.block-2-1 .slider-pause{
	position:Absolute;
	bottom:32px;
	left:135px;
	background:rgba(0,0,0,.4);
	width: 32px;
  	height: 32px;
  	border-radius:16px;
  	color:#fff;
  	border:0;
  	box-shadow:none;
}
.slick-prev:before {
    content: url("/img/slick-arrow-left.svg");
    font-size:12px;
}
.slick-next:before {
        content: url("/img/slick-arrow-right.svg");
    font-size:12px;
}
.k-autocomplete.form-control-sm{
	border:1px solid #dfdfdf;
	border-radius:4px;
	background: #fff url(/img/btn-arrow-16px.svg) no-repeat right 10px center !important;
}
.k-autocomplete.form-control-sm .k-input{
	height:100%;
}
.k-autocomplete.form-control-sm  .k-clear-value{
	right:25px;
}
.k-autocomplete.form-control-sm  .k-icon.k-i-x{
	padding:5px 0;
}
/*dashboard block-2-2*/
.airline-name{
	font-size:18px;
	font-weight:bold;
	display:flex;
	align-items:center;
	justify-content:start;
	margin-bottom:10px;
}
.airline-name > div{
	width:33px;
	height:33px;
	line-height:33px;
	border-radius:50%;
	background:#f9f9f9;
	margin-right:5px;
	text-align:center;
}
.airline-name > div img{
	display:block;
	margin:5px auto;
}
.fuel-list li{
	display:flex;
	align-items:center;
	justify-content:space-between;
	background:#f9f9f9;
	border-radius:8px;
	padding:15px 5%;
	margin-bottom:5px;
}
.fuel-list li span.col-a{
	background:#f0f0f0;
	display:inline-block;
	height:36px;
	line-height:36px;
	width:70px;
	border-radius:22px;
	padding:0 10px;
	font-size:14px;
	text-align:center;
	font-weight:bold;
}
.fuel-list li .col-b {
	margin:0 auto 0 7%;
	flex:1;
}
.fuel-list li .col-b span{
	font-size:14px;
	display:block;
/* 	min-width:150px; */
	margin:3px 0;
	white-space:nowrap;
}
.fuel-list li .col-c{
	flex:1;
	min-width:170px;
}
.fuel-list li .col-c span{
	font-size:12px;
	display:block;
	border-left:1px solid #dbdbdb;
	color:#999;
	padding:0 10px;
	white-space:nowrap;
	margin:3px 0 3px 3px;
}
.fuel-list li .airline-name{
	margin-top: 20px;
}
.fuel-list li .airline-name:first-child{
	margin-top:0;
}
.specialPrice-list li{
	display:flex;
	align-items:center;
	justify-content:space-between;
	display:flex;
	border-bottom:1px solid #efefef;
	padding:15px 0;
}
.specialPrice-list li:last-child{
	border-bottom:0;
}
.specialPrice-list .col-a{
	overflow:hidden;
	border-radius:8px;
	background:#f9f9f9;
	width:60px;
	height:60px;
	min-width:60px;
}
.specialPrice-list .col-a img{
	width:60px;
	height:60px;
}
.specialPrice-list .col-b{
	overflow:hidden;
	flex: 1;
    margin-left: 5%;
}
.specialPrice-list .col-b p{
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.specialPrice-list .col-b .airline-name{
	margin-bottom:0;
}
.specialPrice-list .col-c{
	font-size:12px;
	color:#999;
	white-space:nowrap;
	width:145px;
	margin-left:10px;
}
.specialPrice-list .col-b .airline-name span{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.notice-list{
	counter-reset: item;
	padding-top:20px;
}
.notice-list li{
	display:flex;
	counter-increment: item;
	padding:15px 0;
	border-bottom:1px solid #efefef;
	font-size:16px;
}
.notice-list li:before{
	content: counter(item);
	font-weight:bold;
	color:#cb007e;
	margin-right:20px;
	margin-left:0;
}
.notice-list li span:not(.badge){
	margin-left:0;
	margin-right:auto;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notice-list li .badge,
.badge.badge-new{
	background:rgba(203, 0, 126,.05);
	color:#cb007e;
	margin-left:5px;
	margin-right:0;
}
.dashboard .block-2-3 h2{
	font-size:20px;
	font-weight:bold;
	color: #272727;
	margin-bottom:12px;
}
.dashboard .block-2-3 .form-control-sm{
	height:44px;
    box-sizing: border-box;
    padding: 0;
    box-shadow:none;
}
.dashboard .block-2-3 .form-control-sm .k-select{
	/* background:none; */
}
.dashboard .block-2-3 .form-control-sm .k-clear-value .k-icon {
    padding:0;
}
.dashboard .block-2-3 .form-control-sm:before {
    content: "\e006";
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    z-index: 10;
    font-size: 16px;
    font-family: "WebComponentsIcons";
    opacity:0.5
}

.ad-wrap{
	padding:38px 40px;
}
.ad-wrap .text-p1{
	font-size: 30px;
  font-weight: 900;
  color:#fff;
  margin-bottom:1rem;
  min-width:100%;
}
.ad-wrap .text-p2{
	font-size:16px;
	color:#fff;
	opacity:0.6;
}
.page-updating{
	text-align:center;
	font-size:18px;
	margin-top:50%;
	color:#979797;
	font-weight:500
}
.page-updating img{
	margin-bottom:1rem;
}
.nomadDialog .box-finder-01{
width:100%;
max-width:840px;
box-shadow:none;
background: #fff;
}
.nomadDialog .box-finder-01 + .btn-submit{
	display:none;
}

.nomadDialog  .box-select-airline {
	-webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #cccccc;
    background:#fff !important;
    overflow:hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.nomadDialog  .box-select-airline .box-wrap{
	background:none;
}
.box-select-airline .search-top{
	height:63px;
	border-bottom:1px solid #e6e6e6;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	display:flex;
	align-items: center;
    padding: 10px 20px 10px 15px;
}
.box-select-airline .search-top img{
	width:30px;
	height:30px;
	margin-right:10px;
}
.box-select-airline .search-top input{
	height:100%;
	border:0;
	background:none;
	flex: 1;
    font-size: 18px;
    color: #444;
    font-weight: 500;
}
.box-select-airline .list-item-wrap{
	padding:10px 5px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 330px;
    height:330px;
    overflow-y: auto;
}
.box-select-airline .list-item-wrap li{
	margin-bottom:5px;
}
.box-select-airline .list-item-wrap li a{
	-webkit-border-radius: 4px;
    -moz-border-radius: 84px;
    border-radius: 4px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    display:flex;
     justify-content: start;
    color: #444;
    align-items: center;
	font-size:12px;
}
.box-select-airline .list-item-wrap li a img{
	margin-right:12px;
	width:auto;
	height:auto;
	max-width:88px;
	max-height:29px;
}
.box-select-airline .list-item-wrap li a.selected{
	position:relative;
	background: rgba(203,0,126,0.08);
    transition: .15s;
    -webkit-transition: .15s;
    -moz-transition: .15s;
    color:#cb007e;
}
.box-select-airline .list-item-wrap li a.selected:after{
	content:"\e118";
	font-family: "WebComponentsIcons" !important;
	display:block;
	color: #cb007e;
	position:absolute;
	right:10px;
	top:13px;
	font-size:12px;
}
.badge-noImage{
	width: 74px;
    color: rgba(0,0,0,.5);
    background: #eee;
    margin-right: 12px;
	padding:8px 0;
}
.nomadDialog .box-select-airline + .btn-submit{
	width: 100%;
    margin: 10px auto;
    display: block;
}

#dashboardCargoList{
	position:fixed;
	bottom:32px;
	left:20px;
}
#dashboardCargoList{
}
#dashboardCargoList .dropdown-menu{
	padding:40px 32px;
	max-width:480px;
	height: calc(100vh - 230px);
    overflow-y: auto;
    background: #fff;
}
#dashboardCargoList h2{
	font-size:20px;
	color:#242424;
	margin-bottom:1rem;
}
#dashboardCargoList .dropdown-toggle.form-control-sm{
	background-image:none !important;;
}
.form-control-wrap.search {
	position:relative;
}
.form-control-wrap.search .form-control{
	positon:relatvie;
	padding-left:40px;
}
.form-control-wrap.search img.icon{
	position:absolute;
	left:10px;
	top:15px;
}
.tab-list {
	display:flex;
	padding:1rem 0;
}
.tab-list li {
	margin-right:5px;
}
.tab-list li a{
	display:block;
	text-align:center;
	width:74px;
	height:36px;
	background:#fff;
	border:1px solid #eaeaea;
	border-radius:18px;
	line-height: 36px;
    text-align: center;
    text-decoration:none;
    cursor:pointer;
}
.tab-list li a.selected{
    background: rgba(203,0,126,0.08);
    border-color:rgba(203,0,126,0.08);
    transition: .15s;
    -webkit-transition: .15s;
    -moz-transition: .15s;
    color: #cb007e;
}
#dashboardCargoList .k-card .k-card-header .d-flex{
	justify-content:space-between;
}
#dashboardCargoList .k-card .k-card-header .d-flex b{
	font-size:14px;
	color:#272727;	
}
.flight-route{
	display:flex;
	justify-content:space-between;
	align-items:center;
	color:#444;
	font-size:16px;
	gap:5px;
}
.flight-route img{
	vertical-align:middle;
}
.flight-route .small{
	color:#cbcbcb;
	font-size:14px;
	display:block;
}
.flight-route .small.time{
    color: #444444;
    font-weight: normal;
    font-size: 12px;
}
.flight-route.pb-3{
	color:#979797;
	font-weight:normal;
	font-size:14px;
}
#dashboardCargoList .k-card table th{
	font-size:13px;
	color:#979797;
	width:95px;
}
#dashboardCargoList .k-card table td{
	font-size:14px;
	color:#444;
}
#dashboardCargoList .k-card-body > .d-flex{
	justify-content:space-between;
	align-items:center;	
	padding-bottom:1rem;
}
#dashboardCargoList .k-card-body .k-card-footer{
	font-size:15px;
	font-weight:500;
	padding-top:1.5rem;
}
#mainTabStrip-1.k-content,
.cargoInfographic.k-content{
	padding:0;
}
.cargoInfographic.k-content{
	overflow:hidden;
	width:100%;
	height: calc(100vh - 60px);
	border-radius:0;
	margin:0;
}
#basicMap{
	width:100%;
	height:calc(100vh - 60px);
	z-index:0;
}

#dashboard-map-wrap{
	position:relative;
	z-index:-1;
}

/*대시보드 지도 팝업*/
.ol-popup {
   position: absolute;
   background-color: white;
   -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
   filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
   padding: 15px;
   border-radius: 10px;
   border: 1px solid #cccccc;
   bottom: 12px;
   left: -50px;
   width:100%;
   min-width: 400px;
   max-width:400px;
   background:#fff;
   height: 100%;
   min-height:500px;
   max-height: 500px;
}

 .ol-popup:after, .ol-popup:before {
   top: 100%;
   border: solid transparent;
   content: " ";
   height: 0;
   width: 0;
   position: absolute;
   pointer-events: none;
 }
 
 .ol-popup:after {
   border-top-color: white;
   border-width: 10px;
   left: 48px;
   margin-left: -10px;
 }
 .ol-popup:before {
   border-top-color: #cccccc;
   border-width: 11px;
   left: 48px;
   margin-left: -11px;
 }
 .ol-popup-closer {
   text-decoration: none;
   position: absolute;
   top: 24px;
   right: 25px;
   z-index: 10;
}
  .ol-popup-closer:hover{
   text-decoration: none;
}
 .ol-popup-closer:after {
   content: "✖";
}
.ol-popup .k-card-header{
	align-items: center;
    display: flex;
	font-size:18px;
	color:#272727;
	font-weight:bold;
}
.ol-popup .k-card-header img{
	margin-right:10px;
}
.ol-popup .k-card-body{
	max-height:418px;
	overflow-y:auto;
	overflow-x:hidden;
}
.ol-popup .flight-route{
	max-width:90%;
	margin:0 auto;
}
.ol-popup .bk-detail-1{
	border-radius: 8px;
  	background-color: #f9f9f9;
  	height:50px;
  	display:flex;
  	justify-content:center;
  	align-items:center;
	color:#dfdfdf
}
.ol-popup .bk-detail-1 > div{
	padding:0 20px;
}
.ol-popup .bk-detail-1 > div:first-child{
	border-right:1px solid #dfdfdf;
}
.ol-popup .bk-detail-1 label{
	font-size:13px;
	color:#979797;
	margin-right:10px;
}
.ol-popup .bk-detail-1 span{
	font-size:15px;
	color:#444;
}
.airlineInfo-list li{
	margin-bottom:10px;
}
.airlineInfo-list li,
.trackingInfo-list li > div{
	display:flex;
	align-items:center;
	width:100%;
}
.airlineInfo-list li > *,
.trackingInfo-list li > div > *{
	position:relative;
	text-align:center;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
	flex-grow: 1;
	min-height:20px;
	font-size:13px;
}
.airlineInfo-list li > *{
	flex:1;
}
.airlineInfo-list li .col-a{
	font-size:14px;
	color:#6b6b6b;
}
.airlineInfo-list li .col-b{
	font-size:14px;
	color:#444
}
.airlineInfo-list li .col-c span,
.airlineInfo-list li .col-d span,
.trackingInfo-list li .col-b span{
	display:block;
	font-size:12px;
	color:#979797;
}
.airlineInfo-list li >*:after,
.trackingInfo-list li > div >*:after{
	content:"";
	position:absolute;
	right:0;
	top:50%;
	margin-top:-8px;
	display:block;
	width:1px;
	height:16px;
	background:#dfdfdf;
}
.airlineInfo-list li >*:last-child:after,
.trackingInfo-list li > div >*:last-child:after{
	display:none;
}
b.h6{
	color:#272727;
}
.trackingInfo-list{
}
.trackingInfo-list li *{
	color:#6b6b6b;
}
.trackingInfo-list li{
	border-bottom:1px solid #eaeaea;
	padding:10px 0;
}
.trackingInfo-list li > div{
	border-radius:4px;
	padding:3px 0;
	cursor:pointer;
}
.trackingInfo-list li > div:hover{
	background: rgba(203, 0, 126,.05);
}
.trackingInfo-list .col-c{
	width:auto;
}
.trackingInfo-list .col-b{
	width:85px;
	flex:none;
}
.trackingInfo-list .col-d{
	width:40px;
	flex:none;
}
.trackingInfo-list .col-e{
	width:120px;
	text-indent:5px;
	flex:none;
}
/*main-wrap*/
.main-header{
	background:#fff;	
}
.main-header > .container{
	padding-top:40px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding-bottom:20px;
	border-bottom:1px solid #efefef;
}
.main-wrap .h2{
	font-weight:900;
	color:#272727
}
.main-search{
	background:#fff;
	padding:20px 0;
}
.main-content > .container{
}
.main-wrap > div > .container{
	padding:40px;
	max-width:1800px;
	box-sizing:border-box;	
}




.fn-btn-clear {
    background: url(/img/fn_btn_clear2.png) no-repeat top 5px center;
    color: #444;
    text-transform: uppercase;
    border:0;
    padding-top: 20px;
    font-size: 16px;
    opacity: 0.8;
}



/*조회조건*/

.form-row {
	display:flex;
	flex-wrap:wrap;
	align-items:end;
	gap:10px
}
.form-row .form-control{
	border:0;
	overflow:hidden;
}
.form-row .k-dropdown:not(.form-control-sm) .k-dropdown-wrap, 
.form-row .k-textbox:not(.form-control-sm), 
.form-row .k-picker-wrap:not(.form-control-sm) {
	border-width: 0;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #f3f3f3 !important;
	height:auto;
	overflow:hidden;
	box-shadow:none;
}
.form-row > svg {
    padding: 5px 0 8px 0;
}

.form-row .k-datepicker:not(.form-control-sm) .k-picker-wrap .k-select{	
	background: #f3f3f3 !important;
}
.col-label {
    display: block !important;
    font-size: 14px;
    height: 21px;
    color: #979797;
    font-weight: 500;
    margin-bottom: 5px;
}
.col-label.required:after,
label.required:after{
	content:"*";
	color:#cb007e;
	margin-left:3px;
}
.form-row input.k-textbox, 
.form-row .k-picker-wrap .k-input, 
.form-row .k-numeric-wrap .k-input,
.form-row .k-dropdown-wrap .k-input{
    line-height: 100%;
    height: 100%;
    font-size: 16px;
    color: #272727;
}
.k-dropdown-wrap .k-input {
    display:flex;
    height:100%;
}
.form-button-group .k-button{
	 width: 96px;
	 height: 56px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	 background: #cb007e !important;
	 color:#fff !important;
	 font-size:20px;
}
.findBox-wrap{
	display:flex;
	align-items:end;
	gap:5px;
}
.findBox-wrap input[type="image"]{
padding: 5px 8px 8px 8px;
width:40px;
height:40px;
}
.findBox-wrap > .form-group{
	flex:1;
}
.findBox-wrap .input-wrap-left + .k-textbox{
	width:300px;
}
.form-row .input-wrap {
	position:relative;
	display:flex;
	border-width: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #f3f3f3 !important;
    height: 56px;
}
.form-row .input-wrap:after{
	width: 1em;
    height: 1em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
    content: "\e006";
    color: #979797;
    position: absolute;
    right: 15px;
    top: 18px;
}
.form-row .k-dropdown-wrap .k-icon{
	color:#979797;
}
.form-row .input-wrap .flag-circle{
	display:block;
	background:#fff;
	height:28px;
	line-height:28px;
	width:28px;
	text-align:center;
	-webkit-border-radius: 50%;
	-moz-border-radius:  50%;
	border-radius:  50%;	
	text-align:center;
	margin:0 auto;
}
.form-row .input-wrap .flag-circle img{
	display:inline-block;
	width: 19px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.form-row .input-wrap .input-wrap-left{
	padding:5px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form-row .input-wrap .input-wrap-left > .k-widget{
	display:block;
	font-size:12px;
	color:#6b6b6b;
	height: 15px;
    width: 35px;
    background: none !important;
    border-radius: 0;
    text-align:center;
}
.form-row input.k-textbox{
	font-size:14px;
}
.form-row .form-group .input-group,
.input-group-view {
	align-items:center;
	flex-wrap: nowrap;
	background: #fff;
    border: 1px solid #efefef;
    border-radius: 8px;
}
.form-row .form-group .input-group.form-control{
	border-color:#f3f3f3;
}
.form-row .form-group .input-group label,
.input-group-view label{
/* 	margin-right:10px; */
/* 	border-left: 1px solid #dfdfdf; */
    padding-left: 10px;
    color:#979797;
}
.form-row .form-group .input-group label:first-child{
	border-left:0;
}
.form-row .form-group .input-group input,
.form-row .form-group .input-group span,
.input-group-view span{
	border:0;
	background:none;
	font-weight:500;
	color:#272727;
}
.form-row .form-group .input-group > input,
.form-row .form-group .input-group > span,
.input-group-view span{
	border-left: 1px solid #efefef;
	margin-left:0 !important;
}
.form-row .form-group .input-group > :first-child,
.input-group-view label:first-child{
	border-left:0;
}
.form-row .form-group .input-group span,
.input-group-view span{
	padding-right:20px;	
}
#bookingFromCharge_dimList .form-row .form-group .input-group span.k-widget,
#bookingFromCharge_dimList .form-row .form-group .form-control{
	background:#fff !important;
}

#bookingFromCharge_dimList .form-row .form-group .input-group span.k-widget,
#bookingFromCharge_dimList .form-row .form-group .input-group span.k-numeric-wrap,
#bookingFromCharge_dimList .form-row .form-group .input-group span.k-input {
	padding:0;
}

.form-step {
    margin-bottom: 20px;
    opacity: 0;
    display: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.form-step.show {
	display: block;
}

.form-step.active {
    opacity: 1;
    transform: translateY(0);
}

.form-step.completed {
    opacity: 1;
    transform: translateY(0);
}

.grid-header{
	display:flex;
	width:100%;
	align-items:center;
	margin-bottom:20px;
}
.btn-filter{
	border-radius:19px;
	border-color:#eaeaea;
	color:#444;
	font-weight:500;
	padding: 0.135rem 0.5rem 0.135rem 0.75rem;
}
.btn-filter:after{
	content: url(/img/btn-filter.svg);
    vertical-align: middle;
    margin-left: 5px;
}
.btn-reset{
	border-radius:19px;
	border-color:#eaeaea;
	color:#444;
	font-weight:500;
}
.btn-reset:after{
	content: url(/img/fn_btn_clear2.png);
    vertical-align: middle;
    margin-left: 5px;
}
#popupGridFilter .btn-reset{
	 position: fixed;
    z-index: 999;
    top: 17px;
    left: 323px;
}
.grid-body{
	border:1px solid #dfdfdf;
	border-radius:8px;
	overflow:hidden;
	margin-bottom:40px;
}

.tb-grid {
	width:100%;
}
.tb-grid thead{
	background:#dfdfdf	;
}
.tb-grid thead th{
	color:#6b6b6b;
	height:48px;
	line-height:48px;
	text-align:center;
}
.tb-grid tbody td{
	height:80px;
	line-height:80px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	text-align:center;
	border-bottom:1px solid #efefef;
	padding:0 5px;
	box-sizing:border-box;
	vertical-align:middle;
}
.tb-grid tbody td img{
	vertical-align:middle;
}
.tb-grid tbody tr:last-child td{
	border-bottom:0;
}
.tb-grid tbody td .img-airlines{
	height:auto;
	width:auto;
	max-height:70px;
	max-width:130px;;
}
.tb-grid tbody td .expiration-date{
	line-height:1.2;
	font-size:13px;
}
.tb-grid tbody td .expiration-date img{
	display:block;
	margin:0 auto;
}

.tb-grid.thead{
	table-layout: fixed;
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;	
    z-index:10;
}

.grid-body.hd-fixed{
	position: relative;
    overflow: auto;
}

.grid-footer{
	display:flex;
	justify-content:center;
}
.tb-grid-pager{
	display:flex;
    margin-left: auto;
     height: 32px;
    align-items: center;
}
.tb-grid-pager  button{
	border:0;
}
.tb-grid-pager .btn-grid-prev{
	width:20px;
	height:20px;
	background:url(/img/btn-arrow-16px-6b6b6b.svg) no-repeat center;
	transform:rotate(180deg);
	padding:0 10px;
}
.tb-grid-pager .btn-grid-next{
	width:20px;
	height:20px;
	background:url(/img/btn-arrow-16px-6b6b6b.svg) no-repeat center;
	padding:0 10px;
}
.tb-grid-pager .btn-grid-first{
	width:20px;
	height:20px;
	background:url(/img/btn-arrow-pagination-16-px.svg) no-repeat center;
	transform:rotate(180deg);
	padding:0;
}

.tb-grid-pager .btn-grid-last{
	width:20px;
	height:20px;
	background:url(/img/btn-arrow-pagination-16-px.svg) no-repeat center;
	padding:0;
}


.tb-grid-pager .btn-grid-prev.off,
.tb-grid-pager .btn-grid-next.off,
.tb-grid-pager .btn-grid-first.off,
.tb-grid-pager .btn-grid-last.off{
	opacity:0.3;
	cursor:default;
}

.tb-grid-pager ul {
	display:flex;
	gap:5px;
}
.tb-grid-pager ul li button{
	width:32px;
	height:32px;
	line-height:32px;
	text-align:center;
	color:#979797;
	border-radius:50%;
	background:none;
	font-size:15px;
}
.tb-grid-pager ul li button.on{
	background: rgba(203, 0, 126,.05);
    color: #cb007e;
    font-weight:bold;
}
.grid-footer .nomad-combobox .k-dropdown-wrap,
.grid-footer .nomad-combobox .k-select{
	background:transparent;
	background-image:none;
}
.grid-footer .nomad-combobox .k-clear-value{
	display:none;
}
.tb-grid .dropdown-menu{
	line-height:1.5;
	height:auto;
}
.grid-mobile-wrap{
	display:none;
}
.grid-mobile-wrap li{
	border:1px solid #dfdfdf;
	border-radius:8px;
	overflow:hidden;
	width:100%;
	margin-bottom:30px;
}
.grid-mobile-wrap li:last-child{
	margin-bottom:0;
}
.grid-footer-mobile{
	display:flex;
	padding:0 1.5rem 1.5rem 1.5rem;
	gap:5px;
}
.grid-footer-mobile button{
	flex:1;
}
.grid-footer-mobile .btn-outline-primary:after{
	content:"\e015";
	width: 1em;
    height: 1em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
	margin-left:10px;
}
.grid-footer-mobile .btn-outline-primary.show:after{
	content:"\e013";
}
.grid-footer-mobile .btn-primary:after{
	content:"\e014";
	width: 1em;
    height: 1em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
	margin-left:10px;
}
.grid-body-mobile .d-flex{
	width:100%;
}
.grid-body-mobile .d-flex > div{
	flex:1 1 auto;
}
.grid-body-mobile .div-th{
	background:#dfdfdf	;
	color:#6b6b6b;
	height:48px;
	line-height:48px;
	text-align:center;
	display: flex;
    justify-content: center;
    align-items: center;
}
.grid-body-mobile .div-th > label{
	line-height:1;
}
.grid-body-mobile .div-th label{
	height:auto;
}
.grid-body-mobile .div-td{
	height:80px;
	line-height:1.5;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	text-align:center;
	padding:0 5px;
	box-sizing:border-box;
	display: flex;
    align-items: center;
    justify-content: center;
    gap:2px;
}
.grid-body-mobile .div-td .expiration-date{
	line-height:1.2;
	font-size:13px;
}
.grid-body-mobile .div-td .expiration-date img{
	display:block;
	margin:0 auto;
}
.grid-pc-wrap > .grid-body{
	overflow:visible;
}

.btn-darkgray{
	/*background:#f7a0d58a !important;*/
	border-color:#cb007e  !important;
	color:#cb007e;
}

.btn-darkgray1{
	background:#a18e9a8a !important;
	border-color:#a18e9a8a  !important;
	color:#cb007e;
}
.btn-darkgray:hover{
	/*background:#f7a0d58a !important;*/
	border-color:#cb007e !important;
	color:#cb007e;
}

.btn-red{
	background:rgba(250, 36, 74, 0.1) !important;
	border-color:rgba(250, 36, 74, 0.1) !important;
	color:#fa244a !important;
}
.btn-red:hover{
	background:rgba(250, 36, 74, 0.2) !important;
	border-color:rgba(250, 36, 74, 0.2) !important;
	color:#fa244a !important;
}
/*
.popup-overlay{
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: 29;
}
.popup-overlay.on{
	display:block;
}
.popup-wrap{
	display:none;
    position: fixed;
    height: 100vh;
    background: #fff;
    z-index: 30;
    top: 0;
}
.popup-wrap.left{
    left: 0;	
}
.popup-wrap.right{
    right: 0;	
}
.popup-wrap.on{
	display:block;
}*/

/*
#ECS_FB0800_00_000_listHeader .tb-grid tbody td{
	line-height:1;
}
#ECS_FB0800_00_000_listHeader .tb-grid thead th{
    line-height: inherit;
}*/


.k-card-header h2{
	font-size:20px;
	font-weight:500;
	color:#272727;
}
.k-card-header .btn-close{
	width:24px;
	height:24px;
}

.nomadDialog:not(.left,.right){
	opacity:1 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.nomadDialog.right {
	right: 0 !important;
    top: 0 !important;
    border-radius: 0;
    height: 100vh;
    left: auto !important;
/*     transform: translate(0) !important; */
}
.nomadDialog.left {
    left: 0 !important;
    top: 0;
    border-radius:0;
    height:100vh;
}
.nomadDialog.right .k-window-titlebar,
.nomadDialog.left .k-window-titlebar{
	display:flex;
	padding:20px 0;
	border-bottom:1px solid rgba(0, 0, 0, 0.12);
}
.nomadDialog.right .k-window-title,
.nomadDialog.left .k-window-title{
	padding:0 40px 0 40px;
	font-size:20px;	
}
.nomadDialog.right .k-window-content,
.nomadDialog.left .k-window-content{
	padding:16px 30px;
}

.nomadDialog.left .k-window-titlebar .k-window-actions{
	margin-right:30px;
}
.nomadDialog.right .k-window-titlebar{
    flex-direction: row-reverse;
}
.nomadDialog.right .k-window-titlebar .k-window-actions{
	margin-left:30px;
}

/*
#popupGridFilter{
	width:480px;
}
 #popupGridDetails{
	width:640px;
	height: 100vh;
    overflow: auto;
} */
.collapse-list > .btn{
	position:relative;
	width:100%;
	background:#f3f3f3;
	color: #444;
	font-size:18px;
	font-weight:500;
	text-align:left;
	padding:0.75rem;
	box-sizing:border-box;
}
.collapse-list > .btn:before{
	position:absolute;
    right: 18px;
    top: 18px;
	content: url(/img/btn-arrow-16px-6b6b6b.svg);
    transform: rotate(270deg);
    transition:0.3s;
}
.collapse-list > .btn.collapsed:before{
    transform: rotate(90deg);
}
.collapse-list > ul{
	padding:10px 0;
	box-sizing:border-box;
}
.collapse-list > ul > li{
	padding:10px;
	box-sizing:border-box;
}

.img-airlines{
	height: auto;
    width: auto;
    max-height: 30px;
    max-width: 80px;
}
.tb-st {
	width:100%;
}
.tb-st tr{
	position:relative;
}
.tb-st tr th,.tb-st tr td{
	padding:3px 5px;
	box-sizing:border-box;
}
.tb-st tr th{
	color:#979797;
	text-align:left;
	font-weight:normal
}


.tb-st-1 {
	width:100%;
}
.tb-st-1 tr{
	position:relative;
}
.tb-st-1 tr th,.tb-st-1 tr td{
	padding:5px 10px;
	box-sizing:border-box;
}
.tb-st-1 tr th{
	color:#979797;
	text-align:left;
}
.tb-st-1:not(.hover-none) tr:after{
	content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
}
.tb-st-1:not(.hover-none) tr:hover:after{
	transition:.3s;
	background:rgba(203,0,126,0.08);
}
.tb-st-1:not(.hover-none) tr:hover th, .tb-st-1:not(.hover-none) tr:hover td{
	color:#cb007e
}
.tb-st-1.hover-none:hover:after{
	display:none;
}
.form-control-sm{
	height:44px;
	box-sizing:border-box;
}
.bg-light > .form-row .form-control{
	background:#fff !important;
	border:1px solid #efefef;
}
.bg-light .col-label{
	color:#6b6b6b;
}
.bg-eaeaea{
	background:#eaeaea !important
}
/*라디오 토글 버튼*/
.switch-wrap {
	display: flex;
	overflow: hidden;
	background-color: rgba(0,0,0,.5);
	border-radius: 18px !important;
    padding: 5px;
    overflow: hidden;
}

.switch-wrap input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-wrap label {
	color: rgba(255,255,255,.5);
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 4px 12px;
	margin-right: -1px;
	transition: all 0.1s ease-in-out;
	border-right:1px solid rgba(255,255, 255, 0.2) !important;
}
.switch-wrap label:last-child{
	border-right:0 !important;
}
.switch-wrap label:hover {
	cursor: pointer;
}

.switch-wrap input:checked + label {
	color:rgba(255,255,255,1) !important;
	box-shadow: none;
}



/*라디오버튼 토글 2*/
.switch-wrap-2 {
	display: flex;
}
.switch-wrap-2 > label{
	flex:1;
}
.switch-wrap-2 input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-wrap-2 label {
	border-radius:6px;
	padding:0.75rem 0;
	background:#fff;
	border:1px solid #eaeaea;
	color:#444;
	transition: all 0.1s ease-in-out;
	text-align:center;
	font-weight:400;
	cursor:pointer;
}

.switch-wrap-2 input:checked + label {
	border-color:#cb007e;
	color:#cb007e;
}
.input-group > div.form-control > input{
	border:0;
	width:100%;
	height:100%;
}
.input-group .nomad-comboBox,
.input-group .nomad-dropdownList{
    background: #fff;
    border: 1px solid #efefef;
	border-radius:8px;
}
.input-group .nomad-comboBox .k-dropdown-wrap,
.input-group .nomad-dropdownList .k-dropdown-wrap{
	border:0;
	box-shadow:none !important;
	background: transparent;
}
.input-group input.nomad-comboBox,
.input-group input.nomad-dropdownList{
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow:none;
    border:0;
}
.input-group .nomad-comboBox .k-select,
.input-group .nomad-dropdownList .k-select{
	background:none !important;
}
.btn-add,.btn-add:hover{
	background:url(/img/btn-icon-add.svg) no-repeat center;
	width:40px;
	height:40px;
	background-size:40px 40px;
	box-shadow: none !important;
	border:0 !important;
}
.btn-delete,.btn-delete:hover{
	background:url(/img/btn-icon-delete.svg) no-repeat center;
	width:40px;
	height:40px;
	background-size:40px 40px;
	box-shadow: none !important;
	border:0 !important;
}

.select-schedule{
	height:460px;
	overflow-y:scroll;
}
.select-schedule td{
	position:relative;
	padding:20px 10px;	
	line-height:1.5;
	border-bottom:1px solid #dfdfdf;
}
.select-schedule tr:last-child td{
	border-bottom:0;
}
.select-schedule td:before{
	content:"";
	position:absolute;
	right:0;
	top:50%;
	display:block;
	width:1px;
	height:40px;
	margin-top:-20px;
	background:#dfdfdf;
}
.select-schedule td[rowspan="2"]:before {
	height: 170px;
    margin-top: -86px;
}
.select-schedule td:last-child:before{
	display:none;
}
.k-calendar-container {
	border-radius:8px;
	width:auto; 
}
.k-calendar-container .k-calendar{
	width:350px;
} 
.k-calendar-container .k-calendar-view{
	width:100%;
}
.k-calendar-container .k-header{
	border-bottom:1px solid #e6e6e6;
	box-shadow:none;
}
.k-calendar .k-header .k-link{
	font-size:18px;
}
.k-calendar .k-content .k-link {
    border-radius: 50%;
}

.k-calendar-container .k-i-arrow-60-left:before{
content: "\e016";
}
.k-calendar-container .k-i-arrow-60-right:before{
    content: "\e014";
}
.k-calendar.k-calendar-range {
    width: 700px !important;
}

.k-animation-container .k-list .k-item{
	padding:6px 4px;
	border-radius:8px;
}
.k-animation-container .k-list {
	padding:5px;
}
.k-animation-container .k-list .k-item.k-state-selected{
    color: #cb007e !important;
}
.k-animation-container .k-list-container{
	border-radius:8px;
}

#popupGridFilter .list-mb-12 li{
	padding: 0 5px;
}
#popupGridFilter .checkbox-wrap input[type="checkbox"]:checked + label .txt-1{
	color:#cb007e;
}

.k-combobox .k-dropdown-wrap{
	border:0;
}

/* 임시*/
/* .k-animation-container {
    transform: translateY(-30px);
}
 */


.fn-btn-group{
	top:-60px;
}
.fn-btn-group .fn-btn-clear{
	background: url(/img/fn_btn_clear2.png) no-repeat top 5px center;
	color:#979797;
	text-transform: uppercase;
}
.entry_form > .w1400px{
	position:relative;
}
.entry_form .form-row{
	align-items: flex-end;
}
.entry_form .form-row > svg{
	padding:5px 12px 8px 0;
}
.entry_form .form-row .k-dropdown .k-dropdown-wrap, 
.entry_form .form-row .k-textbox, 
.entry_form .form-row .k-picker-wrap{
	border-width: 0;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #f3f3f3 !important;
	height:56px;
	overflow:hidden;
}
.entry_form .form-row .k-datepicker .k-picker-wrap .k-select{	
	background: #f3f3f3 !important;
}
.entry_form .col-label {
    display: block !important;
    font-size: 14px;
    height: 21px;
    color: #979797;
    font-weight: 500;
    margin-bottom: 5px;
}
.form-row input.k-textbox, 
.form-row .k-picker-wrap .k-input, 
.form-row .k-numeric-wrap .k-input,
.form-row .k-dropdown-wrap .k-input{
    line-height: 100%;
    height: 100%;
    font-size: 14px;
    color: #272727;
}
.k-dropdown-wrap .k-input {
    display:flex;
    height:100% !important;
}
.form-button-group .k-button,
.form-button-group .k-button:hover{
	 width: 96px;
	 height: 56px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	 background: #cb007e !important;
	 color:#fff !important;
	 font-size:20px;
}
.form-row .input-wrap {
	position:relative;
	display:flex;
	border-width: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #f3f3f3 !important;
    height: 56px;
    padding-right:30px;
}
.form-row .input-wrap:after{
	width: 1em;
    height: 1em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
    content: "\e006";
    color: #979797;
    position: absolute;
    right: 15px;
    top: 18px;
}
.form-row .k-dropdown-wrap .k-icon{
	color:#979797;
}
.k-dropdown.bg-light .k-dropdown-wrap{
	background:#fff;
}
.k-dropdown.bg-light .k-dropdown-wrap .k-icon{
	opacity:0.3
}
.form-row .input-wrap .flag-circle{
	display:block;
	background:#fff;
	height:28px;
	line-height:28px;
	width:28px;
	text-align:center;
	-webkit-border-radius: 50%;
	-moz-border-radius:  50%;
	border-radius:  50%;	
	text-align:center;
	margin:0 auto;
}
.form-row .input-wrap .flag-circle img{
	display:inline-block;
	width: 19px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.form-row .input-wrap .input-wrap-left{
	padding:5px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form-row .input-wrap .input-wrap-left > .k-widget{
	display:block;
	font-size:12px;
	color:#6b6b6b;
	height: 15px;
    width: 35px;
    background: none !important;
    border-radius: 0;
    text-align:center;
}
.form-row input.k-textbox{
	font-size:14px;
}
.box-div-top{
	padding:15px 0 10px;
	width:100%;
}
.box-div-top button{
	position: relative;
    height: 44px;
    width:150px;
    line-height: 42px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    background:#fff;
    border: 1px solid #eaeaea;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    color: #6b6b6b;
    font-size: 16px;
    margin-right:10px;
    cursor:pointer;
    text-indent:-15px;
}
.box-div-top button:after{
	width: 1em;
    height: 1em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
	content:"\e015";
	color:#979797;
    position: absolute;
    right: 15px;
    top: 0px;
}

.box-div-top button.on:after{
	width: 1em;
    height: 1em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
	content:"\e013";
}
.box-div-top button > label{
	cursor:pointer;
}
.box-div-top span{
	font-size:16px;
	color:#272727;
}

.box-div.dim-list .box-div-title{
	font-size:18px;
	font-weight:400;
	color:#444;
	margin-bottom:20px;
}
.box-div.dim-list table td > .k-widget{
	display:inline-block;
}
.box-div.dim-list table th{
	text-align:left;
	font-size:14px;
	font-weight:400;
	color:#6b6b6b;
}
.box-div.dim-list table td{
	padding:3px 5px 3px 0;
}
.box-div.dim-list .input-wrap{
	width:100%;
	border:1px solid #eaeaea;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	height:50px;
	line-height:48px;
	background:#fff;
	display:flex;
}
.box-div.dim-list .input-wrap > .k-widget *{
	box-shadow:none !important;
	background:none !important;
	border:0 !important;
}
.box-div.dim-list .input-wrap .k-numeric-wrap .k-input,
.box-div.dim-list .input-wrap .k-dropdown-wrap .k-input{
	height: 100%;
    line-height: 1;
}
.box-div.dim-list .input-wrap .k-numerictextbox .k-numeric-wrap,
.box-div.dim-list .input-wrap .k-dropdown .k-dropdown-wrap {
	border:0;
}
.box-div.dim-list .col-1 .input-wrap{
	width:100px;
}
.box-div.dim-list .col-2 .input-wrap{
	width:350px;
}
.box-div.dim-list .col-3 .input-wrap{
	width:415px;
}
.box-div.dim-list .col-2 .input-wrap > .k-widget.k-dropdown{
	border-left:1px solid #eaeaea !important;
}
.box-div.dim-list .col-3 .input-wrap > .k-widget{
	border-right:1px solid #eaeaea !important;
}
.box-div.dim-list .col-3 .input-wrap > .k-widget:last-child{
	border-right:0 !important;
}
.box-div{
	display:inline-block;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #f9f9f9;
	padding:24px 20px;
	box-sizing:border-box;
/*  	height:205px;  */
	overflow:auto;
}

.box-div.dim-list .col-2 .radio-wrap{
	position:relative;
	background:rgba(0,0,0,.4);
	min-width:96px;
	width:96px;
	height:34px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	margin:8px;
	line-height: 34px;
	white-space: nowrap;
	overflow:hidden;
}
.box-div.dim-list .col-2 .radio-wrap label{
	color:rgba(255,255,255,.5);
	font-size:14px;
	width:50%;
    text-align: center;
    display:block;
    float:left;
}
.box-div.dim-list .col-2 .radio-wrap:before{
	content:"";
	display:block;
	position:Absolute;
	left:50%;
	top:9px;
	background:#dfdfdf;
	width:1px;
	height:16px;
}
.box-div.dim-list .col-2 .radio-wrap input[type="radio"]{
	display:none;
}
.box-div.dim-list .col-2 .radio-wrap input[type="radio"]:checked + label{
	color:#fff;
}
.box-title {
	margin-bottom:28px;
}
.box-title > label{
	font-size:18px;
	color:#444;
	font-weight:700;
}
.box-div .radio-wrap{
	margin-bottom:16px;
}
.box-div .radio-wrap:last-child{
	margin-bottom:0;
}
.radio-btn-input{
	display:none;
}
.radio-btn-input + .radio-btn{
	display:block;
	height: 44px;
	width:132px;
	line-height:42px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #eaeaea;	
	font-size:15px;
	color:#444;
	background:#fff;
	text-align:center;
	cursor:pointer;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.radio-btn-input:checked + .radio-btn{
	border: 1px solid #cb007e;
	color:#cb007e;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}






/*최적화 운임 조회*/

.result-box .list-title{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.result-box h2{
	font-size:23px;
	margin-bottom:5px;
	font-weight: 700;
	color:#272727
}
.result-box h3{
	font-size:30px;
	margin-bottom:24px;
	font-weight: 700;
	color:#272727
}

.result-box .weekly ul {
	width:1128px;
	display:flex;
}
.result-box .weekly ul li{
	position:relative;
	text-align:center;
	flex:1;
	padding:10px;
	overflow: hidden;
}
.result-box .weekly ul li:after{
  content:"";
  position:absolute;
  right:0;
  top:29px;
  display:block;
  background:#f4f4f4;
  width: 1px;
  height: 48px;
}
.result-box .weekly ul li:last-child:after{
	display:none;
}
.result-box .weekly ul li > div {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding:15px;
	cursor:pointer;
}
.result-box .weekly ul li span.txt-1{
	font-size:16px;
	color:#6b6b6b;
	font-weight:400;
}
.result-box .weekly ul li p.txt-2{
	font-size:16px;
	color:#272727;
	font-weight:500;
	white-space:nowrap;
}
.result-box .weekly ul li.on > div{
	background:rgba(203,0,126,0.08);
}
.result-box .weekly ul li.on > div span{
	font-weight:700;
}
.result-box .weekly ul li.on > div span.txt-1{
	color:#272727;
}
.result-box .weekly ul li.on > div p.txt-2{
	color:#cb007e;	
}
.result-box .booking-list-2{
	border:0;
	background:0;
}
.result-box .booking-list-2 > ul > li.k-card > .k-card-header{
	background:#efefef;
	border-bottom:0;
} 
.result-box .booking-list-2 .weekly{
	padding:0;
	border:0;
}
.result-box .booking-list-2 .weekly ul{
	width:100%;
}
.lowestPrice-list li{
	display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px 10px;
    margin-bottom: 5px;
	justify-content:space-between;
	align-items:center;
}
.lowestPrice-list li > div{
	display:flex;
	align-items:center;
}
.lowestPrice-list li [class*="col-"]{
	padding:0 10px;
	border-right:1px solid #dfdfdf;
}
.lowestPrice-list li [class*="col-"]:last-child{
	border-right:0;
}
.lowestPrice-list li .col-b b{
	color:#272727;
}
.lowestPrice-list li .col-b span{
	color:#979797
}
.lowestPrice-list li .col-c{
	color:#6b6b6b;
}
.lowestPrice-list li .btn-group{
	
}
.lowestPrice-list .btn-group{
	display:flex;
	width:250px;
}
.lowestPrice-list .btn-group button{
	-webkit-border-radius: 4px !important;
	-moz-border-radius: 4px !important;
	border-radius: 4px !important;
	text-align:center;
    font-size:16px;
    font-weight:400;
    cursor:pointer;
    flex:1;
}
.lowestPrice-list .btn-group .btn-01{
	background:#b5b5b5;
	color:#fff;
	margin-right:10px;
}
.lowestPrice-list .btn-group .btn-01.active{
	background:#cb007e;
}
#ECS_FA1200 .d-flex, #ECS_FA1200 .result-box{
	width:100%;
}
#ECS_FA1200 .booking-list-2{
	flex:1
}
#ECS_FA1200 .booking-list-2 + .k-card{
	width:240px;
	height:300px;
}
#ECS_FA1200 .booking-list-2 + .k-card.shadow{
	height:auto;
}
.booking-list-2 + .k-card .box-title{
	font-size:18px;
	font-weight:500;
	padding:20px 0 5px;
	color:#444;
	margin-bottom:0;
}
.booking-list-2 + .k-card .switch-wrap-2 label{
	background:#f3f3f3;
	border:#f3f3f3;
	color:#444;
}
.booking-list-2 + .k-card .switch-wrap-2 input:checked + label {
    background-color: #cb007e;
    color: #fff;
}
.stepper-btn-wrap {
	padding:50px 0;
	text-align:center;
	width:100%;
    margin: 0 auto;
}
.stepper-btn-wrap button{
	font-size:20px;
	border-radius: 8px !important;
  	line-height:55px;
  	height:55px;
  	width:180px;
  	padding:0;
  	text-align:center;
}
.stepper-btn-wrap .btn-outline-secondary{
	border-color:#dfdfdf !important;
	background:none !important;
	color:#6b6b6b !important;
}
h3.h3{
	font-size:24px;
	color:#272727;
}
.btn-outline-secondary,
.btn-outline-secondary:hover{
	border-color:#dfdfdf;
	color:#6b6b6b;
	background:#fff;
}
.btn-solid-secondary,
.btn-secondary,
.btn-solid-secondary:hover,
.btn-secondary:hover{
	background:#eaeaea ;
	color:#6b6b6b;
}
.btn-warning,.btn-warning:hover{
	color:#fff;
}

/*예약등록 > 3.견적스케줄*/
.result-box .ticket-body > .col-wrap{
	display:flex;
	width:100%;
	border-bottom:0;
    align-items: center;
}

.result-box .ticket-body > .col-wrap .col{
	position:relative;
	padding:20px;
}
.result-box .ticket-body > .col-wrap .col-0{
	width:13%;
	box-sizing:border-box;
}
.result-box .ticket-body > .col-wrap .col-1{
	width:13%;
	box-sizing:border-box;
}
.result-box .ticket-body > .col-wrap .col-2{
	width:30%;
	box-sizing:border-box;
}
.result-box .ticket-body > .col-wrap .col-3{
	width:13%;
	box-sizing:border-box;
}
.result-box .ticket-body > .col-wrap .col-4{
	width:31%;
	box-sizing:border-box;
}
.result-box .ticket-body > .col-wrap .col:after{
	content:"";
	position:absolute;
	right:0;
	top:50%;
	display:block;
	background:#f4f4f4;
	width: 1px;
	height: 64px;
	margin-top: -32px;
}
.result-box .ticket-body > .col-wrap .col-4:after{
	display:none;
}
.result-box .ticket-body > .col-wrap .txt-1{
	display:block;
	color:#444;
	font-size: 16px;
	font-weight: 500;
	margin-bottom:10px;
}
.result-box .ticket-body > .col-wrap .txt-2{
	display:block;
	color: #6b6b6b;
	font-size: 14px;
	font-weight: 400;
	text-align:center;
	word-break:keep-all;
}
.result-box .ticket-body > .col-wrap .txt-3{
	color: #444444;
	font-size: 16px;
	font-weight: 500;
}
.result-box .ticket-body > .col-wrap .txt-4{
	color: #444444;
	font-size: 12px;
}
.result-box .ticket-body > .col-wrap .txt-5{
	display:block;
	color: #808080;
	font-size: 14px;
	font-weight: 400;
	padding:5px 0;
}
.result-box .ticket-body > .col-wrap .txt-6{
  color: #272727;
  font-size: 20px;
  font-weight: 500;
}
.result-box .ticket-body > .col-wrap .col-3{
	text-align:center;
}
.result-box .ticket-body > .col-wrap .txt-7{
	padding-top:15px;
	display:block;
}
.result-box .ticket-body > .col-wrap  + .tb-wrap.bg-light,
.tb-wrap.bg-light{
	padding:15px;
	background:#fafafa !important;
}
.result-box .ticket-body > .col-wrap  + .tb-wrap .h4,
.tb-wrap .h4{
	color:#444;
	font-size:18px;
}
.result-box .ticket-body > .col-wrap  + .tb-wrap table,
.tb-wrap table{
	width:100%;
}
.result-box .ticket-body > .col-wrap  + .tb-wrap table th,
.tb-wrap table th{
	color:#979797;
	font-weight: 400;
}
.result-box .ticket-body > .col-wrap  + .tb-wrap table th,
.result-box .ticket-body > .col-wrap  + .tb-wrap table td,
.tb-wrap table th,.tb-wrap table td{
	padding:5px;
	box-sizing:border-box;
}
.notice-wrap .k-card-body{
	padding:35px;
}
.notice-wrap .h4{
	color:#272727;
	font-size:20px;
}
.notice-wrap p{
	font-size: 16px;
    color: #6b6b6b;
    padding-left: 20px;
    position: relative;
}
.notice-wrap p:before{
	content: "-";
    margin-right: 9px;
    position: absolute;
    left: 0;
    top: 0;
}
.total-charge {
	display:flex;
	align-items: flex-start;
	min-width:250px
}
.total-charge > .k-card{
	width:100%;
}
.total-charge .k-card-header{
	padding:20px;
}
.total-charge .k-card-body{
	width: 100%;
    box-sizing: border-box;
}
.total-charge .k-card-body table{
	width:100%;
}
.total-charge .k-card-body th{
	color:#979797;
	font-weight:400;
	padding:5px 3px;
	font-size:12px;
	vertical-align: top;
}
.total-charge .k-card-body td{
	color:#444;
	text-align:right;
	padding:5px 3px;
	font-size:12px;
}
.total-charge .k-card-footer {
    box-sizing: border-box;
}
.total-charge .k-card-footer label{
	color:#272727;
	font-weight:500
}
.total-charge .k-card-footer b{
	color:#cb007e;
	font-size:18px;
	margin-left:auto;
	margin-right:0;
}
.total-charge .k-card-footer img{
	vertical-align:middle;
	margin-right:0;
}
.total-charge  .k-card-footer > div:not(.tb-wrap){
	display:flex;
	align-items:center;
	justify-content:center;
}

/* 예약등록 > 4.AWB추가작성*/

.k-card.card-collapse,
.k-card.card-delete{
	padding:20px;
	box-sizing:border-box;
}
.k-card.card-collapse > div,
.k-card.card-delete > div{
	box-sizing:border-box;
}
.k-card.card-collapse .k-card-header,
.k-card.card-delete .k-card-header{
	font-size:18px;
	font-weight:500;
	color:#272727;
	border-bottom:0;
}
.k-card.card-collapse .k-card-header:before {
    position: absolute;
    right: 18px;
    top: 18px;
    content: url(/img/btn-arrow-16px-6b6b6b.svg);
    transform: rotate(270deg);
    transition: 0.3s;
}
.k-card.card-collapse .k-card-header.collapsed:before {
    transform: rotate(90deg);
}
.k-card.card-collapse .k-card-header + .k-card-body,
.k-card.card-delete .k-card-header + .k-card-body{
	border-top:1px solid rgba(0, 0, 0, 0.08);
}
.k-card.card-collapse .k-card-header.collapsed + .k-card-body{
	padding:0 16px;
	border-top:0;
}
.k-card .k-card-header .collapse-btn{
    margin-left: auto;
    margin-right: 0;
    background: url(/img/btn-arrow-16px-6b6b6b.svg) no-repeat center;
    transform: rotate(270deg);
    transition: 0.3s;
    height: 30px;
    outline: 0;
    box-shadow: none;
}
.k-card .k-card-header .collapse-btn.collapsed{
	transform: rotate(90deg);
}
.k-card.card-delete .k-card-header{
	display:flex;
}
.k-card.card-delete .k-card-header:before{
	display:none;
}
.k-card.card-delete .k-card-header .btn-card-delete{
	margin-left:auto;
	margin-right:0;
	border:0;
	width:26px;
	height:26px;
	display:block;
	background: url(/img/btn-close-24px.svg) no-repeat center;
    background-size: 16px;
}
.search-wrap{
	height: 56px;
    padding: 0.375rem 0.75rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    border: 1px solid #f3f3f3;
    border-radius: 8px;
    background: #f3f3f3 !important;
    color: #272727;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-shadow: none !important;
    overflow: hidden;
}
.search-wrap > .form-control{
	height:auto;
	padding:0;
}
.search-wrap button{
	border:0;
	background:url(/img/btn-search-20-px.svg) no-repeat center;
	width: 42px;
    height: 100%;
}
.dim-wrap.bg-light{
	background: #fafafa;
	border-radius: 8px;
	padding:20px;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.dim-wrap.bg-light .form-row label{
	display:inline-block;
}
.dim-wrap.bg-light .form-row{
	align-items:center;	
}
.dim-wrap.bg-light .form-row .form-control + span{
	margin-right:20px;
	color:#979797
}
.btn-add-bkDetails{
	border:0;
	background:none;
	color:#cb007e;
	font-size:18px;
	font-weight:500;
	margin-left:20px;
}
.btn-add-bkDetails .k-icon{
	color:#cb007e;
	width:40px;
	height:40px;
	border-radius:50%;
	background:rgba(203,0,126,0.08);
	margin-right:10px;
}
.total-charge .tb-wrap th{
	font-weight:400;
}
.total-charge .tb-wrap td{
	text-align:right;
	color:#444;
	font-weight:500;
}
.popup-search-form.form-row{
	margin-bottom:20px;
}
.popup-search-form.form-row .form-control {
    background: #fff !important;
    border: 1px solid #efefef;
    height:48px
}
.popup-search-form.form-row .search-wrap{
	background:#fff !important;
    height:48px
}

.popup-search-form.form-row .search-user-wrap{
/* 	background:#f3f3f3 url(/img/btn-search-20-px.svg) no-repeat left 5px center; */
/* 	padding-left:30px; */
	background:#f3f3f3; 
	box-sizing:border-box;
}
.popup-search-form.form-row .search-user-wrap .form-control{
	background:transparent !important;
}

.popup-search-form.form-row .btn{
	height: 48px;
    padding: 0;
    width: 85px;	
}
.k-card.splitter{
	flex-direction: row;
	width:100%;	
}
.k-card.splitter > div{
	border-radius:0;
	border:0;
	height: 100%;
    overflow: scroll;
}
.btn.btn-outline-rounded ,
.btn.btn-outline-rounded {
    border-radius: 19px;
    border-color: #eaeaea;
    color: #444;
    font-weight: 500;
}
.k-card.splitter .k-card-header.d-flex{
	align-items:center;
}
.k-card.splitter .k-card-header h3.h3{
	font-size:18px;
}
.k-card.splitter > div:first-child{
	border-right:1px solid #efefef;
}
.grid-body.h-48 td{
	height:48px;
	line-height:48px;
}
.grid-body.bg-light td{
	background:#fff;
}
.k-card.splitter .grid-body{
	position:relative;
}
.k-card.splitter .grid-body .py-3.text-center{
	position: sticky;
	bottom:0;
	width:100%;
}


/* 예약등록 > 5.최종확인 */
.ECS_FA1200_final{
	position:relative;
	max-width:100%;
	background:#fff;
	padding-top:35px;
}

.ECS_FA1200_final:before{
	content:"";
	position:Absolute;
	display:block;
	height:120px;
	width:100%;
	background:#cb007e;
	opacity:0.08;
	left:0;
	top:0;
	z-index:0;
}
.final-confirm{
	margin-bottom:50px
}
.input-group.form-control > label{
	border-left:1px solid #ddd;
	padding-left:20px;
}
.input-group.form-control > label:first-child{
	border-left:0;
}
.total-charge td .collapse-btn{
	position:relative;
	border:0;
	padding-right:20px;
	background:none;
}
.total-charge td .collapse-btn:not(.collapsed):before {
    position: absolute;
    right:0;
    top: 3px;
    content:"";
    background:url(/img/btn-arrow-16px-6b6b6b.svg) no-repeat center;
    width:16px;
    height:12px;
    background-size:16px 12px;
    transform: rotate(270deg);
    transition: 0.3s;
}
.total-charge td .collapse-btn.collapsed:before {
	position: absolute;
    right:0;
    top: 3px;
    content:"";
    background:url(/img/btn-arrow-16px-6b6b6b.svg) no-repeat center;
    width:16px;
    height:12px;
    background-size:16px 12px;
	transform: rotate(90deg);
	transition: 0.3s;
}
.total-charge td .collapse-btn.collapsed + .collapse-content{
	display:none;
}
.total-charge td .collapse-btn:not(.collapsed) + .collapse-content{
	display:block;
}
.total-charge td .collapse-content{
	color:#979797;
	font-size:11px;
}


.result-box .booking-list{
	background:#eaeaea;
	border:1px solid #dfdfdf;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	overflow-y:auto;
	min-height: 680px;
}
.result-box .booking-list + .txt-secondary{
	color:#979797;
	font-size:15px;
	font-weight:400;
}
.result-box .booking-list ul{
	padding:24px 20px;
}
.result-box .booking-list ul li{
	margin-bottom:20px;
}
.result-box .booking-list ul li.no-data{
	text-align:center;
	height: 680px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.result-box .booking-list ul li.no-data img{
	margin-bottom:15px;
}
.result-box .booking-list ul li.no-data p{
	color:#646464;
	font-size:20px;
	flex:none;
}
.result-box .booking-list ul li .ticket-wrap{
	box-shadow: 0px 2px 12px rgba(0,0,0,0.08);
	-webkit-border-radius: 12px;
	-moz-border-radius:12px;
	border-radius:  12px;
}
.result-box .booking-list ul li .ticket-header{
	display:flex;
	height:64px;
	background: linear-gradient(180deg, #f50085 0%, #cb007e 100%);
	-webkit-border-radius: 12px 12px 0 0;
	-moz-border-radius:  12px 12px 0 0;
	border-radius:  12px 12px 0 0;
}
.result-box .booking-list ul li .ticket-body{
/* 	display:flex; */
	background:#fff;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0 0 12px 12px;
	-moz-border-radius: 0 0 12px 12px;
	border-radius: 0 0 12px 12px;
}
.result-box .booking-list ul li .ticket-wrap .ticket-wrap-left{
	flex:1 2 auto;
	flex-wrap: wrap;
}
.result-box .booking-list ul li .ticket-wrap .ticket-wrap-right{
	position:relative;
    flex: 0 0 40%;
}
.result-box .booking-list ul li .ticket-wrap .ticket-wrap-right:before{
    position: absolute;
    left: 0;
    top: 0;
	content:"";
	display:block;
	background-image: linear-gradient(to bottom, #dfdfdf 33%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 2px 12px;
    background-repeat: repeat-y;
    width: 2px;
    height: 100%;
    z-index:2;
}
/* .result-box .booking-list ul li .ticket-wrap .ticket-body .ticket-wrap-right:before{
    content:"";
	display:block;
	position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to bottom, #dfdfdf 33%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 2px 12px;
    background-repeat: repeat-y;
    width: 2px;
    height: 100%;
} */
.result-box .booking-list ul li .ticket-wrap .ticket-wrap-right .right-top .top-left .ballon {
	margin-left: 10px;
	position: relative;
}

.result-box .ticket-header .ticket-wrap-left {
    line-height: 65px;	
}
.result-box .ticket-header .ticket-wrap-left  > div{
	height:65px;
	line-height:65px;
    padding-left:20px;
    vertical-align: middle;
}
.result-box .ticket-header .ticket-wrap-left  .airline-wrap{
	height:100%;
}
.result-box .ticket-header .ticket-wrap-left  .airline-logo{
	display:inline-block;
	margin-right:5px;
	width:44px;
	height:44px;
	vertical-align: middle;
	text-align:center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background:#fff;
	overflow:hidden;
	padding: 4px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.result-box .ticket-header .ticket-wrap-left  .airline-logo img{
	width:36px;
	height:36px;
}
.result-box .ticket-header .ticket-wrap-left  .airline-name{
	font-size: 20px;
	font-weight: 400;
	color:#fff;
	vertical-align: middle;
	display: unset;
}
.result-box .ticket-body .ticket-wrap-left{
	display:flex;
	align-items: center;
	flex-shrink: 0;
}
.result-box .ticket-body .ticket-wrap-left .col-wrap{
	display:flex;
	width:100%;
	border-bottom:1px solid #dfdfdf;
    align-items: center;
}
.result-box .ticket-body .ticket-wrap-left .col-wrap:last-child{
	border-bottom:0;
}
.result-box .ticket-body .ticket-wrap-left .col{
	position:relative;
	padding:20px;
}
.result-box .ticket-body .ticket-wrap-left .col-1{
	width:15%;
	box-sizing:border-box;
}
.result-box .ticket-body .ticket-wrap-left .col-2{
	width:28%;
	box-sizing:border-box;
}
.result-box .ticket-body .ticket-wrap-left .col-3{
	width:20%;
	box-sizing:border-box;
}
.result-box .ticket-body .ticket-wrap-left .col-4{
	width:35%;
	box-sizing:border-box;
}
.result-box .ticket-body .ticket-wrap-left .col:after{
	content:"";
	position:absolute;
	right:0;
	top:50%;
	display:block;
	background:#f4f4f4;
	width: 1px;
	height: 64px;
	margin-top: -32px;
}
.result-box .ticket-body .ticket-wrap-left .col-4:after{
	display:none;
}
.result-box .ticket-body .ticket-wrap-left .txt-1{
	display:block;
	color:#444;
	font-size: 16px;
	font-weight: 500;
	margin-bottom:10px;
}
.result-box .ticket-body .ticket-wrap-left .txt-2{
	display:block;
	color: #6b6b6b;
	font-size: 14px;
	font-weight: 400;
	text-align:center;
	word-break:keep-all;
}
.result-box .ticket-body .ticket-wrap-left .txt-3{
	color: #444444;
	font-size: 16px;
	font-weight: 500;
}
.result-box .ticket-body .ticket-wrap-left .txt-3 img{
	vertical-align:middle;
}
.result-box .ticket-body .ticket-wrap-left .txt-4{
	color: #444444;
	font-size: 12px;
}
.result-box .ticket-body .ticket-wrap-left .txt-5{
	display:block;
	color: #808080;
	font-size: 14px;
	font-weight: 400;
	padding:5px 0 10px;
}
.result-box .ticket-body .ticket-wrap-left .txt-6{
  color: #272727;
  font-size: 14px;
  font-weight: 400;
}
.result-box .ticket-body .ticket-wrap-left .col-3{
	text-align:center;
}
.result-box .ticket-body .ticket-wrap-left .txt-7{
	padding-top:10px;
	display:block;
}
.result-box .ticket-header .ticket-wrap-right {
	position:relative;
}
.result-box .ticket-header .ticket-wrap-right  > div{
	text-align:center;
	color:#fff;
	font-size:18px;
	opacity:.8;
	font-weight:400;
	height: 100%;
    line-height: 64px;
}
.result-box .ticket-header .ticket-wrap-right :before{
	content:"";
	position:absolute;
	display:block;
	left:0;
	top:0;
	z-index:0;
	width:100%;
	height:100%;
	background:url(/img/img_ticket_header.png) no-repeat center;
	background-size:100% auto;
}
.result-box .ticket-body .ticket-wrap-right{
	display:flex;
	align-items: stretch;
	padding:0 24px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.result-box .ticket-body .ticket-wrap-right > div{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.result-box .ticket-body .ticket-wrap-right .right-top{
	display: flex;
    justify-content: space-around;
    align-items: Center;
    width: 100%;
    margin: 10px 0;
    color: black;
    gap: 10px;
}
.result-box .ticket-body .ticket-wrap-right .right-top .ticket-rate{
	font-size: 1.2rem;
}
.result-box .ticket-body .ticket-wrap-right .right-top .ticket-rate b{
	font-size: 2rem;
	font-weight: 800;
}
.result-box .ticket-body .ticket-wrap-right .right-top button:not(.h-auto){
	max-height: 21px;
}

.result-box .ticket-body .ticket-wrap-right .right-top .top-left {
	width: 55%;
	display: flex;
	flex-direction: column;
}
.result-box .ticket-body .ticket-wrap-right .right-top .top-right {
	width: 45%;
	display: flex;
	justify-content: space-evenly;
}
.result-box .ticket-body .ticket-wrap-right .right-bottom {
	width:100%;
    margin-bottom: 10px;
	display:flex;
	gap: 10px;
}
.result-box .ticket-body .ticket-wrap-right .bottom-left{
	width: 55%;
	display:flex;
	justify-content: center;
}
.result-box .ticket-body .ticket-wrap-right .bottom-left .benefit-card {
	padding: 8px 10px;
	margin-bottom: 5px;
	border-radius: 8px;
	background: #f3f3f3;
	color: black;
}
.result-box .ticket-body .ticket-wrap-right .bottom-left .benefit-card .benefit-amount {
	width: 100%;
	display: flex;
	align-items: flex-end;
}
.result-box .ticket-body .ticket-wrap-right .bottom-left .benefit-card .benefit-amount span:nth-child(1) {
	font-weight: 700;
	font-size: 16px;
	color: black;
}
.result-box .ticket-body .ticket-wrap-right .bottom-left .benefit-card .benefit-amount span:nth-child(2) {
	font-size: 12px;
	color: #6b6b6b;
}
.result-box .ticket-body .ticket-wrap-right .bottom-left .benefit-card .benefit-amount button {
	padding: 2px 10px 0;
	margin-left: 8px;
	background-color: rgba(203, 0, 126, 0.7);
	border: none;
	border-radius: 10px;
	font-size: 13px;
}
.result-box .ticket-body .ticket-wrap-right .bottom-left .benefit-card .benefit-amount button a {
	color: white;	
}
.result-box .ticket-body .ticket-wrap-right .btn-group{
	width: 45%;
	display:flex;
	justify-content: space-evenly;
	align-items: center;
}
.result-box .ticket-body .ticket-wrap-right .btn-group button{
	height:40px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border:1px solid #cb007e;
	line-height:38px;
	text-align:center;
	flex:1;
    justify-content: space-around;
    font-size:16px;
    font-weight:400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor:pointer;
}
.result-box .ticket-body .ticket-wrap-right .btn-group .btn-01{
	margin-right:10px;
    border-color: #d0d0d0;
}
.result-box .ticket-body .ticket-wrap-right .btn-group .btn-01 img{
	width: 18px;
	vertical-align:middle;
}
.result-box .ticket-body .p-10{
	width:100%;
	flex:none;
	padding:10px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.result-box .ticket-body .p-10 .k-card-deck{
	margin-top:0;
}
.result-box .ticket-body .p-10 .k-card-deck .k-card{
	flex: 1;
	border:0;
	padding:10px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow:visible;
}
.result-box .ticket-body .p-10 .k-card-deck .k-card.on{
	background:rgba(203,0,126,0.08);
}
.result-box .ticket-body .p-10 .k-card-deck button{
	margin-bottom:10px;
	cursor:pointer;
}
.result-box .ticket-body .p-10 .k-card-deck .btn-dropdown{
	border-color:#eaeaea !important;	
}
.result-box .ticket-body .p-10 .btn-view-flight{
	position:relative;
	height: 44px;
	line-height:42px;
	-webkit-border-radius:22px;
	-moz-border-radius: 22px;
	border-radius: 22px;
	background:#f3f3f3;
	border:1px solid #f3f3f3;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align:center;
    color:#272727;
    font-size:16px;
    align-items:center;
    justify-content:center;
}
.result-box .ticket-body .p-10 .btn-view-flight img{
    position: absolute;
    right: 13px;
    top:12px;
    height: 20px;
}

.result-box .ticket-body .k-card.on .btn-view-flight{
	border: 1px solid #cb007e;
	background: #fbebf5;
	color:#cb007e
}
.result-box .ticket-body .k-card .btn-view-flight .k-icon{
	display:none;
}
.result-box .ticket-body .k-card.on .btn-view-flight .k-icon{
	display:inline-block;
}
.result-box .ticket-body .btn-view-flight.on{
	border-color:#979797;
}
/* .result-box .ticket-body .btn-view-flight:after{
	width: 1em;
    height: 2.6em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
	content:"";
	color:#979797;
    position: absolute;
    right: 15px;
    top: 0px;
}
.result-box .ticket-body .btn-view-flight.on:after{
	width: 1em;
    height: 2.6em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
	content:"";
	color:#979797;
} */
.result-box .ticket-body .k-card {
	position:relative;
}
.result-box .ticket-body .view-flight{
	position:absolute;
	top:64px;
	left:0;
	background:#fff;
	border:1px solid #ccc;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	box-shadow: 0px 6px 16px rgba(0,0,0,.15);
	width: 768px;
    z-index: 3;
    display:none;
}
.result-box .ticket-body .k-card:nth-child(3) .view-flight,
.result-box .ticket-body .k-card:nth-child(4) .view-flight{
	left:auto;
	right:0;
}

.result-box .ticket-body .p-10 .k-card-deck .exp-total{
	background:#fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding:10px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border:1px solid #eaeaea;
}
.result-box .ticket-body .p-10 .k-card-deck .exp-total span{
	display:block;
	color:#272727;
	font-size:16px;
	font-weight:400;
}
.result-box .ticket-body .p-10 .k-card-deck .exp-total .title{
	color: #979797;
}
.result-box .ticket-body .p-10 .k-card-deck .k-card .no-data{
	text-align: center;
	padding:30px 0;
}
.result-box .ticket-body .p-10 .k-card-deck .k-card .no-data img{
	margin-bottom:10px;
}
.result-box .ticket-body .p-10 .btn-booking{
/*	display:block; */
	height:40px;
	line-height:40px;
	width:19%;
	border:0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-align:center;
    font-size:16px;
    font-weight:400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor:pointer;
    background:#b5b5b5;
    color:#fff;
    margin:20px 3% 5px;
}
.result-box .ticket-body .p-10 .btn-booking.on{
	 background:#cb007e;
}

.result-box .ticket-body .p-10 .btn-02{
/*	display:block; */
	position:absolute;
	height:40px;
	line-height:40px;
	width:80px;
	border:0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-align:center;
    font-size:16px;
    font-weight:400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor:pointer;
    background:#fff;
    color:#c3c3c3;
    right:10px;
    top:10px;
}

.result-box .ticket-body .p-10 .btn-02:hover{
    color:#000;
}

.result-box .ticket-body .p-10 .btn-02:before{
	content:"";
	position:absolute;
	display:block;
	left:5px;
	top:0;
	z-index:0;
	width:15px;
	height:40px;
	background: url(/img/blueopal/ico_backArrow.png) no-repeat center;
	background-size:100% auto;
}

.result-box .ticket-body .p-10 .btn-02:hover:before{
	content:"";
	position:absolute;
	display:block;
	left:5px;
	top:0;
	z-index:0;
	width:15px;
	height:40px;
	background: url(/img/blueopal/ico_backArrowOn.png) no-repeat center;
	background-size:100% auto;
}
.ticket-more {
    background: #f7f7f7;
    border-top: 1px solid #dfdfdf;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    border-radius: 0 0 12px 12px;
}
.ticket-more > div:after {
    content: "";
    width: 7px;
    height: 7px;
    transform: translateY(-75%) rotate(45deg);
    border-right: 1px solid #979797;
    border-bottom: 1px solid #979797;
    display: inline-block;
    margin-left: 10px;
}
.result-box .list-title .dropdown-st{
	margin-left:10px;
}
.result-box .weekly{
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	border:1px solid #dfdfdf;
	background:#fff;
	margin-bottom:60px;
}


.tab-title{
	display:inline-block;
	height: 56px;
	border-radius: 30px;
	background: #ebebeb;
	padding:5px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    white-space:nowrap;
}
.tab-title button{
	font-size:22px;
	color:#aaa;
	font-weight:700;
   	height:46px;
   	padding:0 20px;
    background:transparent;
    -webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	border:0;
	cursor: pointer;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.tab-title button.on{
    box-shadow: 0px 4px 16px rgba(0,0,0,0.06);
	color:#272727;
	background:#fff;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.ad-box{
	width:196px;
	height:320px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	overflow:hidden;
	background:#fff;
}
.ad-box .k-card-header{
	font-size:18px;
	padding:18px;
}
.ad-box .k-card-header span{
	display:block;
	font-size:14px;
	color: #cb007e;
}
.ad-box .k-card-body{
	padding:0;
}

.filter-box{
	background:#fff;
	width: 240px;
	min-width:240px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	border: 1px solid #dfdfdf;
	padding:30px 20px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.filter-box .filter-wrap{
	margin-bottom:35px;
}
.filter-box .filter-wrap:last-child{
	margin-bottom:0;
}
.filter-box .filter-wrap .box-title{
	margin-bottom:10px;
}





/*최적화운임 조회*/
#ECS_FE0300 > .container > .d-flex{
	justify-content:space-between;
}
#ECS_FE0300 .filter-box{
	margin-right:30px;
}
#ECS_FE0300 .ad-box{
	position:static;
	margin-left:30px;
	height:fit-content;
}
#ECS_FE0300 .result-box{
	width:auto;
	flex:1;
}

/*검색 선택 드롭다운 박스*/
.k-list .k-item .list-item-check{
	position:relative;
	display:flex;
	width:100%;
}
.k-list .k-item.k-state-selected .list-item-check:after {
    content: "\e118";
    font-family: "WebComponentsIcons" !important;
    display: block;
    color: #cb007e;
    position: absolute;
    right: 10px;
    top: 3px;
    font-size: 12px;
}




/*예약등록 colsol_tab*/
.stepper-wrap{
	float:right;
    background: none;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 0px;
    height: auto;
	overflow:hidden;
}
.stepper-wrap li{
	position:relative;
	border:0;
	background:none;
	height:auto;
	width: 75px;
    vertical-align: top;
    float:left;
    margin-right:20px;
    text-align:center;
}
.stepper-wrap li label{
	color:#333;
	line-height:1.2;
	font-size:12px;
	word-break:keep-all;
	font-weight:normal;
}
.stepper-wrap li.on label{
	color:#cb007e;
}
.stepper-wrap ul li:after {
    content: "";
    position: absolute;
    left:55px;
    top: 13px;
    width: 80px;
    height: 1px;
    border-top:1px dashed #dfdfdf;
}
.stepper-wrap ul li:last-child{
	margin-right:0;
}
.stepper-wrap ul li:last-child:after{
	display:none;
}
.stepper-wrap li:before{
	content:"";
	width:24px;
	height:24px;
	line-height:24px;
	border-radius:50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	display:block;
	margin:0 auto 5px;
	background:#eaeaea;
}
.stepper-wrap li.on:before{
	background:#cb007e;
	color:#fff;
}
.stepper-wrap li:nth-child(1):before{
	content:"1"
}
.stepper-wrap li:nth-child(2):before{
	content:"2"
}
.stepper-wrap li:nth-child(3):before{
	content:"3"
}
.stepper-wrap li:nth-child(4):before{
	content:"4"
}
.stepper-wrap li:nth-child(5):before{
	content:"5"
}


#ECS_FA0100_00_000_searchDetails{
	min-width:250px;
}

/*예약 목록 조회*/

.ECS_FA0100_list ul li.k-card{
	margin-bottom:20px;	
}
.ECS_FA0100_list ul li.k-card  > div{
	position:relative;
	overflow-x:auto;
}
.ECS_FA0100_list ul li .ol-popup-closer{
    position: absolute;
    right: 0;
    top: 0;
    padding: 6px 10px;
    background: #fff;
}
.ECS_FA0100_list ul li.k-card > div > .d-flex{
    width:100%;
    flex-direction: row;
}
.ECS_FA0100_list .col-a,
.ECS_FA0100_list .col-b,
.ECS_FA0100_list .col-c{
	padding:15px 20px;
	box-sizing:border-box;
	border-right:1px solid #dfdfdf;
}
.ECS_FA0100_list .col-a{
	width:35%;
}
.ECS_FA0100_list .col-b{
	width:22%;
}
.ECS_FA0100_list .col-c{
	width:25%;
	align-items:start;
	justify-content:center;
/*     overflow-y: scroll; */
}
.ECS_FA0100_list .col-d{
	width:18%;
}
.ECS_FA0100_list .col-a .top {
	display:flex;
	padding:0 0 5px;
	align-items:center;
	border-bottom:1px solid #efefef;
}
.ECS_FA0100_list .col-a .top .btn{
	font-size:12px;
	padding: 0.2rem 0.3rem;
    border-radius: 4px;
    margin-left:1rem;
    margin-right:auto;
    white-space:nowrap;
}
.ECS_FA0100_list .col-a .top .btn-queued{
	background:#eaeaea;
	color:#6b6b6b;
}
.ECS_FA0100_list .col-a .top .btn-confirmed{
	background:rgba(203,0,126,0.08);
	color:#cb007e;
}
.ECS_FA0100_list .col-a .top {
	margin-left:auto;
	margin-right:0;
}
.ECS_FA0100_list .col-a .top + div{
	padding-top:20px;
}
.ECS_FA0100_list .col-a .top .btn-more{
	width:40px;
	height:40px;
	border-radius:50%;
	background:url(/img/btn-menu-dot3.svg) no-repeat center;
	margin-right:0;
	margin-left:5px;
	border:0;
}
.ECS_FA0100_list .col-a .top .btn-more:active,
.ECS_FA0100_list .col-a .top .btn-more:active:hover{
	background-color:#f5f5f5;
}
.ECS_FA0100_list  .col-a .flight-route.pb-5{
	font-size:12px;
	color:#979797;
}
.ECS_FA0100_list .col-a table{
	width:100%;
}
.ECS_FA0100_list .col-b .top{
	display:flex;
	margin-bottom:30px;
}
.ECS_FA0100_list .col-b .top img{
	height:20px;
	width:Auto;
	margin-right:5px;
}
.ECS_FA0100_list .col-b .top b{
	font-size:14px;
	color:#444;
	margin-left:auto;
	margin-right:0;
	white-space:nowrap;
}
.ECS_FA0100_list .col-b table{
	width:100%;
}
.ECS_FA0100_list .col-b table th,
.ECS_FA0100_list .col-b table td{
	border-bottom:1px solid #efefef;
	padding:5px 0;
}
.ECS_FA0100_list .col-b table th{
	color:#979797;
	font-weight:normal;
}
.ECS_FA0100_list .col-b table td{
	text-align:right;
	color:#444;
}
.ECS_FA0100_list .col-b table tr:last-child th,
.ECS_FA0100_list .col-b table tr:last-child td{
	border-bottom:0;
}
.ECS_FA0100_list .col-c b{
	display:block;
	color:#444444;
	margin-bottom:15px;
}
.ECS_FA0100_list .col-c .k-card {
	flex-direction: row;
	padding:10px;
	margin-bottom:20px;
	flex-wrap: wrap;
}
.ECS_FA0100_list .col-c .k-card > *{
	flex:1;
	border-right:1px solid #dfdfdf;
	text-align:center;
}
.ECS_FA0100_list .col-c .k-card > :last-child{
	border-right:0;
}
.ECS_FA0100_list .col-c .k-card label{
	color:#979797;
	font-size:11px;
	padding:5px 10px;
	text-align:center;
	display:block;
}
.ECS_FA0100_list .col-c .k-card span{
	color:#444;
	font-size:13px;
	display:block;
}
.ECS_FA0100_list .col-d{
	display:flex;
	align-items:center;
	justify-content: center;
	padding:0 20px;
	flex-direction: column;
}
.ECS_FA0100_list .col-d button{
	width:100%;
	flex:1;
	max-width:150px;
	height: 40px;
    max-height: 40px;
    margin:2px auto;
   -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display:block !important
}
.ECS_FA0100_list .col-d button b{
	color:#444;
}
.ECS_FA0100_list .col-c .text-center{
	position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.ECS_FA0100_list .btn-group button{
	margin-right:10px;
	border:1px solid #eaeaea;
	min-width:65px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.ECS_FA0100_list .btn-group button.active{
	background:rgba(203,0,126,0.08);
	color:#cb007e;
}

.li-cargoReceipt.k-card > div{
	border-bottom:1px solid rgba(0, 0, 0, 0.08);
}
.li-cargoReceipt.k-card > div:last-child{
	border-bottom:0;
}

#bookingCopyPopup .k-card.bg-light{
	 border:0;
	 flex-direction: row;
	 padding:10px;
	 align-items:center;
}
#bookingCopyPopup .k-card.bg-light > div{
	text-align:center;
}
#bookingCopyPopup .k-card.bg-light > div:after{
	content:"";
	display:block;
	position:absolute;
	right:0;
    top: 50%;
    width: 1px;
    height: 30px;
    background: #efefef;
    transform: translateY(-50%);
}
#bookingCopyPopup .k-card.bg-light > div:last-child:after{
	display:none;
}
#bookingCopyPopup .k-card.bg-light > div span{
	display:block;
}

.d-flex.bg-light.rounded-pill > div:after{
	content:"";
	display:block;
	position:absolute;
	right:0;
    top: 50%;
    width: 1px;
    height: 30px;
    background: #efefef;
    transform: translateY(-50%);
}
.d-flex.bg-light.rounded-pill > div:last-child:after{
	display:none;
}
.attachment-list li{
	border-bottom:1px solid #eaeaea;
	display: flex;
    align-items: center;
    padding:10px;
}
.attachment-list li button{
	background:#fff;
	width:60px;
	border:1px solid #dfdfdf;
}
.attachment-list li img{
	margin-right:10px;
}

.schedule-weekly .k-card-header .flight-route b{
	font-size:20px;
	font-weight:bold;
}
.schedule-weekly .k-card-header .flight-route b + img{
	margin-left:5px;
}
.schedule-weekly .k-card-header .flight-route span.small{
	font-size:14px !important;
	color:#808080 !important;
	display: block;
    font-weight: normal;
    text-align: center;
}
.flight-route > div {
    text-align: center;
}
.flight-route-time{
	display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 16px;
    gap: 5px;
}
.flight-route-time > div{
	padding-top:20px;
	padding-bottom:10px;
	position:relative;
}
.flight-route-time b {
    font-size: 20px;
   font-weight:bold;
}
.flight-route-time span.small{
	color:#979797;
	padding-top:10px;
	font-size:14px;
	display:block;
}
.flight-route-time > div:first-child span.small{
	text-align:left;
}
.flight-route-time > div:last-child span.small{
	text-align:right;
}

.flight-route-time span.small.time{
	font-size:12px;
	color:#444;
}

.flight-route-time span.badge{
	position:Absolute;
	right:0;
	top:5px;
	display:block;
	text-align:center;
	font-weight:normal;
	color: #444;
    padding: 0;
    font-size: 12px;
}

.schedule-weekly .k-card-header{
	align-items:center
}
.schedule-weekly .k-card-header > div{
	width:500px;
	width: 90%;
    max-width: 900px;
}
.schedule-weekly .k-card{
	display:flex;
    flex-direction: row;
}
.schedule-weekly ul.k-card > li{
	flex:1;
	border-right:1px solid #eaeaea;
	padding:0 10px 10px
}
.schedule-weekly ul.k-card > li b{
	display:block;
	padding:20px 0;
	text-align:center;
	border-bottom:1px solid #eaeaea;
	color:#272727
}
.schedule-weekly ul.k-card > li:last-child{
	border-right:0;
}
.schedule-weekly ul.k-card > li button{
	width:100%;
	box-sizing: border-box;
    border: 0;
}
.fc0700_calendar{
	background:#f7f7f7;
}
.fc0700_calendar td{
	height:140px;
}
.fc0700_calendar thead th{
	font-weight:normal;
	background:#f7f7f7;
	border-right: 1px solid #eaeaea;
	border-bottom:1px solid #eaeaea;
	color:#444;
	font-size:16px;
}
.fc0700_calendar .th-1,
.fc0700_calendar .td-1{
	background:#fff;
	border-bottom:1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	padding:0 20px;
}
.fc0700_calendar .th-1 img{
	vertical-align:middle;
}
.fc0700_calendar .tb-grid tbody td {
    height: 140px !important;
    line-height: 1;
    border-bottom:1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
}
.fc0700_calendar.mobile-only .tb-grid tbody td{
	height:80px !important;
}
.fc0700_calendar .tb-grid tbody td:last-child{
	border-right:0;
}
.fc0700_calendar .td-1 > div:not(.flight-route-time){
	height:30px;
	line-height:30px;
	border-bottom:1px solid #eaeaea;
	margin-bottom:20px;
	text-align:left;
	color:#444;
}

.btn-circle{
	position:relative;
    display: block;
    width: 40px;
    height: 40px;
    background: #f3f3f3;
    border-radius: 50%;
    box-sizing: border-box;
}
.btn-circle:before{
    position: absolute;
	right: 10px;
    top: 12px;	
    content: url(/img/btn-arrow-16px-6b6b6b.svg);
    transform: rotate(270deg);
    transition: 0.3s;
}
.btn-circle.collapsed:before{
    transform: rotate(90deg);
}
ul.FC0900_weekly{
	display:flex;
}
ul.FC0900_weekly li{
	flex:1;
}
ul.FC0900_weekly li .flight-route{
	border-bottom:1px solid #eaeaea;
	margin-bottom:10px
}
ul.FC0900_weekly li .tb-wrap{
	margin-bottom:10px;
}
ul.FC0900_weekly li .tb-wrap td{
	text-align:right;
}
ul.FC0900_weekly li .btn{
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.booking-info-wrap{
	display:flex;
	padding:30px;
	box-sizing:border-box;
	align-items:center;
	justify-content:space-between;
	flex-direction: row;
    display: flex;
    padding: 30px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}
.simple-tracking-wrap {
	border-bottom:1px solid #eaeaea;
}

.simple-tracking-wrap ul{
	flex:1;
}
.booking-info-wrap > div{
	position:relative;
	padding:0 20px;
	text-align:center;
	flex:auto;
}
.booking-info-wrap > div:before,
.simple-tracking-wrap ul li > div:before,
.simple-tracking-wrap table tr td:before{
	content:"";
	display:block;
	background:#eaeaea;
	width:1px;
	height:40px;
	position:Absolute;
	right:0;
	top:0;
}
.booking-info-wrap > div:last-child:before,
.simple-tracking-wrap ul li > div:last-child:before,
.simple-tracking-wrap table tr td:last-child:before{
	display:none;
}
.booking-info-wrap > div label,
.simple-tracking-wrap ul li label,
.simple-tracking-wrap table tr td label{
	color:#979797;
	font-size:14px;
}
.booking-info-wrap > div label + span,
.simple-tracking-wrap ul li span:not(.badge):not(.small),
.simple-tracking-wrap table tr td span:not(.badge):not(.small){
	color:#444;
	font-size:16px;
}
.simple-tracking-wrap ul li{
	position:relative;
	padding:10px 20px;
	text-align:center;
	flex:auto;
	background:#fafafa;
	display:flex;
	border-bottom:1px solid #eaeaea;
	align-items: center;
}
.simple-tracking-wrap ul li:last-child{
	border-bottom:0;
}
.simple-tracking-wrap ul li > div{
	position:relative;
	padding:0 20px;
	white-space:nowrap;
	overflow: hidden;
    text-overflow: ellipsis;
}
.simple-tracking-wrap > .d-flex{
	border-bottom:1px solid #eaeaea;
}
.simple-tracking-wrap > .d-flex:last-child{
	border-bottom:0;
}
.simple-tracking-wrap > .d-flex .left{
	border-right:1px solid #eaeaea;
	padding:0 20px;
	width:340px;
}
.simple-tracking-wrap > .d-flex .left div.flight-route{
	padding:30px 0;
}
.simple-tracking-wrap > .d-flex .left div:not(.flight-route){
	border-bottom:1px solid #eaeaea;	
	padding:5px 0;
}
.simple-tracking-wrap ul li .badge{
	font-size:14px;
	font-weight:normal;
}




.simple-tracking-wrap table{
	width:100%;
	background:#fafafa;
	table-layout:fixed;
}
.simple-tracking-wrap table tr {
	box-sizing: border-box;
    border-bottom: 1px solid #eaeaea;
}
.simple-tracking-wrap table tr:last-child{
	border-bottom:0;
}
.simple-tracking-wrap table tr td{
    position: relative;
    padding: 10px 20px;
    white-space: nowrap;
    text-align: center;
    box-sizing:border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.simple-tracking-wrap table tr td:before{
	top:10px;
}
.simple-tracking-wrap table tr td .flight-time{
	margin:0 auto;
	width:100%;
	max-width:240px;
}

.k-card-header > h4.h4 {
    font-size: 18px;
    padding: 10px 0;
}
.bg-pink{
	background:rgba(203,0,125,.08);
	color:rgba(203,0,125,1);	
}
.bg-purple{
	background:rgba(140,95,234,0.08);	
}
.bg-skyblue{
	background:rgba(12,113,212,.08);
	color:rgba(12,113,212,1);
}
.flight-time{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.status-icon-wrap{
	display:inline-block;
	width:56px;
	height:56px;
	border-radius:50%;
	box-sizing:border-box;
	border:1px solid #ddd;
	line-height:56px;
	text-align:center;
	margin-right:20px;
	margin-left:10px;
	vertical-align: middle;
	background:#fff;
}
.status-icon-wrap img{
	 margin: 10px auto;
}
.tracking-event-list thead tr th{
	background:#dfdfdf;
	text-align:center;
	color:#6b6b6b;
	font-weight:normal;
	padding:10px 0;
	vertical-align:middle;
}
.tracking-event-list thead tr th label{
	margin:0;
	height:auto;
}
.tracking-event-list > table > tbody > tr:after{
    content: "";
    display: block;
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(100% - 8px);
    height: 67px;
    z-index: 1;
    border-radius: 6px;
}
.tracking-event-list > table > tbody > tr{
	position:relative;
}
.tracking-event-list > table > tbody > tr:hover:after{
	transition:.3s;
	background:rgba(203,0,126,0.08);
}
.tracking-event-list tbody tr[id*="specialPriceDetail_tr"]:after,
.tracking-event-list tbody tr[id*="specialPriceDetail_tr"] td tr:after{
	display:none !important;
}
.tracking-event-list tbody tr:hover td b{
	color:#cb007e;
}
.tracking-event-list tbody tr td{
	position:relative;
	padding:10px 0;
	text-align:center;
	border-bottom:1px solid #eaeaea;
}
.tracking-event-list tbody tr:last-child td{
	border-bottom:0;
}
.tracking-event-list tbody tr td:after{
	content:"";
	display:block;
	width:1px;
	height:20px;
	background:#eaeaea;
	position:absolute;
	right:0;
	top:30px;
}
.tracking-event-list tbody tr td:last-child:after{
	display:none;
}
.tracking-event-list tbody tr td{
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
	z-index:2;
}
.collapse-btn{
	
}
.status{
	display:flex;
	align-items:center;
	padding:10px;
	box-sizing:border-box;
}
.status > img{
	margin-right:20px;
}
.status > h3{
	margin-bottom:0;
}
.status.bg-pink h3.h3{
	font-size:20px;
	color:rgba(203,0,125,1);	
}
.status.bg-purple h3.h3{
	color:rgba(140,95,234,1);	
}

.nomadDialog h3.h3{
	font-size:20px;
}
.k-grid.k-card{
	border:1px solid #dfdfdf !important;
}
.k-grid.k-card .k-grid-header{
	border-top:0 !important;
}
.k-grid .k-grid-header:before{
	display:none;
}
.k-grid .k-grid-header-wrap table thead th.k-header {
    background: #efefef !important;
}
.k-grid table thead th.k-header > .k-link{
	color:#6b6b6b !important;
}
.k-grid .k-alt{
	background:transparent;
}
.k-pager-sizes .k-textbox {
    width: 70px;
}
.k-grid .k-pager-numbers .k-link.k-state-selected {
    color: #444;
    background-color: #efefef;
    font-weight: 500;
}
.k-grid .k-pager-numbers .k-link{
	color:#979797;
}
.k-grid .k-pager-numbers .k-link:hover{
    background-color: #efefef;	
}
.tb-grid tbody td .board-view{
	line-height:1.5;
}
.tb-grid tbody td .board-view .board-view-title{
	text-align:left;
	padding-bottom:20px !important;
}

.board-view-title{
	border-bottom:1px solid #cb007e;
	padding-bottom:20px;
}
.board-view-title h3{
	font-size:24px;
	color:#272727;
	margin-bottom:12px;
}
.board-view-title h3 + span.text-secondary{
	white-space:nowrap;
}
.board-view-content{
	padding:60px 50px;
	box-sizing:border-box;
}
.tb-grid tbody td .board-view .board-view-content{
	text-align:left;
	white-space: normal;
    line-height: 2;
}
.tb-grid tbody td .board-view .board-view-content h4 img{
    display: block;
    margin: 0 auto;
}
.tb-grid tbody td .board-view .board-view-content h4 p,
.tb-grid tbody td .board-view .board-view-content h4 span{
    line-height: 1.5;
}
.board-attachment {
	padding:30px 0;
}
.board-attachment h4{
	font-weight:bold;
	margin-bottom:10px;
}
.board-attachment ul li{
	display:flex;
	background:#f3f3f3;
	border-radius:8px;
	padding:15px;
	color:#6b6b6b;
	align-items: center;
	margin-bottom:10px;
}
.board-attachment ul li button.btn{
	background:#fff;
	border:1px solid #dfdfdf;
	border-radius:4px;
	padding: 0.2rem 0.5rem;
    margin-left: auto;
    margin-right: 0;
    font-size: 14px;
}
.board-attachment ul li img{
	margin-right:10px;
}
.board-view-content .btn-primary{
	width:170px;
	height:40px;
}
.board-view-footer .prev,
.board-view-footer .next{
	padding:20px 0;
	display:flex;
}
.board-view-footer .text-secondary{
	margin-left:auto;
	margin-right:0;
}
.board-view-footer a{
	flex:1;
	text-decoration:none;
}
.board-view-footer .prev{
	border-top:1px solid #dfdfdf;
	border-bottom:1px solid #dfdfdf;
}
.board-view-footer .next{
	border-bottom:1px solid #dfdfdf;	
}
.board-view-footer .next .bd-tit:before{
	content: "";
	width: 7px;
    height: 7px;
    display:inline-block;
    transform: translateY(-50%) rotate(45deg);
    border-right: 1px solid #979797;
    border-bottom: 1px solid #979797;
    margin-right:10px;
}
.board-view-footer .prev .bd-tit:before{
	content: "";
	width: 7px;
    height: 7px;
    display:inline-block;
    transform: translateY(-15%) rotate(45deg);
    border-left: 1px solid #979797;
    border-top: 1px solid #979797;
	margin-right:10px;
}
.board-view-footer .prev .bd-tit,
.board-view-footer .next .bd-tit{
	color:#979797;
	border-right:1px solid #eaeaea;
	height:20px;
	padding-right:10px;
	margin-right:10px;
}
.h3-faq{
	font-size:20px;
	font-weight:bold;
	color:#272727;
	margin-bottom:30px;
}
.faq-list li{
	position:relative;
	display:flex;
	padding:20px;
	border-bottom:1px solid #dfdfdf;
	box-sizing:border-box;
	align-items:center;
	font-size:16px;
}
.faq-list li:before{
	content:"";
	display:block;
	position:absolute;
	right:30px;
	top:50%;
	margin-top:-8px;
	width:16px;
	height:16px;
	background: #fff url(/img/btn-arrow-16px.svg) no-repeat center !important;
}
.faq-list .faq-cate{
	width:15%;
	text-align:center;
}
.faq-list .faq-title{
	flex:1;
	color:#272727;
}
.k-card.grid-mobile-wrap .board-list li{
	border:0;
	margin-bottom:0;
	border-radius: 0;
}
.board-list li{
	border-bottom:1px solid #dfdfdf !important;
	padding:20px 15px;
	box-sizing:border-box;
}
.board-list li:last-child{
	  border-bottom: 0 !important;
}
.board-list li .bd-title{
	display:flex;
	margin-bottom:5px;
}
.board-list li .bd-title b{
	flex:1;
}
.board-list li .title .text-secondary{
	margin-left:auto;
	margin-right:0
}
.board-list .bd-date{
	font-size:12px;
	color:#444;
	display:inline-block;
	margin-right:10px;
}
.board-list .view{
	display:inline-block;
	padding-left:20px;
	background:url(/img/icon-eye.svg) no-repeat center left;
	font-size:12px;
	color:#6b6b6b;
}

#filterPopup .k-card-header{
	display:none;
}

/*responsive*/
@media (max-width: 1700px){
	.ad-box{
	display:none;
	}
	.result-box .weekly ul{
	width:100%;
	}
}
 @media (max-width: 1500px){
	.result-box .booking-list ul li .ticket-wrap .ticket-wrap-right {
    flex: 0 0 25%;
	}
	.result-box .weekly ul li p.txt-2 {
    font-size: 13px;
	}
	.result-box .ticket-body .ticket-wrap-right .btn-group button{
	font-size:13px;
	}
	.result-box .ticket-body .ticket-wrap-right{
	padding:0 10px;
	}
}

@media (max-width: 1400px){
	html{
	min-width:0;
	}
	#bodyContents{
	padding-top:60px;
	}
	#mainHeader{
	width:100%;
	box-shadow:none;
	}
	#mainTabStrip > .k-tabstrip-items{
	margin-left:0 !important;
	margin-right:0 !important;
	background:#fff;
	padding-top:12px;
	}
	#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-item{
	width:180px;
	}
	.k-tabstrip.k-tabstrip-scrollable>.k-tabstrip-next,
	.k-tabstrip.k-tabstrip-scrollable>.k-tabstrip-prev{
	display:none !important;
	}
	.dashboard > .container{
	max-width:960px;
	}
	.dashboard .block-1,
	.dashboard .block-2{
	width:100%;
	}
	.dashboard .block-1{
	margin:0;
	}
	.filter-box{
	display:none;
	}
	.result-box .weekly ul li:nth-child(n+5){
	display:none;
	}
	#ECS_FE0300 > .container > .d-flex{
	display:block !important;
	}
	#ECS_FE0300_00_000_rateInputDimList {
	background:#f9f9f9;
	border-radius:8px;
	-webkit-border-radius:8px;
	-moz-border-radius:8px;	
	}
	#ECS_FE0300_00_000_rateInputDimList > div.d-flex .dim-list{
	flex:none !important;
	width:100%;
	}
	#ECS_FE0300_00_000_rateInputDimList > div.d-flex .dim-list + div{
	display:flex;
	width:100%;
	}
	#ECS_FE0300_00_000_rateInputDimList > div.d-flex .dim-list + div > div{
	flex:1;
	}
	#ECS_FE0300_00_000_rateInputDimList .box-div .radio-wrap{
    float: left;
    width: 50%;
	}
	#ECS_FE0300_00_000_rateInputDimList .box-div{
	height:auto;
	}
	.radio-btn-input + .radio-btn{
	width:98%;
	
	}
}
@media (min-width: 992px){
	.m-only{
	display:none !important;
	}
	.pc-only{
		display:block !important;
	}
}
@media (max-width: 991px){
	.m-only{
	display:block !important;
	}
	.pc-only{
	display:none !important;
	}
	#mainTabStrip > .k-tabstrip-items{
	flex-wrap:wrap;
	}
	#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-item {
    width: 25%;
    margin-right: -1px;
    box-sizing: border-box;
	}
	#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-link {
    padding: 6px 0px 6px 6px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
	}
	#mainTabStrip.k-tabstrip-top>.k-tabstrip-items .k-link b{
	font-size:11px;
	}
	.dashboard .block-2 > .d-flex{
	flex-wrap:wrap;
	flex-direction: column-reverse;
	}
	.dashboard .block-2 .block-2-2,
	.dashboard .block-2 .block-2-3{
	width:100%;
	margin:0 0 20px;
	}
	.inner-tab.k-tabstrip-top > .k-tabstrip-items{
	height:44px;
	}
	.inner-tab.k-tabstrip-top > .k-tabstrip-items > .k-item {
    border-radius: 30px;
    height: 34px;
    padding: 0 5px;
    border-radius: 30px;
    font-size: 18px;
	}
	.k-widget.k-window.k-dialog.nomadDialog {
    left: 0 !important;
    margin: 0 2%;
    width: 96% !important;
	padding:0 15px !important
	}
	.nomadDialog .k-dialog-content{
	padding:0
	}
	.nomadDialog .k-dialog-titlebar{
	padding:20px 15px 30px;
	}
    .nomadDialog .k-dialog-titlebar .k-window-title{
	font-size:24px; 
	 }
	.box-finder-01 #cityCategory:before,
	.box-finder-01 #cityCategory .list-item-sub{
	left:100px;
	}
	.box-finder-01 #cityCategory > li > a{
	width:100px;
	font-size:14px;
	}
	.box-finder-01 #cityCategory .list-item-sub {
	width:calc(100% - 100px);
	}
	.box-finder-01 #cityCategory > li > a{
	font-size:12px;
	display: flex;
    line-height: 1;
    align-items: center;
    height:45px;
	}
	.box-finder-01 #cityCategory .list-item-sub li b, 
	.box-finder-02 .box-wrap .list-item-sub li b{
	font-size:12px;
	}
	.box-finder-01{
	height:380px;
	
	}
	.findBox-wrap .input-wrap-left + .k-textbox{
	width:auto;
	}
	.grid-mobile-wrap,
	.grid-mobile-wrap .board-list{
	display:block;
	}
	.grid-pc-wrap {
	display:none;
	}
	.result-box .ticket-body .ticket-wrap-left .col-1,
	.result-box .ticket-body .ticket-wrap-left .col-3{
	width:100px;
	}
	.result-box .ticket-body .ticket-wrap-left .col-2,
	.result-box .ticket-body .ticket-wrap-left .col-4 {
/*     width: auto; */
    flex:1;

 	}
 	.nomadDialog, .nomadDialog.left, .nomadDialog.right{
	opacity:1 !important;
    left: 2% !important;
    right: auto !important;
    top:2% !important;
	width:96% !important;
    height: 96% !important;
    transform: translate(0) !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    border-radius: 6px !important;
	}
	.nomadDialog .k-window-titlebar,
	.nomadDialog.right .k-window-titlebar,
	.nomadDialog.left .k-window-titlebar{
    flex-direction: unset;
    padding: 20px 20px 20px 0;
	}
	.nomadDialog .k-window-title,
	.nomadDialog .k-window-titlebar .k-window-title{
	padding: 0 40px 0 40px;
    font-size: 20px;
	}
	
	.nomadDialog.left .k-window-titlebar .k-window-actions {
    margin-right:0; 
	}
	.result-box .weekly ul li{
 	padding:5px;
 	}
 	.result-box .weekly ul li:after{
 	top:15px;
 	}
 	.result-box .weekly ul li.on > div{
 	padding:15px 0;
 	}
 	.result-box .weekly ul li span.txt-1{
 	font-size:14px;
 	}
 	.result-box .weekly ul li p.txt-2{
 	font-size:11px;
 	}
 	.result-box .list-title {
    justify-content: center;
	}
 	.result-box .booking-list{
 	background:none;
 	border:0;
 	margin-left:-10px;
 	margin-right:-10px;
 	}
 	.result-box .booking-list ul{
 	padding:20px 0;
 	}
	.result-box .booking-list ul li .ticket-body > .d-flex{
	display: block !important;
	}
	.result-box .booking-list ul li .ticket-body .ticket-wrap-right{
	padding-top: 1.5rem;
    border-top: 2px dashed #ddd;
	} 
	.result-box .booking-list ul li {
	padding:0 10px;
	}
	.result-box .booking-list ul li .ticket-wrap {
    box-shadow: 0px 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #dfdfdf;
    border-radius: 12px; 
    overflow: hidden;
	}	
 	.result-box .booking-list ul li .ticket-wrap .ticket-body .ticket-wrap-right:before{
 	display:none;
 	}
	.result-box .ticket-body .ticket-wrap-right > div{
	display:flex;
    flex-wrap: nowrap;
    align-items: center;
	padding:15px;
	display:block;
	}
	.result-box .ticket-body .ticket-wrap-right > div .btn-dropdown{
	margin-right:10px;
	height:40px;
	line-height: 38px;
	}
	.result-box .ticket-body .ticket-wrap-right > div .btn-group{
	padding-top:0;
	}
	.result-box .ticket-body .ticket-wrap-left .txt-5{
	width:100% !important;
	}
	.result-box .ticket-body .ticket-wrap-left .col{
	padding:10px;
	}
	#ECS_FE0300_00_000_rateInputDimList .col-2 .radio-wrap,
	.box-div.dim-list .col-3 .k-dropdown{
	display:none;
	}
	.box-div.dim-list .col-2 .input-wrap{
	width:200px;
	}
	.box-div.dim-list .col-2 .input-wrap > span{
	width:50%;
	}
	.box-div.dim-list .col-3 .input-wrap {
    width: 300px;
	}
	.box-div.dim-list .col-3 .input-wrap > .k-widget.k-numerictextbox:nth-child(3) {
	    border-right: 0 !important;
	}
	#filterPopup.open{
    display: block !important;
    position: fixed;
    left: 2% !important;
    right: auto !important;
    top: 2% !important;
    width: 96% !important;
    height: 96% !important;
    transform: translate(0) !important;
    z-index: 10010;
	}
	#filterPopup.open .k-card-header{
	display:flex;
	justify-content:space-between;
	}
	#filterPopup.open .k-card-header .k-card-title{
	color: #272727;
    font-weight: bold;
    font-size:20px;
	}
	#filterPopup.open .k-card-header #btnClosePopup:before{
	display:none;
	}
	#filterPopup.open .k-card-header .k-i-close{
	width:24px;
	height:24px;
	}
	#filterPopup.open .k-card-header .k-i-close::before{
    content: url(/img/btn-close-24px.svg);
    width: 24px;
    height: 24px;
	}
	
}
@media (max-width: 640px){
	.k-calendar.k-calendar-range{
	width:auto !important;
	}
	.k-calendar.k-calendar-range:not(.k-calendar-infinite) .k-calendar-view {
	    flex-direction: column;
	}
	.form-row input.k-textbox, 
	.form-row .k-picker-wrap .k-input,
	.form-row .k-numeric-wrap .k-input, 
	.form-row .k-dropdown-wrap .k-input{
		font-size:14px;
	}
	
	html.k-mobile{
	overflow:hidden;
	}
	.inner-tab.k-tabstrip-top > .k-tabstrip-items{
	height:44px;
	}
	.inner-tab.k-tabstrip-top > .k-tabstrip-items > .k-item {
	font-size:14px;
	}
	.dashboard .block-1.card .card-body,
	.ad-wrap{
	padding:25px 20px;
	}
	.k-tabstrip > .k-content.dashboard,	
	.k-tabstrip > .k-content.dashboard > .container{
	padding:0;
	}
/* 	.k-tabstrip > .k-content.dashboard > .container{
	padding-top:100px;
	}	 */
	.nomad-tab.k-tabstrip > .k-content{
	padding:0
	}
	.dashboard .block-2 .block-2-2 .p-4{
	padding:1rem !important;
	}
	.nomad-tab.k-tabstrip-top > .k-tabstrip-items > .k-item > .k-link{
	font-size:14px;
	}
	.dashboard .block-1 h2,
	.ad-wrap .text-p1{
	font-size:24px;
	}
	#dashboardCargoList .dropdown-menu{
    position: fixed !important;
    bottom: 0 !important;
    top: unset !important;
    height: calc(100vh - 200px);
    width: 100%;
    margin: 0 !important;
    max-width: 100%;
    box-sizing: border-box;
    transform: none !important;
    background: #fff;
    border-radius: 16px 16px 0 0;
    overflow: auto;
    border: 1px solid #ddd;
	}
	#mainHeader ~ .mobile-navigation {
    width: 100%;
    top: 60px;
    border-radius: 0;
    right: 0;
    left: 0 !important;
	}
	.popup-wrap{
	margin: 2%;
    width: 96% !important;
    height: calc(100vh - 2%);
    border-radius: 8px;
	}
	.main-wrap > div > .container{
	padding:0.5rem;
	}
	.form-control,.form-row .k-dropdown .k-dropdown-wrap, 
	.form-row .k-textbox, 
	.form-row .k-picker-wrap,.dashboard .form-control,
	.form-control-sm{
	height:40px;
	}	
	.form-row .k-dropdown:not(.form-control-sm) .k-dropdown-wrap, 
	.form-row .k-textbox:not(.form-control-sm), 
	.form-row .k-picker-wrap:not(.form-control-sm) {
    height: 100%;
	}
	.btn-submit, .btn-cancel-submit{
    height:40px;
    line-height:40px;
    font-size: 1rem;
	}
	.form-button-group{
	width:100%;
	}
	.form-button-group .k-button,
	.form-button-group .k-button:hover {
	height:40px;
    line-height:40px;
    font-size: 1rem;
    width:100% !important;
    margin:10px 0 0 0;
	}
	.findBox-wrap .input-wrap-left + .k-textbox{
	width:100%;
	}
	.findBox-wrap input[type="image"]{
	height:30px;
	}
	.btn {
    padding: 0.3rem 0.5rem;
	}
	.loginDialog .k-dialog-content, 
	.nomadDialog .k-dialog-content, 
	.nomadDialog .k-window-content {
    padding: 16px 16px !important;
	}
	.tab-title {
	height:46px;
	}
	.tab-title button{
	height:36px;
	font-size:16px;
	}
	.result-box .booking-list ul li .ticket-header{
	height:54px;
	}
	.result-box .ticket-header .ticket-wrap-left > div{
	height:55px;
	line-height:55px;
	}
	.result-box .ticket-header .ticket-wrap-right > div{
	line-height:54px;
	}
	.result-box .ticket-header .ticket-wrap-left .airline-logo{
	width:40px;
	height:40px;
	}
	.result-box .ticket-header .ticket-wrap-left .airline-name{
	font-size:16px;
	}
	.result-box .ticket-header .ticket-wrap-right > div{
	font-size:14px;
	}
	.result-box .ticket-body .ticket-wrap-left .txt-1,
	.result-box .ticket-body .ticket-wrap-left .txt-3{
	font-size:14px;
	}
	.result-box .ticket-body .ticket-wrap-left .txt-2,
	.result-box .ticket-body .ticket-wrap-left .txt-6,
	.result-box .ticket-body .ticket-wrap-left .txt-7{
	font-size:12px;
	}
	.result-box .ticket-body .ticket-wrap-left .txt-5{
	font-size:10px;
	}
	.box-div.dim-list .col-1 .input-wrap{
	widdth:65px;
	}
	.box-div.dim-list .col-2 .input-wrap {
    width: 130px;
	}
	.box-div.dim-list .col-3 .input-wrap {
    width: 195px;
	}
	.board-view-title h3{
	font-size:18px;
	}
	.ECS_FA0100_list .btn-group button{
	font-size:14px;
	}
	.ECS_FA0100_list .col-a, 
	.ECS_FA0100_list .col-b, 
	.ECS_FA0100_list .col-c{
	padding:10px;
	}
	.box-div-top button{
	height: 32px;
    line-height: 32px;
    font-size: 14px;
    width: auto;
    text-indent: 0;
    padding: 0 45px 0 20px;
	}
	}
	@media (max-width: 480px){
	.form-row input.k-textbox, .form-row .k-picker-wrap .k-input, .form-row .k-numeric-wrap .k-input, .form-row .k-dropdown-wrap .k-input {
	 font-size: 12px;
	}
	.nomad-dateRangePicker > .k-dateinput{
	min-width:115px;
	}
	.nomad-dateRangePicker > .k-dateinput:last-child{
	padding-left:0;
	}
	.grid-body-mobile .div-td,
	.flight-route .small{
	font-size:12px;
	}
	.grid-body-mobile .div-th label{
	font-size:12px;
	}
	.grid-body-mobile .div-th label {
    padding: 10px;
	}
	.grid-body-mobile .div-th {
	 height: auto;
	 line-height: 1;
	 padding:10px 0;
	}
	.grid-body-mobile .div-td {
    height: 60px;
	}
}



@media (max-width: 400px){
	.dashboard .block-1 h2, .ad-wrap .text-p1{
	font-size:20px;
	}
	.ad-wrap .text-p2{
	font-size:14px;
	}
	.fuel-list li span.col-a{
	width:50px;
	height:30px;
	line-height:30px;
	font-size:12px;
	}
	.fuel-list li .col-b span{
	font-size:12px;
	}
	.ol-popup {
	min-width:350px;
	}
}

.tb-grid1 {
	width:100%;
}
.tb-grid1 thead{
	background:#dfdfdf	;
}
.tb-grid1 thead th{
	color:#6b6b6b;
	height:48px;
	line-height:48px;
	text-align:center;
}
.tb-grid1 tbody td{
	height:70px;
	/*line-height:70px;*/
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	text-align:center;
	border-bottom:1px solid #efefef;
	padding:0 5px;
	box-sizing:border-box;
	vertical-align:middle;
}
.tb-grid1 tbody td img{
	vertical-align:middle;
}
.tb-grid1 tbody tr:last-child td{
	border-bottom:0;
}
.tb-grid1 tbody td .img-airlines{
	height:auto;
	width:auto;
	max-height:70px;
	max-width:130px;;
}
.tb-grid1 tbody td .expiration-date{
	line-height:1.2;
	font-size:13px;
}
.tb-grid1 tbody td .expiration-date img{
	display:block;
	margin:0 auto;
}

.tb-grid1.thead{
	table-layout: fixed;
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;	
    z-index:10;
}
tbody.tr-hover > tr:not(.tr-detailView),
ul.tr-hover li.li-faq-title{
	position:Relative;
}
ul.tr-hover li.li-faq-title{
	cursor:pointer	
}
tbody.tr-hover > tr:not(.tr-detailView):after,
ul.tr-hover li.li-faq-title:after {
    content: "";
    display: block;
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    z-index: 1;
    border-radius: 6px;
}
tbody.tr-hover > tr:not(.tr-detailView):hover:after,
ul.tr-hover li.li-faq-title:hover:after{
    transition: .3s;
    background: rgba(203,0,126,0.08);
}
tbody.tr-hover tr:not(.tr-detailView) td,
ul.tr-hover li.li-faq-title > div{
	position:relative; 
	z-index:2;
}
#ECS_FE0100_00_000_mainTable{
	background:#fff;
}
#ECS_FE0100_00_000_mainTable.tr-hover tr:after{
	display:none;
}
#ECS_FE0100_00_000_mainTable.tr-hover tr:hover{
	 background: rgba(203,0,126,0.08);
	 box-shadow: inset 0px 0px 0px 5px #fff;
}
#ECS_FE0100_00_000_mainTable.tr-hover tr:hover td{
	border-bottom-color:#fff;
}

#ECS_FE0100_00_000_mainTable.tr-hover tr td{
	 position:unset;	
}
.k-bg-transparent{
background-color: transparent;
}
.k-dropdown.k-bg-transparent .k-dropdown-wrap{
background-color: transparent !important;
background-image:none;	
}
.k-border-transparent{
border-color: transparent;
}
.k-dropdown.k-border-transparent .k-dropdown-wrap{
border-color: transparent !important;
box-shadow:none;
}



/* userJoin-Basic 회원가입 CSS */
@media (min-width: 768px) {
	#userJoin_providerInfo .warehouseTime > span {
		margin: 5px;
	}
	
	#userJoin_customer .k-tabstrip-top>.k-tabstrip-items {
		border-bottom-width: 1px;
		margin: 0 .286em;
		/*border-bottom-width: 0px;*/
	}
	
	#userJoin_forwarderInfo tbody {
		padding: 18px;
	}
	
}

/* cusinfoPopup 헤더 profile - 서비스 가입 정보 CSS */
@media (min-width: 768px) {
	#cusInfoPopup_entry .k-tabstrip.k-tabstrip-scrollable>.k-tabstrip-next,
	#cusInfoPopup_entry .k-tabstrip.k-tabstrip-scrollable>.k-tabstrip-prev {
		display:none !important;
	}
	
	#cusInfoPopup_providerInfo .nomad-datepicker {
		width: 50%;
	}

	#cusInfoPopup_providerInfo .warehouseTime > span {
		margin: 5px;
	}
	
}

/* 일반조회 페이지 예약등록 선택 버튼 클릭시 뜨는 팝업 테이블 CSS */
#bookingFromCharge_bookingEntry #bookingFromCharge_schedule_list table {
	border: 1px solid #dfdfdf;
	margin: 10px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.1), 0 3px 3px rgba(0,0,0,0.1);
}
#bookingFromCharge_schedule_list {overflow: hidden;}
#bookingFromCharge_freightDetails {overflow-y: hidden !important;}

/* 로그인 후 이동 팝업 (SweetAlert2 라이브러리 관련 CSS) */
.select-container {width: 100% !important; height: 100%;
	.select-header {top: 30px; left: 50px; position: absolute;}
	.select-body {display: flex; justify-content: center;
		.select-content {width: 40em; height: 50em; margin: 2em; border: 1px solid rgba(0,0,0,0.15); border-radius:45px; box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.15); text-align: -webkit-center;
			.select-img {width: 15em; height: 15em; margin: 10em 0 3em; border-radius:50em; background: #f5bbd1; align-content: center; 
				img {width: 10em;}
			}
			h1 {margin-bottom: .2em; font-size: 3em; font-weight: 700;}
			label {margin-bottom: 2em; font-size: 1.5em; color: #979797; display: block;}
			button {width: 80%; padding: 0.6em; border-radius: 10px; font-size: 2em; font-weight: 700;}
		}
	}
}


/* 고객서비스 > 예약관리 > 예약목록 조회 > AWB관리 팝업 */
.k-widget.k-window.nomadDialog:has(#awbManagementPopup_wnd_title) {top: 10px !important;}
#awbManagementPopup {
	display: flex;
	
	.form-control {
		height: 2em; 
		margin-bottom: 0.2em;
		font-size: 12px;
	}
	textarea.form-control {
		height: 100%;
		overflow: auto;
	}

	.list-container {
		width: 17%;
		.btn {width: 100%;}
		
		tr {padding: 0.5em; border-radius: 0.5em; display: flex; align-items: center; justify-content: space-around;}
		td {margin-left: 5px;}
		td:first-child {width: 10em; margin: 0;}		
		.on {background: rgba(203, 0, 126, 0.08);}
		
		.awb-list {
			table {height: 20em; margin-bottom: 0.5em; padding: 0.5em; overflow: auto;}
		}
		
		.dropzone {
			height: 100%;
            border-radius: 0.4em;
			display: flex; 
			align-items: center;
			justify-content: center;
			flex-direction: column;
			background: #EFEFEF;
			
			a {margin-top: .4em; text-align: center; text-decoration: underline;
				label {font-size: 12px;}
			}
		}
		.dropzone.dragover{outline: 1px solid #cb007e !important;}
		.btn label {font-size: 14px;}
		
		.pdf-list {
			table {height: 24em; margin-bottom: 0.5em; padding: 0.5em;}
			td {margin-left: 0;}
			td img {max-width: unset; width: 1.6em;}
			.btn {width: 2em; padding: 0; margin-left: 0.5em;}
			.btn-cancel {width: 16em; padding: 4px 8px;	margin: 0; color: white; background: #777777;
				img {filter: brightness(300%);}
			}
		}
	}
	.awb-container {
		width: 83%;
		> div {width: 50%;}
		label {font-size: 12px;}
		
		.top-content {width: 100%; padding: .4em 1em; .top-label {color: #D0463E;}}
		.main-content {
			width: 100%;
			display: flex;
			
			/* input, textarea {background: #f3f3f3 !important;} */
			input, textarea {background: white !important;}
			input:disabled, textarea:disabled {background: #d3d3d3 !important}
			
			.awb-content {
				width: 75%;
				margin-right: 5px;
				display: flex;
				flex-wrap: wrap;
				
				input, textarea {padding: 2px 5px;}
				
				.required {border: 1px solid #CB007E;}
				.confirmed {
					width: 80%;
					height: 90%;
					position: absolute;
				    z-index: 1;
				    background: url(/img/confirm_stamp.png) no-repeat center;
				    transform: rotate(-12deg);
				    scale: 50%;
    			}
    			.overlay {
				    padding: 335px 535px;
				    position: absolute;
				    z-index: 1;
    			}
				
				.top-wrap {
					width: 100%;
					padding: 0 0.5em;
					display: flex;
					justify-content: space-between;
					
					p {padding-bottom: 0.5em; align-content: end; color: c6007b;}
					input {width: unset; height: 1.6em; font-size: 1.2em;}
				}
				
				.card-shipper {textarea {height: 76px; overflow: hidden;}}
				.card-shipper2 {input, textarea {overflow: hidden;}}
				.card-consignee {textarea {height: 76px; overflow: hidden;}}
				.card-consignee2 {input, textarea {overflow: hidden;}}
				.card-agent {
					> div {margin-bottom: 5px;}
					> .d-flex {gap: 5px;}
				}
				.card-accounting {
					& > textarea {height: 76px; overflow: hidden;}
					
					.accounting-wrap {
						label {margin-top: 0.2em; line-height: 14px; display: block !important;}
						input {padding: 0; text-align-last: center;}
						> div {float: left; margin-right: 2px;}
						div:nth-child(1) {width: 50px;}
						div:nth-child(2) {width: 70px;}
						div:nth-child(3) {width: 70px; input {width: 35px;}}
						div:nth-child(4) {width: 70px; input {width: 35px;}}
						div:nth-child(5) {width: 85px;}
						div:nth-child(6) {width: 85px;}
						div:nth-child(7) {width: 95px; label {height: 30px;}}
					}
				}
				.card-handling {}
				.card-mark {
					textarea {height: 150px;}
				}

				.btn {height: 2.4em; margin: 0.4em;
					label {font-size: 16px; line-height: normal !important;}
				}
				.btn-checking {background: #EBEEF7 !important;
					label {color: #979797; line-height: 20px; font-weight: 500;}
				}
				
			}
			.check-list {
				width: 30%;
				padding: 0.1em 1em;
				
				label {display: flex !important;
                    height: 2em;
                    border-radius: .5em .5em 0 0;
                    background: rgba(203, 0, 126, 0.25);
                    justify-content: center;
                    align-items: center;
                    font-weight: 700;
                    font-size: 1.2em;
                    color: white;}				
				textarea {width: 100%; height: 100%;}
			}
		}
	}
}


/* 고객서비스 > 견적요청 > 견적요청서 작성 */
.ECS_FH0100_00_000.main-wrap {
	.h2 {text-align: center;}
	.h3 {text-align: center;}
	.select-box {
		width: 720px;
		justify-self: center;
		
		button.card {
			width: 160px;
			height: 160px;
			color: #979797;
			justify-content: center;
			
			&:hover {border: 1px solid #cb007e; color: #cb007e; font-weight: 700;}
		}
	}
}

/* 고객서비스 > 견적요청 > 견적요청서 - 기본정보 */
.ECS_FH0100_00_100.main-wrap {
	.main-content {
		.container {
			text-align: center;
			form {justify-items: center;}
			
			.input-wrap {
				background: white !important;
				border: 1px solid #dfdfdf;
				border-radius: 10px;
				.k-textbox {background: inherit !important;}
			}
			
			.k-dropdown-wrap {
				padding-left: 15px;
			    background: white;
    			border: 1px solid #dfdfdf;
    			border-radius: 10px;
			}
			
			.form-step {
				width: 460px;
				.k-autocomplete {width: 100%;}
			}
			.form-step.btn-wrap {
				width: unset;
				margin: unset;
			}
			
			.k-dropdown {
				width: 460px;
				height: 56px;
			}
			
			.k-datepicker {
				width: 220px;
				border: 1px solid #dfdfdf;
				border-radius: 10px;
				.nomad-datepicker {background: white !important;}
			}
			
			.k-timepicker {
				width: 230px;
				background: white !important;
				border: 1px solid #dfdfdf;
				border-radius: 10px;
				.nomad-datepicker {background: white !important;}
				
				&:has(.k-state-disabled) {
					background: #f3f3f3 !important;
				}
			}
			
			.form-step:nth-child(4) .k-timepicker:nth-child(2) {
				width: 120px;
			}
		}
	}
}

/* 고객서비스 > 견적요청 > 견적요청서 - 화물정보 */
.ECS_FH0100_00_200.main-wrap {
	.main-content {
		.container {
			width: 980px;
			.form-control {height: 45px; border: 1px solid #dfdfdf; background: unset !important;}
			.card {padding: 15px 30px;
				.h4 {color: black;}
			}
			.checkbox-btn, .radio-btn {width: 150px; text-align: center;}
			
			.checkbox-wrap {
				display: flex;
				gap: 8px;
				
				.checkbox-btn, .radio-btn {
					padding: unset;
					background: unset;
                	align-content: center;
					border: 1.5px solid #ccc;
					border-radius: 10px;
					cursor: pointer;
					transition: all 0.2s ease;
				}
				
				input[type="checkbox"] {
					display: none;
				}
				
				.radio-btn-input:checked + .radio-btn,
				input[type="checkbox"]:checked + .checkbox-btn {
					background-color: #cb007e ;
					color: #fff;
					border-color: #cb007e ;
				}
				
				.radio-btn .checkmark,
				.checkbox-btn .checkmark {
					display: none;
					margin-right: 5px;
				}
				
				.radio-btn-input:checked + .radio-btn .checkmark,
				input[type="checkbox"]:checked + .checkbox-btn .checkmark {
					display: inline;
				}
			}
			
			.info-card {
				.dim-list-container {
					.dim-list {
						display: flex;
						justify-content: space-between;
						margin-bottom: 8px;
						
						.input-wrap {
							display: flex;
							text-align-last: center;
							
							input {border-radius: unset; border-right: none; width: 100px;}
							input:first-child {border-radius: 8px 0 0 8px;}
							input:last-child {border-radius: 0 8px 8px 0; border-right: 1px solid #dfdfdf; width: 80px;}
						} 
						
						.del-btn-wrap {
							width: 35px;
							align-content: center;
							> .circle-del-btn {
								border-radius: 50%;
								width: 36px;
								height: 36px;
								background-color: #cb007e;
								color: white;
								font-size: 24px;
								font-weight: bold;
								border: none;
								display: flex;
								align-items: center;
								justify-content: center;
							}
						}
					}
				}
			}
			
			.remark-card {
				textarea.form-control {height: 120px;}
			}
			
			.file-card {
				.dropzone {
					height: 100%;
					padding: 15px;
		            border-radius: 0.4em;
		            border: 1px dashed #dfdfdf;
					display: flex; 
					align-items: center;
					justify-content: center;
					flex-direction: column;
					
					a {margin: .4em 0 12px; text-align: center; text-decoration: underline;
						label {font-size: 12px;}
					}
					label {cursor: pointer;}
					
				}
				.dropzone.dragover{outline: 1px solid #cb007e !important;}
				
				.file-list {
					padding: 5px;
				    align-items: center;
					tbody {
						width: 820px;
						display: flex;
						flex-wrap: wrap;
						
						.file-tr {
							width: 400px;
							margin: 4px; 
							background: #f8f9fa;
							border: 1px solid #dfdfdf;
							border-radius: 8px;
						}
					}
				}
			}
		}
	}
}

/* 홈헤더 메뉴 > 서비스 가입정보 > 제공사 탭 > 담당지역 이메일 설정 버튼 팝업 */
.k-widget.k-window.nomadDialog:has(div[aria-labelledby="regionEmailPopup_wnd_title"]) {
	height: unset !important;
	top: 50% !important;
	transform: translate(-50%, -50%) !important;
}

/* 고객서비스 > 견적요청 > 견적요청서 - 화물정보 > 견적등록 버튼 클릭시 팝업 */
.k-widget.k-window.nomadDialog:has(div[aria-labelledby="reqQuotationPopup_wnd_title"]) {
	padding: 20px 0;
	top: 210px !important;
	
	.k-window-titlebar {display: none;}
	
	.k-datepicker {
		border: 1px solid #dfdfdf;
		border-radius: 10px;
		.nomad-datepicker {background: white !important;}
	}
	
	.k-timepicker {
		width: 140px;
		background: white !important;
		border: 1px solid #dfdfdf;
		border-radius: 10px;
		.nomad-datepicker {background: white !important;}
	}
}

/* 고객서비스 > 견적요청 > 견적서 조회 */
.ECS_FH0200_00_000.main-wrap {

	.tracking-event-list {
		tbody {
			text-align-last: center;
		
			tr.disabled {
    			color: #6b6b6b;
    			input {color: #6b6b6b;}
    			.flight-route {color: #6b6b6b;}
				button {color: #6b6b6b; border-color: #dfdfdf;}
			}
			
			td.col-datetime {
				line-height: 20px;
				.time {color: #545454;}
			}
		}
		
		.btn-before {
			padding: 5px 8px;
			border: none;
			color: #854D0E !important;
			background-color: #FEF9C3 !important;
		}
		.btn-done {
			padding: 5px 8px;
			border: none;
			color: #166534 !important;
			background-color: #DCFCE7 !important;
		}
		.btn-bidding {
			padding: 0px 8px 5px;
			border: none;
			color: #CD1C8A;
			background-color: #F6BBDF;
		}
		.btn-bidding-active {
			padding: 0px 8px 5px;
			border: none;
			color: #CD1C8A !important;
			background-color: rgba(203,0,125,.08) !important;
		}
		.btn-reserved-pending {
			padding: 0px 8px 5px;
			border: none;
			color: #0FECE4 !important;
			background-color: #EFFFFE !important;
			.btn-bidding {
				color:#0FECE4;
				background: #C5FBFF;
			}
		}
		
		.btn-reserved-complete {
			padding: 0px 8px 5px;
			border: none;
			color: #00BC7D !important;
			background-color: #ECFDF5 !important;
			.btn-bidding {
				color:#00BC7D;
				background: #D0FAE5;
			}
		}
		
		.btn-bidding-ended {
			padding: 0px 8px 5px;
			border: none;
			color: #99A1AF !important;
			background-color: #F9FAFB !important;
			.btn-bidding {
				color:#686E77;
				background: #929292;
			}
		}
		
		.btn-bidding-before {
			padding: 0px 8px 5px;
			border: none;
			color: #FFA500 !important;
			background-color: #FFF1D6 !important;
		}
		
		.award-icon {
			display: flex;
		    align-items: center;
			position: relative;
    		left: 32px;
		    top: 6px;
		    p {line-height: 1; font-size: 12px; font-weight: 400;}
		    img {width: 18px; margin-left: 2px;}
		}
		.float-label {
			margin: 1px 5px 2px 0;
			font-size: 11px;
			font-weight: 400;
			display: flex;
			align-items: center;
			justify-content: flex-end;
			opacity: 0;
			label {height: 16px;}
			input[type="datetime"] {width: 50px; height: 10px}
		}
		img[alt="warning icon"] {width: 16px;}
	}
	
	input[type="datetime"] {color: #cb007e;}
	
	input[type="datetime"], 
	input[type="date"], 
	input[type="time"] {
		border: none;
    	background: transparent;
	}
	input[type="date"]::-webkit-calendar-picker-indicator,
	input[type="time"]::-webkit-calendar-picker-indicator,
	input[type="month"]::-webkit-calendar-picker-indicator,
	input[type="week"]::-webkit-calendar-picker-indicator,
	input[type="datetime-local"]::-webkit-calendar-picker-indicator {
	  display: none;
	}
}

/* 고객서비스 > 견적요청 > 견적서 조회 > 견적서 확인 팝업 */
.k-widget.k-window.nomadDialog:has(div[aria-labelledby="quotationListPopup_wnd_title"]) {
	top: 3.5% !important;
}

/* 고객서비스 > 견적요청 > 견적서 조회 > 견적서 확인 팝업 > 유찰/변경 버튼 팝업 */
.k-widget.k-window.nomadDialog:has(div[aria-labelledby="reReqQuotationPopup_wnd_title"]) {
	padding: 20px 0;
	top: 210px !important;
	
	.k-window-titlebar {display: none;}
	
	.k-datepicker {
		border: 1px solid #dfdfdf;
		border-radius: 10px;
		.nomad-datepicker {background: white !important;}
	}
	
	.k-timepicker {
		width: 140px;
		background: white !important;
		border: 1px solid #dfdfdf;
		border-radius: 10px;
		.nomad-datepicker {background: white !important;}
	}
}

div[aria-labelledby="quotationListPopup_wnd_title"] {
	img[alt="logo"] {width: 30px; height: 30px;}
	
	input[type="datetime"], 
	input[type="date"], 
	input[type="time"] {
		border: none;
    	background: transparent;
	}
	input[type="date"]::-webkit-calendar-picker-indicator,
	input[type="time"]::-webkit-calendar-picker-indicator,
	input[type="month"]::-webkit-calendar-picker-indicator,
	input[type="week"]::-webkit-calendar-picker-indicator,
	input[type="datetime-local"]::-webkit-calendar-picker-indicator {
	  display: none;
	}
	
	.nomad-dropdownList {height: 36px;}
	
	.card-container {
		display: flex;
		flex-wrap: wrap;
		
		.card {
			width: 290px;
			height: 300px;
			padding: 15px 20px;
			margin: 0 34px 24px 0; 
			border-radius: 10px;
			box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.24);
  			transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  			
  			&:hover {
  				border: 1px solid #cb007e;
  				background: rgba(203,0,126,0.08);
  				box-shadow: 0 6px 12px rgba(0,0,0,0.25), 0 4px 4px rgba(0,0,0,0.22);
  			}
  			
  			.quotationListPopup_label {display: block !important;}
  			hr {margin-top: 0;}
		  			
  			.title-wrap {
  				display: flex;
  				align-items: center;
  			
	  			.h5 {font-size: 15px; margin-bottom: 2px;}
	  			span {color: #838289;}
  			}
  			
  			.info-wrap {
  				width: 240px;
  				display: flex;
  				justify-content: space-between;
  				.info-wrap-right > *:not(:first-child) {
					color: black;
				}
  			}
  			
  			.oc-wrap {
  				.d-flex {scale: 0.8;}
	  			.btn.btn-outline-primary {background: transparent; cursor: unset; max-width: 85px;}
	  			.btn-check:focus + .btn, .btn:focus {box-shadow: unset;}
  			}
  			
  			.total-wrap {
  				display: flex;
  				
  				& .total-wrap__fare {
  					display: flex;
  					color: black;
  					font-size: 18px;
  					font-weight: 500;
  				}
  				& .total-wrap__btn {
  					.btn {margin-left: 60px;}
  					.datetime {
  						display: flex;
  						align-items: center;
  						justify-content: center;
  					
  						label {width: 86px;}
  						input {width: 64px;}
  					}
  				}
  			}
  			
  			/* 중앙 “철회” 텍스트 */
  			&.canceled {border: none !important;}
			&.canceled::before {
			  content: "";
			  position: absolute;
			  inset: 0;
			  z-index: 998;
			  background: rgba(255, 255, 255, 0.65);
			  border-radius: inherit;
			  pointer-events: all;
			  border: 1px dashed red;
			}

			&.canceled::after {
			  content: "입찰 철회";
			  position: absolute;
			  top: 50%;
			  left: 50%;
			  transform: translate(-50%, -50%) rotate(-8deg);
			  z-index: 999;
			  font-size: 42px;
			  font-weight: 800;
			  letter-spacing: 0.2em;
			  color: rgba(220, 53, 69, 0.65);
			  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
			  pointer-events: none;
			  white-space: nowrap;
			}

			&.canceled .total-wrap .total-wrap__fare span {text-decoration: line-through;}
		}
	}
}

/* 제공사 서비스 > 입찰관리 > 견적요청 정보 */
.ECS_RA0600_00_000.main-wrap {
	& > div > .container {max-width: 1080px;
		& > .card {padding: 20px;}	
	}
	
	input[type="datetime"], input[type="date"], input[type="time"] {
        border: none;
        background: transparent;
        display: block;
        text-align: center;
		place-self: center;
    }
    input[type="datetime"]::-webkit-calendar-picker-indicator,
    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
    	display: none;
    }
    
    .card-due {
    	background: #FEF2F2;
    	
    	label.ECS_RA0600_00_000_label {color: #C91C1C;}
    }
    
    .dim-list {
    	padding: 0;
    	background: unset;
   		.form-control {width: 100px;}
   		
   		tr.d-flex {text-align-last: center;}
   		td.d-flex {
   			input {border-radius: unset;}
   			input:first-child {border-radius: 8px 0 0 8px;}
   			input:last-child {border-radius: 0 8px 8px 0;}
   		}
    }
    
    .file-list {
		padding: 5px;
	    align-items: center;
		tbody {
			width: 820px;
			display: flex;
			flex-wrap: wrap;
			
			.file-tr {
				width: 400px;
				margin: 4px; 
				background: #f8f9fa;
				border: 1px solid #dfdfdf;
				border-radius: 8px;
			}
		}
	}
    
    .card-quotation {
	    .form-control {height: 42px; background: unset !important;}
	    .k-dropdown-wrap {border-radius: 8px; border: 1px solid #f3f3f3; background: unset;}
	    
    	/* .canceled가 붙은 카드에 '철회'로 덮기 */
    	.card.canceled::before {
		  content: "";
		  position: absolute;
		  inset: 0;
		  z-index: 998;
		  background: rgba(255, 255, 255, 0.45);
		  border-radius: inherit;
		  border: 1px dashed red;
		  pointer-events: all;
		}
		
		.card.canceled::after {
		  content: "입찰 철회됨";
		  position: absolute;
		  top: 50%;
		  left: 50%;
		  transform: translate(-50%, -50%) rotate(-8deg);
		  z-index: 999;
		  font-size: 28px;
		  font-weight: 800;
		  letter-spacing: 0.2em;
		  color: rgba(220, 53, 69, 0.85);
		  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
		  pointer-events: none;
		  white-space: nowrap;
		}
    	
    	.card-quotation__left {
    		width: 70%;
    		border-right: 1px solid #eaeaea;
    		
    		.ECS_RA0600_00_000_currencySelect {
    			width: 60px;
    			height: 42px;
    			
    			.k-input {justify-content: center;}
    		}
    		
    		.radio-btn {width: 100px;}
    		
    		/* 체크 안되었을떄 */
    		.radio-btn-input + .radio-btn {
    			.checkmark {display: none;}
    		}
    		
    		/* 체크 되었을떄 */
    		.radio-btn-input:checked + .radio-btn {
    			color: #fff;
    			background: #cb007e;
    			.checkmark {display: unset;}
    		}
    		
    		label[msg="항공사"] + input.form-control {width: 100px;}
	    	label[msg="운송단가"] + .d-flex input.form-control {width: 120px;}
	    	label[msg="운송단가"] + .d-flex span.k-dropdown {width: 60px;}
	    	label[msg="운송경로"] + .d-flex input.form-control {width: 100px;}
	    	label[msg="운송경로"] + .d-flex button.btn {width: 60px; justify-content: center;}
	    	label[msg="출발지 항공편"] + input {width: 100px;}
	   		label[msg="출발일자"] + .k-datepicker {width: 150px;}
	   		label[msg="목적지 공항 예상 도착일자 (현지시간)"] + .k-datepicker {width: 150px;}
   		}
   		
    	.card-quotation__right {
    		width: 28%;
    		display: flex;
		    flex-wrap: wrap;
		    align-content: space-between;
    		
    		.oc-wrap {
    			.k-icon.k-i-close {cursor: pointer;}
  				.d-flex {width: 260px;}
  				.d-flex.justify-content-around.align-items-center {scale: 0.8;}
	  			.btn.btn-outline-primary {background: transparent; cursor: unset; width: 85px; height: 50px; padding: 0;}
	  			.btn-check:focus + .btn, .btn:focus {box-shadow: unset;}
  			}
  			
   			label[msg="견적 유효기간"] + .k-datepicker {width: 150px;}
    	}
    }
}

/* 제공사 서비스 > 입찰관리 > 견적서 조회 */
.ECS_RA0700_00_000.main-wrap {
	.tracking-event-list {
		tbody {
			text-align-last: center;
		
			tr.disabled {
    			color: #6b6b6b;
    			input {color: #6b6b6b;}
    			.flight-route {color: #6b6b6b;}
				button {color: #6b6b6b; border-color: #dfdfdf;}
			}
			tr.disabled button label[msg="운송정보등록"] {color: white;}
			
			td.col-datetime {
				line-height: 20px;
				.time {color: #545454;}
			}
		}
		.btn-before {
			padding: 5px 8px;
			border: none;
			color: #854D0E !important;
			background-color: #FEF9C3 !important;
		}
		.btn-done {
			padding: 5px 8px;
			border: none;
			color: #166534 !important;
			background-color: #DCFCE7 !important;
		}
		.btn-bidding {
			padding: 0px 8px 5px;
			border: none;
			color: #CD1C8A;
			background-color: #F6BBDF;
		}
		.btn-bidding-active {
			padding: 0px 8px 5px;
			border: none;
			color: #CD1C8A !important;
			background-color: rgba(203,0,125,.08) !important;
		}
		.btn-reserved-pending {
			padding: 0px 8px 5px;
			border: none;
			color: #0FECE4 !important;
			background-color: #EFFFFE !important;
			.btn-bidding {
				color:#0FECE4;
				background: #C5FBFF;
			}
		}
		
		.btn-reserved-complete {
			padding: 0px 8px 5px;
			border: none;
			color: #00BC7D !important;
			background-color: #ECFDF5 !important;
			.btn-bidding {
				color:#00BC7D;
				background: #D0FAE5;
			}
		}
		
		.btn-bidding-ended {
			padding: 0px 8px 5px;
			border: none;
			color: #99A1AF !important;
			background-color: #F9FAFB !important;
			.btn-bidding {
				color:#686E77;
				background: #929292;
			}
		}
		
		.btn-bidding-before {
			padding: 0px 8px 5px;
			border: none;
			color: #FFA500 !important;
			background-color: #FFF1D6 !important;
		}
		
		.award-icon {
			display: flex;
			position: relative;
    		left: 32px;
		    top: 8px;
		    p {line-height: 1; font-size: 12px; font-weight: 400;}
		    img {width: 18px;}
		}
		.float-label {
			margin: 1px 5px 2px 0;
			font-size: 11px;
			font-weight: 400;
			display: flex;
			align-items: center;
			justify-content: flex-end;
			opacity: 0;
			label {height: 16px;}
			input[type="datetime"] {width: 50px; height: 10px}
		}
		img[alt="warning icon"] {width: 16px;}
	}
	
	input[type="datetime"] {color: #cb007e; width: 90px;}
	
	input[type="datetime"], 
	input[type="date"], 
	input[type="time"] {
		border: none;
    	background: transparent;
	}
	input[type="date"]::-webkit-calendar-picker-indicator,
	input[type="time"]::-webkit-calendar-picker-indicator,
	input[type="month"]::-webkit-calendar-picker-indicator,
	input[type="week"]::-webkit-calendar-picker-indicator,
	input[type="datetime-local"]::-webkit-calendar-picker-indicator {
	  display: none;
	}
}
