* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", sans-serif, Arial;
}
/************************************************************************
 * 파일명 :common.css
 * 설명 :공통 CSS
************************************************************************/
:root {
  --color-primary: #254d71;
  --color-blue: #254d71;
  --color-white: #fff;
  --color-menu: #00c2ff;
  --color-bg: #f3f4f8;
  --color-black: #000;
  --color-filter: #cad0d6;
  --color-grad: #cad0d6;
  --color-hov_bg: rgba(225, 255, 255, 0.2);
}

/* 기본설정 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
header,
footer,
aside,
nav,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
select,
button,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
textarea,
input {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
fieldset,
img {
  border: 0 none;
}
dl,
ul,
ol,
menu,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
}
img {
  -ms-interpolation-mode: bicubic !important;
  max-width: 100%;
  vertical-align: middle;
}

table,
th,
td {
  margin: 0;
  padding: 0;
  border-spacing: 0;
  border-collapse: collapse;
  box-sizing: border-box;
}
address,
caption,
cite,
code,
dfn,
em,
var {
  font-style: normal;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
legend,
caption {
  height: 0;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
}
input,
button {
  border-radius: 0;
  cursor: pointer;
  overflow: visible;
}
button,
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
select,
input,
textarea,
button {
  font-family: "Noto Sans KR", sans-serif;
}
.checkbox{
	margin-right: 4px;
	margin-left: 16px;
}
.md-radiobtn{
	margin-right: 4px;
	margin-left: 16px;
}

label {
  cursor: pointer;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
}
select {
  border-radius: 0;
}
select {
  -moz-appearance: none;
}
select::-ms-expand {
  display: none; /*숨겨진 화살표의 영역유지 X */
  display: hidden; /*숨겨진 화살표의 영역유지 O */
}
a {
  text-decoration: none;
  color: inherit;
}
/* a:hover {
  text-decoration: none;
  color: #fff;
} */
input {
  /*-webkit-appearance: none;*/
  -webkit-border-radius: 0;
}
input[type="text"]::-ms-clear {
  display: none;
}
.accordion-button {
	border-radius: 5px;

	}
.accordion-button:focus {
	border-color: #fff;
	box-shadow: none;
}
html {
  font-size: 16px;
  color: #666;
  -webkit-text-size-adjust: none;
  line-height: 1;
  letter-spacing: -0.025em;
  word-spacing: -0.025em;
  word-break: keep-all;
  font-family: "Noto Sans KR";
}

/* menu bar =============================*/
header {
  position: fixed;
  display: flex;
  width: 100%;
  z-index: 11;
  background: #254d71;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
#header {
  height: 60px;
  line-height: 57px;
  /* margin: 0 auto; */
  margin-left: 20px;
  width: 100%;
  min-width: 1400px;
  display: flex;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
}
#header > div.logo_area {
  /* position: absolute; */
  /* margin-left: 20px; */
  flex-shrink: 0;
  align-self: auto;
  float: left;
}
#header .logo_area h1 {
  font-size: 18px;
  color: white;
}
#header .menu_center {
  width: 100%; 
  height: 100%;
  margin: 0 auto;
  align-self: auto;
  
}
#header .menu_center .depth1 {
/*  width: 1140px;*/
  margin: 0 auto;
  display: -webkit-flex;
  padding:0 25px;
}
/* #header .menu_center .depth1 li:hover {
  border-bottom: 5px solid rgb(223, 230, 237);
} */

#header .menu_center .depth1 > li {
  height: 60px;
  color: var(--color-white);
  float: left;
  justify-content: space-between;
  position: relative;
  text-align: center;
}

#header .menu_center .depth1 > li:first-child {
  margin-left: 30px;
}

#header .menu_center .depth1 > li > a{
   padding: 0 35px;

}

#header .menu_center .depth1 > li:first-child > ul {
	border-radius: 0 0 0 10px;
}

#header .menu_center .depth1 > li:last-child > ul {
	border-radius: 0 0 10px 0;
}

#header .menu_center .depth1 > li:hover {
  background-color: var(--color-hov_bg);
  /* border-radius: 5px 5px 0 0; */
}
#header .menu_center .depth1 > li > ul > li a:hover {
  color: rgb(37, 77, 113);
  font-weight: bold;
}
#header .menu_center .depth1 .depth_wrap {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  height: 414px;
  margin: 0;
  background: var(--color-white);
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 10%);
}
#header .menu_center .depth1 li.selected {
  border-bottom-style: solid;
  border-bottom-color: #cde5f6;
  border-bottom-width: 5px;
}
/* menu _ sub center start */
.depth2 {
    position: relative;
    /* height: 660px; */
    margin-top: 3px;
    font-size: 12.5px;
    color: #666;
    background: rgba(231, 233, 240, 1);
    backdrop-filter: blur(20px);
    z-index: 10;
    text-align: center;
    border-right: 1px solid #ddd;
    display: none;
}
.depth2 > li {
  height: 32px;
  margin-top: 10px;
  padding-top: 10px;
  /* border: 1px solid red; */
}
.depth2 > li:first-child {
  margin-top: 0px;
}

.first:before {
  content: "";
  position: absolute;
  width: 2000px;
  height: 600px;
  background: #fff;
  left: -2000px;
  border-right: 1px solid #f8f8f8;
  box-shadow: 0 1px 3px rgba(0 0 0 / 10%), 0 1px 2px rgba(0 0 0 / 10%);
}
.last:before {
  content: "";
  position: absolute;
  width: 2000px;
  height: 600px;
  background: #fff;
  left: 153px;
  border-left: 1px solid #f8f8f8;
  box-shadow: 0 1px 3px rgba(0 0 0 / 10%), 0 1px 2px rgba(0 0 0 / 10%);
}

/* menu _ sub center end */
#header .icon_area {
  /* display: flex; */
  /* justify-content: flex-end; */
  /* float: right; */
  /* width: 10px; */
  color: var(--color-white);
  /* margin-top: -60px; */
  /* right: 0; */

}
#header .userNameDiv{
	padding: 0 3px;
}
#header .userNameDiv:hover{
	border-bottom-style: solid;
    border-bottom-color: #cde5f6;
    border-bottom-width: 5px;
    background-color: var(--color-hov_bg);
}
#header .icon_area ul li {
  float: left;
  width: 35px;
  height: 60px;
  font-size: 20px;
  text-align: center;
}
#header .icon_area ul li:hover {
  background: var(--color-hov_bg);
}

div .btnshape {
	-webkit-appearance: none;
    outline: none;
    cursor: pointer;
    font-family: "Noto Sans KR", sans-serif;
	overflow: visible;
}
div .btnshape p{
	line-height:40px;
	font-size:14px;
}

/* -- 추가 css -- */
.form-control:focus{
	border-color: #ced4da;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

}
textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px)
}

/* .form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
} */

.s_label{
	font-weight: 500;
	font-size: 14px;
	text-align: left;
	line-height: 38px;
	color: #000;
	width: min-content;
    min-width: max-content;
    margin-left: 8px;
    margin-right: 8px;
    background-color: transparent;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #9ca3af;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;

}
.form-select2{
	border:none;
}
.form-select:focus {
	border-color: none;
    box-shadow: none;
	}
/* .r-form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #ddd;
} */

.form-select:disabled {
  background-color: #e9ecef;
}

.content, .section_main_box{
  height: auto;
  min-height: 100%;
  padding-bottom: 35px;
}

footer{
  height: 35px;
  position : relative;
  /* transform : translateY(-100%); */
  margin-left: 239px;
}

.btnss :hover {
    background-color: #466d8f;
    transition: 0.2s;
    box-shadow: 2px 6px 10px 1px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
}

.icon_mg {
	margin-left: 8px;
/* 	color: #fff; */
}
.icon_mg2 {
	margin-left: 8px;
}
.icon_mgR {
	margin-right: 8px;
}

.abTypeicon_{
	margin:  0 4px 0 8px;
}

/* ================================== setting ================================== */
:root {
  --main-blue-color: #466d8f;
  --main-blue-sub-color: #7794ad;
  --btn-white-bg: rgb(247, 247, 247);
  --btn-white-line: #ddd;
  --btn-used: #00d9ff;
  --btn-unused: #ff8800;
}


/* ================================== table list btn start ================================== */
.btn_section {
  padding: 20px 0 10px 0;
}

.btn_new {
  width: 100px;
  height: 40px;
  border-radius: 5px;

  background-color: #254d71;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.btn_new:hover {
  background-color: #466d8f;
  transition: 0.2s;
  box-shadow: 2px 6px 10px 1px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
/* ================================== table list start ================================== */

.list_container {
  width: 100%;
  display: flex;
  padding: 20px;
  background: white
  /* justify-content: space-evenly; */
  
}

.list_left,
.hidden {
  width: 50%;
}

.list_left {
  padding-right: 10px;
}

.hidden {
  padding-left: 10px;
}
.list_code {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border-top: 1px solid #000;
  border-color: #ddd;
  /* margin: 20px; */
}

.list_code td {
  font-size: 14px;
  overflow: hidden;
  word-break: normal;
  border-bottom: 1px solid #ddd;
  /* padding: 10px; */
}

.list_code th {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
  word-break: normal;
  border-bottom: 1px solid #ddd;
  background: #f3f4f8;
  height: 60px;
  line-height: 60px;
  color: #000;
}

.list_code .tg-pb0m {
  border-color: inherit;
  text-align: center;
  vertical-align: bottom;
  height: 58px;
  line-height: 58px;
  font-weight: 400;
  color: #4b5563;
}

.list_code .tg-fll5 {
  border-color: inherit;
  font-weight: 500;
  text-align: center;
  vertical-align: bottom;
}

/* .list_code > tbody :hover {
  background: #dfe6ed;
} */

/* ======================= 테이블 호버 전체값 ======================= */
/* tbody :hover { */
/*   background: #dfe6ed; */
/* } */
/* ======================= 테이블 호버 전체값 ======================= */

.list_used {
    height: 25px;
    line-height: 25px;
    cursor: default;
  padding: 2px 5px;
  background-color: var(--btn-used);
  border-radius: 20%;
  color: white;
  font-weight: 600px;
}


/* .list_used:hover {
  background-color: var(--btn-used);
}

.list_unused:hover {
  background-color: var(--btn-unused);
} */

.list_unused {
	    height: 25px;
    line-height: 25px;
    cursor: default;
  padding: 2px 5px;
  background-color: #b5b5b5;
  border-radius: 20%;
  color: white;
  font-weight: 600px;
}

.list_code_btn:hover {
  background-color: var(--btn-white-bg);
}
.list_code_btn {
	    height: 25px;
    line-height: 25px;
    cursor: pointer;
  padding: 2px 5px;
  background-color: white;
  border: 1px solid var(--btn-white-line);
  border-radius: 20%; }
  
  .judger_inputDiv {
      display: flex;
    float: left;
    flex-direction: row;
    /* width: 15%;*/
    background-color: white;
    outline: 1px solid #cad0d6;
    border-radius: 5px;
    height: 38px;
    border: none;
  }
  
  .judgerhuman {
      position: relative;
    border: none;
    font-size: 14px;
    color: #9ca3af;
    background: none;
    font-weight: 400;
  }
  
  
 .judger_td {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.judger_date {
	      position: relative;
    border: 1px solid #cad0d6;
    border-radius: 5px;
    font-size: 14px;
    color: #9ca3af;
    background: none;
    font-weight: 400;
    padding: 10px 0 10px 10px;
    margin: 0 10px;
}

.reqDetail_checkbox {
	margin-left: 5px;
	margin-right: 5px;
}

.logoMngt_btn {
	    background-color: #254d71;
    color: #fff;
    border: 1px solid #254d71;
    font-size : 14px;
    width:100%;
    height:40px;
    border-radius:5px;
}

.logoMngt_btn:hover {
		    background-color: #fff;
    color: #254d71;
    border: 1px solid #254d71;
}


.logoMngt_title > i {
	margin-right:10px
}

.form-control:focus  {
outline: none;
	box-shadow: none;
}

/* .form-select:focus {
outline: none;
border:1px solid #ced4da;
	box-shadow: none;	
} */

input{
	outline: none;
    border:1px solid #ced4da;
	box-shadow: none;
}

select {
	color: #9ca3af;
	font-size: 14px !important;
	border-radius: 5px;
	height: 38px;
	border:none;
	outline: none;
    border:1px solid #ced4da;
	box-shadow: none;
}


.tableHover > tr:hover {
	background: #dfe6ed;
}
.checkgroup{
	display: flex;
	
}
.check{
	text-align: left;
	vertical-align: middle;
}

.hambar.hambar_close{
	cursor: pointer;
	padding-left: 20px;
	padding-top: 10px;
}
.hambar.hambar_open{
	cursor: pointer;
	padding-left: 10px;
	padding-top: 10px;
}
help_img{
	width: 100%;
	height: 100%;
	z-index: 999;
	position:fixed;
}

/* fa-circle-question */



/* //모달팝업을 감싸고 있는 최상위 부모 */
#h_modalWrap {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 70px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  display: none;
}

/* //모달 팝업창 */
#h_modalBody {
  width: 1220px;
  height: 680px;
  margin: 0 auto;
}

/* ============================================ */
.carousel-wrapper {
  width: 1220px;
  height: 662.5px;
  overflow: hidden;
   margin: 0 auto;
  border-radius: 20px;
}

.carousel {
  display: flex;
  transition: transform 0.2s;
  position: relative;
  height: 662.5px;
}

.carousel-wrapper > .carousel > img {
  width: 1220px;
  height: 662.5px;
  z-index: -1;
  object-fit: contain;
}
.prev_btn{
	float: left;
	width: 40px;
	height: 40px;
/*	background: rgba(255, 255, 255, 0.4);*/
	box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.25);
	border: none;
	
/* 	padding:0; */
    margin:-25% -6%;
    border-radius:100px;
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    font-size:1rem;
}
.next_btn{
	float: right;
	width: 40px;
	height: 40px;
/*	background: rgba(255, 255, 255, 0.4);*/
	box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.25);
    border: none;
    
/*     padding:0; */
    margin:-25% 102%;
    border-radius:100px;
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    font-size:1rem;
}
.popup_txt{
	padding: 5px 10px;
	text-align: center;
	position: absolute;
	top: 10%;
	left: 50%;
    transform: translate( -50%, -50% );
    font-weight: bold;
}

/* //닫기 버튼 */
.h_closeBtn { 
    background-color: transparent;
/*       line-height:0px; */
	width: 40px;
	height: 40px;
    border: none;
    border-radius:100px;
    position:relative;
    top: 85px;
    left: 1159px;
	
    transform:translateY(-50%);
    font-size:2rem;
    color:#797A7C;
    z-index: 10;
}