@charset "UTF-8";
:root{
	--black:#131313;
	--white:#fff;

	--gray1:#525252;
	--gray2:#8c8c8c;
	--gray3:#c4c4c4;
	--gray4:#e0e0e0;
	--gray5:#efefef;

	--blue:#272e4d;
}
/* 공통 */
.fileAddWrap{
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.fileAddWrap > p{
  width: 6%;
}
.fileAdd{
  display: flex;
  align-items: center;
  gap: 10px;
}
.fileAdd form{
  display: flex;
  align-items: center;
  gap: 10px;
}
.fileAdd .fileInfo{
  display: inline-block;
  width: 400px;
  height: 36px;
  padding-left: 13px;
  border: 1px solid #e3e3e3;
  line-height: 33px;
}
.fileAdd .realFile{
  display: none;
}
.fileAdd .fileBtnWrap{
  display: flex;
  align-items: center;
  gap: 10px;
}
.fileAdd .btnBlack{
  min-width: auto;
}

/* 버튼 공통 */
.btnBlack.inputBtn{
  height: 36px;
  padding: 0 20px;
  text-align: center;
  border-radius: 0;
  line-height: 33px;
}
table .btnBlack{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 24px;
  min-width: auto;
  margin: auto;
  padding: 0;
  padding-bottom: 2px;
  font-size: 12px
}
.contBtnWrap{
  margin: 50px 0;
}
.contBtnWrap .btnBlack{
  margin: 0 auto;
}

/* 테이블 공통 */
table{
  width: 100%;
}
th{
  padding: 14px 0;
  background: var(--gray4);
  border-right: 2px solid var(--white);
}
th:last-of-type{
  border-right: none;
}
td{
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-bottom: 1px solid var(--gray4);
}
table .left, td.mName, td.tName{
  padding-left: 24px;
  text-align: left;  
}
table .right{
  padding-right: 24px;
  text-align: right;
}

/* 팝업 공통 */
.mask{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  transform: 300ms;
}
.popWrap{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  background: #fff;
  z-index: 1;
  padding: 35px 25px;
}
.popWrap.w650{
  width: 650px;
}
.popWrap.w1200{
  width: 1200px;
}
.mask.show,
.popWrap.show{
  display: block;
}
.popHeader{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.popTit{
  font-size: 16px;
  font-weight: bold;
}
.closeBtn.icon{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.closeBtn.icon > img{
  display: block;
  width: 100%;
}
.popWrap .btnBlack{
  min-width: auto;
  width: 80px;
  margin: 0 auto;
}
.popWrap::-webkit-scrollbar {
    width: 6px;
}
.popWrap::-webkit-scrollbar-track {
    background-color: var(--gray4);
    opacity: 0.5;
}
.popWrap::-webkit-scrollbar-thumb { 
    background-color: var(--gray1);
    border-radius: 100px;
}

.inputWrap{
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.inputWrap > p{
  width: 6%;
  margin-top: 6px;
}
.inputWrap > input{
  width: 60%;
}
.inputWrap > textarea{
  width: 60%;
  height: 80px;
  padding: 10px 0 10px 13px;
  border: 1px solid #e3e3e3;
  resize: none;
  font-size: 14px;
}

.contContainer::-webkit-scrollbar,
.popCont .tableWrap::-webkit-scrollbar {
  width: 6px;
}
.contContainer::-webkit-scrollbar-track,
.popCont .tableWrap::-webkit-scrollbar-track {
  background-color: var(--gray4);
  opacity: 0.5;
}
.contContainer::-webkit-scrollbar-thumb,
.popCont .tableWrap::-webkit-scrollbar-thumb { 
  background-color: var(--gray1);
  border-radius: 100px;
}

/* 메인 페이지(verification.html) */
/* 헤더 */
#header{
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: var(--blue);
  color: #fff;
}
.headerWrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  padding: 0 30px;
}
.headerWrap .titWrap{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.titWrap .logo{
  width: 40px;
}
.titWrap p {
  margin-top: -2px;
}
.loginWrap{
  display: flex;
  align-items: center;
  margin-left: auto;
}
.loginWrap .loginInfo{
  position: relative;
  padding-right: 30px;
}
.loginWrap .loginInfo:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
  opacity: 0.7;
}
.loginWrap .logoutBtn{
  display: block;
  width: 100%;
  padding-left: 30px;
  color: #fff;
}

/* 메인(메뉴, 컨텐츠) */
#main{
  width: 100%;
  height: calc(100vh - 50px);
  background: var(--gray5);
}
.mainWrap{
  min-width: calc(1920px - 220px);
  margin-left: 220px;
  height: 100%;
}
.gnb{
  position: fixed;
  left: 0;
  top: 50px;
  width: 220px;
  height: 100%;
  padding:14px;
  background: var(--gray4);
}
.gnbWrap{
  width: 100%;
  height: 100%;
}
.gnbWrap li{
  margin-bottom: 24px;
}
.gnbWrap li:last-of-type{
  margin-bottom: 0;
}
.gnbWrap .menuTit{
  padding: 12px 10px;
  background: var(--gray2);
  color: #fff;
  border-radius: 5px;
}
.gnbWrap .menuTit.on{
  background: var(--blue);
}
.gnbWrap .menuList a{
  display: block;
  width: 100%;
  padding: 8px 10px;
  margin-top: 8px;
}
.gnbWrap .menuList a:hover{
  font-weight: bold;
}
.gnbWrap .menuList a.on{
  font-weight: bold;
}
.mainContWrap{
  width: 100%;
  height: 100%;
}
.contMainTit{
  display: flex;
  align-items: center;
  height: 7%;
  padding-left: 15px;
  font-size: 16px;
  border-bottom: 1px solid var(--gray1);
}
.contWrap .contTit{
  padding: 10px 0 30px;
  font-size: 16px;
  font-weight: bold;
}
.contContainer{
  width: 100%;
  height: 93%;
  padding: 15px;
  overflow-y: auto;
}
.contContainer .contWrap{
  background: var(--white);
  border-radius: 5px;
  padding: 20px 15px;
  margin-top: 20px;
  gap: 20px;
}
.contContainer .contWrap:first-of-type{
  margin-top: 0;
}
.contContainer .contWrap.search{
  display: flex;
  align-items: center;
}
.contWrap.search .dataWrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contWrap.search .inputWrap.date{
  position: relative;
}
.contWrap.search .datepicker{
  width: 160px;
}
.contWrap.search .inputWrap_img{
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}
.contWrap.search .selectric{
  width: 120px;
  padding: 0;
}
.contWrap.search .inputWrap{
  margin-bottom: 0;
}
.contWrap.search .inputWrap.search{
  width: 360px;
}
.contWrap.search .inputWrap.search > input{
  width: 100%;
}
.contWrap.search .searchBtn{
  margin-left: 20px;
}
.contWrap.search .btnBlack{
  width: 85px;
}
.contContainer .contWrap.table{
  width: 100%;
  height: calc(100% - 114px);
  overflow-y: auto;
}
.contContainer .contWrap.table td{
  height: 38px;
  line-height: 38px;
  padding-top: 0;
  padding-bottom: 0;
}

/* 데이터 등록(dataInput.html) */
.contWrap.dataReg{
  height: 100%;
}
.contWrap.dataReg .infoTit{
  font-weight: bold;
}
.contWrap.dataReg .modelInfoWrap{
  padding: 20px;
  border: 1px solid var(--gray3);
  border-radius: 8px;
}
.contWrap.dataReg .modelInfoWrap .infoList{
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray3);
}
.contWrap.dataReg .modelInfoWrap .infoList:last-of-type{
  padding-bottom: 0;
  margin-bottom: 15px;
  border-bottom: none;
}
.contWrap.dataReg .modelInfoWrap .modelInfo{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}
.contWrap.dataReg .modelInfo .modelName{
  width: 100%;
  margin-bottom: 14px;
  font-weight: bold;
}
.contWrap.dataReg .modelInfo .detailWrap{
  display: flex;
  width: 100%;
  margin-top: 30px;
}
.contWrap.dataReg .modelInfo .detailWrap > span{
  display: block;
  line-height: 1.4;
}
.contWrap.dataReg .modelInfo .detailWrap .tit{
  width: 4%;
}
.contWrap.dataReg .modelInfo .detailWrap .detail{
  width: 96%;
}
.contWrap.dataReg .verInfoWrap{
  font-weight: bold;
}
.contWrap.dataReg .verInfoWrap .verInfo{
  display: block;
  margin-top: 14px;
  font-weight: normal;
}
.contWrap.dataReg .dataPopWrap{
  display: flex;
  align-items: center;
  gap: 50px;
}
.contWrap.dataReg .dataPopWrap .dataPop{
  display: flex;
  align-items: center;
}
.contWrap.dataReg .dataPopWrap .dataPop .btnBlack{
  width: 150px;
  margin: 0;
  margin-left: 8px;
  padding: 3px 15px;
}
.contWrap.dataReg .testInfoWrap,
.contWrap.dataReg .fileInfoWrap{
  margin-top: 30px;
  padding: 0 15px;
}
.contWrap.dataReg .btnWrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 80px;
}

/* 데이터 스키마 팝업 */
.popCont .fileName{
  margin-top: 16px;
}
.popCont .tableWrap{
  height: 320px;
  overflow-y: auto;
  margin: 20px 0 30px;
}

/* 결과 조회 팝업 */
.popInfoWrap .dataInfoWrap,
.popInfoWrap .dateWrap,
.popInfoWrap .dataCont{
  display: flex;
  align-items: center;
  gap: 30px;
}
.popInfoWrap .dataInfoWrap p{
  position: relative;
}
.popInfoWrap .dataInfoWrap p:after{
  content:'';
  display: block;
  width: 1px;
  height: 14px;
  position: absolute;
  top: 1px;
  right: -15px;
  background: var(--gray2);
}
.popInfoWrap .dataInfoWrap p:last-of-type:after{
  display: none;
}
.popInfoWrap .dateWrap,
.popInfoWrap .dataCont{
  gap: 4px;
}
.popInfoWrap .dateWrap{
  margin-top: 18px;
}
.popHeader .btnWrap{
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-left: auto;
  margin-right: 35px;
  margin-top: 25px;
}
.popHeader .btnWrap > .btnBlack{
  width: auto;
  padding: 2px 15px 4px;
  font-size: 12px;
}
.toggleWrap{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.toggleBtn{
  width: 45px;
  cursor: pointer;
}
.toggleBtn > img{
  display: block;
  width: 100%;
  bottom: -2px;
}
.toggleBtn > .right{
  display: none;
}
.toggleBtn.on > .left{
  display: none;
}
.toggleBtn.on > .right{
  display: block;
}

.popCont .toggleContWrap .graphWrap{
  display: none;
}
.popCont .toggleContWrap.on .dataWrap{
  display: none;
}
.popCont .toggleContWrap.on .graphWrap{
  display: block;
}

.searchPop{
  margin-top: 20px;
}
.searchPop .fileNameWrap{
  padding: 20px 0 22px 0;
  border-top: 1px solid var(--gray3);
  border-bottom: 1px solid var(--gray3);
}
.searchPop .dataWrap{
  padding: 20px 0 0 15px;
  height: 280px;
  overflow-y: auto;
}
.searchPop .dataWrap li{
  margin-bottom: 16px;
}
.searchPop .dataWrap li:last-of-type{
  margin-bottom: 0;
}
.searchPop .graphWrap .graphImg{
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}
.searchPop .graphWrap .graphImg > img{
  display: block;
  margin: .0 auto;
}

/* 페이지네이션 */
.paginationWrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
  padding: 20px 0;
}
.paginationWrap a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--gray3);
  background: var(--white);
  color: var(--gray1);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.paginationWrap a:hover{
  background: var(--gray5);
  border-color: var(--gray2);
}
.paginationWrap a.active{
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.paginationWrap a.disabled{
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}
.paginationWrap .pageBtn{
  font-weight: bold;
}