@charset "utf-8";


:root{
    --primary50:#00A8CD;
    --primary100:#006ACD;
    --background:url(../images/bg.jpg);
    --gradient: linear-gradient(#006ACD, #00A8CD);
    --gradient45: linear-gradient(45deg,#006ACD, #00A8CD);
    --containerWidth:666px;
    --containerHeight:700px;
    --shadow:0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
html{
	height:100%;
}
body{
    background-image: var(--background);
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px;
}
.scroll-view::-webkit-scrollbar {
    width: 10px;
}
.scroll-view::-webkit-scrollbar-thumb {
    background-color: #8C8C8C;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}
.scroll-view::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}



/* COMMON */
#header,
#content,
#footer,
#container{
    width:100%;
}
#container{
    position: relative;
    width:var(--containerWidth);
    height: var(--containerHeight);
    background-color: #ffffff;
    border-radius: 10px;
}
#container.qna{
    height:calc(100% - 20px);
}
#header{
    height:91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 25px;
}


#footer{
    height:auto;
}
#content{
    display: flex;
    justify-content:flex-start;
    flex-direction: column;
    align-items: center;
    position: relative;
    height:calc(100% - 137px);
    padding:0 0 20px;
    gap: 15px;
}
#content.start{
    gap: 85px;
}
/* #content.complete .title{
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
} */
#content::before{
    content:"";
    width:4px;
    height:517px;
    position: absolute;
    left:0;
    top:50%;
    transform: translateY(-50%);
    background: var(--gradient);
}


#header .text-overlay{
    color:#006ACD !important
}
#header .header-step{
    display: flex;
    gap: 24px;
    align-items: center;
}
#header .header-step li{
    position: relative;
    color:rgba(51, 51, 51, 0.5);
    font-size: 14.06;
}
#header .header-step li::before{
    content:"";
    position: absolute;
    width:24px;
    height:17px;
    background-image: url('../images/next.svg');
    background-repeat: no-repeat;
    background-position: center;
    right:-24px;
}
#header .header-step li:last-child::before{
    display: none;
}

.text-overlay{
    position: relative;
    font-weight: 800;
    color:#333333;
    z-index: 1;
    padding:0 5px;
}
.text-overlay::after{
    content:"";
    position: absolute;
    width:calc(100%);
    height:11px;
    background-color: #dff1ff;
    left:0;
    bottom:0;
    z-index: -1;
}

.title{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap:5px;
 }
 .title .subheading{
     font-size:15.53px;
     color:#666666;
 }
.title .mainheading em{
    font-size: 33.64px;
    background: var(--gradient45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.start-container{
    display: flex;
    height:224px;
    gap:84px;
    position: relative;
    overflow-y: hidden;
    padding: 0 20px;
}
.start-container::after{
    content:"";
    width:1px;
    background-color: rgba(151,151,151,0.5);
    height:211.51px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.start-container li{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:171px;
    height:171px;
    border-radius: 50%;
    position: relative;
    transform: translateY(27px);
    transition: transform 0.5s;
}
.start-container li:hover{
    background: var(--gradient45);
}
.start-container li a{
    width:calc(100% - 6px);
    height:calc(100% - 6px);
    background-color: #ffffff;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 61px;
    background-repeat: no-repeat;
    background-position: center 25px;
    text-align: center;
    align-items: center;
    color:#555555;
    font-size: 20px;
    font-weight: 500;
    border-radius: 50%;
    border-width: 1px;
    border-color: rgba(104, 104, 104, 0.5);
    border-style: solid;
}
.start-container li:hover a{
    border-color: rgba(104, 104, 104, 0);
    color:var(--primary100);
}
.start-container li:nth-child(1) a{background-image: url('../images/ico_join_off.svg');}
.start-container li:nth-child(2) a{background-image: url('../images/ico_revoke_off.svg');}
.start-container li:nth-child(1):hover a{background-image: url('../images//ico_join_on.svg');}
.start-container li:nth-child(2):hover a{background-image: url('../images//ico_revoke_on.svg');}
#footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    justify-content: flex-end;
}
#footer address{
    font-size: 12px;
    font-weight: 400;
}
#footer address:nth-of-type(1){
    color:rgba(51,51,51,1);
}
#footer address:nth-of-type(2){
    color:rgba(51,51,51,0.6);
}
.scroll-view{
    overflow-y: auto;
}
.scroll-view.ask{
    height:calc(100vh - 401px);
}
.scroll-view.ask-input{
    height:calc(100%);
}
.scroll-view.detail{
    height:100%;
}
.inner-content{
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-width: 466px;
}
.inner-wrap[data-type='input'],
.inner-wrap[data-type='detail']{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.inner-wrap[data-type='detail']{
    height:100%;
}
.include-btn{
    display: flex;
}
.include-btn input:not(input[type='submit']){
    width:calc(100% - 100px);
    border-radius: 4px 0 0 4px !important;
}
.include-btn input[type='submit']{
    width:100px;
    height:40px;
    border-radius: 0 4px 4px 0;
    border: 0;
    background:var(--gradient45) ;
    color:#ffffff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.11), 0 3px 6px rgba(0,0,0,0.1);;
    transition: all .3s;
}
.include-btn.click-event input[type='submit']:active{
    transform: translate(-5px -5px);
    box-shadow: none;
}
/* 정보확인 */
.input-box{
    display: flex;
    flex-direction: column;
    gap:4px;
}
.input-box.row-type{
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.input-box.row-type label{
    white-space: nowrap;
}
.input-box.row-type .include-btn{
    width:100%;
}
.input-box label{
    color:rgba(51,51,51,0.8);
    font-weight: 500;
}
.input-box input:not(input[type='submit']){
    height:40px;
    padding:0 16px;
}
textarea,
.input-box input:not(input[type='submit']){
    border: 1px solid #cccccc;
    border-radius: 4px;
}
.input-box input::placeholder{
    color:#cccccc;
    font-size: 12px;
}
/* 버튼모음 */
.btn-wrap{
    display: flex;
    width:100%;
    justify-content: space-between;
}
.btn-wrap.center{
    justify-content: center;
}
.btn-wrap.right{
    justify-content: flex-end;
}
.btn{
    width:80px;
    height:36px;
    border: 1px solid #e0e0e0;
    color:#8a8a8a;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
}
.gradient-border{
    position: relative;
    background:var(--gradient45);
    border: 0;
    width:calc(80px);
    height:calc(36px);
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.gradient-border .btn{
    width:calc(100% - 4px);
    height:calc(100% - 4px);
    background-color: #ffffff;
    color:#006ACD;
    font-weight: 700;
    transition: background 0.5s;
}
.gradient-border .btn:active, .gradient-border .btn:hover{
    background:var(--gradient45);
    color:#ffffff;
    border: 0;
}
.btn.popup{
    border-radius: 15px;
    background-color: #EDEDED;
    width:62px;
    height:28px;
    display: flex;
    align-items: center;
    color:#8C8C8C;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
}
.inner-wrap{
    display: flex;
}   
.inner-wrap[data-type='table']{
    align-items: flex-start;
    height:calc(100% - 73px);
    max-height: 372px;
    flex-direction: column;
    gap:10px;
}
.inner-wrap[data-type='table'] .include-btn{
    justify-content: space-between;
    align-items: center;
}
.inner-wrap[data-type='table'] thead{
    position: sticky;
    z-index: 2;
    top:0;
}
.inner-wrap[data-type='table'] th{
    height:28px;
    color:rgba(51, 51, 51, 0.8);
    font-size: 15px;
    background-color: #f0f0f0;
}
.inner-wrap[data-type='table'] td{
    height:40px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}
.inner-wrap[data-type='accordion']{
    flex-direction: column;
    gap: 10px;
}
.inner-wrap[data-type='accordion'] dl:not(.accordion){
    display: flex;
    justify-content: space-between;
}
.inner-wrap[data-type='accordion'] dl:not(.accordion) dt{
	font-size:14px;
}

.inner-wrap[data-type='accordion'] dl:not(.accordion) dt{
    display: flex;
    align-items: center;
}

.inner-wrap[data-type='accordion'] dl:not(.accordion) label{
    font-size: 14px;
}


.inner-wrap[data-type='accordion'] dl.accordion dt{
    width:100%;
    height:24px;
    line-height: 24px;
    font-size: 15px;
    color:rgba(51, 51, 51, 0.8);
}

.inner-wrap[data-type='accordion'] dl:not(.accordion) dd{
    display: flex;
    align-items: center;
}
.inner-wrap[data-type='accordion'] dl:not(.accordion) dd label{
    position: relative;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}


.inner-wrap[data-type='accordion'] dl:not(.accordion) dd input[type='checkbox']{
    accent-color: #006ACD;
    border: none;
    margin:0 6px 0 8px;
    width:18px;
    height:18px;
}




.inner-wrap[data-type='accordion'] dl dt a{
    position: relative;
    display: block;
    width:100%;
    height:100%;
}
.inner-wrap[data-type='accordion'] dl.accordion{
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.inner-wrap[data-type='accordion'] dl.accordion dt a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.inner-wrap[data-type='accordion'] dl.accordion dt a:hover{
    background-color: #f0f0f0;
}
.inner-wrap[data-type='accordion'] dl.accordion dt a::after{
    content:"";
    width:11.82px;
    height:7.3px;
    background-image: url('../images/ico_arrow02.svg');
    transform: rotate(180deg); 
}
.inner-wrap[data-type='accordion'] dl.accordion dd{
    height:0;
    overflow: hidden;
    max-height: 194px;
    width:100%;
}
.inner-wrap[data-type='accordion'] dl.accordion dd p{
    color: rgba(102, 102, 102, 0.8);
    font-size: 14px;
    line-height: 1.5em;
    border: 1px solid #cccccc;
    padding: 15px;
    border-radius: 15px;
    height:150px;
    overflow-y: auto;
}
.inner-wrap[data-type='accordion'] dl.accordion dt.on+dd{
    height:auto
}
#leftTable{
    width:303px;
}
#rightTable{
    width:303;
}
#completeTable{
    width:100%;
}
#completeTable tr > *{
    text-align: center;
}

.svc_title_label{
	font-weight: 500; 
	position: absolute; 
	top: 18px;
}

.modal{
    position: fixed;
    background-color: #ffffff;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 20px;
    padding:10px 28px 28px;
    z-index: 4;
}
.modal .modal-header{
    display: flex;
    height:71px;
    width:100%;
    align-items: center;
    justify-content: space-between;
}
.modal .modal-content{
    background-color: #FAFAFA;
    border: 1px solid #A9A9A9;
    border-radius: 15px;
    padding:30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height:calc(100% - 71px);
}
.overlay{
    display: none;
    width:100%;
    height:100%;
    background-color: #000;
    opacity: 0.5;
    position: fixed;
    z-index: 3;
}



.modal-content{
    background-color: #f0f4f9;
    border-radius: 15px;
    padding:30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height:calc(100% - 71px);
}
.modal-content.type02{
	padding:0 15px;
	margin-top: 40px;
	justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-content.type03{
	padding:0 15px;
	justify-content: center;
    align-items: center;
    text-align: center;
}


/* 팝업 공통*/
.modal_popup{
    position: fixed;
    background-color: #ffffff;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 5px;
    padding:10px 28px 28px;
    z-index: 4;
}
/* 1번째 페이지로 넘어가는 팝업 */
.modal_popup_back{
    position: fixed;
    background-color: #ffffff;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 5px;
    padding:10px 28px 28px;
    z-index: 4;
}
/* 신청/해지 확인 팝업 */
.modal_popup_enlTerSvc{
    position: fixed;
    background-color: #ffffff;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 5px;
    padding:10px 28px 28px;
    z-index: 4;
}
/* 신청/해지 완료 팝업 */
.modal_popup_sucs{
    position: fixed;
    background-color: #ffffff;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 5px;
    padding:10px 28px 28px;
    z-index: 4;
}


.confirm-modal{
	padding:10px;
	min-width:350px;
}
.modal_popup_enlSvc .modal-content.type02 p{
	text-align:center;
}
.modal-btn-wrap{
	display:flex;
	justify-content:center;
	align-items:center;
	padding:0;
	margin-top:10px;
	gap:20px;
}
.modal-btn-wrap > *{
	flex:1
}
.modal-btn-wrap.col01 > *{
	min-width: 100px;
	flex: unset;
}
.back1pageBtn{
	padding: 9px 27px; 
	background:#f0f0f0; 
	width: 80px; 
	height: 36px; 
	border: 1px solid #e0e0e0; 
	color: #8a8a8a; 
	font-size: 14px; 
	font-weight: 400; 
	border-radius: 3px;
}


.text01{
	border-top: 1px solid #cccccc; 
	height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.text01 label{
	font-size: 15px; 
	color: #777777;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

.loading-container {
    position: absolute;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.loading-container.on{
    display: flex;
}


.loading-container::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    z-index: 100;
    opacity: 0;
}

.loading-wrapper,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
    z-index: 101;
}


.loading-wrapper {
    margin: 40px auto
}

.loading {
    border: 4px solid transparent;
    border-color: transparent #00a9ff transparent #00a9ff;
    -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
    -moz-transform-origin: 50% 50%;
    -o-animation: rotate-loading 1.5s linear 0s infinite normal;
    -o-transform-origin: 50% 50%;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-transform-origin: 50% 50%;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-wrapper:hover .loading {
    border-color: transparent #E45635 transparent #E45635;
}

.loading-wrapper:hover .loading,
.loading-wrapper .loading {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.full.input-box input[type='submit']{
	width:100%;
	border-radius:4px;
}

.list{
    display: flex;
    flex-direction: column;
    height:100%;
    gap:10px;
}
.list-item{
    width:100%;
}
.list.faq-type .list-item.on .list-item-link{
    border-radius: 5px 5px 0 0;
}
.list-item-link{
    display: flex;
    align-items: stretch;
    width: 100%;
    border-radius: 5px;
    height:100%;
    border: 1px solid #cccccc;
    overflow: hidden;
    background-color: #ffffff;
}
.list-item-link.faq{
    height:auto;
}
.question{
    display: flex;
}
.answer{
    background-color: #f1f1f1;
    border-top: none;
    display: none;
}
.answer-inner{
    display: flex;
}
.answer-inner .answer-cnt{
    padding:10px;
}

.list.faq-type .list-item.on .answer{
   border-radius: 0 0 5px 5px;
   border: 1px solid #cccccc;
   border-top:none;
}
.list:not(.detail-page) .list-item-link{
    box-shadow:0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
}
.list:not(.detail-page) .list-item-link.faq{
    box-shadow: none;
}
.list.detail-page .list-item-detail{
    width:100%;
    height:100%;
    background-color: #f1f1f1;
    padding:10px;
    overflow-y: auto;
    
}
.list.detail-page .list-item-detail > *{
    font-size: 14px;
}
.list-item-title{
    font-size: 15px;
}
.list-item-title em{
    font-weight: 600;
}
.list-item-number, .answer-inner span{
    background-color: #f4f4f4;
    display: flex;
    height:100%;
    align-items: center;
    justify-content: center;
    padding:10px;
}
.answer-inner span{
    font-weight: 800;
    color:#E45635;
}
.list-item-link.faq .list-item-number{
    background-color: #ffffff;
}

.list-item-number em{
    font-weight: 800;
    color:#006ACD;
}
.list-item-info{
    padding:10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex:1;
    padding:10px 15px 10px 10px;
}
.list-item-state{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
}
.list-item-state > span{
    font-size: 14px;
}
.list-item-state .state{
    padding:5px 10px;
    border-radius: 10px;
    color:#ffffff;
    width:66px;
    text-align: center;
}
.list-item-state .state.comp{
    background-color: #006ACD;
}
.list-item-state .state.fail{
    background-color:#E45635 ;
}
.list-item-state .view em{
    font-weight: 600;
    color:#006ACD;
}


.list:not(.detail-page, .faq-type) .list-item-link:hover{
    background-color: #f1f1f1;
}
.list:not(.detail-page, .faq-type) .list-item-link:hover .list-item-number{
    background-color: #f1f1f1;
}
.list:not(.detail-page, .faq-type) .list-item-link:hover .list-item-title{
    font-weight: 600;
}


.admin-info{
    display: flex;
    gap: 10px;
}
.admin-info > *{
    font-size: 14px;
}
.admin-info dt{
    font-weight: 600;
}
.scroll-view{
    position: relative;
}
.total-guide{
    font-size: 12px;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
}
.total-guide em{
    font-weight: 600;
    color: #006ACD;
}
.pagination{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .arrow{
    font-size: 14px;
    border: 1px solid #cccccc;
}
.pagination > *{
    cursor: pointer;
}

.pagination .page:first-of-type{
    margin-left: 10px;
}
.pagination .page:last-of-type{
    margin-right: 10px;
}

.pagination .page,
.pagination .arrow{
    width:30px;
    height:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#333333;
    font-weight: 400;
}
.pagination .arrow{
    margin:0 2px;
}
.pagination .page.selected{
    background-color: #006ACD;
    color:#ffffff;
    font-weight: 600;
}
.pagination .arrow.diseble{
    opacity: 0.3;
}
.tabs{
    display: none;
    width:100%;
}
.tabs a{
    flex:1;
    display:flex;
    justify-content: center;
    align-items: center;
    border:1px solid #cccccc;
    background-color: #f1f1f1;
    color:#333333;
    font-size: 14px;
    padding:10px 0;
}
.tabs a.on{
    border: 1px solid #006ACD;
    background-color: #006ACD;
    color:#ffffff;
    font-weight: bold;
}
.table-result{
    width:100%;
    height:100%;
    display: flex;
    position: relative;
    overflow: hidden;
}
table{
    position: relative;
}
.table-result::before,
.table-result::after{
    content:"";
    position: absolute;
    top:0;
    width:calc(50% - 10px);
    height:57px;
    background-color: #cccccc;
    z-index: 1;
}
.table-result::before{
    left:0;
}
.table-result::after{
    right:10px;
}
.table-result > .scroll-view{
    flex:1;
    border-width: 0px 0px 1px 0;
    border-style: solid;
    border-color: #cccccc;
}
table input[type="checkbox"]{
    width:17px;
    height:17px;
    margin:auto;
    display: block;
    opacity: 0.2;
    color:#f1f1f1;
}
table input[type="checkbox"]:checked{
    opacity: 1;
}
table thead tr th{
    position: relative;
    text-align: center;
}
table tr > * {
    border: 1px solid #cccccc;
    text-align: center;
}
table tbody tr.on{
    background-color: #0279e7;
}
table tbody tr.on td{
    color:#ffffff;
}
.td-chk{
    position: relative;
}
.td-chk input{
    position: relative;
}
table label{
    position: absolute;
    width:100%;
    height:100%;
    justify-content: center;
    align-items: center;
    display: flex;
    left:0;
    top:0;
    z-index: 0;
    position: absolute;
    opacity: 0.7;
    font-size: 40px;
    font-weight: bold;
    color:#cccccc;
}
#svcEnlPage_2{
	padding:0 20px;
	height:450px;
}
#svcTerPage_1{
	width:auto;
}

.disCon{
	padding:10px 10px 10px 5px;
	background:#f1f1f1;
	border-radius:5px;
	width:calc(100% - 100px);
	font-size:14px;
}
.disConLi{
	display:flex;
	gap:5px;
	line-height:1.2em;
}
.disConLi i{
	font-style:normal;
}
