@charset "utf-8";
@import url("../../main/css/webfont.css");

/************************************************************************
 * 파일명      : style.css
 * 설명        : 공통
 * 작성자      : 박승연
 * 작성일      : 2021.07.07
************************************************************************/

/* 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px !important;
    color: #333;
    line-height: 160%;
    letter-spacing: -0.05em;
}

ul,
ol,
li,
dl,
dt,
dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 본문영역 : 타이틀, 소개 */
.titCont {
    width: 100%;
    margin: 0 auto;
    background: #fafafa;
}

.titCont .titContWrap {
    height: 100%;
    padding: 40px 0;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.titCont .titContWrap h2.title::before {
    display: block;
    content: '';
    left: 0;
    background: #b87fb1;
    border-radius: 50px;
    width: 12px;
    height: 12px;
}

.titCont .titContWrap h2.title {
    font-size: 21px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.titCont .titContWrap p {
    font-size: 15px;
}

/* 본문영역 : api 소개 */
.contWrap .content h3.subTitle,
.contWrap .content h4 {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    margin-bottom: 18px;
    font-size: 19px;
    color: #333;
}

.contWrap .content h3.subTitle::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    border: 3px solid #b87fb1;
    border-radius: 50px;
    width: 8px;
    height: 8px;
}

.contWrap .content div.text {
    width: 100%;
    max-width: 1400px;
    border: 1px solid #e1e1e1;
    margin: 0 auto;
    padding: 25px 30px;
    font-size: 15px;
    letter-spacing: normal;
}

.contWrap .content div.text p {
    position: relative;
    padding: 0 0 5px 16px;
    font-weight: bold;
    font-size: 16px;
}

.contWrap .content div.text p::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    background: url(../images/3dep_dot.png) no-repeat center;
    width: 6px;
    height: 6px;
}

.contWrap .content div.text ul li {
    position: relative;
    padding-left: 16px;
    font-size: 15px;
    margin-bottom: 10px;
}

.contWrap .content div.text ul li:last-child {
    margin-bottom: 0;
}

.contWrap .content div.text ul li::before {
    position: absolute;
    left: 0;
    top: 10px;
    display: block;
    content: '';
    width: 5px;
    height: 5px;
    background: #00245f;
}

.contWrap .content div.text ul li span {
    font-weight: bold;
}

/* 본문영역 : 작은 메뉴바 */
.contWrap .content {
    padding-top: 40px;
    position: relative;
}

.contWrap .content .lnbWrap {
    /* width: 100%; */
    height: 50px;
}

.contWrap .content .lnbWrap nav.lnb {
    height: 50px;
    margin: 0 auto;
    background: #fff;
}

.contWrap .content .lnbWrap nav.lnb ul {
    display: flex;
    gap: 10px;
}

.contWrap .content .lnbWrap nav.lnb ul li {
    width: 210px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    cursor: pointer;
    transition: all .5s;
}

.contWrap .content .lnbWrap nav.lnb ul li:first-of-type::before {
    display: none;
}

.contWrap .content .lnbWrap nav.lnb ul li.on {
    background: #464d5d;
    color: white;
}

.contWrap .content .lnbWrap nav.lnb ul li:not(.on):hover {
    border: 1px solid #464d5d;
    transition: all .5s;
}

/* 본문영역 : 매뉴얼 내용영역 */
.contWrap .content .subCont {
    display: none;
    margin-top: 40px;
}

.contWrap .content .subCont.on {
    display: block;
}

.contWrap .content h3.subTitle span {
    font-weight: normal;
    font-size: 15px;
    color: #333;
}

.contWrap .content h4 span {
    font-weight: normal;
    font-size: 15px;
    color: #333;
    display: inline-block;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contWrap .content h4 {
    font-size: 16px;
    margin-bottom: 0;
    display: inline-block;
}

.contWrap .content h4::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    background: url("/image/3dep_arrow.png") no-repeat center;
    width: 14px;
    height: 12px;
}

.contWrap .content .lnbWrap .lnb a{
	display:block;
}

/* 테이블 */
.tableWrap {
    width: 100%;
    max-width: 1400px;
    /* margin: 0 auto; */
}

.tableWrap:after {
    display: block;
    content: '';
    clear: both;
}

.table_tip {
    margin: 0 0 5px 0;
    float: right;
}

.table_style {
    border-collapse: collapse;
    margin: 20px 0px 20px 0px;
    border-top: 3px solid #b3b3b3;
    border-width: 0px 0px 1px 0px;
    width: 100%;
}

.table_style02 {
    width: 100%;
    border-collapse: collapse;
}

.table_style02 th,
.table_style02 td {
    text-align: left;
}

.table_style caption {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 0;
}

.table_style th {
    padding: 10px;
    border: 1px solid #b3b3b3;
    color: #171717;
    background: #f4f4f4;
    font-size: 15px;
    height: 50px;
    width: 25%;
}

.table_style td {
    padding: 10px;
    border: 1px solid #b3b3b3;
    background: #FFF;
    text-align: left;
    font-size: 15px;
}

.table_style .cell_point {
    background: #fafafa;
}

.table_style .cell_left {
    text-align: left;
}

.table_style .cell_center {
    text-align: center;
}

.table_style td input,
select::before {
    margin-right: 5px;
}

.table_style input,
select {
    width: auto;
    border: 1px solid #CCC;
    vertical-align: middle;
}

.table_style input.middle .table_style .checkbox {
    width: auto;
    border: none;
    vertical-align: middle
}

.table_style .cell_right {
    text-align: right;
}

.table_style_3 {
    border-collapse: collapse;
    margin: 10px 0px 10px 0px;
    border-top: 3px solid #b3b3b3;
    border-bottom: 1px solid #252525;
    border-width: 3px 0px 1px 0px;
    width: 100%;
    font-size: 11px;
}

.table_style_3 caption {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 0;
}

.table_style_3 th {
    padding: 3px;
    border: 1px solid #b3b3b3;
    color: #171717;
    background: #f4f4f4;
}

.table_style_3 td {
    padding: 3px;
    border: 1px solid #b3b3b3;
    background: #fff;
    text-align: center
}

.tableWrap .right {
    width: auto;
    /* height: 34px; */
    margin-bottom: 10px;
}

.tableWrap .right a {
    float: right;
    display: inline-block;
    padding: 6px 20px;
    height: 35px;
    margin-right: 4px;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    color: white;
    background: #464d5d;
    box-sizing: border-box;
}

.tableWrap .right a:hover {
    background: #b87fb1;
}

.tableWrap .right a:first-of-type {
    margin-right: 0;
}

.tableWrap div.left {
    float: left;
    width: auto;
    display: flex;
    flex-wrap: wrap;
}


/* 이지영 추가 */
input.disable {
    height: 23px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    line-height: 20px;
}

textarea.xmlCss {
    height: 400px;
    width: 100%;
    background: #fff;
}

.table_style textarea {
    width: 100%;
    height: 120px;
    font-size: 15px;
    padding: 5px 10px;
}

/*매뉴얼 샘플 URL 표시*/
.contWrap .content span.point {
    cursor: pointer;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contWrap .content span.point:hover {
    color: #004b8d;
}

/* 팝업 헤더*/
header nav.gnb .popupNav {
    height: 100%;
    margin: 0 auto;
}

header nav.gnb .popupNav span {
    font-size: 18px;
    margin-left: 30px;
}

.popWrap .content h3.subTitle,
.popWrap .content h4 {
    position: relative;
    margin: 0 auto;
    padding-left: 18px;
    margin-bottom: 18px;
    font-size: 19px;
    color: #00245f;
}

.popWrap .content h4 {
    font-size: 16px;
    margin-bottom: 0;
}

.popWrap .content h3.subTitle::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    background: url(../images/2dep_dot.png) no-repeat center;
    width: 12px;
    height: 12px;
}

.popWrap .content h4::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    background: url(../images/3dep_arrow.png) no-repeat center;
    width: 12px;
    height: 12px;
}

.popWrap .content .subCont {
    margin-top: 30px;
}

.popWrap .content .right {
    width: 100%;
    height: 34px;
    margin-bottom: 10px;
}

.popWrap .content .right.pr_5 {
    padding-right: 5px;
}

.popWrap .content .right a {
    float: right;
    display: inline-block;
    padding: 5px 11px;
    background: #004b8d;
    margin-right: 4px;
    color: #fff;
    border-radius: 2px;
}

.popWrap .content .right a:hover {
    background: #003c71;
}

.popWrap .content .right a:first-of-type {
    margin-right: 0;
}

.popWrap h4.mg,
.popWrap .content h3.mg {
    margin: 5px 10px;
}

.popWrap .content .subCont span.ml {
    margin-left: 10px;
}

.popWrap .content .subCont div.mtb {
    margin-top: 50px;
    margin-bottom: 10px;
}

/*통계표 테이블 스타일*/
.popWrap .table_css {
    border-collapse: collapse;
    margin: 10px 0px 10px 0px;
    border-top: 3px solid #b3b3b3;
    border-bottom: 1px solid #252525;
    border-width: 3px 0px 1px 0px;
    width: 100%;
}

.popWrap .table_css caption {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 0;
}

.popWrap .table_css th {
    padding: 5px;
    border: 1px solid #b3b3b3;
    color: #171717;
    background: #f4f4f4;
}

.popWrap .table_css td {
    padding: 5px;
    border: 1px solid #b3b3b3;
    background: #FFF;
    text-align: center
}

.popWrap .table_css input,
select,
textarea {
    width: auto;
    /* height: 20px; */
    border: 1px solid #CCC;
    vertical-align: middle
}

.popWrap .table_css .checkbox {
    width: auto;
    border: none;
    vertical-align: middle
}

/*버튼*/
.btn_base {
    display: inline-block;
    border-radius: 4px;
    color: #333;
    padding: 0 5px;
    text-align: left;
    line-height: 26px;
    border: 1px solid #ccc;
    font-family: 'NotoR';
    font-size: 12px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 1) 70%, rgba(243, 243, 243, 1) 100%);
    margin-left: 5px;
}

.btn_base:hover {
    color: #333;
    background: rgb(190, 190, 190);
    background: linear-gradient(180deg, rgba(190, 190, 190, 1) 0%, rgba(246, 246, 246, 1) 70%, rgba(243, 243, 243, 1) 100%);
}

.btn_base a:activer {
    color: #333;
    background: rgb(190, 190, 190);
    background: linear-gradient(180deg, rgba(190, 190, 190, 1) 0%, rgba(246, 246, 246, 1) 70%, rgba(243, 243, 243, 1) 100%);
}

/*DIV 영역 설정*/
.tableWrap .div_left {
    width: 60%;
    float: left;
    position: relative;
}

.tableWrap .div_right {
    width: 40%;
    float: right;
    padding-left: 20px;
}

.tableWrap input.italic {
    color: #333;
    width: 200px;
    font-style: italic;
    font-size: 15px;
    font-weight: bold;
    margin-left: 5px;
    border: 0;
}

.tableWrap .right.dp_in {
    display: inline
}

.tableWrap select.box_size {
    width: 180px;
    height: 35px;
}

.tableWrap div.mb_10 {
    margin-bottom: 10px
}

.tableWrap textarea.w_100 {
    width: 100%
}

.contWrap .content .tableWrap .div_right h4 {
    font-size: 19px;
    margin-bottom: 18px;
    width: auto;
}

.contWrap .content .tableWrap .div_right h4:nth-of-type(2) {
    margin-top: 15px;
}

.contWrap .content .tableWrap .div_right div.analyWrap {
    position: relative;
    margin-top: 15px;
    padding: 20px 0;
}

.contWrap .content .tableWrap .div_right div.analyWrap h4 {
    position: absolute;
    top: 0;
    left: 0;
}

.contWrap .content .tableWrap .div_right div.analyWrap div.dp_in {
    position: absolute;
    right: 0;
    top: 0;
}

.contWrap .content .tableWrap span.font_red {
    color: #cd2237;
    font-weight: bold;
    font-size: 15px;
}

/*jq그리드 설정*/
div.ui-jqgrid-sortable {
    font-size: 15px;
    font-weight: bold;
}

/*20220128 이지영 추가*/
div.clasSort,
div.offcSort {
    display: inline-block;
}

/*20220712 이지영 추가*/
.popWrap .tab_area {
    height: 40px;
}

.popWrap .tab_area ul.tab {
    box-sizing: border-box;
}

.popWrap .tab_area ul.tab li {
    float: left;
    width: 33.33%;
    height: 40px;
    padding-top: 11px;
    vertical-align: middle;
    border: 1px solid #e0e0e0;
    border-right: none;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    color: #777;
}

.popWrap .tab_area ul.tab li.last {
    border-right: 1px solid #e0e0e0;
}

.popWrap .source_area {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-top: none;
    height: 500px;
    overflow: auto;
}

.popWrap .tab_area ul.tab li.active {
    border: 2px solid #004b8d;
    border-bottom: none;
    color: #004b8d;
    box-shadow: 5px -2px 2px rgba(17, 17, 17, 0.1);
}

.popWrap .tab_area ul.tab li.active a {
    font-weight: 600;
}

/* 가이드 선택 버튼 */
.switch ul {
    width: 100%;
    height: 50px;
}

.switch ul li {
    width: 33.3%;
    height: 50px;
    float: left;
}

.switch ul li a {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    line-height: 50px;
}

.switch ul li a.on {
    color: #fff;
    background: #5b80b7;
    font-weight: 600;
}

a.btn_guide {
    display: inline-block;
    padding: 2px 8px;
    background: #b87fb1;
    margin-right: 4px;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

a.btn_guide:hover {
    background: #986192;
}

/* 승인, 승인확인 table overflow */
.table_overflow {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
}

.table_overflow .ui-jqgrid {
    min-width: 260px;
}

.table_overflow .ui-jqgrid-view {
    min-width: 260px;
}

.table_overflow .ui-jqgrid-bdiv {
    overflow-x: auto;
}

/* 약관 */
.terms pre {
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 15px;
}

.terms_tit {
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 10px;
}

.terms_cont {
    display: inline-block;
    padding-top: 5px;
}
