@charset "utf-8";

/* 서브레이아웃 */
#scontainer { width:1400px; margin:0 auto 100px; }
	#sleft { width:100%; margin:30px 0 40px; }
	#sright { float:left; position:relative; width:100%; }
		#content { width:100%; }


@media (min-width:1281px) and (max-width:1400px){
	#scontainer { width:100%; padding:0 15px; margin:0 auto 100px; }				
		#sright { float:left; position:relative; width:100%; }
			#content { width:100%; }
}


@media (min-width:1025px) and (max-width:1280px){
	#scontainer { width:100%; padding:0 15px; margin:0 auto 100px; }		
		#sright { float:left; position:relative; width:100%; }
			#content { width:100%; }
}



@media (min-width:769px) and (max-width:1024px){
	#scontainer { width:100%; padding:0 30px; margin:0 auto 75px; }		
		#sright { float:none; position:relative; width:100%; padding:0 30px; }
			#content { width:100%; }
}


@media (max-width:768px){
	#scontainer { width:100%; margin:0 auto 50px; }		
		#sright { float:none; position:relative; width:100%;  }
			#content { width:100%; padding:0 15px; }
}






.leftmenu { width:100%; }
.leftmenu h1 { display:none; }
.leftmenu ul { padding-left:1px; display:flex; flex-wrap:nowrap; justify-content:space-between; }
.leftmenu ul li { width:100%; margin-left:-1px; }
.leftmenu ul li a:link,
.leftmenu ul li a:visited { width:100%; height:50px; line-height:48px; border:1px solid #ddd; background:#f4f4f4; text-align:center; font-family:pgovb; font-size:110%; display:block; }
.leftmenu ul li a:active, 
.leftmenu ul li a:focus,
.leftmenu ul li a:hover,
.leftmenu ul li a.select { background:#113d8e; color:#fff; }


/* 페이지 타이틀 */
.pagetitle { position:relative; width:100%; margin:50px 0 40px 0; }
.pagetitle h1 { font-family:pgovb; font-size:220%; color:#000; }


@media (max-width:768px){
	.pagetitle { margin:40px 0 30px 15px; }
	.pagetitle h1 { font-size:200%; }
}






/* 관리자 */
/* 관리자 */
/* 관리자 */
/* 관리자 */
/* 관리자 */



/* 서명방법 */
.align { display:flex; flex-wrap:nowrap; justify-content:center; align-items:center; gap:20px; }













/* 의안처리단계 */
.billStep { width:100%; border-radius:10px; overflow:hidden; box-shadow:0 5px 0 rgba(222,222,222,1); margin-bottom:30px; }

.billStep p { float:left; width:200px; height:60px; line-height:60px !important; border-right:1px solid #092558; background:#113d8e; color:#fff; font:110% pgovb; text-align:center;  }
.billStep ul { float:left; width:calc(100% - 200px); background:#eee; font-family:pgovb; font-size:115%; }
.billStep ul li { float:left; position:relative; width:25%; height:60px; line-height:60px; padding-right:10px; background:url(/bill/images/egovframework/com/board//billStep_arrow.png) no-repeat right 50%; text-align:center; display:inline-block; z-index:1; }
.billStep ul li:last-child { background:none; }
.billStep ul li.select { background:#6d98c7; color:#fff; z-index:5; }

.billStep ul li.select::before { content:''; position:absolute; left:-16px; top:0; width:20px; height:60px; background:url(/bill/images/egovframework/com/board//billStep_arrowLeft.gif) no-repeat left 50%; display:inline-block; z-index:3; }
.billStep ul li.select::after { content:''; position:absolute; right:0; top:0; width:20px; height:60px; background:url(/bill/images/egovframework/com/board//billStep_arrowRight.gif) no-repeat right 50%;  display:inline-block; z-index:2; }
.billStep ul li:last-child.select::after { right:-16px;  }

.billStep ul li span { position:relative; z-index:5;  }

@media (max-width:768px){
	.billStep p { width:100%; border-right:none; border-bottom:1px solid #092558; text-align:center;  }
	.billStep ul { width:100%; }
	.billStep ul li { font-size:85%; }
}

@media (max-width:425px){
	.billStep ul li { font-size:70%; letter-spacing:-1.5px; }
}




/* 코드 */
/*.contSize { width:100%; }*/

@media (max-width:1024px){
	.contSize { overflow:auto; }
	.categoryAdministration { width:1024px !important;  }
}







/* 의안보기 */

 #signatureCanvas {
    width: 100%;       /* 부모 영역 기준 100% */
    height: auto;      /* 비율 유지 */
    border: 1px solid #ccc;
    display: block;
	touch-action: none; /* 터치 스크롤 방지 */
  }
  #toast{
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 260px;
  max-width: 520px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  opacity: 0;
}

#toast.show{
  display: block;
  animation: toastIn .18s ease-out forwards;
}

#toast.hide{
  animation: toastOut .18s ease-in forwards;
}

@keyframes toastIn{
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes toastOut{
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* 타입별 색 */
#toast.success{ background: #2e7d32; } /* 성공 */
#toast.cancel { background: #616161; } /* 취소 */
#toast.error  { background: #c62828; } /* 오류 */

#toast .wrap{
  display: flex;
  align-items: center;
  gap: 10px;
}

#toast .icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  font-weight: 700;
  flex: 0 0 auto;
}

#toast .msg{
  word-break: keep-all;
}

#modal.m-hide{ display:none; }
#modal{ position:fixed; inset:0; z-index:10000; }
#modal .m-dim{ position:absolute; inset:0; background:rgba(0,0,0,.45); }
#modal .m-box{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:min(420px, calc(100vw - 40px));
  background:#fff;
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
  overflow:hidden;
}
#modal .m-head{ padding:14px 16px; border-bottom:1px solid #eee; }
#modal .m-title{ font-weight:700; font-size:15px; }
#modal .m-msg{ padding:16px; font-size:14px; line-height:1.5; color:#222; }
#modal .m-btns{ display:flex; gap:8px; justify-content:flex-end; padding:12px 16px; border-top:1px solid #eee; }
#modal .m-btn{
  padding:9px 14px; border-radius:10px; border:1px solid #ddd; background:#fff; cursor:pointer;
}
#modal .m-primary{ background:#222; color:#fff; border-color:#222; }

.auth_modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.auth_modal_dim{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.auth_modal_box{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  padding: 35px 30px 30px;
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
}

.auth_modal_box h3{
  margin: 0 0 15px;
  font-size: 200%; font-family:pgovb;
  color: #222;
}

.auth_modal_txt{
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.auth_input_area{
  margin-bottom: 20px;
}

.auth_input_area input{
  width: 100%;
  height: 50px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 8px;
  box-sizing: border-box;
}

.auth_btn_area{
  display: flex;
  gap: 10px;
}

.auth_btn_area a{
  flex: 1;
  display: inline-block;
  height: 48px;
  line-height: 48px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600; 
}

.auth_btn_area a.btn_auth_confirm { color:#fff; }


.btn_auth_confirm{
  background: #2f6fed;
  color: #fff;
}

.btn_auth_cancel{
  background: #f1f3f5;
  color: #333;
}

.auth_modal_close{
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}




/* 열람의원 문자발송내역 */
.BillSmsTargetResult { width:100%; }

.BillSmsTargetResult .txtbox { text-align:center; }
.BillSmsTargetResult .txtbox .txt1 { color:#113d8e; font:140% pgovb; text-decoration:underline; }

.BillSmsTargetResult .ulList { width:100%; padding:25px; border:1px solid #ddd; margin-bottom:30px; display:flex; flex-wrap:wrap; justify-content:center; gap:10px; }
.BillSmsTargetResult .ulList li { height:40px; line-height:40px; padding:0 15px; border-radius:3px; background:#0fa424; color:#fff; font-size:95%; text-align:center; transition:0.3s; display:inline-block; }

.BillSmsTargetResult .none { width:100%; height:150px; border:1px solid #ddd; background:#f4f4f4; display:flex; flex-wrap:nowrap; justify-content:center;  align-items:center; margin-bottom:30px; }


@media (max-width:768px){
	.BillSmsTargetResult .ulList { padding:16px; }
}



/* billSmsTargetViewPop */
.billSmsTargetViewPop { width:calc(100% - 40px); height:calc(100% - 40px); padding:25px 20px; border:1px solid #ddd; border-radius:20px; background:#fff; display:block; box-shadow:5px 5px 10px rgba(0,0,0,0.05), 3px 3px 5px rgba(0,0,0,0.1); text-align:center; margin:20px 0 0 20px; }
.billSmsTargetViewPop .pagetitle { margin-left:0; }
.billSmsTargetViewPop h1 { padding:0 15px 10px 15px; border-bottom:2px solid #113d8e; display:inline-block; }

@media (max-width:768px){
.billSmsTargetViewPop { padding:20px 15px; }
}




/* BillSmsTargetResult */ 
.BillSmsTargetResult { width:100%; padding:35px 25px; border:1px solid #ddd; border-radius:20px; background:#f9f9f9; }
.BillSmsTargetResult .ulList { border-radius:10px; background:#fff; box-shadow:5px 5px 10px rgba(0,0,0,0.05), 3px 3px 5px rgba(0,0,0,0.1); }  

@media (max-width:768px){
	.BillSmsTargetResult { padding:25px 15px; }
}

.addFile { overflow:visible; }
.aiSummaryBtn { position:relative; top:-2px; height:26px; line-height:24px; padding:0 10px; border:1px solid #ddd; border-radius:6px; background:#2c365a; color:#fff; font-size:75%; display:inline-block; margin-left:10px; }
.aiSummaryBox {
	display:none;
	margin:8px 0 10px 22px;
	padding:12px;
	border:1px solid #d8dee5;
	background:#f8fafc;
	line-height:1.65;
}
.aiSummaryBox.on { display:block; }
.aiSummaryBox strong {
	display:block;
	margin-bottom:4px;
}
.aiSummaryBox .keywords {
	margin-top:8px;
	color:#52606d;
}
@media (max-width:768px) {
	.aiSummaryBtn {
		display:inline-block;
		margin:6px 0 0 22px;
	}
	.aiSummaryBox {
		margin-left:0;
	}
}








