@import url("reset.css");
/*@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");*/
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@700&display=swap");
  
/* common */
* {
  -webkit-overflow-scrolling: touch;
  word-break: keep-all;
  font-family: "Nanum Gothic", sans-serif;
  line-height: 100%;
 /*220712 font-size: 13px;*/
 font-size: 12px;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  -webkit-appearance: none;
  border: 1px solid #d5dae3;
  /*220713 border-radius: 4px;*/
  border-radius: 2px;
  background-color: #fff;  
  /*220713 padding: 0 10px;*/
 /* padding:5px 10px;*/
  /*220713 font-size: 13px;*/
  font-size: 11px;
  box-sizing: border-box;
  /*220713 font-family: "Noto Sans KR", sans-serif;*/
  font-family:"Nanum Gothic", sans-serif;
  width: 100%;
  vertical-align: middle;
  color: #2c3238;
  font-weight: 400;
  outline: none;line-height:1.5;
}
textarea.form-control {
  /*220713 font-size: 13px;*/
  font-size: 12px;
  font-weight: 400;
}
input:read-only {
  color: #2c3238 !important;
  background-color: #f4f7fa !important;
}
textarea:read-only {
  color: #2c3238 !important;
  background-color: #f4f7fa !important;
}

input[type="text"]:disabled,
input[type="password"]:disabled,
textarea:disabled {
  background-color: #f6f8fb !important; /*230216 #f6f8fb*/
  color: #545b62 !important; /*220926 #2c3238*/
  /*221013 추가*/
  border: 1px solid rgba(174, 182, 195, .4) !important;
}

/*221013 기존 복구 시작*/
input[type="password"]:focus {
  background-color: #fff;
}
input[type="text"]:focus {
  background-color: #fff;
}
/*221013 기존 복구 끝*/

input[type="text"].blue:disabled {
  border: solid 1px #d5dae3 !important;
  background-color: #f6f8fb !important;
}
textarea {
  width: 100%;
  border: solid 1px #d5dae3;
  padding: 5px 10px;
  height: 100px;
 /*220713 font-size: 13px;*/
  font-size: 12px;
  background: #fff;
  border: none;
  border-radius: 4px;
  border: solid 1px #d5dae3;
}
select::-ms-expand {
  display: none;
}
select {
  font-weight: 400;
  /*220713 font-size: 13px;*/
  font-size: 12px;
}
button {
  outline: none;
  box-shadow: none;
  border: none;
  background: none;
  /*220713 font-family: "Noto Sans KR", sans-serif;*/
  font-family:"Nanum Gothic", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}
button:focus {
  outline: none;
  box-shadow: none;
}
button:hover {
  color: #0a64bf;
}
button.active {
  color: #0a64bf;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
em {
  font-style: normal;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border-color: #999999;
}

input[type="checkbox"] {
  width: 24px;
  height: 24px;
  position: absolute;
  opacity: 0;
}
input[type="checkbox"] + label {
  height: 24px;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  align-items: center;
  vertical-align: middle;
  /*220713 font-size: 13px;*/
  font-size: 12px;
}
input[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: solid 1px #dcdfe2;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-right: 8px;
  vertical-align: top;
}
input[type="checkbox"]:checked + label:before {
  border: none;
}

input[type="checkbox"]:disabled + label:before {
  border: solid 1px #dcdfe2;
  background-color: #f2f3f5;
  cursor: default;
}
input[type="checkbox"]:disabled + label {
  cursor: default;
}

.switch-chk {
  position: absolute;
  opacity: 0;
}
.switch-chk + label {
  display: block;
  width: 50px;
  height: 25px;
 /*220713 border-radius: 13px;*/
   border-radius: 5px;
  background-color: #dddddd;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.switch-chk + label:after {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-color: #ffffff;
  position: absolute;
  /*220713 border-radius: 50%;*/
  border-radius: 7%;
  left: 2px;
  top: 2px;
  transition: all 0.2s ease;
}
.switch-chk:checked + label {
  background-color: #65c466;
}
.switch-chk:checked + label:after {
  left: 27px;
}

/* link */
a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:link,
a:visited,
a:active {
  text-decoration: none;
}
a:hover {
  color: #003281;
}

/* font */
.fs-11 {
  font-size: 11px;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-13 {
  font-size: 13px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
  font-weight: 400;
}

.fc-light {
  color: #d5dae3 !important;
}
.fc-blue {
  color: #003281 !important;
}
.fc-black {
  color: #000 !important;
}
.fc-red {
  color: #f50000 !important;
}
.fc-gray {
  color: #999 !important;
}
.fc-green {
  color: #39b549 !important;
}
.fc-violet {
  color: #91268f !important;
}
.fc-orange {
  color: #f16621 !important;
}
.fc-pink {
  color: #e9058e !important;
}
.fc-white {
  color: #fff !important;
}

.datepicker > .datepicker-days {
  display: block;
}
.datepicker > .datepicker-days thead th {
  background-color: transparent !important;
}
.datepicker > .datepicker-months thead th {
  background-color: transparent !important;
}
.datepicker > .datepicker-years thead th {
  background-color: transparent !important;
}

input[type="text"].input-callender {
  color: #737889 !important; /*221006 #2c3238*/
  /*background: #fff url(../images/ic_calendar.png) no-repeat right 10px center;*/
  background: #fff url(../images/ic_calendar.png) no-repeat right 1px center;
  /*background-size:17px;*/
  padding-left: 12px;
  cursor: pointer; /* height:24px !important; */
}
input[type="text"].input-callender:disabled {
  background: #f6f8fb url(../images/ic_calendar.png) no-repeat right 1px center !important;/*background-size:17px !important;*/ /*right 10px*/
}
.select2-container--default .select2-selection--single {
  border: 1px solid  #d5d7d9;/* #d5dae3*/
  border-radius:2px !important;
 /* background-color: #fff;*/
 background-color: transparent;
}
select:disabled + .select2-container--default .select2-selection--single {
 /*221013 기존 border: solid 1px #d5dae3 !important;
  background-color: #f6f8fb !important; */
 /*221013 border: solid 1px #d9dde5 !important;*/
  border: 1px solid rgba(174, 182, 195, 0.3) !important;
  background-color: #f6f8fb !important;
}
/* layout */
html,
body {
  height: 100%;
}
body {
  background-color: #f6f8fb;
  /*220713 font-size: 13px;*/
  font-size: 12px;
  min-width: 1400px;
}
* {
  /*220712 font-family: "Noto Sans KR", sans-serif;*/
  font-family: 'Nanum Gothic', sans-serif;
}
.flex {
  display: flex;
}
.just-between {
  justify-content: space-between;
}
.just-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}
.align-top {
  /*220713 align-items: flex-start !important;*/
  align-items: center !important;
}
.vertical-middle thead tr th {
  vertical-align: middle;
  border-right: 1px solid #dde1e7 !important;
}
.vertical-middle thead tr + tr th {
 /*221011 border-bottom: 0 !important;*/
}
.vertical-middle thead tr th:last-child {
  border-right: 0 !important;
}
#wrapper {
  /*220713 padding: 0 0 0 280px;*/
  padding: 0 0 0 245px;
  transition: all 0.2s ease;
}
#wrapper.active {
  padding: 0 0 0 68px;
}

.nav-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  min-width: 70px;
  z-index: 20;
  background-color: #f6f8fb;
}
.nav-wrap h1 {
  display: flex;
 
  height: 58px;
  /*220712 width: 260px;*/
 /* 
  width: 228px;*/
  width: 233px;
  justify-content: space-between;
  align-items: center;
 /*220712 padding: 0 24px;*/
 padding: 0 14px 0 0px;
 /*220712 margin-left: 20px;*/
  margin-left: 14px;
  transition: all 0.2s ease;
  flex: none;
}

.nav-wrap h1 {display: flex;height: 58px; width: 234px; justify-content: space-between; align-items: center;
	   		    padding: 0 12px 0 0px; margin-left: 14px;  transition: all 0.2s ease; flex: none; }
.nav-wrap h1 a:first-of-type {
  transition: all 0.2s ease;
  height: 36px;
  display: flex;
  flex-wrap: nowrap;
}
/*.nav-wrap h1 a:first-of-type span {
  display: inline-flex;
  width: 74px;
  height: 36px;
  background: url(../images/Biocore_text.png) no-repeat;
  background-size: 67px;
  text-indent: -9999px;
  overflow: hidden;
}*/
.nav-wrap h1 .mobile-menu {
  position: static;/*margin-left:5px;*/
}
/******************  gnb    *************************/
.gnb-block {
  /* 기존 width: 260px; (220629 수정)*/
 /*220712 width: 245px;*/
  width: 220px;
  display: flex;
  flex-grow: 1;
  min-height: 0;
  /*기존 border-radius: 12px; (220629 수정) */
  border-radius: 8px;
  background-color: #4766a4;
  color: #fff;
  /*기존 padding: 15px; (220629 수정) */
  padding: 13px;
  height: 100%;
  /*220712 margin: 0 0 20px 20px;*/
  margin: 0 0 13px 14px;
  transition: all 0.2s ease;
}
#wrapper.active .nav-wrap .gnb-block {
  width: 40px;
}
#wrapper.active .nav-wrap h1 {
  width: 100%;
}
.nav-wrap h1 img {
  transition: all 0.2s ease;
}
#wrapper.active .nav-wrap h1 a {
  display: flex;
}
#wrapper.active .nav-wrap h1 a:first-of-type {
  display: none;
}
#wrapper.active .nav-wrap h1 a.mobile-menu {
}
.mobile-menu span {
  background-color: #314b85;
}
.mobile-menu span:after,
.mobile-menu span:before {
  background-color: #314b85;
}

/***********************************************************************/

.gnb {
  display: flex;
  flex-direction: column;
  width: 100%;
  /*220712font-size: 15px;*/
  /*220711*/
  margin-top:10px;
}
.gnb > li {
 /*220712 padding: 0 15px;*/
 padding: 0 5px 0 10px;
  display: flex;
  transition: all 0.2s ease;
  flex-direction: column;
}
.gnb a {
  white-space: nowrap;
}
.gnb > li > a {  
  color: #dce3f2; /*230119 #f1f3f7*/
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  /*220712 height: 50px;*/
 /* padding:9.5px 0;*/
 padding:7.8px 0; 
 /*220712notosanskr font-size: 14px;*/
  font-size:12px;
}
.gnb > li > a span {
  /*220712 font-size: 15px;*/
  /*220712 notosanskr- font-size: 14px;*/
  /* font-size: 12px;*/
   font-size: 11px;
}

.gnb > li > a:hover {  
   color:#fff;
   font-weight:600;
}

.gnb > li > a .ic_menu {
  /*기존 220630 margin-right: 12px;
  flex: none;
  width: 24px;
  height: 24px;
  background: url(../images/ic_menu_01.png) no-repeat 50% 50%;*/
}
.gnb > li > a .ic_menu.ic_menu_01 {
  background: url(../images/ic_menu_01.png) no-repeat 50% 50%;
}
.gnb > li.active > a .ic_menu.ic_menu_01 {
  background: url(../images/ic_menu_01-active.png) no-repeat 50% 50%;
}
.gnb > li > a .ic_menu.ic_menu_02 {
  background: url(../images/ic_menu_02.png) no-repeat 50% 50%;
}
.gnb > li.active > a .ic_menu.ic_menu_02 {
  background: url(../images/ic_menu_02-active.png) no-repeat 50% 50%;
}
.gnb > li > a .ic_menu.ic_menu_03 {
  background: url(../images/ic_menu_03.png) no-repeat 50% 50%;
}
.gnb > li.active > a .ic_menu.ic_menu_03 {
  background: url(../images/ic_menu_03-active.png) no-repeat 50% 50%;
}
.gnb > li > a .ic_menu.ic_menu_04 {
  background: url(../images/ic_menu_04.png) no-repeat 50% 50%;
}
.gnb > li.active > a .ic_menu.ic_menu_04 {
  background: url(../images/ic_menu_04-active.png) no-repeat 50% 50%;
}
.gnb > li > a .ic_menu.ic_menu_05 {
  background: url(../images/ic_menu_05.png) no-repeat 50% 50%;
}
.gnb > li.active > a .ic_menu.ic_menu_05 {
  background: url(../images/ic_menu_05-active.png) no-repeat 50% 50%;
}
.gnb > li > a .ic_menu.ic_menu_06 {
 /*기존 :  background: url(../images/ic_menu_06.png) no-repeat 50% 50%; */
}
.gnb > li.active > a .ic_menu.ic_menu_06 {
 /*기존 : 0630 background: url(../images/ic_menu_06-active.png) no-repeat 50% 50%;*/
}
.gnb > li > a svg {
  margin-right: 12px;
  flex: none;
}
.gnb > li > a img {
  margin-right: 12px;
}

.gnb > li > a:after {
  content: "\e844";
  font-family: "feather";
  /*220712 font-size: 15px;*/
  font-size: 14px;
  border: none;
  margin-left: auto;
  transition: all 0.2s ease;
  /*220712 add*/
  color:#b3c6ed;
}
.gnb > li > ul {
  height: 0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.gnb > li > ul > li { /** 2th menu **/
  display: flex;
  flex-direction: column;
  /*220712 width: 200px;*/
  width: 190px;    
  /*220719 padding: 5px 0 5px 1px;*/
  padding: 5px 16px 5px 1px;
  border:0px solid red;
}
.gnb > li > ul > li:nth-of-type(1) {
	border-top:1px solid #536e91 !important;
	padding-top:10px;
}
/*220720 ~ */
.gnb > li > ul > li a {
  word-break: break-all;
  white-space: normal;
  /*padding-right: 16px;*/
  padding-right: 9px;
  box-sizing: border-box;
}
/* ~ 220720*/


.gnb > li > ul > li > a {
  
  color: #92a6c3;  
  /*220712 notosanskr-font-size: 13px;*/
  font-size: 11px;
  position: relative;
}

/*********************************************************************************************/

.gnb > li > ul > li > a:after {
  content: "\e844";
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;
  transition: all 0.2s ease;
  color: #b3c6ed; /*#fff*/
  transform: translateY(-50%);
}


/******220914 추가 시작******/


/****##################### 3차 메뉴 관련 2차 메뉴 아이콘 시작 #####################*****/
/*** 5.검사접수- 검체관리 시작 230406 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(5) > ul > li:last-child > a:after {
  content: "\e844";
  display: block;/* 230406 none */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto; 
  transition: all 0.2s ease;
 color: #a0a9bf;
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(5) > ul > li:last-child.active > a:after{
    color: #a0a9bf; 
    transform: rotateZ(90deg) ;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}
    
    
    
/*** 5.검사결과-제주지놈 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(5) > ul > li:nth-child(20) > a:after {
  content: "\e844";
  display: block; /*230206*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(5) > ul > li:nth-child(20).active > a:after{
    color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}
    
/*** 5.검사결과-제주지놈 끝 ***/    
    
    

/*************** 8.영업관리 시작 ****************/
/*** 8-1.기준정보 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(8) > ul > li:nth-child(1) > a:after {
  content: "\e844";
  display: none; /*230206*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(8) > ul > li:nth-child(1).active > a:after{
    color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 8-1.기준정보 끝 ***/
/*** 8-2.거래처관리 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(8) > ul > li:nth-child(2) > a:after {
  content: "\e844";
  display: none; /*230206*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto; 
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(8) > ul > li:nth-child(2).active > a:after{
   color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 8-2.거래처관리 끝 ***/
/*230406*/
/*******8.통계*********/
/*** 8-1.TAT 관리 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(8) > ul > li:nth-child(1) > a:after {
  content: "\e844";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto; 
  transition: all 0.2s ease;
 color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(8) > ul > li:nth-child(1).active > a:after{
   color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 8-1.TAT 관리 끝 ***/




/****8. 통계*****/

/*** 8-2.(공통)통계관리 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(8) > ul > li:nth-child(2) > a:after {
  content: "\e844";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto; 
  transition: all 0.2s ease;
 color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(8) > ul > li:nth-child(2).active > a:after{
   color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 8-2.(공통)통계관리 끝 ***/

/*** 8-3.차세대유전 통계 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(8) > ul > li:nth-child(3) > a:after {
  content: "\e844";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto; 
  transition: all 0.2s ease;
 color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(8) > ul > li:nth-child(3).active > a:after{
   color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 8-3.차세대유전 통계 끝 ***/

/*** 8-7.통계관리 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(8) > ul > li:nth-child(7) > a:after {
  content: "\e844";
  display: none;/*230406 block*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto; 
  transition: all 0.2s ease;
 color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(8) > ul > li:nth-child(7).active > a:after{
    color:#a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 8-7. 통계관리 끝 ***/
/*************** 8.영업관리 끝 ****************/

/*************** 13. QAU문서  [221110수정(메뉴명 변경됨).이전 메뉴-입출고관리 시작]****************/
/*** 13-1. 시료입출고관리 시작 ***/
/* 3차 메뉴 있는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(13) > ul > li:nth-child(1) > a:after {
  content: "\e844";
  display: none; /*221110 lock*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
/*.gnb > li:nth-child(13) > ul > li:nth-child(1).active > a:after{
    color: #a0a9bf; 
    transform: rotateZ(90deg) ;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}*/

/*** 13-1. 시료입출고관리  끝 ***/
/*** 13-2. 검체입출고관리 시작 ***/
/* 3차 메뉴 있는 2차 메뉴 아이콘 show (3차메뉴 숨김상태)*/
.gnb > li:nth-child(13) > ul > li:nth-child(2) > a:after {
  content: "\e844";
  display: none; /*221110 block*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(13) > ul > li:nth-child(2).active > a:after{
    color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 13-2. 검체입출고관리  끝 ***/
/*************** 13.입출고관리 끝 ****************/

/*************** 17.admin 시작 ****************/
/*** 17-1. Information 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
/*
.gnb > li:nth-child(17) > ul > li:nth-child(1) > a:after {
  content: "\e844";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; 
}
*/
/*221018 Contact 메뉴 - 3차 메뉴 보일때 2차메뉴 아이콘 */
/*.gnb > li:nth-child(17) > ul > li:nth-child(1).active > a:after{
    color: #a0a9bf;
    transform: rotateZ(90deg) 
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;} */

/*** 17-1. Information  끝 ***/
/*************** 17.admin 끝 ****************/

/*************** 19.Project 시작 ****************/
/*** 19-4. Project Approval 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(19) > ul > li:nth-child(4) > a:after {
  content: "\e844";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(19) > ul > li:nth-child(4).active > a:after{
    color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 19-4. Project Approval 끝 ***/
/*************** 19.Project 끝 ****************/

/*************** 22.거래처관리 시작 ****************/
/*** 22-1. 거래처관리 시작 ***/
/* 3차 메뉴 있는 2차 메뉴 아이콘 show (3차 메뉴 숨김상태) */
.gnb > li:nth-child(22) > ul > li:nth-child(1) > a:after {
  content: "\e844";
  display: none; /*221110 수정 block*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(22) > ul > li:nth-child(1).active > a:after{
    color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 22-1. 거래처관리 끝 ***/
/*** 22-2. 프로젝트별WEBID관리  시작 ***/
/* 3차 메뉴 있는 2차 메뉴 아이콘 show (3차 메뉴 숨김상태) */
.gnb > li:nth-child(22) > ul > li:nth-child(2) > a:after {
  content: "\e844";
  display: none; /*221110 수정 block;*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(22) > ul > li:nth-child(2).active > a:after{
    color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 22-2. 프로젝트별WEBID관리 끝 ***/
/*************** 22.거래처관리 끝 ****************/

/*************** 23.영업관리 시작 ****************/
/*** 23-1. 프로젝트관리 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(23) > ul > li:nth-child(1) > a:after {
  content: "\e844";
  display: none; /*block*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;
  color: #a0a9bf; /* #abb0bd*/
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(23) > ul > li:nth-child(1).active > a:after{
    color: #a0a9bf; /* #abb0bd*/
    transform: rotateZ(90deg) /*translate(-50%)*/;
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;
    display:none;}

/*** 23-1. 프로젝트관리 끝 ***/
/*************** 23.영업관리 끝 ****************/


/*230213시작*/
/*************** 5.검사결과 추가 시작 ****************/
/*** 5-last. 제주지놈 시작 ***/
/* 3차 메뉴 없는 2차 메뉴 아이콘 show */
.gnb > li:nth-child(5) > ul > li:nth-child(16) > a:after {
  content: "\e844";
  display: none; /*block; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;  
  transition: all 0.2s ease;  
  color: #b3c6ed !important;
}
/*3차 메뉴 보일때 2차메뉴 아이콘 */
.gnb > li:nth-child(5) > ul > li:nth-child(16).active > a:after{ display:none;
    color: #a0a9bf; 
    transform: rotateZ(90deg) 
    margin-right: 3px; position: absolute;top:10%;font-size: 12px;border: none;}

/*** 5-last. 제주지놈  끝 ***/
/*************** 5.검사결과  끝 ****************/

/*230213 끝*/
/****##################### 3차 메뉴 관련 2차 메뉴 아이콘 끝 #####################*****/



/******220914 추가 끝******/

/*********************************************************************************************/
.gnb > li > ul > li.active > a:after { /* hover font + dash color */
 /* color: #36b0d9; */ 
  color: #b3c6ed;
  transform: rotateZ(90deg) translate(-50%);
}
.gnb > li > ul > li > a:hover {
  color: #fff;
}
.gnb > li.active {  
  border-radius: 4px;
  background-color: #2a4176;
  padding-bottom: 10px;
  padding-top: 3px; 
  margin: 3px 0; 
}
.gnb > li.active > ul {
  height: auto;
}
.gnb > li.active > a:after {
  /*color: #36b0d9;*/
  color:#b3c6ed;
  transform: rotateZ(90deg);  
  margin-right:3px;
}
.gnb > li.active > a svg path {
  fill: #36b0d9 !important;
}
.gnb > li > ul > li.active > a { /*2th menu*/
  /*220714 color:#37beff;*/
    color: #d8e4f7;
}

.gnb > li > ul > li.active > a:before {
  content: "";
  display: flex;  
  width: 7px;  
  height: 2px;
  background-color: #36b0d9;
  position: absolute;  
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.gnb > li > ul ul li {
  padding: 3px 0;
}
.gnb > li > ul ul li:last-child {
  padding-bottom: 0;
}
.gnb > li > ul > li > ul {
  height: 0;
  padding: 0;
  overflow: hidden;
}
.gnb > li > ul > li.active > ul { /*3th menu*/  
  padding: 0 0 5px 15px;
  height: auto;
  margin-top: 7px;
}
.gnb > li > ul > li > ul a {
  display: block;
  position: relative;
  color: #92a6c3;
  /*220712 font-size: 12px;*/
  font-size: 11px; 
}

.gnb > li > ul > li > ul > li > ul > li.active > a {
  position: relative;
  color: #36b0d9;
}

.gnb > li > ul > li > ul > li > a:after {
  content: "\e844";
  display: none;
  position: absolute;
  right: 0;
  font-family: "feather";
  font-size: 12px;
  border: none;
  margin-left: auto;
  transition: all 0.2s ease;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.gnb > li > ul > li > ul > li.active > a:after {
  color: #36b0d9;
  transform: rotateZ(90deg) translate(-50%);
}
.gnb > li > ul > li a {
  word-break: break-all;
  white-space: normal;
  /*padding-right: 16px;*/
  /*padding-right: 9px;*/
  padding-right: 2px;
  box-sizing: border-box;
}
.gnb > li > ul > li a:hover {
  /*220712 color: #fff;*/
  color:#37beff;
}
.gnb > li > ul > li > ul > li.active > a {
  /*olor: #fff;*/color:#d8e4f7;
}

/*220720*/
.gnb > li > ul > li > ul > li.active > a:before {
  content: "";
    display: flex;
    width: 6px;
    height: 2px;
    background-color: #aab5b9;
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
}

.gnb > li > ul > li > ul > li.active ul {
  padding: 10px 0 5px 15px;
  height: auto;
}

/********************************************************************************************/

.gnb > li > ul > li > ul > li > ul {
  height: 0;
  padding: 0;
  overflow: hidden;
}

.gnb li.add-arrow > a:after {
  display: block;
}

#wrapper.active .gnb > li > a span {
  display: none;
}
#wrapper.active .gnb > li > a:after {
  display: none;
}

/*220712*/
.gnb > li.active > a > span {color:#fff;}

/*0807*/
.gnb > li > ul > li > ul > li > a:before {/*3th menu*/
	content: "";
    display: flex;
    width: 3px;
    height: 1px;
    background-color: #92a6c3;;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);		
}

/*0807*/
.contents-wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  height: 100%;
}

.contents-header {
  /*230413 display: flex;*/
  justify-content: space-between;
  width: 100%;    
  height: 59px;
  align-items: center;
  padding-right: 10px;
  flex: none;
  min-height: 0;  
  padding-left: 0px;  
  padding-right: 27px;   
}

.contents-header h2 {
  font-size: 20px;
  color: #314b85;
  font-weight: 700;
}
.contents-header .util {
  display: flex;
}
.contents-header .util li {
 /*220713 margin-left: 8px;*/
 margin-left: 5px;
}
.contents-header .util li:first-of-type a {
  display: inline-block;
  /*220629 수정*/
  /*230131 width: 26px;
  height: 26px;*/
  width: 22px;
  height: 21px;
  border-radius:3px;
  /* 기존 width: 30px;
  height: 30px; */ 
  background: url(../images/ic_user.png) no-repeat center center;
  /*220713*/
  background-size: 23px auto;
  text-indent: -9999px;
  overflow: hidden; margin-top:-2px;
}
.contents-header .util li:last-of-type a {
  display: inline-block;
 /*220629 수정*/
 /*230131 width: 26px;
  height: 26px;*/
  width: 22px;
  height: 21px;
  border-radius:3px;
  /* 기존 width: 30px;
  height: 30px; */  
  background: url(../images/ic_log.png) no-repeat center center;
   /*220713*/
  background-size: 23px auto;
  text-indent: -9999px;
  overflow: hidden; margin-top:-2px;
}
.util {
  font-size: 13px;
  color: #61697a;
}
.util-tip {
  display: none;
  position: absolute;
  width: 140px;
  top: 24px;
  right: -25px;
  z-index: 201;
}
.util > li a:hover {
  display: none;
}
.util > li {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.util-log {color:#74859f;width:169px;margin-top:-4px;} /*width:176px;*/

.util-log strong {
  font-weight: bold;
  padding-right: 3px;
}

.ml-1, .mx-1 {margin-left:0.2rem !important;letter-spacing:-0.5px;}

.contents-header .util-tip ul li {
  margin-left: 0;
}
.util-tip__box strong {
  font-weight: bold;
  padding-right: 4px;
}

.util-tip__box {
  background-color: #fff;
  border: 1px solid #d5dae3;
  box-sizing: border-box;
  padding: 10px;
}
.util-tip__name {
  padding-bottom: 4px;
}
.util-tip__box {
  position: relative;
  box-shadow: 2px 2px 10px 2px rgba(57, 84, 146, 0.16);
}
.util-tip__box ul li {
  font-size: 12px;
    font-weight: 400;
  /*220713 padding: 3px 0 3px 14px;*/
  padding: 5px 0 5px 14px;
}
.util-tip__pass {
  background: url("../images/ic_pass.png") no-repeat left center;
}
.util-tip__theme {
  background: url("../images/ic_theme.png") no-repeat left center;
}
.util-tip__set {
  background: url("../images/ic_set.png") no-repeat left center;
}
.util-tip__log {
  background: url("../images/ic_clock.png") no-repeat left center;
}
.util-tip__box::before {
  /*content: ""; 
  top: -7px;
  left: 68px;
  width: 14px;
  height: 7px;*/
  content: "";
  position: absolute;
  top: -8px;
  left: 96px;
  width: 24px;
  height: 9px;
  background: url("../images/ic_tip-arrow.png") no-repeat left center;
}
.util-tip__box ul + p {
  color: #61697a;
  font-size: 12px;
  font-weight: bold;
  padding-left: 14px;
  letter-spacing: -0.24px;
}
.util-tip__pass-ico {
  display: block;
}
.util-tip.active {
  display: block !important;
}
.util-tip__box ul li {
  cursor: pointer;
}

.contents {
  display: flex;
  flex-direction: column;
 /*221007 min-height: calc(100vh - 110px);*/
  /*220713height: 99%;*/
  height: 100%;
  /*220629 padding-left: 20px;*/
  padding-left: 5px;  
  /*220713 padding-bottom: 5px;*/
  padding-bottom: 1px; 
  padding-right: 15px; /*20px*/
}



/*220713*/
.contents.half-height > div.block-box.full-height:nth-of-type(1)  {padding-top:0 !important;}

.article {
  padding-bottom: 20px;
}

.box-title {
  /*220713 font-size: 17px;*/
  font-size: 14px;
  /*220713 font-weight: 500;*/
  font-weight: 600; 
 /*220713 margin-bottom: 7px;*/
 margin: 2px 0 9px 2px;
 color: #314b85;
 flex: none; line-height:1.5;
}

.box-title-s {
  /*230111 font-size: 14px;*/
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #314b85;
}

.box-title-0001 { 
  font-size: 12px;
  /*220713 font-weight: 500;*/
  font-weight: 600; 
 /*220713 margin-bottom: 7px;*/
 margin: 7px 0 7px 2px;
 /*color: #314b85;*/
 color:#656a79 !important; /*230119 #596981*/
 
 flex: none; line-height:1;
 }

.box-title-0002 { /*220713 font-size: 17px;*/
  font-size: 12px;
  /*220713 font-weight: 500;*/
  font-weight: 600; 
 /*220713 margin-bottom: 7px;*/
 margin: 2px 0 4px 2px;
 /*color: #314b85;*/
  color:#656a79 !important; /*230119 #596981*/
 flex: none; line-height:1;
 }

.form-block {  
  /*220713 padding: 9px 20px;*/
  /*230404  padding: 8px 13px;*/
   padding: 10px 13px;
  background-color: #f6f8fb;  
  /*220713 border-radius: 8px;*/
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  /*0629*/
  border: solid 1px #e8ebf1 !important;
  /*230116 margin-bottom:5px !important;*/
  /*margin-bottom:3px !important;*/
  margin: 0 0px 3px 0;
}

/*220713*/
/*div#detailFormBlock.form-block{padding-bottom:10px !important;}*/
/*div.form-block{padding-bottom:10px !important;}*/
/*div.form-block-01 {padding-bottom:10px !important;padding-top:10px !important;}*/
.modal-body .form-block {padding: 9px 13px 9px 15px !important;}

.form-block .form {
  margin-right: 40px;
  width: 100%;}
.form-block .form.full {
  margin-right: 0px;
}
.form-col {
  display: flex;
}
.form-col * {
  word-break: break-all !important;
}
.form-col > div {
  padding: 0;
  display: flex;
}
.form-col > [class*="col"] {
  padding: 0;
  display: flex;
}
.form-col > div.row {
  margin: 0 -20px;
}
.form-col > div.row [class*="col"] {
  padding: 0 20px;
}
.form-col > div > .checkbox {
  margin-right: 0;
}
.form-col > div .checkbox label {
  margin-right: 0;
 /*220930 align-items: baseline;*/
}

.formcol * {
  word-break: break-all !important;
}
.formcol > [class*="col"] {
  padding: 0;
  display: flex;
}
.formcol > div.row {
  margin: 0 -20px;
}
.formcol > div.row [class*="col"] {
  padding: 0 20px;
}
.formcol > div > .checkbox {
  margin-right: 0;
}
.formcol > div .checkbox label {
  margin-right: 0;
  align-items: baseline;
}
.form-line {
  display: flex;
  align-items: center;
}
.form-line .btn {
  margin-left: auto;
}
.form {
  display: flex;
  align-items: center;
   color:#656a79; /*230119 #596981*/
}

/*220713*/
.mt-3, .my-3 {margin-top:5px !important;}

.form dt {
  display: flex;
  align-items: center;
  /*220713 font-weight: 500; */
  font-weight: 600;  
  font-size: 12px;  
  margin-right: 20px; /*221110 15px;*/
  color:#656a79; /*230119 #596981*/
  /*width: 56px !important; */
}
.form dd {
  display: flex;
  align-items: center;
  flex: 1;
}
.formDt_01 dt {margin-right: 0px !important;}
.formDt_02 dt {width: 70px !important;}
.formDt_03 dt {width: 60px !important;}
.formDt_04 dt {width: 55px !important;}

.form .space {
  display: inline-flex;
  width: 24px;
  align-items: center;
  justify-content: center;
  color: #abb0bb; /*0403 #d5dae3*/
  flex: none;
}
.form select {
  width: 100%;
}

.btn {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex: none;
}
/*230118.btn-primary {
  background-color: #4bb5d9;
  border-color: #4bb5d9;
  text-shadow: 1px 1px 2px #5b737c;
  border-bottom:2px solid rgba(0,0,0,0.11);
  border-right:2px solid rgba(0,0,0,0.1);
}
*/

.btn-primary {
  background-color: #4bb5d9;
  border-color: #4bb5d9;
  text-shadow: 1px 1px 2px #5b737c;
 /* border-bottom:2px solid rgba(0,0,0,0.138);*/
  border-bottom:2px solid rgba(0,0,0,0.2);
  /* border-right:2px solid rgba(0,0,0,0.14);*/
  border-right:2px solid rgba(0,0,0,0.2);
}
.btn-dark {
  background-color: #92a6c3 !important;
  border-color: #92a6c3 !important;
  text-shadow: 1px 1px 2px #555b64 !important;
  border-bottom:2px solid rgba(0,0,0,0.14) !important;
  border-right:2px solid rgba(0,0,0,0.14) !important;
}
.btn-dark:hover {
  background-color: #6c7c93 !important;;
  border-color: #6c7c93 !important;
  
}
/* 230118
.btn-light {
  background-color: #fff;
  border-color:#cdd1d9;
  color: #787d89;
  text-shadow:0px 1px 0.2px #eeeff3;
  border-bottom:2px solid rgba(0,0,0,0.18);
  border-right:2px solid rgba(0,0,0,0.18);
}
*/
.btn-light {
  background-color: #fff;
  border-color:#b8c5ca;
  color: #4c707c;
  /*text-shadow:0px 1px 0.2px #eeeff3;*/
   text-shadow:0px 0.1px 0.1px #eeeff3;
  border-bottom:2px solid rgba(154,173,179,0.7);
  border-right:2px solid rgba(154,173,179,0.7);
}

.btn-light:hover {
  background-color:#E0E0E0; /*#eee*/
  border-color:#b8c5ca;
  color: #345966;
  /*text-shadow:0px 1px 0.2px #eeeff3;*/
  text-shadow:0px 1px 1px #fff;
  border-bottom:2px solid rgba(154,173,179,0.7);
  border-right:2px solid rgba(154,173,179,0.7);
}


.btn-sm {  
  /*220927 padding:4px 10px;*/
  /*221121 padding:4px 9px 3px;*/
   padding:4px 8px 0.15rem 8px !important;
  font-size:11px !important;
}
.btn-xs {  
   /*221121 padding:4px 9px 3px;*/
   padding:4px 8px 0.15rem 8px;
  /*220713 font-size: 12px;*/
  font-size: 11px;
}
.btn-left {
  display: inline-flex;
  /*220713 width: 28px;*/
  width: 22px;  
  height: 26px; /*230327 height: 32px;*/
  background: url(../images/Button_ic_left.png) no-repeat;
  /*220713*/
  background-size: 21px auto;
  text-indent: -9999px;
  overflow: hidden;
}
.btn-left:hover {
  background: url(../images/Button_ic_left_on.png) no-repeat;
  /*220713*/
   width: 22px;  
  height: 26px; /*230327 height: 32px;*/
  background-size: 21px auto;
}
.btn-right {
  display: inline-flex;
  /*220713 width: 28px;*/
  width: 22px;  
  height: 26px; /*230327 height: 32px;*/
  background: url(../images/Button_ic_right.png) no-repeat;
  /*220713*/
  background-size: 21px auto;
  text-indent: -9999px;
  overflow: hidden;
}
.btn-right:hover {
  background: url(../images/Button_ic_right_on.png) no-repeat;
  /*220713 width: 28px;*/
  width: 22px;  
  height: 26px; /*230327 height: 32px;*/
  /*220713*/
  background-size: 21px auto;
}
.btn-search {/*220804*/
  /*width: 35px;*/  
  /*230215 width: 30px;*/
  width: 22px;
 /* height: 24px;*/  height:24px;
  box-sizing: border-box;
  border: 1px solid #d5dae3;
  background: #e7eaef url(../images/btn-search.png) no-repeat center;
  background-size: 11px auto; /*기존 사이즈 12px auto*/
  margin-left: 0 !important;
 /*230328 border-left: 0 !important;*/
  border-radius: 0 0.25rem 0.25rem 0;
}
.btn-search-left {
  border-radius: 2px 0 0 2px !important;
  height: 24px !important;
}
.btn-search:hover {
  border: 1px solid #d2d2d2;
  background-color: #D9DDE2;
}
/* .dataTables_scrollHead .data-table{table-layout:fixed;}
.dataTables_scrollBody .data-table{table-layout:fixed;} */

table.data-table {
  /*220712 font-size: 13px;*/
 font-size: 12px;
  /*border-radius: 10px;*/
  border-radius: 3px !important;
  margin-top: 0 !important;
}
table.data-table thead th {
  color:#656a79 !important; /*230119 #596981*/
  text-align: center;
  border: none;
 /*0630 padding: 0.75rem;*/
  padding: 5px; /*220908-7px */ 
  border-bottom: 1px solid #dde1e7;
  /*220712add*/
  font-weight:600;
}
/* .dataTables_scrollHeadInner {
  width: 100% !important;
  padding-right: 17px;
  box-sizing: border-box !important;
  padding-right: 0 !important;
}
.dataTables_scrollHeadInner .data-table {
  width: 100% !important;
}
.dataTables_scrollHead {
  border: solid 1px #e8ebf1 !important;
  border-bottom: none !important;
  border-radius: 5px 5px 0 0;
  background-color: #f6f8fb;
}
.dataTables_scrollHead .data-table {
}
.dataTables_scrollBody {
  padding-bottom: 1px;
  border-radius: 0 0 5px 5px;
  border: solid 1px #e8ebf1;
  border-top: 0;
}
.dataTables_scrollBody .data-table {
}
.dataTables_scrollBody .data-table td {
  text-align: center;
  color: #2c3238;
} */
.text-left {
  text-align: left;
}
/* .dataTables_scrollBody {
  overflow: initial !important;
} */
.simplebar-track {
  pointer-events: inherit;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  height: 7px;
  top: 0;
}
.simplebar-vertical .simplebar-scrollbar::before {
  background-color: #a6a7ad; /* #999*/
  width: 7px;
  cursor: pointer;
  left: 0;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  background-color: #a6a7ad; /* #999*/
  height: 7px;
  z-index: 200;
  cursor: pointer;
  top: 0;
}
.simplebar-track.simplebar-horizontal {
  height: 7px;
}
.simplebar-track.simplebar-vertical {
  width: 7px;
}

.table-block {
  overflow: hidden;
  max-height: 100%;
}
.btn-line {
  display: flex;
  align-items: center !important;
  /*220713*/
  padding:4px 0px !important;
  }
 .btzone-001 {
  display: flex;
  align-items: center !important;  
  padding:0px !important;
  } 
 
.btn-line .btn {
 /* margin-left: 6px;*/
 margin-left: 4px;
  
}
.checkbox {
  padding: 0;
  display: flex;
  align-items: center;
}
 .table-search-form .btn-line{padding:2px 0px !important;}
 
.checkbox input[type="checkbox"] + .cr:before {  
  /* 220902 기존 width: 15px;
  height: 15px;*/
  width: 12px;
  height: 13px;
  vertical-align: middle;
  position: relative;
  /*top: 1px;*/
  /*220713 border: 1px solid #d5dae3;*/
  border: 1px solid #babec7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.checkbox.checkbox-primary input[type="checkbox"]:checked + .cr:before {
  background-color: #36b0d9;
  /*220902. 기존-font-size: 12px;*/font-size: 11px;
  line-height: 100%;
}
input[type="checkbox"] + label {
  height: auto;
  margin-right: 20px;
  display: flex;
  align-items: center;
  color:#656a79 !important; /*230119 #596981*/
}
.rs-group {
  border: 1px solid #d5dae3;
  border-radius: 4px;
  padding: 10px 24px;
  margin-top: 15px;
  position: relative;
}
.rs-group h3 {
  color: #b2b7c4;
  position: absolute;
  top: -12px;
  left: 24px;
    font-weight: 400;
  padding: 0 8px;
  background-color: #f6f8fb;
  display: inline-flex;
}

.row-block {
  display: flex;
  width: 100%;
}
.row-block .block-box {
  display: flex;
  width: 100%;
  flex-grow: 1;
}
.row-block > .block-box:first-of-type {
  width: 460px;
  margin-right: 10px;
  flex: none;
}

.table th {
  /*padding: 0.6rem 0.75rem;*/box-sizing: border-box;    padding: 2px 9px 2px !important;
}

.table td {box-sizing: border-box;    padding: 1px 9px 1px;}

.checkbox.stand-alone {
  margin-right: 0;
  justify-content: center;
}
.checkbox.stand-alone input[type="checkbox"] + .cr {
  margin-right: 0;
  display: inline-flex;
}
.checkbox.stand-alone input[type="checkbox"] + .cr:before {
  margin-right: 0;
}

.round-box {
  border: 1px solid #e8ebf1;
  border-radius: 8px;
  padding: 20px 24px;
}

.line-title {
  font-size: 13px;
  color: #656a79; /*230119 #596981*/
  display: flex;
  align-items: center;
}
.line-title:before {
  content: "";
  display: inline-flex;
  width: 7px;
  height: 3px;
  background-color: #36b0d9;
  margin-right: 10px;
}

.nav-tabs .nav-item {
  /*220627 margin-left: 8px;*/
  margin-left:0px; margin-bottom:0;
}
.nav-tabs .nav-item a.nav-link { 
  border: 1px solid #d0d4db;
  border-bottom:1px solid #e9edf1;
  box-shadow: none;  
  border-radius: 5px 5px 0 0;   
 /* padding: 1px 3px 0 !important;*/
   padding: 1px 4px 0 !important;
  display: flex;
  align-items: center;
  /*justify-content: center;*/ 
  font-size: 11px;
   color: #656a79; /*230119 #596981*/  
  /*0630-기존 복구(탭메뉴 6개 들어가는 것으로 처리했던것 삭제)
  width:217px;*/
  text-align:left;
  line-height:1;  
  letter-spacing:-0.5px;
  height:27px;
  /*230131추가*/
  background-image: linear-gradient(to top, #e8ebf1 0%, #ffffff 100%);
}
.nav-tabs .nav-item a.nav-link.active {
  color: #fff;
 /* 20230131
 background-color: #314b85;*/
  border: 1px solid #314b85;  
  /*0630-기존 복구(탭메뉴 6개 들어가는 것으로 처리했던것 삭제)
  width:217px;*/  
  text-align:left;
  /*220713*/
   padding: 1px 4px 0 !important; 
  letter-spacing:-0.5px;
  /*220711*/line-height:1;
  background-image: linear-gradient(to top, #27417d 0%, #3d5ca1 100%);  
  height:27px;
}
.tab-content {
  padding: 0;
  box-shadow: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: /*220713 #000*/#5b5b5e transparent transparent transparent;
  border-width: 4.0px 4.5px 0 4.0px; /*230222 4.5px 3.5px 0 3.5px;*/
  /*220713*/
  margin-left:0px !important;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
  display: none;
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  display: none;
}

/* .dataTables_scrollBody .data-table td {
  padding-left: 12px;
  padding-right: 12px;
  vertical-align: middle;
} */
table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
  padding-left: 10px;
  padding-right: 10px;
}

table.dataTable {
}

/* .dataTables_scrollBody .data-table td {
  padding-right: 0px;
  height: 36px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
} */
.block-box {
  background-color: #fff;
  border-radius: 5px;
  /*220629  box-shadow: 0 0 10px 0 rgba(57, 84, 146, 0.16); */
  box-shadow: 0 0 3px 0 rgba(57, 84, 146, 0.11); 
  /*230116 padding: 12px 14px 10px;*/
  /*230228 padding: 11px 14px 10px;*/
  padding: 11px 14px;
  display: flex;  
  flex-direction: column;
  flex-wrap: nowrap;
  border-top:1px solid #eee;
}
.full-height {
  flex-grow: 1;
  /* 221103 - 검사결과/검사결과 등록(휴먼지놈)에서 삭제후  min-height: max-content !important; 로 대체 */
  min-height: 0;
  height: 100%;   
}

.full-height-02 {
  flex-grow: 1;
  /* 221103 - 검사결과/검사결과 등록(휴먼지놈)에서 삭제후  min-height: max-content !important; 로 대체 */
 min-height: max-content !important; 
}

.scroll-table {
  overflow-y: auto;
  flex-grow: 1;
  min-height: 0;
  border: solid 1px #e8ebf1 !important;
  /*220713 border-radius: 8px;*/
  border-radius: 4px;
  height: 100%;
  max-height: 221px;
  overflow-x: auto;
}
.scroll-table table {
  border-collapse: separate;
  border-spacing: 0;
}
.simplebar-wrapper {
  max-height: 219px;
}

/*220713*/
/*div.table-block.scroll-table.mT10.mh-100 {margin-top:0 !important;}*/
/*table#userGrpTable.data-table.display.table.table-hover {margin-top:10px !important;}*/


*::-ms-backdrop,
.scroll-table {
  height: 100%;
}
.table {
  margin-bottom: 0;
}
.table thead td {
  border: 0 !important;
}
.scroll-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.data-table {
 /*221123 border-bottom: none !important;*/
  border-radius: 5px 5px 0 0;
  font-size: 13px;
}
.data-table th {
  color: #656a79; /*230119 #596981*/ 
  font-weight:600;
  background-color: #f6f8fb;
}

.data-table td {  
  text-align: center;
  color: #656a79; /*230119 #737889*/ 
  border-top: 1px solid #e8ebf1;
  /*220713*/
  border-right: 1px solid #eceef3; /*#e7e7ed*/  
  /*220714 height: 36px;*/
  vertical-align: middle; 
  /*220714*//* 220914 우측 데이터 테이블에 맞춰 수정 */  
 height:24px !important;/*padding-left:4px !important; padding-right:4px !important; */
 /*0914이전 5px 10px !important;*/ /*4px 10px !important;*/
  background-color: #fff; font-weight:600;
}
.data-table tbody tr:hover td:not(td[rowspan]) {
  background-color: #f1fcff;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 1px solid #dde1e7;
}

.tab-block {
  flex-grow: 1;
  min-height: 0;
}
.tab-pane {
  flex-grow: 1;
  min-height: 0;
  height: 100%;
}

td input[type="text"] {
  /*220919 min-width: 80px;*/
  /*min-width: 80px;*/
  box-sizing: border-box; /*max-height:23px !important;*/
}
td input[type="text"].input-callender {
  min-width: 110px; /*max-height:23px;*/
}
td select.js-example-basic-single.select-xs {  
  box-sizing: border-box; max-height:23px !important; line-height: 14px;
}
td select.js-example-basic-single {  
  box-sizing: border-box; max-height:23px !important;
}
input[type="text"].form-control.form-search {
  background: #fff url(../images/ic_search_form.png) no-repeat 10px center;
  padding-left: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #656a79; /*230119 #737889*/ 
    font-weight: 600; /**/
}

.checkbox.stand-alone input[type="checkbox"] + .cr.cr-normal:before {
  margin-right: 10px;
}
.select-xs + .select2-container .select2-selection--single {
 /*height: 26px !important;*//* height: 24px !important;*/
}
.select-xs + .select2-container .select2-selection--single .select2-selection__rendered {
 /* line-height: 23px;*/
  text-align: left;}
  
.select-xs + .select2-container--default .select2-selection--single .select2-selection__arrow {
 /* height: 26px;*/height: 23px;
}

.form-control.input-sm {
  margin: auto;
  height: 25px; /*230322 26px*/
}
.input-sm {
  height: 26px;
}
.input-xs {
  height: 26px !important;
}
.select2-dropdown {
  z-index: 2000;
  min-width: 160px;
}

/* modal */
.modal-dialog {
  max-width: 700px;
}
.modal-lg {
  max-width: 1000px;
}
.modal-xl {
  max-width: 1400px;
}
.modal-sm {
  max-width: 368px;
}
.modal-content {
  border: none;
  background: none;
}
.modal-header {
  padding: 0;
 /*height: 60px;*//*height: 42px;*/
 height: 39px;
  color: #fff;
  align-items: center;
  background-color: #314b85;
  color: #fff;
  /*padding-left: 24px;*/
  padding-left: 16px;  
  padding-right: 14px;/*230406 17px;*/
  border-radius: 6px 6px 0 0; /* 230406 8px 8px 0 0; */
  border:1px solid #3e5997;
  border-bottom:0px !important;  
}
.modal-header .modal-title {
  color: #fff;
  /*230406 font-size: 16px;*/
  font-size: 15px;
  font-weight: 500;
  /*230406 margin-top:2px;*/
  margin-top:0px;
}
.modal-body {
  background-color: #fff;
  padding: 0;
  border-radius: 0 0 8px 8px;
}
.modal-footer {
  background-color: #fff;
  border-top: 1px solid #dfe4ed; /*#d5dae3*/
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 0 0 6px 6px; /*230406 0 0 8px 8px*/
}
.modal-block {
  padding: 12px 15px 14px; /*13px 22px*/
}
.modal-block .table-block {
  border-top: 1px solid #e8ebf1;
}
.scroll-contents {
  height: 540px;
  overflow-y: auto;
  background-color: #f6f8fb;
}

.modal-sm .modal-block {
  /*230105 padding: 20px 24px;*/
  padding:10px 12px 14px 14px;
  
}
.modal-sm .modal-header {
  /*230105 height: 44px; padding-left: 24px; padding-right: 24px;*/
  height: 40px; padding-left: 16px; padding-right: 14px;
}
.modal-sm .modal-header .modal-title {
  /*font-size: 17px;*/ 
  font-size: 16px;
}

.checkbox input[type="checkbox"].disabled + .cr:before,
.checkbox input[type="checkbox"]:disabled + .cr:before {
  background-color: #e4e6ec;
  border-color: #92a6c3;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid #d5dae3;
}


.btn img {
  margin-right: 6px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #36b0d9;
}
.form-group {
  margin-bottom: 0;
}
.radio {
  padding: 0;
}
.radio input[type="radio"] + .cr {
  /*220713 font-size: 13px;*/
  font-size: 12px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
}
/*checkbox input[type="checkbox"]:disabled + .cr:before */
.radio input[type="radio"] + .cr:before {
  /*220714 width: 16px;
  height: 16px;*/
  width: 15px;
  height: 15px;
  border: solid 1px #caced7;; /*#d5dae3*/
  position: relative; 
}

.radio input[type="radio"]:disabled + .cr:before{
  /*221013 width: 15px;
  height: 15px;*/
  width: 14px;
  height: 14px;
  border: solid 1px #92a6c3; /*#d5dae3*/
  position: relative; background-color:#e4e6ec;
}



.radio.radio-primary input[type="radio"]:checked + .cr:before {
  background-color: #36b0d9;
  border: none;
}
.radio input[type="radio"] + .cr:after {
  /*220714 width: 8px;
  height: 8px;*/
  width: 7px;
  height: 7px;
  left: 4px;
  /*220714 top:50%;*/
  top: 52%;
  transform: translateY(-44%); /*-50*/
}
.radio.radio-primary input[type="radio"]:checked + .cr:after {
  background-color: #fff;
  border: none;
}

.login-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f8fb;
  height: 100%;
  /*220629*/margin-top:-15px;
}
.login-block {
  width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*220712 add*/
  margin-top:-12px;
}
.login-block .sub-title {
  /*220714 color: #596981;*/
  color: #656a79;
  margin-top: 12px;
  margin-bottom: 30px;
 /*220714 font-size: 16px;*/
 font-size: 15px;
}
.login {
  width: 900px;
  display: flex;
}
.login .image {
  display: flex;
  width: 450px;
  height: 360px;
  display: flex;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}
.login .image img {
  width: 100%;
  object-fit: cover;
  /*220711*/
  border:1px solid #d5dae3;
  border-right:none;
}
.login .login-form {
  display: flex;
  width: 450px;
  height: 360px;
  display: flex;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #d5dae3;
  padding: 0 55px;
  flex-direction: column;
  justify-content: center;
}
.login .login-form h2 {
  color: #2c3238;
  font-weight: bold;
  font-size: 33px;
  margin-bottom: 30px;
}
.login .login-form ul li:first-of-type {
  margin-bottom: 10px;
}
.login .login-form input {
  border: solid 1px #e8ebf1;
  background-color: #f6f8fb;
 /*height: 46px;*/ height: 40px;
}
.login .login-form ul li:first-of-type input {
  background: #f6f8fb url(../images/ic_login_id.png) no-repeat right 16px center;
}
.login .login-form ul li:nth-of-type(2) input {
  background: #f6f8fb url(../images/ic_login_password.png) no-repeat right 16px center;
}
.login .btn-login {
  margin-top: 50px;
}
.login .btn-login button {
  font-size: 18px;
  color: #fff;
  height: 46px;
  border-radius: 4px;
  background-color: #314b85;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.title-guide {
  padding: 20px;
  font-size: 24px;
}
.card-block .col {
}
.card-block .col p {
  margin-bottom: 10px;
}
.guide-wrap {
  padding: 50px;
}
.pagination {
  margin-top: 12px;
}
.page-link {
  /*220713 width: 26px;height: 26px; font-size: 13px;*/
 /* width: 22px;
  height: 21px;
  font-size:11px;*/
  width: 22px;
  height: 21px;
  font-size:11px;
  border: 1px solid #d5dae3;
  color: #b2b7c4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*220713 font-weight: 400;*/
  font-weight: 500;
  padding: 0;
  line-height: 100%;
}
.page-item.active .page-link {
 /* background-color: #4766a4;
  border-color: #4766a4;*/
  background-color: #7d8dad;
  border-color: #7d8dad;
}
.page-link:hover {
  border: solid 1px #d5dae3;
  background-color: #f6f8fb;
  color: #b2b7c4;
}
.page-link img {
  position: relative;
  top: 1px;
}

.view {
  display: inline-block;
  width: 20px;
  /*height: 20px;*/
  height: 16px;
  background: url(../images/ic_view.png) no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  opacity:0.7;
}
.load {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/ic_load.png) no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer; 
  opacity: 0.8;
}
.no-radius {
 /* border-radius: 0 !important;*/
}

.checked-contents {
  display: none;
}
.checked-active td {
  /*background-color: #bfe9f5;*/
  background-color: #d2e6f9;/*#d5e3fd*/
}
.checked-active .checked-contents {
  display: block;
}
.checked-active .checked-contents input {
  /*220902 수정 . 기존 height: 23px;*/
  /*height: 23px;*/ max-height:23px;
}
.checked-active .checked-text {
  display: none;
}
/*0812*/
.checked-active .checked-contents-02 input {
  height: 22px;
}


.access-table thead .title {
  left: 0;
  min-width: 100px;
  position: sticky;
}
.access-table tbody tr {
  position: relative;
}
.access-table tbody tr td {
  background-color: #fff;
}
/* 결과조회-결과조회(시계열) */
.access-table tbody th {
  z-index: 2;
  position: sticky;
  background-color: #fafdff;/*#e8ecf1*//*#fafafa*/
  border: 0;
 /*border-right: 1px solid #d3d8df !important;*/ /*1px solid #e8ebf1*/
  /*border-top: 1px solid #d3d8df !important;*/
  left: 0;
  text-align: center;
  box-sizing: border-box;
}

.access-table tbody tr:first-child th,
.access-table tbody tr:first-child td {
  border-top: 0;
}
.access-table tbody tr:first-child th { /*border-top: 1px solid #e7ebed !important; *//*#d8dce5*/}
.access-table tbody tr th:nth-child(5) { border-right: 1px solid #e7ebed !important;}
.access-table tbody tr:last-child th { border-bottom: 1px solid #d8dce5 !important;}
/*thead*/
.access-table thead tr th:nth-child(5) { border-right: 1px solid #e7ebed !important;}

.access-table tbody td {
  border-right: 1px solid #e8ebf1;
}
.access-table.tree-table tbody th {
  text-align: left;
  padding-top: 6px;
  padding-bottom: 0;
}
.access-table.tree-table tbody ul ul {
  margin-left: 40px;
}
 /*padding: 11.5px 0;*/
 /*0812 padding: 4.5px 0 !important;*/
  /*0812 line-height: 1;*/
  
/*.access-table.tree-table tbody th li span {
  position: relative;
  display: block; 
  padding:7.5px 0 7.5px 2px;
  box-sizing: border-box;
}*/

/*0001 시작*/

.access-table.tree-table tbody th li span {
  position: relative;
  display: block;
  padding: 7.5px 0 7.5px 2px; /*11.5px 0*/
  line-height: 1;
  box-sizing: border-box;
}


/*0001 끝*/



.access-table.tree-table tbody th li span::after {
  content: "";
  display: block;
  position: absolute;
  margin-right: 4px;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: url(../images/access-table__line2.png);
}

.access-table.tree-table tbody ul span::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 4px;
  width: 20px;
  height: 1px;
  background: url(../images/access-table__line1.png);
  vertical-align: middle;
}

.access-table.tree-table ul {
  position: relative;
}

.access-table.tree-table ul ul::after {
  content: "";
  display: block;
  position: absolute;
  margin-right: 4px;
  left: -68px;
  top: 0;
  width: 1px;
  height: 100%;
  background: url(../images/access-table__line2.png);
}
.access-table.tree-table ul > li:last-child > span::after {
  height: 50% !important;
  top: 0 !important;
  transform: unset !important;
}

.access-table.tree-table ul > li:last-child > ul::after {
  display: none !important;
}

.access-table.tree-table th > ul > li > ul::after {
  display: none;
}
.access-table.tree-table th > ul > li > span::before,
.access-table.tree-table th > ul > li > span::after {
  display: none;
}

/*02시작*/
/*02끝*/


.access-table.tree-table .non-check {
  background-color: #fafafa;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: 1px solid #aaa;
}
.select2-container--open .select2-dropdown--below {
  border-top: 1px solid #aaa;
}

#modal-code table.dataTable thead .sorting:before,
#modal-code table.dataTable thead .sorting_asc:before,
#modal-code table.dataTable thead .sorting_desc:before,
#modal-code table.dataTable thead .sorting_asc_disabled:before,
#modal-code table.dataTable thead .sorting_desc_disabled:before {
  display: block;
}
#modal-code table.dataTable thead .sorting:after,
#modal-code table.dataTable thead .sorting_asc:after,
#modal-code table.dataTable thead .sorting_desc:after,
#modal-code table.dataTable thead .sorting_asc_disabled:after,
#modal-code table.dataTable thead .sorting_desc_disabled:after {
  display: block;
}

.modal {
  display: block;
  z-index: -1000;
}
.modal-open .modal {
  z-index: 1072;
}
.modal.show {
  z-index: 1073;
}

.jstree-wrap {
  background-color: #f6f8fb;
  display: flex;
  width: 100%;
  flex-grow: 1;
  /*220713 border-radius: 12px;*/
  border-radius: 3px; /*border-radius: 5px;*/
  /*220713 padding: 20px 24px;*/
  padding: 12px 14px;
  flex-direction: column;
  flex-wrap: nowrap;
  /*0811*/
  border: solid 1px #e8ebf1 !important;
}
.jstree-container-ul > li {
  background: none !important;
}
.jstree-container-ul > li > i:first-child {
  display: none;
}

.jstree-notice {
  width: 100%;
  margin: 0;
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem;
  background-color: #fff;
}
.contents.half-height > .block-box {
  height: calc(100vh / 2 - 70px);
}
.row-block.active > div {
  width: 100%;
}
.row-block.active > div:last-child {
  display: none;
}
.row-block.active > div > .block-box {
  margin-top: 0;
  transition: all 0.2s ease;
}
.row-block.active > div > .block-box:first-child {
  display: none;
}
.zoomtable.active colgroup col {
  width: 6.6% !important;
}

.imgbox--bg {
  background-color: #fff;
}

.table--border {
  border: 1px solid #e8ebf1;
  border-radius: 8px;
}
.table--border td {
  border: 1px solid #e8ebf1;
}
.table--border tr:last-child td {
  border-bottom: 0;
}

.scroll-table .row {
  margin: 0 !important;
}
.scroll-table .col-sm-12 {
  padding: 0 !important;
}
.scroll-table.h-60 {
  max-height: fit-content;
  height: 60%;
}

/*table.data-table thead th.border-right,
table.data-table tbody td.border-right {
  border-right: 1px solid #dde1e7 !important;
}*/

/**221122**/
table.data-table tbody td.border-right {
  border-right: 1px solid #dde1e7 !important;
}
/*thead*/
.access-table thead tr th:nth-child(5) { border-right: 1px solid #dde1e7 !important;}
.textarea-small {
  position: relative;
  min-height: 34px;
}
.textarea-small textarea {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.check-week label {
  margin-right: 8px !important;
}

.select2-container .select2-selection--single {
  height: 24px !important; background:#fff !important;
  /* height: 24px !important; */
}
.select2-container .select2-selection--single .select2-selection__rendered {
 /*기존 :230328수정 line-height: 22px;*/
  text-align: left;line-height: 22px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 24px;
}

.table-small th {
  padding: 3px !important;
}

.table-small td {
  padding: 3px !important;
  height: auto;
}

.scroll-table.table-3row {
  max-height: 113px;
}
.scroll-table.table-1row {
  max-height: 85px;
}
.scroll-table.table-1row tbody td {
  border-bottom: 0;
}
/**선택된 tr 색상**/
.click-active td:not(.fc-widget-content, .widget-ctms, td[rowspan]) {
 /*기존 background-color: #bfe9f5 (220629수정)*/
 background-color: #e0edfb; /*230314 #d7e6f7*/
}

/* .data-table tr:focus-within td {
  background-color: #f1fcff !important;
} */

.result-info .row {
  align-items: center;
}
.result-info [class*="col"] {
  padding: 2px !important;
  font-weight: 500;
  /*font-size: 13px;*/
  font-size: 12px;
  color: #656a79; /*230119 #596981*/
  line-height: 1;
}
.result-info__head [class*="col"] {
  text-align: center;
  background-color: #f6f8fb;
  box-sizing: border-box;
}

.result-info .divide {
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background-color: #e8ebf1;
}

.biocore-tooltip {
  display: inline;
}

.notice-pop .form-line {
  border-bottom: 1px solid #d5dae3;
  padding: 8px 0 9px;
  box-sizing: border-box;
}

.btn-delete {
  cursor: pointer;
}

.text-import .checked-contents {
  width: 100%;
}

dl {
  /*min-height: 26px;*/  
}

.table-lims__border {
  width: 100%;
 /* border-radius: 8px;*/
  border-radius: 2px;
  border: 1px solid #e8ebf1;
  overflow: hidden;
}
.table-lims {
  border-style: hidden;
}
.table-lims td,
.table-lims th {
  border: 1px solid #e8ebf1;
  /*padding: 8px 12px;*/
  padding: 1px 10px; 
  box-sizing:border-box;
  /*min-height: 30px;*/
  /*min-height: 25px;*/
}
.table-lims th {
  background-color: #f6f8fb;
  color: #656a79; /*230119 #596981*/
  font-weight: 500;
  text-align: left; height:24px !important;
}
.table-lims td {
  color: #656a79; /*230119 #596981*/
  font-weight: 500; /*230131 height:24px !important*/
}
.sort__radio-wrap {
  flex-wrap: wrap;
}
.sort__radio-wrap .radio label {
  /* height: 30px; */
  margin-right: 2px;
}
.table-lims .storage-list li {
  display: flex;
  align-items: center;
  /*min-height: 30px;*/min-height: 21px;
}

.num-badge {
  height: 26px;
  padding: 0 16px;
  border-radius: 26px;
  background-color: #f6f8fb;
  color: #656a79; /*230119 #596981*/
  font-weight: 500;
  line-height: 26px;
}

.num-badge .num {
  font-weight: 400;
}

.upload-name {
  pointer-events: none;
}

.filebox {
  position: relative;
  display: flex;
  align-items: center;
}

.upload-hidden {
  position: absolute;
  width: 0;
  height: 0;
}

.border-0.border-bottom {
  border-bottom: 1px solid #e8ebf1 !important;
}

.radius-none + .select2 .select2-selection {
  border-radius: 0.25rem 0 0 0.25rem !important;
}

.table-bio__border {
  width: 100%;
  /*border-radius: 8px;*/
  border-radius: 3px;
  border: 1px solid #e8ebf1;
  overflow: hidden;
}
.table-bio {
 /* border-style: hidden;*/
}
.table-bio.border-none td,
.table-bio.border-none th {
  border: 0 !important;
}
.table-bio.text-center td,
.table-bio.text-center th {
  text-align: center;
}
.table-bio td,
.table-bio th {
  border: 1px solid #e8ebf1;
  padding: 8px 12px;
  min-height: 30px;
}
.table-bio th {
  background-color: #f6f8fb;
  color: #656a79; /*230119 #596981*/
  font-weight: 500;
  text-align: left;
}
.form-block .table-bio th {
  background-color: #5f7cb7; /*#4766a4*/
  color: #fff;
}
.table-bio td {
  background-color: #fff;
 color: #656a79; /*230119 #596981*/
  font-weight: 500;
}

.table-bio.small th {
  padding: 5px 12px;
}

.table-bio.small td {padding: 2px 12px;}

.table tr:first-child td {
  border-top: 0 !important;
}

.row3 .simplebar-wrapper {
  max-height: 148px;
}

.border-none.table--border td {
  border: 0 !important;
}
.border-none.table--border th {
  border: 1px solid #e8ebf1 !important;
}

.common-bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-grow: 1;
  text-align: center;
}

.common-bio .table-bio__wrap {
  margin-top: 24px;
}
.common-bio .table-bio th {
  vertical-align: top;
  padding: 8px 20px;
}
.common-bio .table-bio td {
  color: #2c3238;
  font-weight: 400;
  padding: 8px 20px;
}
.common-bio .table-bio td strong {
  font-weight: 700 !important;
}
div.common-bio .box-title {
  font-weight: bold;
  font-size: 24px;
  padding-top: 90px;
  background: url("../images/ic_error.svg") no-repeat top center;
}
div.common-bio .box-title + p {
  color: #2c3238;
  font-size: 15px;
  line-height: 19px;
  margin-top: 10px;
}

.common-bio .table-bio__wrap {
  width: 700px;
}

.result-table tbody tr th {
  border-right: 1px solid #e8ebf1;
  border-bottom: 1px solid #e8ebf1;
}
.result-table tbody tr th.border-0 {
  border-bottom: 0;
  border-right: 1px solid #e8ebf1 !important;
}

.text-link {
  color: #4766a4;
  cursor: pointer;
}

.bio-progress-header {
  display: flex;
  margin-bottom: 10px;
}
.bio-progress-header li {
  display: flex;
  align-items: center;
}
.bio-progress-header li + li {
  margin-left: 20px;
}
.bio-progress-header li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-color: #007bff;
}
.bio-progress-header li:last-child::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-color: #dc3545;
}
.bio-progress-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.bio-schedule__calendar .fc-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-schedule__calendar .fc-center {
  display: flex !important;
  align-items: center;
  font-size: 20px;
}
.bio-schedule__calendar .fc-button {
  background-color: #fff;
  border-color: #fff;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  box-sizing: border-box;
  height: 24px;
  font-size: 10px;
  padding: 0 15px;
}
.bio-schedule__calendar .fc-button span {
  font-size: 15px;
}

.bio-schedule-btn__list {
  background-color: #fff;
  margin-left: -1px !important;
  border-radius: 0 3.25px 3.25px 0;
}
.bio-schedule-btn__list.show {
  background-color: #36b0d9;
  border-color: #36b0d9;
  color: #fff;
}
.bio-schedule-btn__list > i {
  margin-right: 6px;
  font-size: 16px;
  padding-bottom: 2px;
}
.bio-schedule-btn__calendar {
  background-color: #fff;
  border-radius: 3.25px 0 0 3.25px;
}
.bio-schedule-btn__calendar > i {
  margin-right: 6px;
  font-size: 16px;
}
.bio-schedule-btn__calendar.show {
  background-color: #36b0d9;
  border-color: #36b0d9;
  color: #fff;
}

.bio-schedule__calendar-con {
  display: none;
}
.bio-schedule__calendar-con.show {
  display: block;
}
.bio-schedule__list-con {
  display: none;
}
.bio-schedule__list-con.show {
  display: block;
}
/*  */
.bio-schedule__list li {
  display: flex;
  align-items: end;
  padding: 10px;
  color: #333;
}

.bio-schedule__list li.active {
  background-color: #f1f1f1;
}
.bio-schedule__list li + li {
  border-top: 1px solid #eee;
}
.bio-schedule__list .bio-schedule__list-header + li {
  border-top: 2px solid #eee;
}

.bio-schedule__list li div {
  padding: 0 10px;
  min-width: 100px;
  text-align: center !important;
}
.text-type01 {
  color: #04a9f5;
  font-weight: 700;
}
.text-type02 {
  color: #1de9b6;
  font-weight: 700;
}
.text-type03 {
  color: #f44236;
  font-weight: 700;
}
.bio-schedule__list-year {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}
.bio-schedule__list-year:not(:first-child) {
  margin-top: 30px;
}
.bio-schedule__list-name {
  min-width: 200px !important;
}
.bio-schedule__list-lv {
  min-width: 200px !important;
}
/*  */
.table-clinical table thead tr {
  border-right: 1px solid #e8ebf1;
}
.table-clinical table td {
  border: 1px solid #e8ebf1;
}
.table-clinical table tr td:first-child {
  border-left: 0;
}
.table-clinical table tr td:last-child {
  border-right: 0;
}
.table-clinical table tfoot th {
  /* background-color: transparent; */
  font-weight: 400;
  border-right: 1px solid #e8ebf1;
}
.table-clinical .simplebar-wrapper {
  max-height: unset;
}
.table-clinical .bg-type01 {
  background-color: #04a9f5;
  color: #fff;
}
.table-clinical .bg-type02 {
  background-color: #1de9b6;
  color: #fff;
}
.table-clinical .bg-type03 {
  background-color: #f44236;
  color: #fff;
}

.table-clinical table {
  display: none;
  border-collapse: collapse !important;
}
.table-clinical table.show {
  display: table;
}

.dsh-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 1px;
  margin-top: 1px;
}
.dsh-item {
  width: 33.33%;
  /* border: 1px solid #eee; */
  margin-left: -1px;
  margin-top: -1px;
  /* padding: 0px; */
  margin-bottom: 60px;
}
.dsh-item .box-title {
  margin-bottom: 30px;
  text-align: center;
}

.bio-progress__wrap {
  display: flex;
  /* align-items: start; */
}

.bio-progress__wrap span {
  width: 160px;
  padding-right: 20px;
  text-align: right;
}
.bio-progress__guage {
  display: flex;
  justify-content: flex-end;
}
.bio-progress__guage ul {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 160px);
}

.bio-progress__wrap .progress {
  margin-top: 4px;
  width: calc(100% - 160px);
}
.progress-bar {
  box-shadow: none;
}
.progress-bar.progress-bar--type01 {
  background-color: #fddeaf;
}

.progress-bar.progress-bar--type02 {
  background-color: #adcfa3;
}

.progress-bar.progress-bar--type03 {
  background-color: #cc8d7a;
}

.progress-bar.progress-bar--type04 {
  background-color: #916a53;
}

.progress-bar.progress-bar--type05 {
  background-color: #f0bb7f;
}

.progress-bar.progress-bar--type06 {
  background-color: #91bf9d;
}

.progress-bar.progress-bar--type07 {
  background-color: #b083cc;
}

.progress-bar.progress-bar--type08 {
  background-color: #cebce0;
}

.progress-bar.progress-bar--type09 {
  background-color: #fffcd4;
}

.progress-bar.progress-bar--type10 {
  background-color: #ed6572;
}

.progress-bar.progress-bar--type11 {
  background-color: #7babba;
}
.sum_total {
  width : calc(100% - 90px);
}
.txt_total{
  float:right;
}
.table-util{
  padding: 0px 5px !important;
  background-color: #f6f8fb;
  /*220713 border-radius: 8px;*/
   border-radius: 3px;
  display: flex;
  flex-direction: column;
  border: solid 1px #e8ebf1
}
.table-search-form{
  display: flex;
  align-items: center;
  color: #656a79; /*230119 #596981*/
}
[TableBtn = "find"]{
  background-image: url("../images/icon_search.png") !important;
  background-repeat: no-repeat;
  background-size: contain;
 /* width: 25px;
  height: 25px; */
  width: 15px;
  height: 15px;
  float: right;
  margin-left:3px;
  /*margin-top: 1px;*/
  margin-top: 0px;
}
[TableBtn = "excel"]{
  background-image: url("../images/excel.png") !important;
  background-repeat: no-repeat;
  background-size: contain;
 /* width: 25px;
  height: 25px;
  margin-left: 5px;*/
  width: 16px;
  height: 17px;
  margin-left: 5px;
  /*220713 margin-top:-3px;*/
  margin-top: 1px;
}
/*220713*/
div.block-box.full-height > div.table-util {padding:0 5px !important;}

/* 221107
.logosymbol {width:32px;height:33px;}
 */

/*220712 DEV*/
.navtoptx01{color: #a0a3ab !important;font-weight: 600 !important;font-size:12px !important;}

/*221108*/
.navtoptx {display: flex; margin-left: 3px !important; height: 33px !important;font-size: 10px !important;
	 	   font-weight: bold !important;  color: #7f838d !important;}
	 	       
/*220713*/
div.full-height.flex.align-center.just-center {padding:0 7px !important;}
/*220714*/
div.loginzone input:focus{
	font-weight:bold !important;
    border-color: #d5e0f3 !important;
    outline: none;
    /*background: #d5e2f9;*/
} 

div.loginzone input {
    border-color: #d5e0f3 !important;
    outline: none;
    background: #d5e2f9;
} 


.block-box.mT10 {margin-top:10px !important;}
.bt01 {padding:4px 10px 4px 7px !important;}

/*.block-box:nth-of-type(1) {padding-top:5px !important;}*/
div#deptList {/*margin-top:10px;*/}
.modal-footer {padding: 0.32rem 1.05rem !important;border:1px solid #eceff4 !important; border-top:0 !important;} /*padding: 0.5rem !important;*/
div#popUpForGeneTeam .modal-body .table-block 
{border-left:1px solid #e7eaf0 !important; border-right:1px solid #eceff4 !important;}
/*.block-box-2 {padding-bottom:3px !important;padding-top:8px !important}
.block-box-3 {padding-bottom:10px !important;padding-top:10px !important}
.block-box-4 {padding-top:0px !important}*/

td.datazone01 {/*padding-top: 1px !important; padding-bottom: 1px !important;*/}/*padding-top: 2px !important;*/


span.w-100 {font-size:11px !important;}
/*.block-box-002 {padding-bottom: 11px !important;}
.block-box-003 {border:0px solid red;padding:0 !important;margin-top:-1px !important;box-shadow:0 0 0px 0 rgb(57 84 146 / 16%) !important;}*/

  .btn {line-height:1.4 !important;}

    
    .tx_001 {color: #5E5F5F !important;}
   /* .datacell-001 {margin-top:-16px !important;} */
    .datacell-002 {vertical-align: middle !important;}
    
    span.selection {padding:0 !important;}
    .form-control {line-height:1.4 !important;}
    
    .data-table-002 td {padding:2px 10px !important;}
    .data-table-003 td {padding:2px 10px !important;}
    .btn-sm-002 {padding:3px 10px 3px; font-size: 11px !important;}
    
    .btn-sm-003 {padding:1px 6px 0px; font-size: 11px !important;}   
    
    
    .btn-new02 {/*width: 26px !important; font-size:17px !important; font-weight:500; height:24px !important;line-height:1.3 !important;*/}
    
    button.btn.btn-light.btn-xs.just-center.btn-delete {width: 22px !important;font-size:24px !important; font-weight:500; height:19px !important;line-height:1.3 !important;}
    select#itemList {padding:0 !important; height:25px !important;font-size:11px !important;}
    .data-table-003 th {padding:0.53rem !important;}
    .data-table-003 td {padding:0.53rem !important;}
    
    input[type="text"], input[type="email"], input[type="password"], textarea, select {
    appearance: none;
    background-color: rgb(255, 255, 255);
    font-size: 12px;
    box-sizing: border-box;
    font-family: "Nanum Gothic", sans-serif;
    width: 100%;
    vertical-align: middle;
    color: #737889; /*rgb(44, 50, 56)*/
    font-weight: 400;
    border-width: 1px;
    border-style: solid;
    border-color: #d3d8e1;/*rgb(213, 218, 227)*/
    border-image: initial;
    border-radius: 2px;
    /*220916 padding: 4px 10px !important;*/
    padding: 3px 10px !important;
    outline: none;
   /* max-width:484px;*//*220926*/
}
 
        
    input#srhSiteNm {/*padding:4px 10px !important;*/} /*padding:5px 10px*/
    .jstree-default>.jstree-container-ul>.jstree-node {margin-top:5px !important;} /*margin-top:5px !important;*/
    
    /*search iconv - bt-search-01*/
    button.bt-search-01 {/*background-color:#4bb5d9 !important;*/
    background:#4bb5d9 url(../images/ic_search.png) no-repeat 3px center;padding:4px 8px 3px 18px;}
    button.bt-search-01:hover {background-color:#038fcf !important;}
    
   /* .form-block-02 {padding: 3px 13px 3px !important;}
    .form-block-03 {padding-top: 8px !important; padding-bottom:8px !important;}*/    
   /* .block-box-002 {padding-bottom:5px !important;}*/
   .data-zone-001 td {padding-top:1px !important; padding-bottom:0px !important;}   
   .data-zone-002 td {padding-top:1px !important; padding-bottom:1px !important;}   
   .radio-001 {margin-right:7px;}   
    .zone_txt_001 {font-size:13px !important; font-weight:bold !important; margin-bottom:10px; color:#262f3c !important;}
    .bt-line-001 {margin-top:-4px !important;}
    .table-lims-002 th {padding: 6px 12px !important;}
    .table-lims-002 td {padding: 6px 12px !important;}
    .data-zone-001 button {padding-top:3px !important;padding-bottom:3px !important; line-height:1.3 !important;}
    
    .table-lims-003 th {padding: 6px 12px !important;}
    .table-lims-003 td {padding: 1px 12px !important;}  
    
    .data-table2-001 > td {padding:0 !important;}
    
    .search-left-002 {padding-top:5px !important; padding-bottom:5px !important;}
   
    input.btn-search-left {  border-radius: 2px 0 0 2px !important;  height: 24px !important;} /*23028 height: 24px !important;*/    
    .row-002 {display:flex; flex-wrap:wrap;margin-left:0; margin-right:-15px;} 
    
    /*********** 임상시험정보관리/일정조회 **************/
    .select2-container--default .select2-selection--multiple {background-color:/*white*/transparent; border: 1px solid #d5d7d9/*#aaa*/; border-radius: 2px; cursor: text;}
    .select2-container .select2-selection--multiple {box-sizing: border-box; display: block; min-height: 24px; -webkit-user-select: none;}
    
    .fc-unthemed td.fc-today {background: #e0e7f7 !important;} /*#e3eefc*/
    /******일정표 월 표기 ******/
    .fc-toolbar h2 {font-size:15px !important;margin-top:-4px !important;} /*221221 margin-top:-5px !important;*/
    
    .fc-toolbar h2#fcTitleUser3 {font-size:15px !important;margin-top:-4px !important;}
    
    .fc .fc-toolbar>*>* {margin-left:10px !important;}
    .bt-001 {line-height:1.2 !important;margin-left:15px !important;margin-top:-5px !important;}  
       
    .fc th {height:22px !important; vertical-align:middle !important; font-size:12px !important;}
    .fc th > span {/*font-size:12px !important; color: #4d4f56;*/}
    
     .fc-view, .fc-view > table {position: relative; /*z-index: 1;*/ border: 0px solid blue; /*overflow-y:scroll !important;*/}
     
    /* div#calendarY > .fc-view, .fc-view > table {overflow-y:hidden !important;}*/
    
    .fc-icon-left-single-arrow:after {content: "\2039"; font-weight: 700; font-size: 200%; top: -7%; opacity: 0.7;}
    .fc-icon-right-single-arrow:after {content: "\203A"; font-weight: 700; font-size: 200%; top: -7%; opacity: 0.7;}
    
    #calendarM .fc-view-container {overflow-y:auto !important;}
    
    /*월간 캘린더 날짜*/
    .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {float:right; font-size:12px;/*margin-right:2px !important;*/}
   
    /*td.fc-day-top {display:flex;}*/
    
    /* td.fc-day-top span {display:inline-block !important;}*/    
 
    
    .fc td {/*padding-top:5px !important;*/}
    
    .fc-basic-view .fc-day-number, .fc-basic-view .fc-week-number {/*padding:8px !important;*/}
    
    .holiday-txt {/*display:inline-block;*/color:#ea6c5d; font-weight:100; font-size:11px;/* margin-top:9px !important;*/}
    
    .fc-toolbar.fc-header-toolbar {margin-bottom:7px !important;}
    
    div.fc-toolbar.fc-header-toolbar.mL108 {margin-top:-5px !important;}
    .fc-day-top.fc-sat. > span.fc-day-number {color:#4f68cb !important;} /*토요일*/
    
    /************임상시험정보관리/검사진행*************/
    
   /* .tb-not-click-active tbody tr td {background-color: transparent !important;}
    .step-nothing {background-color: transparent !important; font-weight: 500 !important; border: 1px solid #e8ebf1 !important; 
    			   padding: 8px 12px !important; min-height: 30px !important;}
    .step-complete {background-color: #04a9f5 !important; color: #fff !important; font-weight: 500 !important; border: 1px solid #e8ebf1 !important; 
    			   padding: 8px 12px !important; min-height: 30px !important;}
    .step-current {background-color: #1de9b6 !important; color: #fff !important; font-weight: 500 !important;border: 1px solid #e8ebf1 !important;
				   padding: 8px 12px !important ;min-height: 30px !important;} */
				   
	.tb-not-click-active tbody tr td {background-color: transparent !important;}
    .step-nothing {background-color: transparent !important; font-weight: 500 !important; border: 1px solid #d7dce7 !important; 
    			   padding: 4px 12px !important; min-height: 25px !important;}
    .step-complete {background-color: #4498cf !important; color: #fff !important; font-weight: 500 !important; border: 1px solid #e8ebf1 !important; 
    			   padding: 4px 12px !important; min-height: 25px !important;}
    .step-current {background-color: #3bb9c3 !important; color: #fff !important; font-weight: 500 !important;border: 1px solid #e8ebf1 !important;
				   padding: 4px 12px !important ;min-height: 25px !important;}	
	  canvas#planChart {height:25px !important;}
				   
   /********** admin / 과제활동 템플릿 *********/		   
  table.data-zone-004 .btn.btn-light.btn-sm {padding: 2px 8px 1px 7px !important; margin-right:3px;}
   
  .table thead th 
  { color:#656a79 !important; /*230119 #596981*/ 
  background:#f6f8fb;
  /*230131 추가
  background-image: linear-gradient(to top, #e8ebf1 0%, #ffffff 100%);*/
  border-right:1px solid #dde1e7 !important; 
  border-bottom:1px solid #dde1e7 !important;} /*background:#f6f8fb !important; */
  .table thead th:last-child {border-right:0px !important;}
  table.data-table thead th:last-child  {/*border-right:0px !important;*/} 
  
   table#tbLmbQualUse.table thead th:nth-child(10)  {border-right:1px solid #dde1e7 !important;}
   
   /*******사용기록/컬럼사용기록서**********/
   table#tbLmbColmUseRentReq.data-table.display.table thead th:nth-child(2)  {border-right:1px solid #dde1e7 !important;}
   table#tbLmbColmUseRentChk.data-table.display.table thead th:nth-child(2)  {border-right:1px solid #dde1e7 !important;}
   table#tbLmbColmUseRetReq.data-table.display.table thead th:nth-child(2)  {border-right:1px solid #dde1e7 !important;} 
   table#tbLmbColmUseRetChk.data-table.display.table thead th:nth-child(2)  {border-right:1px solid #dde1e7 !important;}
   
  /***기록서작성 / 정도관리시료조제기록서***/
  table#tbQcSmplPrprtDtl.data-table.display.table thead th#limstyle-001 {border-right:1px solid #dde1e7 !important;}
  
  /***기록서작성 / 안정성시료보관기록서 (장기)***/
  table#tbLmiStbltSmplStrgDtl01.data-table.display.table thead th#limstyle-002 {border-right:1px solid #dde1e7 !important;}
  table#tbLmiStbltSmplStrgDtl02.data-table.display.table thead th#limstyle-003 {border-right:1px solid #dde1e7 !important;}
  
  /************* 시스템 관리 /사용자 그룹별 접근권한 관리 *******************/
  

  
  table.data-zone-005 td {padding: 0px 10px !important;}
  /*div.table-zone-0001 .data-table td {padding-top:0 !important; padding-bottom:0 !important;}*/
   
  .jstree-default .jstree-clicked {background: #c5d8f5 !important; border-radius: 2px;box-shadow: inset 0 0 1px #999; color: #555960 !important;}
  
  .fc-ltr .fc-basic-view .fc-day-top .holiday-text { /*padding: 8px !important;*/}
  
  .data-zone-003 td {padding-top:5px !important; padding-bottom:5px !important;}
  
  .checkbox input[type="checkbox"] + .cr-002:before {top:0 !important;margin-top:-1px !important;} /*0812*/
  
  input[type="text"].input-callender-002 {padding-top: 4px !important; padding-bottom: 4px !important;}
  
  td.datazone01.btn.btn-light.btn-sm  {padding-left:2px !important; padding-right:2px !important;}
  
  td.datazone_003 {padding-top: 4px !important; padding-bottom: 4px !important;}/*padding-top: 2px !important;*/
  
  .nav-counter {
	 /* position:absolute; */
	 top: 3px;
	 right: 2px;
	 min-width: 7px;
	 height: 17px;
	 /* line-height: 20px; */
	 /* margin-top: -11px; */
	 padding: 0 4px;
	 font-weight: normal;
	 font-size:9px !important;
	 color: white;
	 text-align: center;
	 text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	 /*background: #e23442;*/
	 background: #e58b91; /*#DC6B72*/
	
	 /*border-radius: 11px;*/
	 border-radius: 2px;
	 /*background-image: -webkit-linear-gradient(top, #e8616c, #dd202f);
	 background-image: -moz-linear-gradient(top, #e8616c, #dd202f);
	 background-image: -o-linear-gradient(top, #e8616c, #dd202f);
	 background-image: linear-gradient(to bottom, #e8616c, #dd202f);
	 -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.1), 0 1px rgba(0, 0, 0, 0.12);
	 box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.1), 0 1px rgba(0, 0, 0, 0.12);*/
	 font-size: 9px; color: #fff;top:4px !important;font-weight:800;margin-right:2px;
}
   
   .formblock-space001 {margin:0 5px 7px 0 !important;}
   .table-space-001 tbody tr td {padding-top:1px !important; padding-bottom:1px !important;}
   /****td안에 폼요소가 없는 경우*****/
   .table-space-002 tbody tr td {/*padding-top:4px !important; padding-bottom:4px !important;*/} 
   /*검사접수-환자조회 박스 제어 (height:100%) */
   .blockh-001 {height:100% !important;}
   .tabzone-001 {flex-grow:1;padding-right:5px !important;}
   .mTW_2 {margin-top:-2px !important;}
   .mTW9 {margin-top:9px !important;}
   .mTW_5 {margin-top:-5px !important;}
   .space0822-2 .scroll-table {margin-right:0 !important; margin-left:0 !important;}
   
   .navtab2W-001 {border-top: 1px solid #e8ebf1;}
   
   .fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, 
   .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, 
   .fc-unthemed th, .fc-unthemed thead {border-color: #ddd;}
   .fc th.fc-today > span {color:#888;font-weight:600;}
   
    div#calwzone-001 {margin-top:-10px !important; border:0 !important;}
    
    /*1차 수정-0902: 검사결과-세포유전-염색체판독관리
     .table-space-003 tbody tr td  {padding-top:4.5px !important; padding-bottom:4.5px !important; vertical-align:middle !important;}*/
    .table-space-003 tbody tr td {/*padding-top:2px !important;*/ padding-bottom:1px !important; vertical-align:middle !important;}
    .table-space-003 th {vertical-align:middle !important;}       
    
  /* .table-space-003 tbody tr td div*/ 
   /*.table-space-003 tbody tr td .checked-active .checked-contents input {height:20px !important;}*/
   
   /* 검사결과-세포유전-FISH 결과관리 시작*/
   table#tbInterphase tbody td input[type="text"] { /* min-width: 80px; */min-width:15px !important; box-sizing: border-box; height:23px !important;}   
   table#tbMetaphase tbody td input[type="text"] { /* min-width: 80px; */min-width:15px !important; box-sizing: border-box; height:23px !important;}  
   
    table#tbInterphase tbody td .select2-container .select2-selection--single {height:23px !important;line-height:22px !important;}
    table#tbInterphase tbody td .select-xs + .select2-container .select2-selection--single .select2-selection__rendered {line-height:22px !important;/*background:#fff;*/}
    
    table#tbMetaphase tbody td .select2-container .select2-selection--single {height:23px !important;}
    table#tbMetaphase tbody td .select-xs + .select2-container .select2-selection--single .select2-selection__rendered {line-height:22px !important; background:#fff;}   
    
    /*Metaphase 데이터 테이블 높이값 기존 : max-height: 221px; 1/2로 축소=>110px*/
    div#tbMeta_zone{max-height:128px !important;margin-bottom:10px; } /*리스트 3개 노출*/
     /* 검사결과-세포유전-FISH 결과관리 끝*/
     
     button.bt-002 {color:#56b0e3 !important;}
     button.bt-002:hover {color:#065989 !important;}
     
     .navzone-001 {margin-left:0px !important;}
     select#countType {width: 90px; -webkit-appearance: auto; height: 21px !important; font-size: 11px !important;padding-top:0 !important;padding-bottom:0 !important;}
     
     div.clsCellDay {color:#D1D4DA !important;} 
	 /*div.clsCellDay.sat-002 {color:#5C74D4 !important;}*/ /*blue*/
	 div.clsCellDay.sun-002 {color:#DC3737 !important;} /*red*/
	 div.clsCellDay.weekCellDay-002 {color:#888888 !important;}
     .sat-002 {color:#5C74D4 !important;}
     .sun-002 {color:#DC3737 !important;}
     div.sat-002 {color:#5C74D4 !important;}
     /*Document메뉴-TMF Management*/
     .data-table .btn-sm {/*221020 padding:2px 7px !important;*/padding:1px 4px !important;}
    /* span.hday-002 {color:#DC3737 !important;}
     .hday-002 {color:#DC3737 !important;}*/
    .table th { /*221020 padding: 5px 5px 4px !important;*/padding: 4px !important;border-top:0;}
    .data-table-lis-normal thead th:last-child {border-right:0 !important;}
    
    /***영업관리-프로젝트관리-프로젝트등록***/
    table#tbPrjtCli tbody tr th {border-right:1px solid #eceef3 !important;padding-left:12px !important;vertical-align:middle !important;}
    
    
   /*****************첨부문서 목록 테이블 방향아이콘 시작-th:first-child=>체크박스, th:last-child=>수정은 배경아이콘 제외!!!!!!!!!!!*******************/
    
   /*양방향 아이콘-위방향 아이콘-아래방향 아이콘 시작*/
  .tablesorter-default .header, .tablesorter-default .tablesorter-header { 	
    background-image: url(../../assets/images/updown.gif) !important;
	/*background-position: 99% 50% !important;*/
	background-repeat: no-repeat;
    cursor: pointer;
    white-space: normal; }
 
   
  .tablesorter-default thead .headerSortUp, .tablesorter-default thead .tablesorter-headerAsc, .tablesorter-default thead .tablesorter-headerSortUp
  {background-image: url(../../assets/images/up.gif) !important;
	background-position: 99% 50% !important;
	background-repeat: no-repeat;
    cursor: pointer;
    white-space: normal; } 
  
     
   .tablesorter-default thead .headerSortDown, .tablesorter-default thead .tablesorter-headerDesc, .tablesorter-default thead .tablesorter-headerSortDown
    { background-image: url(../../assets/images/down.gif) !important;
	background-position: 99% 50% !important;
	background-repeat: no-repeat;
    cursor: pointer;
    white-space: normal;}
 
 table.tablesorter-default thead#uploadFileList_zone tr.tablesorter-headerRow th.tablesorter-header:nth-child(1) { background-image:none !important;}
 table.tablesorter-default thead#uploadFileList_zone tr.tablesorter-headerRow th.tablesorter-header:last-child { background-image:none !important;}
 
 /*양방향 아이콘-위방향 아이콘-아래방향 아이콘 끝*/
 
 /*****************첨부문서 목록 테이블 방향아이콘 끝-th:first-child=>체크박스, th:last-child=>수정은 배경아이콘 제외!!!!!!!!!!!*******************/
 
 .box_space_001 {margin:0 5px 4px 0;}
 
 
 /*div.table-util .form-control {line-height:0.5 !important;}*/
 div.table-util div.form-line dl.table-search-form dd p.btn-line .form-control {line-height:0.5 !important;}
 div.table-util td div.checked-contents input.form-control {/*line-height:1.3 !important;}*/
  
 .formzone-001 {margin-top:7px !important;margin-bottom:10px;}   
 .hcolor-001 { color: #656a79; /*230119 #596981*/}
 .hcolor-002 {color:#8695ac; font-size:12px;font-weight:400 !important;margin-right:5px;margin-left:10px;}
 .row-003 {margin:0 !important;padding:0 !important;flex-wrap: wrap;}
 .form-col-002 {display:flex;}
 .form-col-002 > div {display:flex;}
 
 .lisbox-001 {height:217px;padding:0;margin:15px 0px 10px 0px;flex-direction: column;flex-wrap: nowrap;}
 .formbox-001 {padding-top:11px;}
 .spacezone-001 {margin-right:5px !important;}
 .pT-005 {padding-top:5px !important;}
 
 /*table#tbCls thead th:nth-child(3)>div {min-width:0 !important;}
 table#tbCls thead th:nth-child(3) {display:flex; justify-content:center;} */  
 
 textarea {border:1px solid #dde2eb !important;}
 /*테이블 내 셀렉박스  수정 시작*/
 .table .select2-container .select2-selection--single {height:23px !important;}
 .table .select2-container--default .select2-selection--single .select2-selection__arrow {/*height:20px !important;*/}
 .table .select2-container .select2-selection--single .select2-selection__rendered {/*line-height: 20px;*/}
  /*테이블 내 셀렉박스 수정  끝*/ 
 
 .border-right {border-right: 1px solid #e3e8eb!important;}
 .util-tip {right:-33px !important;width:136px !important;/*top:42px !important;*/top:22px !important;}
 .thzoneico {display:inline-block !important;}
 
 /*즐겨찾기-contact*/
 /*
 div.contactzone-01 table#tbCtbContraList thead th {width:10% !important;}
 div.contactzone-01 table#tbCtbContraList thead th:nth-child(1) {width:30% !important;}
 div.contactzone-01 table#tbCtbContraList tbody td {width:10% !important;}
 div.contactzone-01 table#tbCtbContraList tbody td:nth-child(1) {width:30% !important;}
 */

/*carlen today구별 bg*/
.todayBgColorCarlen {background: #e4e8ee;} /*230320 #d8e4f7*/

 /*****기준정보-그룹검사 관리, 검출형코드 수정 시작(220919)******/
 /*상세검사항목 테이블*/
 table#tbGrpDetail tbody td:nth-child(2) input[type="text"] {min-width:50px !important;}
 table#tbGrpDetail tbody td:nth-child(3) input[type="text"] {min-width:50px !important;}
 table#tbGrpDetail tbody td:nth-child(4) input[type="text"] {width:110px !important;}
 table#tbGrpDetail tbody td:nth-child(6) input[type="text"] {min-width:30px !important;}
 
 table#tbGrpDetail tbody td input[type="text"] {min-width:none !important;max-height:22px;}
 
 
table#tbDctcDtlItem tbody td:nth-child(2) input[type="text"] {width:40px !important;}
table#tbDctcDtlItem tbody td:nth-child(3) input[type="text"] {width:70px !important;}
/*table#tbDctcDtlItem tbody td:nth-child(4) input[type="text"] {width:100px !important;}
table#tbDctcDtlItem tbody td:nth-child(5) input[type="text"] {width:100px !important;}

table#tbDctcDtlItem tbody td:nth-child(7) input[type="text"] {width:100px !important;}
table#tbDctcDtlItem tbody td:nth-child(8) input[type="text"] {width:100px !important;} */ 
table#tbDctcDtlItem tbody td:nth-child(7) input[type="text"] {height:22px !important;}
table#tbDctcDtlItem tbody td:nth-child(8) input[type="text"] {height:22px !important;}
/*****기준정보-그룹검사 관리, 검출형코드 수정 끝(220919)******/   

/*****기준정보-작업코드 셀렉박스 사이즈 동일하게 수정 시작(220920)******/  
table#WsListTable tbody td:nth-child(4) select{width:140px !important;} 
table#WsListTable tbody td:nth-child(5) select{width:155px !important;} 
table#WsListTable tbody td:nth-child(6) select{width:110px !important;} 
/*****기준정보-작업코드 셀렉박스 사이즈 동일하게 수정 끝(220920)******/ 
 

/*table#spcListTable input.form-control {width:95%;}*/
 
table#tbRcp.data-table thead th:nth-child(2) {width:35px !important;}

div.space {color:#a3a7ab !important;}

/*input.form-control.input-callender {max-width: 230px !important;}*//*max-width: 290px*/ 
.modal-content .input-callender {max-width:230px !important;}

/*기준정보-검사코드별 수가관리 : 셀렉 박스 width 통일*/
table#insuListTable td span.select2.select2-container {/*width:73.5px !important;*/}

.form-block .form-line .btn-line {padding-top:0 !important; padding-bottom:0 !important;} 
 
.dash001 {font-size:17px; color:#9da2a7 !important; font-weight:500;} 

/*dd#STDUSEYN span.select2.select2-container.select2-container--default {width:180px !important;}

dd#LISPATRACECD span.select2.select2-container.select2-container--default {width:157.156px !important;}

dd#LISSALESUSER span.select2.select2-container.select2-container--default {width:158.3px !important;}*/

/* dd#licsearch_001 span.select2.select2-container.select2-container--default {width:190px !important;}
dd#licsearch_002 span.select2.select2-container.select2-container--default {width:190px !important;} */
/*dd#LISPARTCD2 span.select2.select2-container.select2-container--default {width:216.688px !important;}
dd#LISWSCD span.select2.select2-container.select2-container--default {width:160px !important;}

dd#LISDIV span.select2.select2-container.select2-container--default {width:318px !important;}
dd#LISINQUIRYCONDITION span.select2.select2-container.select2-container--default {width:217px !important;}*/
.mTop-10 {margin-top:10px !important;}

.tablelims-002 td, .tablelims-002 th {/*padding:0 0 0 12px !important;*/}
.tablelims-003 td, .tablelims-002 th {padding:0 5px 0 12px !important;}
td#mR_0 {padding-right:0 !important;border-left:0; border-top:0;}

/******------기록서작성/Work Activity Log Sheet------********/
.limsAnalWork_001 {padding-left:0;width:54% !important;display:flex;}
.limsAnalWork_002 {width:45px !important;}
.limsAnalWork_003 {width:96px !important;}
.limsAnalWork_004 {padding-left:0;width:46% !important;display:flex;}
.limsAnalWork_005 {width:40px !important;}
.limsAnalWork_006 {width:120px !important;}
.limsAnalWork_007 {width:125px !important;}

.table-space-001 tbody tr td {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}
.table-space-001 thead tr th {
   /* padding-top: 1px !important;
    padding-bottom: 1px !important; */ 
    height:24px !important;
}

.table-space-001 thead tr td {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

.btn-search-002 {width: 22px;
    height: 17px;
    box-sizing: border-box;
    border: 1px solid #d5dae3;
    background: #e7eaef url(../images/btn-search.png) no-repeat center;
    background-size: 9px 10px;
    margin-left: 0 !important;}
    
 .limszone-right-002 {border-right:1px solid #dde1e7 !important;} 
/*.limszone-border {border-left:1px solid #dde1e7 !important; border-right:1px solid #dde1e7 !important;} */   

.tit_002 {border-bottom:1px solid #dde1e7 !important; /*height:20px;*/  color:#656a79 !important; /*230119 #596981*/ 
padding-bottom: 5px !important; font-weight: 500 !important; margin: -3px -3px 7px !important;}

.checkbox input[type="checkbox"] + .cr-003:before {width: 13px !important;height: 13px !important; top:0 !important; margin-right: 3px !important;}

.nav2-menuzone {border-bottom:1px solid #eee !important;}

dd#LIMSIOCTYPE span.select2.select2-container.select2-container--default {width:150px !important;}
/*입출고관리-검체입출고관리-검체입고/출고관리*/
div#srhStorCdzone span.select2.select2-container.select2-container--default {width:180px !important;}
div#srhCannNozone span.select2.select2-container.select2-container--default {width:95px !important;}

/*****기록서 작성-분석전확인기록서****/
/*table#tablelimszone-01 th {border-bottom: none !important; border-top: 1px solid #e8ebf1;}
table#tablelimszone-01 th:nth-child(1) {border-bottom: none !important; border-top: none !important;}
table#tablelimszone-01 th:nth-child(2) {border-bottom: none !important; border-top: none !important;}
table#tablelimszone-01 th:nth-child(3) {border-bottom: none !important; border-top: 1px solid #e8ebf1 !important;}
table#tablelimszone-01 th:nth-child(4) {border-bottom: none !important; border-top: 1px solid #e8ebf1 !important;}
table#tablelimszone-01 th:nth-child(5) {border-bottom: none !important; border-top: 1px solid #e8ebf1 !important;}*/

table#tablelimszone-01 td {border-bottom: none; border-right:none !important; border-top: 1px solid #e8ebf1;}
table#tablelimszone-01 td:nth-child(7) {border-bottom: 1px solid #e8ebf1 !important;}
table#tablelimszone-01 td:nth-child(8) {border-bottom: 1px solid #e8ebf1 !important;}

th#tablelimszone-02 {border-top:1px solid #e8ebf1 !important;}
th#tablelimszone-03 {border-top:1px solid #e8ebf1 !important;}
th#tablelimszone-04 {border-top:1px solid #e8ebf1 !important;}
th#tablelimszone-05 {border-top:1px solid #e8ebf1 !important;}

/***기록서작성-전처리기록서****/
table#limszone-010 input[type="text"] {height:20px !important;}
table#limszone-014 input[type="text"] {height:22px !important;}
th#limszone-011 {border-bottom:1px solid #dde1e7 !important;}
div#srhRackNozone span.select2.select2-container.select2-container--default {width:95px !important;}
th.limszone-012 {border-bottom:1px solid #dde1e7 !important; border-right: 1px solid #dde1e7 !important;}
th.limszone-013 {border-bottom:1px solid #dde1e7 !important;}

table.limsinputzone-001 input[type="text"] {height:22px !important;}
table.limsinputzone-001 button[type="button"] {height:22px !important;}
table.limsinputzone-001 .btn-search {border: 1px solid #bfc5d1;}
 
/*기록서작성-표준원액조제기록서*/
input.presvInBat-001:disabled {border: solid 1px #aeb6c3 !important;} /*#aeb6c3*/
input.stdStockDt-001:disabled {border: solid 1px #aeb6c3 !important;} /*#aeb6c3*/

.radiozone-001 {vertical-align: bottom; margin-top: 20p; height: 19px;margin-top: 6px;margin-bottom: 2px !important;"}

/*221013*/
input[type="text"]:disabled {background:#f6f8fb;border:1px solid #d9dde5 !important; }
/*border: solid 1px #d9dde5 !important;
  background-color: #f6f8fb !important;*/
  
input.detailInput-001:disabled {border: 10px solid rgba(174, 182, 195, .5) !important;} /*#aeb6c3*/

/******기록서작성-분석법검증결과기록서 221013*******/
/* table.data-table.table-lims.datatablelims-001 td {border: 0px solid #e8ebf1;border-right: 1px solid #e8ebf1;} */


table#limszone-015 th {border-bottom:1px solid #eee !important;}
table#limszone-015 td {border-bottom:1px solid #eee !important;}

/*** 기록서작성-검체분석결과기록서 ***/
table.data-table.table-hover.table-lims.tablelimsline-0001 thead th {border-bottom:1px !important;}
/* table.data-table.table-hover.table-lims.tablelimsline-0001 td {border-bottom:1px !important;} */

/************기록서작성-기기이상발생보고서***********/
th.limszone-01 {padding-top:6px !important; padding-bottom:6px !important;}

/*************admin-Information-휴일관리***********/
.table-space-01  td {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}
.table-space-01 thead tr th {
    padding-top: 5px 5px 4px !important; 
}

td.datazone-001 {padding-bottom:1px !important; padding-top:1px !important;}

/*div id="tblTemplatezone-001" class="table-block scroll-table mT10 mh-100">
                table id="tblTemplate" */
                
/********admin-과제활동 템플릿*************/                
div#tblTemplatezone-001 table#tblTemplate td.datazone01 {padding-top:1px !important; padding-bottom:1px !important;}
div#tblItemzone-001 table#tblItem td.datazone01 {padding-top:1px !important; padding-bottom:1px !important;}
/*admin-과제활동 진척률 비중관리*/
table#tbActProgressImpo td {padding-top:1px !important; padding-bottom:1px !important;}

/***Document-TMF Mnagement화면의 탭메뉴3(TMF ZIP) 화면****/
/* padding-top:2px !important; padding-bottom:2px !important; */
.data-table-2 td {padding-top:0 !important; padding-bottom:0 !important;height:24px !important;}
.txzone-001 {height:25px;padding-top:0 !important;padding-bottom:0 !important;}

/*****Project-Protocol신규화면*******/
.formcontrol-001 {height:25px !important;}

span.holiday-text.mL5 {font-size:11px !important; padding-top:3px;}

div.ctrlNozone div {margin-bottom:3px !important;}

/****기록서작성-분석시험교육기록서****/
 table.data-table tbody td.tblimszone {border-right:1px solid #e8ebf1 !important;}
 
 /*****기준정보-검사코드 관리****/
 dl#libtabzone-001 dd span.select2.select2-container.select2-container--default.select2-container--below {width:100% !important;}


dl#LISCODE-0001 dd span.select2.select2-container.select2-container--default {width:210px !important;}

.table thead th {vertical-align: middle !important;}

div#tbFilesbox-01 table#tbFiles thead th {border:1px solid #d3d8e1 !important;}
div#tbFilesbox-01 table#tbFiles td {border:1px solid #d3d8e1 !important;}

div#tbFilesbox-01 table#tbFiles.table thead th {border:1px solid #d3d8e1 !important;}
.Filezone-001 {border:1px solid #d3d8e1 !important;}

table#table-payment tbody tr.click-active td input#payItem {height:22px !important;}
table#table-payment tbody tr.click-active td input#payMoney {height:22px !important;}

.blockboxzone-02 .form dt {margin-right:5px !important;}
.teDVdt {color:#656a79 !important; /*230119 #596981*/}

.tbllimszone-001 td input {height:23px !important;}

.tbllimszone-001 td input.input-callender {height:23px !important;}

/*자료보관문서-자료열람대출복사 신청서  
.table-lims th#cheklitx-001.text-left {background:#dbdfe7 !important;}*/
/*
table#tbLmiSpcRcpt.data-table.display.table.table-hover.text-export vertical-middle data2-table   .data2-table thead tr th.border02-right {border-right:1px solid #dde1e7 !important;}
*/

table.data-table thead th#limstyle-001 {border-right:1px solid #dde1e7 !important;}

.table thead th#limstyle-001 {border-right:1px solid #dde1e7 !important;}
table.table-lims.text-import tbody tr th.text-left.titzone01 {background:#dbe2ed !important;}

div.modal-body div.form dl.form dd input[type="text"], input[type="email"], input[type="password"], textarea, select {padding-top:4px !important; padding-bottom:4px !important;}
div.modal-body div.form dl.form dd input.form-class {padding-top:4px !important; padding-bottom:4px !important;}
input#srhSpcNmMd.form-class {padding-top:4px !important; padding-bottom:4px !important;}
div.d-flex.mgtmgt input[name="mgtNo"] {background:#fff !important;}

div.form-block.mB0 {margin-bottom:1px !important;}
div.form-block.mB01 {margin-bottom:1px !important;}

input[type="text"] {height:24px !important;}
input[type="text"].input-callender {height:24px !important;}

.block-zone-001 {padding-top:5px !important;}

main.contents table#tbComCd div.checked-text input.form-control.input-sm {height:23px !important;} /*3. 기준정보-공통코드관리(사용자용) */
main.contents table div.checked-text input.form-control.input-sm {height:23px !important;}

div.modal-body.modalzone001 modal-block {background: #f6f8fb !important;}
/*즐겨찾기-시약정보관리*/
div#tbC001.row-block.full-height table#tableClnSign.table-bio tbody td {border-left:1px solid #eee !important;}

/****기록서작성-기기이상발생보고서 / 기기목록 모달 ****/
div.modal-body dd.containbox_001 .select2-container--default .select2-selection--single {background-color: #fff !important;}

/*시스템관리-사용자그룹별 접근권한 관리*/ 
 .access-table tbody tr:first-child th {border-right:1px solid #eee !important;}
 
 p.btline-002 {display: flex; justify-content: flex-end !important; padding-top: 0 !important;  
 padding-bottom: 0 !important; margin-right: 5px !important;}
 
 .data-table tbody td dl dt input.form-control {max-height:23px !important;} /*사용기록-공시료사용기록서*/
 
 /*시스템 관리-라벨관리*/
  table.data-table.table tbody td.text-left div.checked-contents select.js-example-basic-single.select-xs {height:23px !important;max-height:23px !important;} 
  
   div.form-block.searchzone input[type="text"]{height:24px !important;}
  
   span#studyTitleHeader {color:#656a79 !important;}
   
   /*230329*/
  table.data-table.table tbody td .select2-container .select2-selection--single {height:23px !important;}
  td .btn-light {border-bottom: 2px solid rgba(154,173,179,0.6) !important; border-right: 2px solid rgba(154,173,179,0.6) !important;}
  table.data-table.table tbody td button.btn.btn-light.btn-sm {margin-top: 1px !important; height: 21px; padding-top: 3px !important; border-radius: 2px !important;}
  
  div#commentti-001 {background:#dbe2ee !important;}
  
  .modal-title {line-height:1.2 !important;}
  
  .pT0 {padding-top:0 !important;}
  .pB0 {padding-bottom:0 !important;}
  .pB5 {padding-bottom:5px !important;}
  
  .modal-body table#WORKCT_NOTI.table-bio tbody th.tit_01 {height:26px !important;line-height:22px !important;}
  .formbox-001 {height: 65px !important;}
  div#LIStiarea_001.block-box.full-height  textarea {border: solid 1px #dadee5 !important;}
  