@charset "utf-8";

/* 기본 색상 */
:root {
  --mainColor: #23A6C3;
  --mainColorOpacity : rgba(229, 239, 255, 1);
  --subColor: #ffbd50;

  --sub1-Color : #696A70;
  --sub2-Color : #001e55;
  --sub3-Color : #f5f9fc;
  --sub4-Color : #40a0a0;
  --sub5-Color : #3c68d9;

  --basic-Font-Color: #222;
  --text-Bright-Color:#fff;

  --basic-Width:1200px;

  /* border line */
  --borderBottom : #808080;
  --borderStandard : 1px solid #808080;
  --bgColorMain : #222;
}
  
  /* 기본 설정 : 폰트 크기 */
@media (max-width:599px) {
  :root {
    font-size: 14px;
  }
}
@media (min-width:600px) and (max-width:799px) {
  :root {
    font-size: 16px;
  }
}
@media (min-width:800px) {
  :root {
    font-size: 18px;
  }
}

  
/* 기본 글꼴 서식 */
body {
  font-family: "Noto Sans Korean", "Roboto", Sans-serif;
  font-size: 16px;
  color: var(--basic-Font-Color);
}
  
/* 단어 설정 */
* {
  word-break: keep-all;
}
    
/* float 해제 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* 숨기기 */
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 말줄임 */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* 여러줄 말줄임 */
.ellipsis2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 원하는 줄 수 표시 */
  -webkit-box-orient: vertical;
}

/* 게시물 데이터가 없을 때 */
.dataNon {
  border: 1px solid #c5c9d6;
  margin-bottom: 20px;
  padding: 20px;
  text-align: center;
}

.dataNon span {
  display: inline-block;
  height: 100px;
  line-height: 100px;
  background: url(../images/common/img_dataNon.png) no-repeat left center;
  padding-left: 80px;
}

/* 테이블 그리드 */
.border_top {
  border-top: 1px solid #d4d4d4;
}

.border_top2 {
  border-top: 1px solid #d4d4d4;
}

.border_bottom {
  border-bottom: 1px solid #d4d4d4;
}

@media (max-width: 769px) {
  .border_top2 {
    border-top: none;
  }
}

/* 인풋 데이트 아이콘 커스텀 */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-inner-spin-button {
  display: none;
  appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url(../images/common/icon_dateficker2.png) no-repeat;
  width: 18px;
  height: 18px;
  border-width: thin;
  padding-right: 5px;
}

/* 테이블 필수 표시 */
.mark {
  position: relative;
  background: #fffcdf;
  background-image: url(../images/common/img_mark.svg);
  background-repeat: no-repeat;
  background-size: 13px;
}

/* 타이틀 불릿 */
.tit_bu {
  padding-left: 25px !important;
  background: url(../images/common/bu.png) no-repeat left top 5px;
}

/* 서브 페이지 컨텐츠 영역 */
main.sub {
  position: relative;
}

main.sub h3 {
  margin: 1rem 0;
  padding-bottom: 10px;
  font-size: 1.2rem;
  margin-top: 40px;
}

.sub_top ul li:first-child a {
  display: inline-block;
  background: url(../images/common/star.svg) no-repeat;
  width: 24px;
  height: 24px;
}

.sub_top ul li:first-child a.on {
  display: inline-block;
  background: url(../images/common/star_on.svg) no-repeat;
  width: 24px;
  height: 24px;
}

/* 서브 페이지 - 상단 배너 */
.cont.infomation {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background: #f5f9fc;
  margin-top: 50px;
}

.cont.infomation {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background: #f5f9fc;
  margin-top: 50px;
}
.cont.infomation h4 {
  font-size: 24px;
  line-height: 1.5;
}
.cont.infomation .text {
  margin-top: 10px;
}
.cont.infomation .text p {
  line-height: 1.5;
  margin: 5px 0;
}

.cont.infomation .text .post_link {
  background: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 2px 5px;
  font-weight: bold;
}

.cont.infomation .btn_action > a {
  color: #fff;
  border-radius: 50px;
  width: 140px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s;
  margin-top: 10px;
}

/*********************** 페이징 **********************/
/* .paginate{text-align:center;margin:30px 0px;} */
.paginate ul{line-height: 1; margin: 30px 0; display: flex; justify-content: center; text-align: center; align-items: center; gap: 8px;}
/* .paginate li a { display: block; line-height: 30px; padding: 2px 12px; border: 1px solid var(--borderBottom); transition: .5s; } */

.paginate:after{display:block;clear:both;content:"";}
.paginate li{display:inline-block;vertical-align:middle;list-style:none;}
/* .paginate li a{display:block;width:35px;height:30px;font-size:13px;line-height:25px;text-align:center; border:#e0e0e0 1px solid; padding-top:2px; color:#888; background:#fff} */
.paginate li a{display:block;width:10px;height:30px;font-size:13px;line-height:30px;text-align:center; border:#e0e0e0 1px solid; padding: 2px 12px; transition: .5s;}
.paginate li a.on {
  background-color: #004b8f; color: #fff; border-radius: 5px;
}
.paginate li  a.num:hover {
  border: 1px solid #004b8f; color: #004b8f; border-radius: 5px;
}

.paginate li a.first,
.paginate li a.prev,
.paginate li a.next,
.paginate li a.last {
  border: none; padding: 0; color: #ccc;
}

.paginate .first a{border:none; font-size: 0px; background:#fff url(../images/common/icon_prevend.png) no-repeat 50% 50%;}
.paginate .prev a{border:none; font-size: 0px; background:#fff url(../images/common/icon_prev.png) no-repeat 50% 50%;}
.paginate .next a{border:none; font-size: 0px; background:#fff url(../images/common/icon_next.png) no-repeat 50% 50%;}
.paginate .last a{border:none; font-size: 0px; background:#fff url(../images/common/icon_nextend.png) no-repeat 50% 50%;}


/*********************** 툴팁 **********************/

.vtooltip {
    z-index: 1;
    position: absolute;
    background: #000;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
    font-size: 14px;
    margin-top: -30px;
    text-indent: 0px;
}

/* @@엑셀 다운로드 버튼 class 명으로 지정해서 재선언 */
button.btn_excel {
  padding: 5px 20px 5px 50px;
  border-radius: 8px;
  transition: 0.5s;
  background: url(../images/common/excel.png) no-repeat 10px center/ auto 80%;
  border: 1px solid #d4d4d4;
  box-sizing: border-box;
  cursor: pointer;
}
button.btn_excel:hover {
  border: 1px solid #004b8f;
}

/* @@이첩이력 버튼 추가 */
button.btn_sft {
  padding: 1px 1px 1px 1px;
  margin: 0px 0px 0px 10px;
  border-radius: 8px;
  transition: 0.5s;
  background: no-repeat 5px center/ auto 50%;
  background-color: var(--sub2-Color);
  border: 1px solid #d4d4d4;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0; /* 버튼 길이 고정 */
}

button.btn_sft:hover {
  border: 1px solid #004b8f;
}


/* @@ integration.css 에서 이동됨. 통합이력보기 뿐만 아니라 검토에서도 필요 */
/* @@ main.css 의 process 와 겹쳐서 이름 변경 */
.process2 {
  margin-top: 50px;
}

.process2 p {
  padding: 10px 0;
}

.process2 ul.o_list {
  display: flex;
}

.process2 ul.o_list li {
  width: 25%;
  background: #f9f9f9;
  text-align: center;
  padding: 0 20px;
  word-break: keep-all;
  padding-top: 170px;
  position: relative;
}

.process2 ul.o_list li b {
  font-size: 1rem;
}

.process2 ul.o_list li p {
  font-size: 0.875rem;
}

@media only screen and (min-width: 767px) {
   .process2 ul.o_list > li::before {
    position: absolute;
    content: "";
    width: 145px;
    height: 145px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
  }
}

@media only screen and (min-width: 767px) {
  .process2 ul.o_list > li:first-child::before {
    position: absolute;
    content: url(../images/common/process01.png);
  }

  .process2 ul.o_list > li:nth-child(2)::before {
    position: absolute;
    content: url(../images/common/process02.png);
  }

  .process2 ul.o_list > li:nth-child(3)::before {
    position: absolute;
    content: url(../images/common/process03.png);
  }

  .process2 ul.o_list > li:last-child::before {
    position: absolute;
    content: url(../images/common/process04.png);
  }

  .process2 ul.o_list li:not(:first-child)::after {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: -20px;
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../images/common/arrow-right.png);
    background-size: contain;
  }
}

@media only screen and (max-width: 766px) {
  .process2 ul.o_list {
    flex-direction: column;
  }

  .process2 ul.o_list li {
    border: 1px solid #363c5a;
    width: auto;
    text-align-last: left;
    padding: 10px 20px;
    border-radius: 8px;
  }

  .process2 ul.o_list li:not(:last-child) {
    margin-bottom: 15px;
  }

  .process2 ul.o_list li b {
    font-size: 15px;
  }

  .process2 ul.o_list li p {
    font-size: 14px;
  }

  .process2 ul.o_list li b,
  .process2 ul.o_list li p {
    margin-left: 115px;
  }

  ul.o_list > li:first-child::before {
    position: absolute;
    content: url(../images/common/m_process01.png);
    margin-top: 10px;
    margin-left: 45px;
  }

  ul.o_list > li:nth-child(2)::before {
    position: absolute;
    content: url(../images/common/m_process02.png);
    margin-top: 10px;
    margin-left: 45px;
  }

  ul.o_list > li:nth-child(3)::before {
    position: absolute;
    content: url(../images/common/m_process03.png);
    margin-top: 12px;
    margin-left: 45px;
  }

  ul.o_list > li:last-child::before {
    position: absolute;
    content: url(../images/common/m_process04.png);
    margin-top: 10px;
    margin-left: 45px;
  }

  .process2 ul.o_list li::after {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    text-align: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #121a4c, #23a6c3);
    border-radius: 50%;
    padding: 5px;
    font-size: 14px;
  }

  .process2 ul.o_list li:first-child::after {
    content: "01";
  }

  .process2 ul.o_list li:nth-child(2)::after {
    content: "02";
  }

  .process2 ul.o_list li:nth-child(3)::after {
    content: "03";
  }

  .process2 ul.o_list li:last-child::after {
    content: "04";
  }
}

/* @@ main.css 의 process 와 겹쳐서 이름 변경 */
/* 전산요청 프로세스 */
.process3 {
  margin-top: 50px;
}

.process3 ul.o_list {
  display: flex;
}

.process3 ul.o_list li {
  width: 25%;
  background: #f5f9fc;
  text-align: center;
  word-break: keep-all;
  padding: 20px 30px;
  position: relative;
}

.process3 ul.o_list li b {
  font-size: 1rem;
}

.process3 ul.o_list li p {
  font-size: 0.875rem;
}

.process3 ul.o_list li:not(:first-child)::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/common/arr_right.png);
  background-size: contain;
  z-index: 10;  
}

.process3 ul.o_list li.line {
  background: var(--mainColor);
  color: #fff;
  border: 2px solid #363c5a;
  z-index: 9;
}

.process3 ul.o_list li.line b {
  text-shadow: 0 0 10px #363c5a;
}

@media only screen and (max-width: 766px) {
  .process3 ul.o_list li b {
    font-size: 15px;
  }

  .process3 ul.o_list li p {
    font-size: 14px;
  }

  .process3 ul.o_list li {
    padding: 20px 0;
  }

  .process3 ul.o_list li:not(:first-child)::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/common/arrow-right.png);
    background-size: contain;
  }
}

@media only screen and (max-width: 599px) {
  .process3 ul.o_list li {
    padding: 20px;
  }

  .process3 ul.o_list li:not(:first-child)::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/common/arrow-right.png);
    background-size: contain;
  }
}

/* 테이블 그리드 23.10.26 추가됨 examine.css 에 있던 것을 클래스명 바뀌고 공통으로 병합한듯 */
main.sub .container .grid {
  display: grid;
  grid-template-columns: 120px 1fr;
}
main.sub .container .grid.mobile {
  display: grid;
  grid-template-columns: 120px 1fr;
}
main.sub .container .grid > div {
  padding: 15px;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #d4d4d4;
}

main.sub .container .grid .title {
  font-weight: bold;
  text-align: center;
  background-color: #f5f9fc;
}

@media screen and (min-width: 768px) {
  main.sub .container .grid {
    grid-template-columns: 120px 1fr 120px 1fr;
  }
}

/* @ print용 추가 */
@media print and (min-width: 768px) {
  main.sub .container .grid {
    grid-template-columns: 120px 1fr 120px 1fr;
  }
}

/* 상세 페이지 23.10.26 추가됨 examine.css 에 있던 것을 클래스명 바뀌고 공통으로 병합한듯 */
.spec .align {
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec .align.item {
  justify-content: flex-start;
}
.spec .align > span {
  display: inline-block;
  margin-right: 5px;
  padding: 5px 10px;
  border: 1px solid var(--sub5-Color);
  border-radius: 5px;
  font-size: 0.8rem;
  cursor: pointer;
  box-sizing: border-box;
}
.spec .align button {
  min-width: 15%;
  padding: 5px 12px;
  height: 34px;
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: -1px;
  transition: 0.5s;
  outline: none;
  background-color: var(--sub5-Color);
  border: 1px solid var(--sub5-Color);
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.spec .align button img {
  width: 19px;
  vertical-align: middle;
  margin-left: 2px;
}

.spec .grid > div {
  padding: 20px;
  border-left: none;
  border-right: none;
}
.spec .grid .title {
  font-weight: bold;
  text-align: center;
  background-color: #f5f9fc;
}

.spec h3 {
  margin: 1.5rem 0;
  font-size: 1.2rem;
  padding-left: 10px;
  margin-top: 50px;
}
.spec h4 {
  margin: 1.5rem 0;
  font-size: 1.2rem;
  background-color: #f5f9fc;
  padding-left: 10px;
  margin-top: 50px;
}

.spec section p {
  padding: 10px 0;
}

.spec .buttons {
  text-align: right;
  margin-bottom: 10px;
}
.spec .buttons button {
  padding: 5px 20px;
  border-radius: 7px;
  border: 1px solid var(--borderBottom);
  transition: 0.5s;
}
.spec .buttons button:not(:first-child) {
  margin-left: 5px;
}
.spec .buttons button:hover {
  background-color: var(--sub5-Color);
  color: #fff;
}

/* 이력 폼 */
/* @@ 이력 폼 첫번째와 마지막에만 top bottom 1px 그리기 */
.discussionForm {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 20px 15px 10px 20px;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
}

.discussionForm:first-child {
  border-top: 1px solid #aaa;
}
.discussionForm:last-child {
  border-bottom: 1px solid #aaa;
}

.discussionForm textarea {
  flex: 1;
  height: 150px;
  resize: none;
  border: 1px solid #d4d4d4;
}

.discussionForm button {
  flex: 0 0 100px;
  background-color: #f5f9fc;
  border: none;
  cursor: pointer;
}

/* 답글 */
.spec .reply {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
  line-height: 1.5;
  /* @@ 협의 이력 공간 너무 넓어서 줄이기 */
/*   margin-top: 20px; */
  align-items: flex-start;
  border-bottom: 1px solid #d4d4d4;
  position: relative;
  padding: 10px 0;
}

.spec .reply .reply_group p {
  margin-top: 10px;
}

.spec .reply .user img {
  width: 13px;
}
.spec .reply .reply_view {
  padding: 5px 20px;
  border: 1px solid var(--borderBottom);
  border-radius: 5px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 30px;
}
.spec .reply .reply_view span {
  margin-left: 5px;
}
.spec .reply ul.del {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}
.spec .reply ul.del li {
  padding: 5px;
}
.spec .reply ul.del li a {
  font-size: 14px;
  color: #666;
}
.spec .reply ul.del li a:hover {
  color: var(--sub5-Color);
}

.spec .reply_reply {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
  line-height: 1.5;
  margin-top: 10px;
  align-items: flex-start;
  background: #f6f6f6;
  padding: 20px;
  box-sizing: border-box;
  display: none;
}

.spec .reply_reply .reply_group {
  display: flex;
  flex: 1;
}

.spec .reply_reply .reply_group .reply_text {
  flex: 1;
}

.spec .reply_reply .reply_group .reply_text input {
  height: 34px;
  resize: none;
  border: 1px solid #d4d4d4;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

.spec .reply_reply .reply_group .btn_group {
  flex: 0 0 90px;
  margin-left: 5px;
}

.spec .reply_reply .reply_group .btn_group button {
  padding: 8.5px 9px;
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: -1px;
  transition: 0.5s;
  outline: none;
  border: 1px solid var(--sub5-Color);
  background-color: var(--sub5-Color);
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  height: 34px;
}

.spec .reply_reply .reply_group .btn_group button:hover {
  border: 1px solid var(--sub5-Color);
  background-color: #fff;
  color: #222;
}

.spec .reply_reply .reply_group .btn_group button.btn_cancel {
  border: 1px solid #91959d;
  background-color: #91959d;
}

.spec .reply_reply .reply_group .btn_group button.btn_cancel:hover {
  border: 1px solid #91959d;
  background-color: #fff;
  color: #222;
}

.spec section:nth-of-type(3) p {
  margin-bottom: 10px;
}

/* 목록 버튼 */
.btn_execute {
  padding: 20px 0;
}

.btn_execute a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 7px;
  transition: 0.5s;
  background-color: var(--sub5-Color);
  border: 1px solid var(--sub5-Color);
  color: #fff;
  height: 40px;
  line-height: 18px;
  box-sizing: border-box;
}
.btn_execute a:hover {
  border: 1px solid var(--sub5-Color);
  background-color: #fff;
  color: #222;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .btn_execute a {
    font-size: 14px;
  }
}

/* 취소·저장 버튼 */
.btn_execute button {
  margin-left: 5px;
  padding: 0 30px 20px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  border: 1px solid var(--sub5-Color);
  transition: 0.5s;
  cursor: pointer;
}

.btn_execute button.btn_save {
  background: #004b8f;
  color: #fff;
}

.btn_execute button.btn_save:hover {
  background: #fff;
  color: #333;
}

.btn_execute button.btn_cancel {
  background: #91959d;
  border: 1px solid #91959d;
  color: #fff;
}

.btn_execute button.btn_cancel:hover {
  background: #fff;
  color: #333;
}


/* 서비스 탭 */
.service_tab {
}

.service_tab_menu ul {
  display: flex;
  margin-top: 40px;
  position: relative;
}

.service_tab_menu ul li {
  border: 1px solid #d4d4d4;
  background: #fff;
  color: #333;
  margin-right: 10px;
}

.service_tab_menu ul li a {
  display: block;
  padding: 10px 20px;
  font-weight: 500;
}

.service_tab_menu ul li.on {
  background: var(--sub5-Color);
  border: 1px solid var(--sub5-Color);
  color: #fff;
  position: relative;
}

.service_tab_menu ul li.on::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid var(--sub5-Color);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 0px solid transparent;
  z-index: 10;
}

.service_tab_conts {
  position: relative;
}

/* 조회단 */
.checkForm {
  font-family: "Noto Sans Korean", "Roboto", Sans-serif !important;
  font-size: 16px !important;
}

.checkForm input {
  font-size: 13px;
  font-family: "Noto Sans Korean", "Roboto", Sans-serif;
  font-weight: 300;
}

.checkForm select {
  font-family: "Noto Sans Korean", "Roboto", Sans-serif;
  font-size: 13px;
  font-weight: 300;
}