@charset "UTF-8";

html,body{
	height: 100%;
}
* {
	box-sizing: border-box;
	word-break: keep-all;
    overflow-wrap: anywhere;
    hyphens: auto;
    
}

body{ /*todo
	min-width: 1200px;
	min-height: 700px;
	overflow: auto*/
    background: #f7f7f7;
}
.link_a{
	color: #2962ff;
	cursor: pointer;
}
.underline{
	text-decoration: underline;
}
.link_a:hover{
	text-decoration: underline;
}
.ws{
	white-space: nowrap;
}
.ul_c{
    list-style: disc;
    padding: 0 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.txt_center{
	text-align: center!important
}
.txt_right{
	text-align: right
}
/*etc*/
.mr10{margin-right: 10px!important}.ml5{margin-left: 5px!important}.mr5{margin-right:5px!important}.w100{width: 100%!important}.mt0{margin-top:0!important}.mt20{margin-top: 20px}
.mb10{
	margin-bottom: 10px!important
}
.mb20{
	margin-bottom: 20px!important
}
.bordertop{
	border-top: 1px solid #ededed;
}
.wauto{
	width: auto!important
}
.mt10{
	margin-top: 10px
}
.wsn{white-space: nowrap;}
button[disabled] { 
    background: #E0E4E8!important;
    color: #BDBDBD!important;
    border: 1px solid #ccc!important;
    cursor: not-allowed;
}
input[readonly],
input[disabled],
select[disabled],
textarea[disabled] { 
    background: #f0f0f0!important;
    color: #BDBDBD!important;
}
input::placeholder{ 
	color: #ccc 
}
input[disabled]::placeholder,
textarea[disabled]::placeholder { 
    color: #ababab 
}
input,
textarea,
select{ 
    outline: none;
}
.t_cmm_style input:focus,
.t_cmm_style textarea:focus,
.t_cmm_style select:focus{
    border: 1px solid #222
}
input.s_item_input{
	background: #fff!important;
	color: #222222!important
}
select[multiple]{
	visibility: hidden;
}
button{
	cursor: pointer;
}
.infos{
	color: #999999;
	font-size: 12px;
	padding-top: 3px 
}
.err_color{
	color: red
}

label.error{
	color: red;
	font-size: 12px;
	padding-top: 3px;
	display: block 
}

.flex_sh{
	flex-shrink: 0
}
.line_gray{
	background: #ededed;
	height: 1px;
	margin: 20px 0;
}
.line_gray_h{
	background: #ededed;
	height: 100%;
	margin: 0 20px;
	width: 1px;
}

.req_txt{
	color: red;
	display: inline-block;
	margin-left: 2px
}

/*check button*/
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"] + label{
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
input[type="checkbox"]:checked + label:before{
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-image: url(/resources/images_va/ic_check_on.svg);
    background-position: center center;
    flex-shrink: 0;
    background-size: 100%;
    position: relative;
    z-index: 1;
}
input[type="checkbox"] + label:before{
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-image: url(/resources/images_va/ic_check_off.svg);
    background-position: center center;
    flex-shrink: 0;
    background-size: 100%;
    position: relative;
    z-index: 1;
}

.relative{
	position: relative;
}

.icon{
	margin-right: 3px
}
.icon:before{
	content: '';
	display: inline-block;
	width: 11px;
	height: 11px;
	margin-right: 4.5px;
}
.icon.down:before{
	background-repeat: no-repeat;
	background-image : url('/resources/images_va/ic_download.svg');
	background-position: center center;
}
.loading{
	position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 9999;
    justify-content: center;
    align-items: center; 
}
.loading:after{
	display: inline-block;
	content: '';
	background-repeat: no-repeat;
    background-image: url(/resources/images_va/gadget_logo_white.png);
    width: 116px;
    height: 28px; 
}
.loading.off{
	display: none; 
	opacity: 0;
}
.loading.on{
	display: flex;
}

/*input select*/
input:disabled,input[disabled],input[readonly],select:disabled,select[disabled],textarea:disabled,textarea[disabled]{
	color: #999 !important;
	-webkit-text-fill-color: #999 !important;
	opacity: 1 !important;
}
input:not([type]),input[type=text],select,input[type=date],input[type=password],input[type=month],input[type=tel],input[type=email],input[type=number]{
	border: 1px solid #D7D7D7;
	background: #fff;
	height: 32px;
	border-radius: 6px;
	padding: 0 12px;
	min-width: 120px;
	font-size: 13px;
	color: #222;
}
select:hover{
	border-color: #5F6BF3;
}
select{
	accent-color: #5F6BF3;
}
/* select 우측 chevron 을 박스 우측 경계에서 8px 안쪽으로 띄움.
   네이티브 chevron 은 padding 으로 이동시킬 수 없으므로 appearance:none + 커스텀 SVG chevron 사용.
   chevron 영역(약 14px) 확보 + 8px 우측 여백 = padding-right 22px. */
select{
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1.5 L6 6.5 L11 1.5' fill='none' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 8px center !important;
	background-size: 10px 7px !important;
	padding-right: 24px !important;
}
select::-ms-expand{ display: none; }
textarea{
	border: 1px solid #D7D7D7;
	background: #fff;
	min-height: 50px; 
	border-radius: 4px; 
	padding: 10px;
	min-width: 150px;
	resize: none;
}
.nopadding{
	padding: 0!important
}
.nomargin{
	margin: 0!important
}
.sticky{
	position: sticky!important;
	left: 0;
}

/*popup*/
.popup_def{
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    visibility: visible;
    /*transition: opacity 0.5s, visibility 0.5s;*/
    display: flex;
    align-items: center;
    justify-content: center;
   	display: flex;
    flex-direction: column;
    /*margin: auto;*/
}
.popup_def .overy{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: rgba(0,0,0,0.5);
	opacity: 0.5;
}

.popup_def .cnt{
	background: #fff;
	padding: 10px 20px 20px 20px;
	height: 100%; 
	overflow-y: auto;
    overflow-x: hidden;
    max-height: 70vh
}
.popup_def .cnt.smpadding{
    padding: 0 10px 10px 10px;
}

.popup_def .alert_cnt{
	padding-bottom: 25px
}
.popup_def .cnt .label_{
    display: flex;
    align-items: left;
    flex-direction: column;
    gap: 5px
}
.popup_def .cnt .label_ .item{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 5px;
}
.popup_def .cnt .label_ .item .f_label{
    width: 50px;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.popup_def .title{
	font-size: 16px;
    font-weight: 500;
    background: #fff;
    width: 100%;
    padding: 10px 10px 10px 36px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.f_del{
	color: #666666;
    vertical-align: middle;
    display: inline-block;
    background: #e5e5e5;
    width: 15px;
    height: 15px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
    text-indent: -100px;
    background-repeat: no-repeat;
	background-image : url('/resources/images_va/close.svg');
	background-position: center center;
	background-size: 6px;
}
.popup_def .title span{
    width: 100%;
    display: block;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
[w-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
[w-hidden-real="true"] {
  display: none!important;
  pointer-events: none;
}
.popup_def .title .popup_def_close{
	width: 28px;
	height: 28px;
	background-repeat: no-repeat;
	background-image : url('/resources/images_va/close.svg');
	background-position: center center;
	display: inline-block;
	cursor: pointer;
}
.popup_def .wrap{
	min-width: 200px;
	border-radius: 10px;
	overflow: hidden;
    box-shadow: 3px 4px 5px rgba(0,0,0,0.2);
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    position: relative;
}
.popup_btn_area{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.popup_btn_area.btn_center_type{
	padding: 20px 0;
    border-top: 1px solid #ededed;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.popup_btn_area.btn_center_type button{
	width: auto;
	min-width: 100px
}
.popup_btn_area .btn{
	width: 100%;
	border-radius: 0
}
.popup_btn_area.btn_center_type .btn{
	border-radius: 4px;
}

/*scroll*/

::-webkit-scrollbar {
  width: 6px;
  height: 12px
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  background-clip: padding-box;
  cursor: pointer;
}
::-webkit-scrollbar-thumb:hover{
	background-color: rgba(0,0,0,0.3);
}
::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0.01);
}
::-webkit-scrollbar-track:horizontal{
	margin-top: 2px
}

.scroll_custom{
	position: relative;
}

.scroll_custom::-webkit-scrollbar {
  width: 7px;
}
.scroll_custom::-webkit-scrollbar-thumb {
  background-color: #666;
  background-clip: padding-box;
  border-right: 3px solid transparent;
}
.scroll_custom::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0.05);
  margin: 5px 0;
}

.scroll_custom_w::-webkit-scrollbar {
  width: 7px;
}
.scroll_custom_w::-webkit-scrollbar-thumb {
  background-color: #666;
  background-clip: padding-box;
  border-right: 3px solid #fff;
}
.scroll_custom_w::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0.05);
  margin: 5px 0;
  border-right: 3px solid #fff;
}


/*grid*/
.valid_flex{
	display: flex;
    flex-direction: column;
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}
.valid_txt{
    font-size: 12px!important;
    color: white;
    margin-top: 2px;
    position: absolute;
    z-index: 3;
    right: 0;
    top: -17px;
    background: #000000;
    border-radius: 2px;
    padding: 2px 10px;
    display: none
}
.valid_flex .valid_txt{
	position: relative;
	top: auto;
	bottom: -12px; 
	margin-top: -12px
}
.t_black thead tr:first-child th{
	border-top: 1px solid #2A338E;
}
.t_black th{
	border-bottom: 1px solid #d7d7d7;
	background: #F4F7FF;
}
.t_black tfoot th{
	background: #737373;
	color: #fff;
	font-weight: 400!important
}
.t_black.t_th_table th{
	border-top: none;
	border-left: 1px solid #d7d7d7;
}
.t_black td{
	border-bottom: 1px solid #d7d7d7;
	border-left: 1px solid #d7d7d7;
}
/* 테이블 첫 컬럼(th/td) 좌측 라인 제거 — 테이블 좌측 경계와 중복되어 보여 정리.
   thead 의 첫 row 만 대상으로 한정 — nested header row (rowspan/colspan 으로 만들어진 2~3행)
   의 첫 셀에는 적용되면 안 됨 (그 셀이 테이블 좌측 가장자리가 아닐 수 있음). */
.t_black thead tr:first-child > th:first-child,
.t_black tbody tr > td:first-child,
.t_black tbody tr > th:first-child{
	border-left: none;
}
.t_border_leftnone{
	border-left: none!important
}

.t_black tr.selected{
	background: #E9F0F8!important
}

.t_blue th{
	border-top: 2px solid #1a73e8;
	border-bottom: 1px solid #1a73e8;
	background: #e6f1ff;
}
.t_blue td{
	border-bottom: 1px solid #1a73e8;
	border-left: 1px solid #b8d7ff;
}
.t_blue tr td:first-child{
	border-left: none
}

.t_blue tr.selected{
	background: #fffbcf!important
}
.JCLRgrips{
	/*
    position: sticky!important;
    z-index: 3;
    left: 0;
    top: 0;
    */
    flex-basis: fit-content;
}
.JCLRgrip.JCLRLastGrip{
}
.t_cmm_style.JCLRFlex{
	/*
	width: 100%!important
	*/
}
.t_fix_wrap,
.t_r_wrap{
	height: 100%
}
.t_fix_wrap{
    position: sticky;
    left: 0;
    background: #f8f8f8;
    z-index: 4;
}
.t_txt_wrap{
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 9px;
    padding-left: 7px;
}
.t_txt_wrap input{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto!important;
    border-radius: 0!important;
    background: #fff!important;
    padding-right: 35px!important;
    z-index: 1
}
.t_grid_wraps th.noeditpd .t_txt_wrap,
.t_grid_wraps td.noeditpd .t_txt_wrap{
	padding-right: 7px
}
.t_grid_wraps th.editpd .t_txt_wrap,
.t_grid_wraps td.editpd .t_txt_wrap{
	padding-right: 25px
}
.t_grid_wraps *, .t_table_top, .t_search_area{
	box-sizing: border-box;
	font-size: 13px;
	font-family: 'Spoqa Han Sans Neo','Sans-serif';
}
.t_grid_wraps{
	position: relative;
	min-height: 200px;
	overflow: auto;
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-wrap: nowrap;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	transition: max-height 0.5s;
}
.t_grid_wraps td:focus{
	outline: 1px dashed #000;
	outline-offset: -1px;
}
.t_grid_wraps.t_grid_normal{
	border-bottom: none;
	min-height: 100px;
	overflow-y: hidden;
	overflow-x: auto
}
.t_grid_wraps.t_grid_normal tbody tr th:first-child,
.t_grid_wraps.t_grid_normal tbody tr td:first-child{
	border-left: none
}
.t_grid_wraps.t_grid_normal table{
	table-layout: auto;
}
.t_grid_wraps.t_grid_normal th,
.t_grid_wraps.t_grid_normal td{
	white-space: nowrap;
}
.grid_wrap_flex{
	display: flex;
    align-items: flex-start;
}
.grid_wrap_flex_prat1{
    display: flex;
    position: relative;
    align-items: center;
    align-self: center;
    margin: 0 20px;
    width: 1px;
    height: 100px!important;
}
.grid_wrap_flex_prat_item{
	width: calc(50% - 20px);
}
.grid_wrap_flex_hline{
	height: 100%;
    width: 2px;
    position: absolute;
    left: 50%;
    background: #e5e5e5;
    border-radius: 2px;
}
.grid_wrap_flex_prat1:after{
	background-repeat: no-repeat; 
	background-image : url('/resources/images_va/ic_right_arr_s.svg');
	background-position: center center;
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	position: relative;
	display: none;
}
.t_cmm_style input[type=text],
.t_cmm_style input[type=date],
.t_cmm_style select{
	width: 100%;
	min-width: auto
}
.t_grid_wraps{
	background: transparent;
	position: relative;
}
.t_grid_wraps thead{
	position: sticky;
	top: 0;
	z-index: 3
}
.t_grid_wraps th.req:before{
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-bottom: 7px solid transparent;
    border-top: 0 solid transparent;
    border-left: 7px solid red;
    border-right: 7px solid transparent;
}
.t_cmm_style{
	border-collapse: separate;
	background: #fff;
	table-layout: fixed;
	height: 100%
}
.t_cmm_style th{
	font-weight: 700;
	padding: 9px 7px!important;
}
.t_cmm_style th,
.t_cmm_style td{
	/*padding: 10px 20px 10px 20px;*/
	padding: 5px 7px; 
	position: relative;
	height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.t_cmm_style td input[type=text],
.t_cmm_style td input[type=date],
.t_cmm_style td select,
.t_cmm_style td button{
	height: 28px;
	padding: 4px 10px 3px 10px!important
}
.t_cmm_style td select:focus{
	background-color: #fff
}
.t_cmm_style td select{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border: none;
    border-radius: 0;
    background-color: transparent;
}
.filelist_in_s{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
}
.filelist_in_s span{
	color: #aaa;
}
.filelist_in_s div{
	overflow: hidden;
	text-overflow: ellipsis;
}
.t_oinput{
	border: 1px solid #cccccc;
	padding: 8px 10px 10px 10px;
	width: 100%;
	height: 100%;
}
.t_oinput._input_textarea{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0!important;
    background: #fff;
    height: 80px;
    z-index: 2;
    resize: vertical;
}
.t_grid_edits._input_textarea,
.t_grid_edits._input_textarea .t_txt_wrap.textarea_on{
	overflow: visible;
}
.t_page_area{
	text-align: left;
	margin-top: 12px
}
.t_page_btn{
    display: inline-block;
    margin: 0 3px; /*4*/
    text-decoration: none;
    color: #666;
    width: 25px; /*32*/
    height: 25px;
    background: #fff;
    border: 1px solid #d7d7d7;
    text-align: center;
    padding-top: 2px;/*5*/
    font-size: 12px; /*13*/
    border-radius: 4px;
    overflow: hidden
}
.t_c_add_btn .btn{
	margin-right: 3px
}
.t_page_btn.next{
	text-indent: -1000px;
	background-repeat: no-repeat; 
	background-image : url('/resources/images_va/arr_r.svg');
	background-position: center center;
}
.t_page_btn.end{
	text-indent: -1000px;
	background-repeat: no-repeat; 
	background-image : url('/resources/images_va/arr_rr.svg');
	background-position: center center;
}
.t_page_btn.prev{
	text-indent: -1000px;
	background-repeat: no-repeat; 
	background-image : url('/resources/images_va/arr_r.svg');
	background-position: center center;
	transform: rotate( 180deg );
}
.t_page_btn.start{
	text-indent: -1000px;
	background-repeat: no-repeat; 
	background-image : url('/resources/images_va/arr_rr.svg');
	background-position: center center;
	transform: rotate( 180deg );
}
.t_now_cur{
	background: #222;
	color: #fff; 
}

.t_row_hover:hover{
	background: #f6f6f6
}
.gird_rows.save_dt{
	background: #fff4f4
}
.gird_rows.disabled{
    background: #efefef;
    color: #c3c3c3;
}
.td_sticky{
	position: sticky!important;
	left: 0;
	z-index: 1;
	background: #f7f7f7
}
.t_cmm_style.t_cmm_style_1{
	position: sticky;
    left: 0;
    background: #f8f8f8;
    z-index: 4;
    width: auto;
    border-right: 1px solid #cdcdcd;
}
.t_grid_edits{
	position: relative;
	padding-right: 40px!important;
}
.t_grid_edits::after{
	content: '';
	width: 15px;
	height: 15px;
	display: inline-block;
	position: absolute;
	right: 10px;
  		top: calc(50% - 10px);
  		opacity: 0.3;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M441 58.9L453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2L344 121.9 390.1 168 255.8 302.2c-2.9 2.9-6.5 5-10.4 6.1l-58.5 16.7 16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25L175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25C446.8-3.1 401.2-3.1 373.1 25zM88 64C39.4 64 0 103.4 0 152V424c0 48.6 39.4 88 88 88H360c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24V424c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40H200c13.3 0 24-10.7 24-24s-10.7-24-24-24H88z"/></svg>');
}
.t_grid_edits._file::after{
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 384 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z"/></svg>');
    background-size: 100% 100%;
}
.t_grid_out_wrap{
	position: relative;
}
.t_loading_grid{
	position: absolute;
    top: 0;
	background: rgba(255,255,255,0.5);
	width: 100%;
	height: 100%;
	margin-bottom: -100%;
	z-index: 5;
	display: flex;
    justify-content: center;
    align-items: center;
}
.t_loading_grid.off{
	display: none;
	opacity: 0;
}
.t_loading_grid.on{
	display: flex;
}
.t_loading_grid::after{
	display: inline-block;
	content: '';
	width: 20px;
	height: 20px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z"/></svg>');
	-webkit-animation:spin 1500ms infinite linear;
	-moz-animation:spin 1500ms infinite linear;
	-ms-animation:spin 1500ms infinite linear;
	animation:spin 1500ms infinite linear;
}
.t_table_top{
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 0 12px 0;
}
.t_count_list{
	padding: 3px 5px
}
.t_count{
	font-size: 16px
}
.t_count_in{
	font-weight: 700;
	color: #5F6BF3
}
.t_sort{
	position: absolute;
	right: 5px;
	top: calc(50% - 6.35px);
	width: 8px;
	height: 12.7px;
	cursor: pointer;
	opacity: 0.3;
	background-repeat: no-repeat;
	background-position: center center;			
}
.t_sort.on{
	opacity: 1
}
.t_sort.asc{
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z"/></svg>');
}
.t_sort.desc{
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z"/></svg>');
}
.t_nodata{
	border-top: 2px solid #222;
    background: #f7f7f7;
    border-bottom: 0!important;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t_nodata_td{
    background: #f7f7f7;
    border-bottom: 0!important
}
.t_g_save{
	overflow: hidden; 
  		text-indent: -100px;
	position: absolute;
	right: 5px;
	top: calc(50% - 10px);
  		left: calc(50% - 10px);
	width: 20px;
	height: 20px;
	cursor: pointer;
	opacity: 0.3;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M48 96V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V170.5c0-4.2-1.7-8.3-4.7-11.3l33.9-33.9c12 12 18.7 28.3 18.7 45.3V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H309.5c17 0 33.3 6.7 45.3 18.7l74.5 74.5-33.9 33.9L320.8 84.7c-.3-.3-.5-.5-.8-.8V184c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24V80H64c-8.8 0-16 7.2-16 16zm80-16v80H272V80H128zm32 240a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z"/></svg>');
}
.t_g_save.on{
	opacity: 1;
}
.t_table_bottom{
	float: right;
	margin-top: 12px;
	margin-bottom: 12px;
}
.clear{
	content: '';
	height: 1px;
	display: block;
	clear: both
}
.t_table_bottom button{
	margin-left: 0
}
.t_new_row{
	background: #fffbde!important
}
.t_row_click{
	cursor: pointer;
}
.t_cmm_style input[type="checkbox"] + label{
	justify-content: center; 
}
.t_cmm_style input[type="checkbox"]:checked + label:before,
.t_cmm_style input[type="checkbox"] + label:before{
	width: 18px;
	height: 18px;
}
input[type="checkbox"]:disabled + label:before{
	background-color: #dadada;
    background-image: none;
    border-radius: 2px;
}
/*grid end*/

/*btn*/
.btn{
	display: inline-block;
	border-radius: 4px;
	padding: 5px 26px;
	cursor: pointer;
	white-space: nowrap;
	height: 32px;
	overflow: hidden;
}

.btn_2{
	display: inline-block;
	border-radius: 4px;
	padding: 5px 10px!important;
	cursor: pointer;
	height: 32px;
	overflow: hidden; 
}
.btn.black,
.btn_2.black{
	color: #fff;
	background: #000;
	border: 1px solid #000 
}
.btn.gray,
.btn_2.gray{
	color: #4D5256;
	background: #F4F5F6;
	border: 1px solid #e3e3e3
}
.btn_2.gray3{
    color: #fff;
    background: #8b8b8b;
    border: 1px solid #777777;
}
.btn.gray2{
	color: #4D5256;
	background: #F4F5F6;
	border: 1px solid #e3e3e3;
}
.btn.blue,
.btn_2.blue{
	color: #fff;
	background: #5F6BF3;
	border: 1px solid #5F6BF3
}
.btn.white,
.btn_2.white{
	background: #fff;
	border: 1px solid #D7D7D7;
	padding: 5px 25px;
}
.btn.btn_on{
	color: #fff;
	background: #5F6BF3
}
.btn.btn_off{
	color: #666;
	background: #ccc
}
.btn_sm{
	font-size: 12px;
    padding: 2px 13px!important;
    border-radius: 2px;
}
/*btn end*/

/*animation*/
.spin {
	-webkit-animation:spin 1500ms infinite linear;
	-moz-animation:spin 1500ms infinite linear;
	-ms-animation:spin 1500ms infinite linear;
	animation:spin 1500ms infinite linear;
}

@-webkit-keyframes spin {
100%{ -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    100%{ -moz-transform: rotate(360deg); }
}
@-ms-keyframes spin {
    100%{ -ms-transform: rotate(360deg); }
}
@keyframes spin {
    100%{ transform: rotate(360deg); }
}
/*animation end*/