@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

/* ---------------------------------- */

html{
	box-sizing: border-box;
	font-family: "Noto Sans KR", sans-serif;
}

*,*::before, *::after{
	padding:0;
	margin:0;
	box-sizing: inherit;
}
:before {
    content: '';
}


body{
	height: 100vh;
	width: 100vw;
	font-size: 14px;
	color: #555555;
	overflow: auto;
}

a{
	text-decoration: none;
}

header{
	margin: auto; /* header의 양쪽 여백(margin)을 동등하게 맞춤 -> 수평가운데정렬 */
    display: flex;
    align-items: center; /* 하위 요소들 수직 가운데정렬 */
	width: 100%;
	min-width:1325px;
	height:67px;
	overflow: hidden;
	border-bottom : 1px solid #E0E0E0;
	box-shadow: -3px 0px 5px 0px rgb(0 0 0 / 20%);
    z-index: 99;
	user-select: none;
}

header .logo{
    width: 155px;
    height: 58px;
   	/* background-image: url(../../img/header_logo.png);
    background-repeat: no-repeat;
    background-size: contain; */
    float: left;
    margin: 0px 30px 0px 28px;
    display: flex;
    align-items: center;
}

header .logo img{
	width: 145px; 
	height: 60px;
	object-fit: contain;
}

header .menu_box{
	float:left;	
	width: calc(100% - 390px);
}

header .menu1{
	float: left;
	height: 67px;
    width: 84%;
}

.menu1 ul>li{
    display: inline-block;
    text-align: center;
    padding: 6px;
    margin : 11px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.menu1 ul>li:hover{
	border-bottom: 2px solid #555555;
}

.menu1 ul>li.select{
	border-bottom: 2px solid #4733b5;
	color: #4733b5;
}

header #jsanSub{
	position: absolute;
	top: 53px;
	left: 410px;
	font-size: 18px;
	background-color: #fff;
	box-shadow: 0px 7px 10px -1px #cfd4e1;
	display: none;
	z-index: 100;
	min-width: 120px;
}

header #jsanSub > li{
    padding: 7px 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

header #jsanSub > li:hover{
    background-color: #4733b5;
    color: white;
}

header .menu2{
	float: right;
	height: 67px;
    margin-right: 5px;
}

.menu2 ul{
	display: flex;
	justify-content: flex-end; /* 우측 정렬 */
	gap: 10px; /* 요소 사이 간격 */
}

.menu2 ul>li{
    display: flex;
  	align-items: center;  
    text-align: center;
    font-size: 16px;
    color: #999999;
    cursor: pointer;
    padding: 3px 10px;
}

.menu2 ul>li:hover{
	color: #555555;
}

header .right{
	width:178px;
	height:67px;
	background-color: #F7F7F7;
	border-left: 1px solid #E0E0E0;
	color: #999999;
}

header .right > .a1{
	width: 100px;
    text-align: center;
    margin: 13px 0px;
    float: left;
    overflow: hidden;
    word-break: break-word;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

header .right > .a2{
	width: 70px;
    float: left;
    text-align: center;
    margin: 22px 0px;
    cursor: pointer;
}

div.main{
    width: 100%;
    min-width: 1325px;
    height: calc(100% - 90px);
}

footer{
	margin: auto;
	padding: 0 8px 0 8px; /* 각각 위 오른쪽 아래 왼쪽 */
	display: flex;
	flex-direction: column; /* 요소들을 수평정렬 */
	font-size: 12px;
	width: 100%;
	min-width:1440px;
	height:23px;
	overflow: hidden;
	background: #F8F8F8;
	border-top: 1px solid #E0E0E0;
}

footer span{
	font-size: 10px;
	color: #999999;
}

dl, ul, ol, menu, li {
    list-style: none;
}

.link{
	cursor: pointer;	
}

select{
	border: 1px solid #E0E0E0;
	box-sizing: border-box;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 3px;
	outline: none;
	padding: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: url(../../img/arrow_down.png) no-repeat 90% 50%/10px auto #FFFFFF;
    padding: 3px 20px 3px 3px;
    cursor: pointer;
    text-overflow: ellipsis;
}
select::-ms-expand {display:none}

button{
	color: #555555;
	outline: none;
	cursor: pointer;
	display:inline-block;
	font-family: "Noto Sans KR", sans-serif;
}

button:disabled{
	background-color: #f6f6f6 !important;
	color: #aaaaaa !important;
}
button.white{
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	border-radius:4px;
	border:1px solid #dcdcdc;
	padding:3px 10px;
	text-decoration:none;
	/* text-shadow:0px 1px 0px #ffffff; */
	box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 15%);
	
}
button.white:hover:enabled{
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}
button.white:active:enabled{
	position:relative;
	top:1px;
}

button.black{
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background: linear-gradient(to bottom, #585858 5%, #000000 100%);
	background-color:#ffffff;
	border-radius:4px;
	border:1px solid #dcdcdc;
	padding:3px 10px;
	text-decoration:none;
	color: #ffffff;
	box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 15%);
}
button.black:hover:enabled{
	background:linear-gradient(to bottom, #000000 5%, #585858 100%);
}
button.black:active:enabled{
	position:relative;
	top:1px;
}

div.icon-24call{
	width:20px;
	height:20px;
	background-image: url('/img/24call_icon.jpg');
	background-size: 20px;
	background-repeat: no-repeat;
	float: left;
	margin-right: 3px;
}

div.icon-onecall{
	width:20px;
	height:20px;
	background-image: url('/img/onecall_icon.png');
	background-size: 20px;
	background-repeat: no-repeat;
	float: left;
	margin-right: 3px;
}
button.crimson{
	box-shadow:inset -1px -1px 2px 0px rgba(0,0,0,0.1),inset 1px 1px 2px 0px rgba(255,255,255,0.5),1px 1px 1px rgba(0,0,0,0.1) !important;
	background: linear-gradient(to right bottom, #ed213a 10%, #93281e 100%);
	background-color:#ffffff;
	border-radius:8px !important;
	border:1px solid #dcdcdc;
	padding:3px 10px;
	text-decoration:none;
	color: #ffffff;
	box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 15%);
	color:white !important;
	text-shadow:0 0 2px rgba(0,0,0,0.2),1px 1px 1px rgba(0,0,0,0.2);
}
button.crimson:hover:enabled{
	background: linear-gradient(to left top, #ed213a 10%, #93281e 100%);;
}
button.crimson:active:enabled{
	position:relative;
	top:1px;
}
button.aqua{
	box-shadow:inset -1px -1px 2px 0px rgba(0,0,0,0.1),inset 1px 1px 2px 0px rgba(255,255,255,0.5),1px 1px 1px rgba(0,0,0,0.1) !important;
	background: linear-gradient(to right bottom, #4124d9 10%, #23146e 100%);
	background-color:#ffffff;
	border-radius:8px !important;
	border:1px solid #dcdcdc;
	padding:3px 10px;
	text-decoration:none;
	color: #ffffff;
	box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 15%);
	color:white !important;
	text-shadow:0 0 2px rgba(0,0,0,0.2),1px 1px 1px rgba(0,0,0,0.2);
}
button.aqua:hover:enabled{
	background: linear-gradient(to right bottom, #23146e 10%, #4124d9 100%);
}
button.aqua:active:enabled{
	position:relative;
	top:1px;
}

button > i{
	margin-right: 3px;
}
.txt_blue{
	color: #1e62d0 !important;
}
.txt_green{
	color:#50A73F !important;
}
.txt_orange{
	color: #D3801D !important;
}
.txt_red{
	color: #EA0000 !important;
}

.ag-grid-div{
	width:100%;
	height: calc(100% - 30px);
}

.grid_footer{
	width: 100%;
	height: 30px;
	background-color: #f5f7f7;
}

.grid_footer .row_count{
	display: inline-block;
	font-size: 12px;
	padding: 5px;
}

.grid_footer .row_count span{
	background-color: #b3b3b3;
    color: white;
    border-radius: 14px;
    padding: 0px 6px 0px 4px;
    margin-left: 3px;
    text-align: left;
}

.ag-floating-filter-button {
    display: none;
}

.red-row{
	background-color: #ffbdbd;
}

.ag-theme-balham{
	font-size: 15px;
	font-family: "Noto Sans KR", sans-serif;
}
.ag-theme-balham .ag-row-selected{
	background-color: #e1ecff;
}
.ag-theme-balham .ag-tab-header{
	min-width: unset;
}
.ag-header-cell-label .ag-header-cell-text {
    text-overflow: clip !important;
}

.ag-theme-balham .ag-header-cell, .ag-theme-balham .ag-header-group-cell {
    border-style: solid;
    border-color: #BDC3C7;
    padding-left: 5px;
    padding-right: 5px;
    border-width: 0;
}
.ag-header-cell-label, .ag-header-group-cell-label {
   justify-content: center;
}
.ag-theme-balham .ag-cell {
	line-height: 30px;
}
.ag-theme-balham .ag-cell-inline-editing {
    height: 100%;
}
.grid-input-search-btn{
	color: #000;
	cursor: pointer;
	margin-left: 5px;
}

.ag-cell .grid_btn{
	padding: 0px 5px;
    margin-left: 3px;
    background: linear-gradient(to bottom, #ffd79e 5%, #fdcf8b 100%);
    border-radius: 4px;
    box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 15%);
    text-decoration: none;
    border: none;
}

.ag-cell .grid_btn.uncheck{
	background: linear-gradient(to bottom, #ff9595 5%, #f15c3a 100%);
}

.ag-cell .grid_btn.disable{
	background: #e4e4e4;
}

.dropdown {
	position:relative; 
	display:inline-block; 
	/* display:inline; 
	zoom:1; */
	}
.drop_box {
	border: 1px solid #E0E0E0;
    box-sizing: border-box;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 8%);
    border-radius: 3px;
    background: url(../../img/arrow_down.png) no-repeat 90% 50%/10px auto #FFFFFF;
    padding: 1px 23px 1px 7px;
    width: 85px;
    color: #555555;
    cursor: pointer;
    user-select : none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.drop_list {position:absolute; z-index:1; height:0; overflow:hidden; width:150px;}
.drop_list.on {height:auto; padding:2px 0; border:1px solid #ddd; background:#fff;}
.drop_list ul li:hover,
.drop_list ul li.on {background:#eee;}
.drop_list ul li label,.dropBox ul li a {display:block; padding:4px 10px;}
.drop_list ul li label input {margin-right:5px;}
.btn_save {    
	display: block;
    margin: 5px 10px;
    padding: 5px;
    text-align: center;
    background: #e6e6e6;
    color: #555555;
 }
.btn_close {display:block; height:0; overflow:hidden;}
.on .btn_close,
.on .btn_close_check {
    position:fixed;
    z-index:-1;
    left:0;
    top:0;
    width:100%;
    height:100%;
    cursor:default;
    text-indent:-99999px;
}


.paging-container{
	text-align: center;
	display: inline-block;
}

.paging-container > a:visited {
    text-decoration: none;
    color: black;
}

.paging-container > a:link {
    text-decoration: none;
    color: dimgray;
    padding: 0px 7px;
}
.paging-container > strong {
    color: #3f5afb;
}
.paging-container > a, strong {
    padding: 0px 7px;
}
.paging-container > span {
    font-size: 13px;
}
.paging-container > a.text{
	font-size:12px;
    padding: 0px 5px;
    font-weight: bold;
}

.expand_btn{
	margin-left: 10px;
	border: none !important;
	background : none;
}

.expand_btn.active{
	font-weight: bold;
}

.expand_btn>i{
	margin-left: 3px;
}

/* layer modal */
.layer_area{
	width: 100%;
	height: 100%;
	position: fixed;
	left:0px;
	top:0px;
	display: none;
	z-index: 101;
}

.layer_area > .modal_area{
	position: absolute;
	width: 700px;
	height: 700px;
    top: calc(50% - 350px);
    left: calc(50% - 350px);
    background-color: white;
    border: 1px solid #d5d5d5;
    box-shadow: 3px 0px 7px -2px #a7a7a7;
    user-select: none;
}

.modal_area > .modal_top{
	background-color: #e4e4e4;
    height: 35px;
}

.modal_area > .modal_top > span{
	padding: 0px 10px;
    line-height: 35px;
    font-size: 15px;
    font-weight: bold;
}

.modal_area > .modal_top > .close_btn{
	float: right;
    margin: 2px 7px;
    padding: 5px 5px;
    cursor: pointer;
    font-size: 20px;
}

.modal_area > .modal_content{
	width: 100%;
	height: calc(100% - 35px);
}

.modal_area > .modal_content > iframe{
	width:100%;
	height: 100%;
	border: none;
}
/* -------------- loading -------------- */

#loading{
	background-color: rgba(0,0,0,0.2);
	z-index: 2000;
	text-align: center;
}

.loader:before{
  content: "";
  position: absolute;
  top: 0px;
  left: -30px;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  -webkit-animation: loader10g 2s ease-in-out infinite;
      animation: loader10g 2s ease-in-out infinite;
}

.loader{
  position: relative;
  width: 20px;
  height: 20px;
  top: 46%;
  left: 46%;
  border-radius: 20px;
  -webkit-animation: loader10m 2s ease-in-out infinite;
      animation: loader10m 2s ease-in-out infinite;
}


.loader:after{
  content: "";
  position: absolute;
  top: 0px;
  left: 30px;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  -webkit-animation: loader10d 2s ease-in-out infinite;
      animation: loader10d 2s ease-in-out infinite;
}

@-webkit-keyframes loader10g{
  0%{background-color: rgba(255, 255, 255, .2);}
  25%{background-color: rgba(255, 255, 255, 1);}
  50%{background-color: rgba(255, 255, 255, .2);}
  75%{background-color: rgba(255, 255, 255, .2);}
  100%{background-color: rgba(255, 255, 255, .2);}
}
@keyframes loader10g{
  0%{background-color: rgba(255, 255, 255, .2);}
  25%{background-color: rgba(255, 255, 255, 1);}
  50%{background-color: rgba(255, 255, 255, .2);}
  75%{background-color: rgba(255, 255, 255, .2);}
  100%{background-color: rgba(255, 255, 255, .2);}
}

@-webkit-keyframes loader10m{
  0%{background-color: rgba(255, 255, 255, .2);}
  25%{background-color: rgba(255, 255, 255, .2);}
  50%{background-color: rgba(255, 255, 255, 1);}
  75%{background-color: rgba(255, 255, 255, .2);}
  100%{background-color: rgba(255, 255, 255, .2);}
}
@keyframes loader10m{
  0%{background-color: rgba(255, 255, 255, .2);}
  25%{background-color: rgba(255, 255, 255, .2);}
  50%{background-color: rgba(255, 255, 255, 1);}
  75%{background-color: rgba(255, 255, 255, .2);}
  100%{background-color: rgba(255, 255, 255, .2);}
}

@-webkit-keyframes loader10d{
  0%{background-color: rgba(255, 255, 255, .2);}
  25%{background-color: rgba(255, 255, 255, .2);}
  50%{background-color: rgba(255, 255, 255, .2);}
  75%{background-color: rgba(255, 255, 255, 1);}
  100%{background-color: rgba(255, 255, 255, .2);}
}
@keyframes loader10d{
  0%{background-color: rgba(255, 255, 255, .2);}
  25%{background-color: rgba(255, 255, 255, .2);}
  50%{background-color: rgba(255, 255, 255, .2);}
  75%{background-color: rgba(255, 255, 255, 1);}
  100%{background-color: rgba(255, 255, 255, .2);}
}


.wait_msg{
  position: relative;
  font-size: 25px;
  top: calc(50% - 50px);
  font-weight: bold;
  letter-spacing: 2px;
}
@keyframes anime_textup { 0% { top: 0; } 20% { top: -0.2rem; } 40% { top: 0 } 60% { top: 0 } 80% { top: 0 } 100% { top: 0 } }


.wait_msg span{
	position: relative;
	display: inline-block;
  	animation: anime_textup 1.5s infinite;
}

.wait_msg span:nth-child(1) { animation-delay: .1s; }
.wait_msg span:nth-child(2) { animation-delay: .2s; }
.wait_msg span:nth-child(3) { animation-delay: .3s; }
.wait_msg span:nth-child(4) { animation-delay: .4s; }
.wait_msg span:nth-child(5) { animation-delay: .5s; }
.wait_msg span:nth-child(6) { animation-delay: .6s; }
.wait_msg span:nth-child(7) { animation-delay: .7s; }
.wait_msg span:nth-child(8) { animation-delay: .8s; }
.wait_msg span:nth-child(9) { animation-delay: .9s; }
@keyframes bounce {
  100% {
    top: -10px;
  }
}
/* -------------- loader4 -------------- */

.loader4{
  position: relative;
  width: 200px;
  height: 30px;
  top: 45%;
  top: -webkit-calc(50% - 37px);
  top: calc(50% - 37px);
  left: 25%;
  left: -webkit-calc(50% - 100px);
  left: calc(50% - 100px);
  background-color: rgb(85 85 85);
}

.loader4:before{
  content: "";
  position: absolute;
  background-color: rgb(64 132 255 / 0.58);
  top: 0px;
  left: 0px;
  height: 30px;
  width: 0px;
  z-index: 0;
  opacity: 1;
  -webkit-transform-origin:  100% 0%;
      transform-origin:  100% 0% ;
  -webkit-animation: loader4 10s ease-in-out infinite;
      animation: loader4 10s ease-in-out infinite;
}

.loader4:after{
  content: "LOADING ...";
  color: #fff;
  font-family:  Lato,"Helvetica Neue" ;
  font-weight: 200;
  font-size: 16px;
  position: absolute;
  width: 100%;
  height: 30px;
  line-height: 30px;
  left: 0;
  top: 0;
}

@-webkit-keyframes loader4{
    0%{width: 0px;}
    70%{width: 100%; opacity: 1;}
    90%{opacity: 0; width: 100%;}
    100%{opacity: 0;width: 0px;}
}

@keyframes loader4{
    0%{width: 0px;}
    70%{width: 100%; opacity: 1;}
    90%{opacity: 0; width: 100%;}
    100%{opacity: 0;width: 0px;}
}


#progressLoading {
	background-color: rgba(0,0,0,0.2);
    z-index: 2000;
}
#progressLoading > progress{
    position: absolute;
    height: 50px;
    width: 40%;
    left: 30%;
    top: 45%;
}
#progressLoading .progress{
	height: 24px;
	width: 70%;
	position: absolute;
	top:40%;
	left:15%;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
}

#progressLoading .progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    background-color: #428bca;
    -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

div.noticeWindow{
	display: none;
	width: 530px;
    height: auto;
    background: #fff;
    border: 4px solid #5086e6;
    position: absolute;
    top: calc(35% - 200px);
    left: calc(50% - 265px);
    z-index: 1000;
}

.noticeWindow .close_btn{
	float: right;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.noticeWindow #notice-title-1{
	font-size:22px;
	font-weight: bold;
}

.noticeWindow #notice-title-2{
	font-size:18px;
	font-weight: bold;
	margin-top: 15px;
}

.noticeWindow #notice-message{
	resize: none;
    font-size: 15px;
    margin-top: 15px;
    border: 1px dashed #5086e6;
    padding: 5px;
    height: 330px;
    width: calc(100% - 15px);
    overflow: auto;
    letter-spacing: -0.05em;
    outline: none;
    font-family: "Noto Sans KR", sans-serif;
}

span.bold{
	font-weight: bold;
}

.setting_box .excel_btn{
	position: relative;
	padding-left: 24px;
}

.setting_box .excel_btn:before{
	display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url(../../img/excel-mini.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 10px;
    top: 7px;
}

.grid_custom > .grid_edit{
	display: inline-block;
	position: relative;
	border:1px solid #dcdcdc;
    height: 26px;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 5px 0px 22px;
    cursor: pointer;
}

.grid_custom > .grid_edit > .func_box,
.grid_custom > .gridEdit > .func_box{
	display: none;
    position: absolute;
    left: -70px;
    top: 24px;
    width: 201px;
    border: 1px solid #535353;
    background-color: #fff;
    z-index: 100;
    border-radius: 3px;
    height: 42px;
    line-height: 40px;
}

.grid_custom > .grid_edit.unlock:hover > .func_box,
.grid_custom > .gridEdit.unlock:hover > .func_box{
	display: block;
}

.grid_custom > .grid_edit > .func_box > button,
.grid_custom > .gridEdit > .func_box > button{
	margin: 2px 8px;
    font-size: 15px;
    font-weight: bold;
}

.grid_custom > .grid_edit > .func_box > button:hover,
.grid_custom > .gridEdit > .func_box > button:hover{
	color: #0089f7;	
}

.grid_custom > .grid_edit > .func_box > input[type=checkbox],
.grid_custom > .gridEdit > .func_box > input[type=checkbox]{
	vertical-align: middle;
    width: 12px;
}

.grid_custom > .grid_edit > .func_box > label,
.grid_custom > .gridEdit > .func_box > label{
	font-weight: normal;
    font-size: 14px;
    color: #555555;
    margin-left: -1px;
}

.grid_custom > .grid_edit.lock{
	background-image : url(../../img/lock_icon.png);
	background-size: 17px;
	background-repeat: no-repeat;
	background-position: 4px;
	background-color: #fff;
    color: #6D727B;
}

.grid_custom > .grid_edit.unlock{
	background-image : url(../../img/lock_open_icon.png);
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: 4px;
	background-color: #fff;
	border:1px solid #dcdcdc;
    color: #0089f7;
}

.grid_custom > .grid_zoomin{
	width: 24px;
	height: 24px;
	background-image: url(../../img/zoom_in_icon.png), linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-size: 20px;
	background-repeat: no-repeat, no-repeat;
	background-position: center, center;
	border-radius:4px;
	border:1px solid #dcdcdc;
	box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 15%);
}

.grid_custom > .grid_zoomout{
	width: 24px;
	height: 24px;
	background-image: url(../../img/zoom_out_icon.png), linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-size: 20px;
	background-repeat: no-repeat, no-repeat;
	background-position: center, center;
	border-radius:4px;
	border:1px solid #dcdcdc;
	box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 15%);
}
.grid_custom > .grid_zoomin:hover{
	background-image:url(../../img/zoom_in_icon.png), linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}
.grid_custom > .grid_zoomout:hover{
	background-image:url(../../img/zoom_out_icon.png), linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}

.autocomplete-suggestions {
    text-align: left; cursor: default; border: 1px solid #ccc; border-top: 0; background: #fff; box-shadow: -1px 1px 3px rgba(0,0,0,.1);

    /* core styles should not be changed */
    position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333; }
.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
.autocomplete-suggestion.selected { background: #f0f0f0; }

span.key_show{
	font-size: 13px;
	margin-left: 1px;
}


ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    background-color: #cfd5dd;
    padding-top: 3px;
}

ul.tabs li {
    background: none;
    color: #383838;
    font-weight: bold;
    display: inline-block;
    padding: 6px 15px 7px 15px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    position: relative;
    user-select: none;
}

ul.tabs li.current {
    border-top: 3px solid #4c4c4c;
    border-left: 1px solid #4c4c4c;
    border-right: 1px solid #4c4c4c;
    color: black;
    font-weight: bold;
    background: #fff;
}

.list_area .tab_content{
	display: none;
}

.switch{
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
}
.switch > label{
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	cursor: pointer;
}
.switch > label > span{
	font-size: 13px;
	font-weight: 500;
	letter-spacing : -0.7px;
}
.switch [type="checkbox"][role="switch"] {
  appearance: none;
  position: relative;
  border: max(2px, 0.1em) solid gray;
  border-radius: 1.25em;
  width: 2.25em;
  height: 1.25em;
  cursor: pointer;
}

.switch [type="checkbox"][role="switch"]::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  transform: scale(0.8);
  background-color: gray;
  transition: left 150ms linear;
}

.switch [type="checkbox"][role="switch"]:checked {
  background-color: #4733b5;
  border-color: #4733b5;
}

.switch [type="checkbox"][role="switch"]:checked::before {
  background-color: white;
  left: 1em;
}

.switch [type="checkbox"][role="switch"]:disabled {
  border-color: lightgray;
  opacity: 0.7;
  cursor: not-allowed;
}

.switch [type="checkbox"][role="switch"]:disabled:before {
  background-color: lightgray;
}

.switch [type="checkbox"][role="switch"]:disabled + span {
  opacity: 0.7;
  cursor: not-allowed;
}

.switch [type="checkbox"][role="switch"]:focus-visible {
  outline-offset: max(2px, 0.1em);
  outline: max(2px, 0.1em) solid tomato;
}

.switch [type="checkbox"][role="switch"]:enabled:hover {
  box-shadow: 0 0 0 max(2px, 0.2em) lightgray;
}

.desc_container{
	position: relative;
}

.desc_text{
	font-family: "Noto Sans KR", sans-serif;
	visibility:hidden;
	position: absolute;
	left : 0px;
    z-index: 999;
    background: #fff;
    border: 1px solid #bbb;
    padding: 3px;
    opacity: 0;
    transition:all 0.5s;
    line-height: 1.3em;
}

.desc_container i:hover .desc_text {
  	visibility:visible;
    opacity: 1;
}

i.smsIcon{
	font-size: 14px !important;
    font-weight: bold;
    margin-right: 3px !important;
}


@media screen and (max-width: 1600px){
	header .menu1{
		width: 80%;
	}
	.menu1 ul>li{
		font-size: 1.1em;
		margin: 11px 7px;
	}
	
	header #jsanSub{
		left: 345px;
		font-size: 16px;
	}
		
}


@media screen and (max-width: 1379px){
	header .menu1{
		width: 80%;
	}
	.menu1 ul>li{
		font-size: 14px;
		margin: 11px 5px;
	}
	
	.menu2 ul>li{
		font-size: 1em;
	}
	
	header #jsanSub{
		left: 330px;
		font-size: 14px;
	}
}
.ap-not-joined{
  font-weight: 500;
  font-size: 14px !important;
  line-height: 28px;
  flex-direction: column;
  justify-content: center;
}

.ap-not-joined > button{
	background-color: #FFCE0B;
    border: none;
    padding: 3px;
    font-weight: bold;
    width: 100%;
}

.ap-joined{
	position: relative;
  font-weight: 500;
  color: #1986dc !important;
  font-size: 14px !important;
  line-height: 20px;
  flex-direction: column;
  justify-content: center;
}

@keyframes flashBackground {
  0%   { background-color: #fff4d6; }
  50%  { background-color: #ffe08a; }
  100% { background-color: #fff4d6; }
}

.notification-bubble {
	position: absolute;
    top: 15px;
    right: 105px;
    color: #333;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    animation: flashBackground 1.7s ease-in-out infinite;
}

/* 뱃지 "N" */
.notification-bubble .badge {
	background-color: #ff5e5e;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}