/* common.css */

html {
	margin: 0px;
	padding: 0px;
}

body {
	margin: 0px;
	padding: 0px;
	color: #000000;
	font-family: 'メイリオ', Meiryo, Verdana, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 14px;
}

img {
	vertical-align: middle;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #0000ff;
}

textarea {
	color: #000000;
	font-family: 'メイリオ', Meiryo, Verdana, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 14px;
	padding: 3px 7px !important;
	overflow: auto !important;
}

.is_textarea_style {
	padding: 3px 7px !important;
	overflow: auto !important;
}

textarea::-webkit-input-placeholder {
	color: #ccc;
	font-weight: normal;
}

textarea:-ms-input-placeholder {
	color: #ccc;
	font-weight: normal;
}

textarea::-moz-placeholder {
	color: #ccc;
	font-weight: normal;
}

input[type=text] {
	color: #000000;
	font-family: 'メイリオ', Meiryo, Verdana, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 14px;
	height: 25px;
	padding-left: 7px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: none;
	border: 1px solid #ccc
}

input[type=password] {
	color: #000000;
	font-family: 'メイリオ', Meiryo, Verdana, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 14px;
	height: 25px;
	padding-left: 7px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: none;
	border: 1px solid #ccc
}

.vertical-align input, .vertical-align select {
	vertical-align: middle;
}

select {
	font-family: 'メイリオ', Meiryo, Verdana, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 14px;
	height: 30px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: none;
	border: 1px solid #ccc;
	padding: 0 30px 0 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-size: 20px, 100%;
}

select::-ms-expand {
	display: none;
}

/*
 RadioButton
*/

/* input[type="radio"] {
	display: none;
} */

input[type="radio"] {
	opacity: 0;
	position: absolute;
}
label.radio {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}

label.radio::before, label.radio::after {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
	box-sizing: content-box;
}

label.radio::before {
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}

label.radio:hover::before {
	background: #fff;
}

label.radio::after {
	opacity: 0;
	left: 4px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #3498db;
	-webkit-transform: scale(2);
	transform: scale(2);
}

input[type="radio"]:checked+label::before {
	background: #fff;
	border: 1px solid #3498db;
}

input[type="radio"]:checked+label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

input[type="radio"]:focus-visible+label::before {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
}


/*
 CheckBox
*/

/* input[type="checkbox"]{
	display: none;
} */

input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}

input[type="checkbox"]:focus-visible+label::before {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
}

label.check {
	position: absolute;
	display: inline-block;
	/* padding: 0px 3px 1px 22px; */
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}

label.check::before, label.check::after {
	position: absolute;
	content: '';
	-webkit-transition: all .2s;
	transition: all .2s;
}

label.check::before {
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -10px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}

label.check::after {
	opacity: 0;
	top: 50%;
	left: 4px;
	width: 10px;
	height: 6px;
	margin-top: -5px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}

input[type="checkbox"]:checked+label.inactive::before {
	opacity: 0.4;
	background: #fff;
	border: 1px solid #3498db;
}

label.inactive::after {
	opacity: 0.1;
	top: 50%;
	left: 4px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #99cdf1;
	border-bottom: 2px solid #99cdf1;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}

label.check:hover::before {
	background: #fff;
}

input[type="checkbox"]:checked+label::before {
	background: #fff;
	border: 1px solid #3498db;
}

input[type="checkbox"]:checked+label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

/*
 button
*/

.button_logout {
	display: inline-block;
	border: 1px #fff solid;
	height: 23px;
	line-height: 23px;
	width: 100px;
	text-align: center;
	margin-left: 15px;
}

.button_login {
	background-color: #0088ee;
	color: #fff;
	height: 29px;
	line-height: 29px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.button_top {
	background-color: #0088ee;
	color: #fff;
	height: 32px;
	width: 170px;
	line-height: 32px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.button_top_long {
	background-color: #0088ee;
	color: #fff;
	height: 32px;
	width: 365px;
	line-height: 32px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.button_blue {
	background-color: #0088ee;
	color: #fff;
	height: 23px;
	line-height: 23px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px 15px;
}

.button_red {
	background-color: #ff6565;
	color: #fff;
	height: 23px;
	line-height: 23px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px 15px;
}

.button_green {
	background-color: #fff;
	color: #70ad47;
	border: solid 1px #70ad47;
	height: 21px;
	line-height: 21px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px 15px;
}

.button_white {
	background-color: #fff;
	border: solid 1px #0088ee;
	color: #000;
	height: 21px;
	line-height: 21px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px 15px;
}

/*
 common header
*/

.header_outer {
	position: fixed;
	margin: 0;
	width: 100%;
	background-color: #0070c0;
	height: 32px;
	line-height: 32px;
	color: #fff;
	left: 0;
	top: 0;
	margin-bottom: 32px;
}

.header_icon {
	float: left;
	margin-left: 20px;
	height: 32px;
}

.header_info {
	float: right;
	margin-right: 10px;
}

.header_project {
	margin-left: 20px;
}

/*
 Breadcrumbs（パンくずリスト）
*/

.breadcrumbs_outer {
	position: fixed;
	margin: 0;
	width: 100%;
	background-color: #d9d9d9;
	height: 24px;
	line-height: 24px;
	left: 0;
	top: 32px;
}

/*
 Menu
*/

.menu_outer {
	position: fixed;
	width: 1420px;
	height: 170px;
	background-color: #fff;
	border-right: 1px #bdbdbd solid;
	border-bottom: 1px #bdbdbd solid;
	background: rgba(255, 255, 255, 0.8);
	z-index: 99999;
}

ul.menu {
	margin: 20px 0 0 40px;
	padding: 0;
	display: inline-block;
	vertical-align: top;
}

ul.menu li.menu_title {
	list-style: none;
	width: 230px;
	border-bottom: 1px #a4a4a4 solid;
}

ul.menu li.menu_detail {
	list-style: none;
	width: 215px;
	border-bottom: 1px #a4a4a4 dashed;
	margin: 10px 0 0 15px;
}

/* ====================================================================================== */

/* ====================================================================================== */

/* ====================================================================================== */

.header_outer_new {
	/* position: fixed; */
	margin: 0;
	width: 100%;
	background-color: #0070c0;
	height: 32px;
	line-height: 32px;
	color: #fff;
	left: 0;
	top: 0;
	/* margin-bottom: 32px; */
}

/* .breadcrumbs_outer_new { */
	/* position: fixed; */
	/* margin: 0; */
	/* width: 100%; */
	/* background-color: #d9d9d9; */
	/* height: 24px; */
	/* line-height: 24px; */
	/* left: 0; */
	/* top: 32px; */
/* } */

.tabulator_listview {
	overflow: auto !important;
	position: absolute !important;
	top: 0;
	bottom: 0;
	width: 100%;
}

.o_content {
	position: absolute !important;
	left: 0;
	right: 0;
	/* bottom: 30px; */
	 /*S -  update by CR 10/28/2022*/
	 bottom: 0px;
	 border-bottom: unset;

	  /*E -  update by CR 10/28/2022*/
}

.n_formview .o_content {
	bottom: 0px;
}

.o_footer {
	position: absolute !important;
	left: 0;
	right: 0;
	bottom: 0;
	height: 30px;
	background-color: #dae3f3;
	line-height: 30px;
	padding-left: 20px;
}

.button_area_new {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 40px;
	margin: 0px auto 0 auto;
	/* border-bottom: 1px #bdbdbd solid; */
}

.btn_blue {
	cursor: pointer;
	background-color: #0088ee;
	color: white;
}

.btn_blue_while {
	cursor: pointer;
	background-color: #8FAADC;
	color: white;
}

.btn_red_norer {
	cursor: pointer;
	background-color: #ff0000;
}

.btn_while_norer {
	cursor: pointer;
	background-color: #fff;
	border: solid 1px #0088ee;
	color: #000;
}

.btn_filter {
	min-width: 80px;
	max-height: 27px;
	min-height: 27px;
	line-height: 1.1;
	font-size: 14px;
}

.btn_row {
	min-width: 60px;
	max-height: 27px;
	min-height: 27px;
	line-height: 1.1;
	font-size: 14px;
}

.btn_fuc {
	min-width: 80px;
	max-height: 27px;
	min-height: 27px;
	line-height: 1.1;
	font-size: 14px;
}

.btn_fuc_1 {
	min-width: 80px;
	max-height: 27px;
	min-height: 27px;
	line-height: 1.1;
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}

.area_sub_header {
	border-bottom: 1px #bdbdbd solid;
}

.area_content {
	overflow: auto;
}

.outer_new {
	margin-top: 56px;
	padding: 0;
}

.search_area_new {
	width: calc(100% - 20px);
	line-height: 40px;
	border-bottom: 1px #bdbdbd solid;
	margin: 0px auto 0 auto;
	margin-left: 10px;
	margin-right: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.align-items-center {
	align-items: center;
}

.filter-input {
	min-height: 27px;
}

.margin-20 {
	margin-right: 20px;
}

.margin-30 {
	margin-right: 30px;
}

.margin-40 {
	margin-right: 40px;
}

.margin-50 {
	margin-right: 50px;
}

.margin-10 {
	margin-right: 10px;
}

.display-inline {
	display: inline;
}

.button_header_setting {
	margin-top: 2px;
	margin-bottom: 2px;
}

input, select {
	min-height: 27px;
}


.n_formview select {
	max-height: 27px;
}

table.setting_screen {
	width: 680px;
	margin: 0px auto 0 auto;
	border-spacing: 0;
}

table.setting_screen td {
	border-bottom: 1px #bdbdbd dashed;
	vertical-align: bottom;
	padding-bottom: 4px;
	height: 28px;
	padding-top: 20px;
	position: relative;
}

table.setting_screen thead {
	color: #4c4c4c;
	background-color: #eee;
	border-bottom: 1px solid #cacaca;
}

table.setting_screen label::after, table.setting_screen label::before {
	box-sizing: content-box;
}

table.setting_screen label {
	margin-bottom: 0 !important;
}

.table-striped>tbody>tr:nth-of-type(odd) {
	background-color: #efeff8;
}

table.tableOne2many {
	margin: 10px auto 0 auto;
	border-spacing: 0;
	border: 1px #dee2e6 solid;
}

table.tableOne2many td {
	vertical-align: middle;
	padding: 6px;
}

table.tableOne2many td:nth-child(1) {
	width: 60px;
}

table.tableOne2many td:nth-child(2) {
	width: 120px;
}

table.tableOne2many thead {
	background-color: #eee;
	border-bottom: 1px solid #cacaca;
}

table.tableOne2many label::after, table.tableOne2many label::before {
	box-sizing: unset;
}

table.tableOne2many>tbody>tr:nth-of-type(odd) {
	background-color: #ffffff;
}

table.tableOne2many>tbody>tr:nth-of-type(even) {
	background-color: #efeff8;
}

.has_checkbox label::after, .has_checkbox label::before {
	box-sizing: unset;
}

.header_one2many {
	width: 680px;
	display: block;
	margin: 0 auto;
	margin-top: 20px;
}

.area_setting_content {
	overflow: auto !important;
	position: absolute !important;
	top: 54px;
	/* bottom: 0; */
    height: calc(100vh - 58px);
	width: 100%;
}

.setting_inner_new {
	width: 800px;
	margin: 0 auto;
	border: 1px #9AC87A solid;
	height: auto;

	 /*S -  update by CR 10/28/2022*/
	 /* min-height: calc(100% - 16px); */
	 /* border-top: 0px #bdbdbd solid; */
	 border-top:unset;
	 height: auto;
	 min-height: 100%;
	 border-bottom: unset;
	 border-width: 1px;
	  /*E -  update by CR 10/28/2022*/
	min-height: calc(100vh - 58px);
}

.setting_footer_new {
	width: 730px;
	margin: 0 auto;
	height: 100px;
	bottom: 0;
	margin-top: 33px;
	border-top: 1px #9AC87A solid;
	padding-top: 10px;
}

label.check_one2many {
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
	padding: 5px 3px 1px 22px;
	margin-bottom: unset;
	line-height: unset;
}

label.check_shinsa {
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
	padding: 5px 3px 5px 30px;
	margin-bottom: unset;
	line-height: unset;
}

label.check_shinsa::after, label.check_shinsa::before {
	box-sizing: unset;
}

label.checkbox_in_list {
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
	padding: 5px 3px 5px 22px;
	margin-bottom: unset;
	line-height: unset;
}

table.tableOne2many-g3 {
	margin: 10px auto 0 auto;
	border-spacing: 0;
	border: 1px #dee2e6 solid;
}

table.tableOne2many-g3 td {
	padding: 3px;
	align-items: center;
	vertical-align: middle;
}

table.tableOne2many-g3 tbody td {
	text-align: center;
}

table.tableOne2many-g3 thead td:nth-child(1), table.tableOne2many-g3 thead td:nth-child(4), table.tableOne2many-g3 thead td:nth-child(6), table.tableOne2many-g3 thead td:nth-child(7) {
	text-align: center;
}

table.tableOne2many-g3 thead {
	background-color: #eee;
	border-bottom: 1px solid #cacaca;
}

table.tableOne2many-g3 label::after, table.tableOne2many-g3 label::before {
	box-sizing: unset;
}

table.tableOne2many-g3>tbody>tr:nth-of-type(odd) {
	background-color: #ffffff;
}

table.tableOne2many-g3>tbody>tr:nth-of-type(even) {
	background-color: #efeff8;
}

table.tableOne2many-g3 td img {
	width: 13px;
}

table.tableOne2many-g3 td input, table.tableOne2many-g3 td select {
	max-height: 27px;
	margin: 0;
	padding: 1;
}

table.tableOne2many-g3 td:nth-child(1) {
	width: 50px;
	height: 24px;
}

table.tableOne2many-g3 td:nth-child(2) {
	width: 165px;
}

table.tableOne2many-g3 td:nth-child(3) {
	width: 135px;
}

table.tableOne2many-g3 td:nth-child(4) {
	width: 80px;
}

table.tableOne2many-g3 td:nth-child(5) {
	width: 135px;
}

table.tableOne2many-g3 td:nth-child(6) {
	width: 65px;
}

.margin-0 {
	margin: 0;
	padding: 0;
}

.float-right {
	float: right !important;
}

.min-width-400 {
	min-width: 400px;
}

.min-width-460 {
	min-width: 460px;
}

.min-width-815 {
	min-width: 815px;
}

.setting_header td.setting_header_title {
	/* border-bottom-left-radius: 5px; */
	border-bottom: 1px #bdbdbd solid;
	padding-left: 0!important;
}

table.setting_header {
	border-collapse: separate;
}

/* table.setting_header td { border: solid 1px #000; } */

table.setting_header tr:first-child td:first-child {
	border-bottom-left-radius: 5px;
}

.tabulator_listview .tabulator-header .tabulator-headers [role="columnheader"]:not([tabulator-field]) .tabulator-arrow {
	display: none;
}

.has_button .tabulator-row .tabulator-cell:not([tabulator-field]) {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	padding: 3px 0 3px 20px;
	border-right: hidden;
	vertical-align: middle;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

table.setting_screen_textarea td {
	border-bottom: 0;
}

table.setting_screen_question_table {
	margin: 0 auto 0 auto;
}

#center-text {
	text-align: left;
}

label.radio::after {
	left: 4px !important;
	margin-top: -4px !important;
}

label.check::before {
	margin-top: -10px;
}

.custom_table{
	top: 0;
    bottom: 0;
    width: 100%;
}
.custom_table_header{
    position: absolute;
}
.custom_table_body{
    overflow: auto;
    position: absolute;
    width: 100%;
    margin-top: 32px;
	top: 0;
    bottom: 0;
}
.custom_table_header table {
	border: grey;
	border-collapse: collapse;
	width: 100%;
	min-width: 800px;
	position: relative;
}

.custom_table_header table tbody tr {
	max-height: 32px;
	background-color: #DAE3F3;
}

.custom_table_header table tbody tr td{
	border-left: 1px solid #ccc;
}

.custom_table_body table {
	border: 1px solid #ccc;
	border-collapse: collapse;
	width: 100%;
	min-width: 800px;
	position: relative;
}

.custom_table_body table tbody {
	position: relative;
	bottom: 0;
	width: 100%;
	margin-left: -1px;
}

.custom_table_body table tbody tr td{
	white-space: pre-wrap;
    word-wrap: break-word;
    word-break:break-all;
}

table.background_color_OE>tbody>tr:nth-of-type(odd) {
	background-color: #ffffff;
}

table.background_color_OE>tbody>tr:nth-of-type(even) {
	background-color: #EDF2F9;
}
.text_answer_esca {
	color: #0070C0;
    font-weight: bold;
}
.pen_icon{
	height: 17px;
	width: 16x;
	margin-top: -5px;
}
.max-width-570 {
	max-width: 570px !important;
	min-width: 570px !important;
}
.max-width-msg-043 {
	max-width: 610px !important;
	min-width: 610px !important;
}
.max-width-msg-045 {
	max-width: 590px !important;
	min-width: 590px !important;
}
.max-width-msg-047 {
	max-width: 410px !important;
	min-width: 410px !important;
}
.max-width-msg-018 {
	max-width: 565px !important;
	min-width: 565px !important;
}
.max-width-msg-i035 {
	max-width: 500px !important;
	min-width: 500px !important;
}

/* TrungHQ4 add common class */
._tWrapper{
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 70px;
	padding-right: 70px;
	/* height: 100%; */
	border: 1px solid #9AC87A;
	border-top: none;
	border-bottom: none;
	padding-top: 40px;
	padding-bottom: 40px;
}

._tHeader{
	max-height: 35px;
	border-bottom: 1px solid #9AC87A;
    border-bottom-left-radius: 5px;
	border-left: 1px solid #9AC87A;
}

._tHeaderTitle {
	background: #9ac87a;
    border-bottom-left-radius: 5px;
    height: 35px;
    padding: 6.5px 10px;
    color: #fff;
	min-width: 150px;
	text-align: center;
}

._tButtons{
	padding-top: 3px;
}

._tBtnPrimary,
._tBtnNormal,
._tBtnDanger {
	padding: 0.375rem 1.25rem !important;
	padding-top: 0.375rem !important;
	padding-right: 1.25rem !important;
	padding-bottom: 0.375rem !important;
	padding-left: 1.25rem !important;
	min-width: 80px;
	max-height: 27px;
	min-height: 27px;
	line-height: 1.1;
	font-size: 14px;
	border-radius: 5px;
}

._tBtnPrimary:hover {
	background-color: #007bff;
}

._tBtnNormal,
._tBtnNormal:hover,
._tBtnNormal:focus,
._tBtnNormal:active,
._tBtnNormal:not(:disabled):not(.disabled):active,
._tBtnNormal:disabled {
	border: 1px solid #0069d9;
	background-color: #fff !important;
	color: #000;
}

.tabulator ._tBtnNormal,
.tabulator ._tBtnNormal:hover,
.tabulator ._tBtnNormal:focus,
.tabulator ._tBtnNormal:active,
.tabulator ._tBtnNormal:not(:disabled):not(.disabled):active,
.tabulator ._tBtnNormal:disabled {
	color: #333;
}

._tBtnDanger,
._tBtnDanger:hover,
._tBtnDanger:focus,
._tBtnDanger:active,
._tBtnDanger:disabled {
	border: none;
	background-color: rgb(255, 101, 101) !important;
	color: #fff;
}

._tBtnPrimary:disabled,
._tBtnNormal:disabled,
._tBtnDanger:disabled {
	cursor: not-allowed;
}


._tBtnIcon,
._tBtnIcon:hover,
._tBtnIcon:focus,
._tBtnIcon:active,
._tBtnIcon:not(:disabled):not(.disabled):active,
._tBtnIcon:disabled {
	min-width: 27px;
	padding: 0 !important;
	border: none;
	background-color: transparent !important;
}

button._tContentGreen {
	border-color: #70AD47 !important;
	color: #70AD47 !important;
}

._tBody {}

.p-40 {
	padding-left: 40px;
	padding-right: 40px;
}

._tTableInput > table > tbody > tr{
	border-bottom: 1px dashed #bdbdbd;
}

._tTableInput > table > tbody > tr > td{
	padding: 20px 5px 5px 5px;
    border: none;
	position: relative;
}

._tTableInput:not(._tTableInputUnsetPositionError) > table > tbody > tr > td input ~ .formError{
	left: 60%!important;
}

._tTableInput > table > tbody > tr > td:first-child{
	vertical-align: bottom;
	max-width:100%;
	white-space:nowrap;
}

._tRequiredSpan{
	color: #ff0000
}

textarea{
	border-radius: 5px;
	border: 1px solid #ccc;
}

input[type="radio"]._tRadio{
	display: block;
	position: absolute;
	z-index: 0;
	opacity: 0;
}

._tRadioBtnInput, ._tCheckboxInput{
	display: inline-block;
    position: relative;
    padding-left: 23px;
	cursor: pointer;
	margin-right: 10px;
	height: 23px;
}

._tRadioBtnInput:has(> input:disabled), ._tCheckboxInput:has(> input:disabled){
	cursor: not-allowed;
}

._tRadioUI{
	left: 0;
    width: 14px;
    height: 14px;
    margin-top: -8px;
    background: #f3f3f3;
    border: 1px solid #ccc;
	position: absolute;
    top: 50%;
    border-radius: 100%;
}

._tRadio:checked ~ ._tRadioUI{
	background: #fff;
    border: 1px solid #3498db;
}

._tRadio:checked:disabled ~ ._tRadioUI{
	border: 1px solid #99cdf1 !important;
}

._tRadio:focus-visible ~ ._tRadioUI, ._tCheckbox:focus-visible ~ ._tCheckboxUI{
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
}

._tRadio:focus:disabled ~ ._tRadioUI{
	box-shadow: none!important;
}

._tRadioUI ._tRadioTick{
	opacity: 0;
    left: 2px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #3498db;
    -webkit-transform: scale(2);
    transform: scale(2);
    position: absolute;
    top: 50%;
    border-radius: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
    box-sizing: content-box;
}

._tRadio:checked ~ ._tRadioUI ._tRadioTick{
	opacity: 1;
	transform: scale(1);
}

._tRadio:checked:disabled ~ ._tRadioUI ._tRadioTick{
    background: #99cdf1 !important;
	cursor: not-allowed;
}

._tCheckbox{
	display: inline-block!important;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

._tCheckboxUI{
	top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    margin-top: -8px;
    background: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: inline-block;
    position: absolute;
}

._tCheckbox:checked ~ ._tCheckboxUI{
	background: #fff;
    border: 1px solid #3498db;
}

._tCheckbox:checked:disabled ~ ._tCheckboxUI{
	border: 1px solid #99cdf1 !important;
}

._tCheckboxUI ._tCheckboxTick{
	opacity: 0;
    top: 50%;
    left: 3px;
    width: 10px;
    height: 6px;
    margin-top: -4px;
    border-left: 2px solid #3498db;
    border-bottom: 2px solid #3498db;
    -webkit-transform: rotate(-45deg) scale(.5);
    transform: rotate(-45deg) scale(.5);
    position: absolute;
}

._tCheckbox:checked ~ ._tCheckboxUI ._tCheckboxTick{
	opacity: 1;
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1)
}

._tCheckbox:disabled ~ ._tCheckboxUI{
	cursor: not-allowed;
}

._tCheckbox:checked:disabled ~ ._tCheckboxUI ._tCheckboxTick{
    border-left: 2px solid #99cdf1!important;
    border-bottom: 2px solid #99cdf1!important;
}

._tRadioBtnInfo, ._tCheckboxInfo{
	vertical-align: text-top;
	z-index: 1;
    position: relative;
}

._tDatepicker{
    background-image: url(../images/datetime-grey.png);
    display: inline-block;
    background-position: calc(100% - 3px) calc(50% - 1px);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    cursor:pointer;
	max-width: 120px;
}

._tTableInfo{
	border: 1px solid #dee2e6;
}

._tTableInfo thead tr, ._tTableInfo tbody tr:nth-child(even){
	background-color: #e2f0d9;
}

._tTableInfo thead tr th{
	font-size: 14px;
	font-weight: normal;
	border-bottom: 1px solid #dee2e6;
}

._tTableInfo thead tr th, ._tTableInfo tbody tr td{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

._tTableFixHeader{
	/*width:100%; */
	display: block;
	empty-cells: show;

	/* Decoration */
	border-spacing: 0;
}

._tTableFixHeader > thead{
	background-color: #f1f1f1;
	position:relative;
	display: block;
	width:100%;
	/* overflow-y: scroll; */
}

._tTableFixHeader > tbody{
	/* Position */
	display: block; position:relative;
	width:100%;
	overflow-y:auto;
	/* Decoration */
	border-top: 1px solid rgba(0,0,0,0.2);
}

._tTableFixHeader > thead > tr, ._tTableFixHeader > tbody > tr{
	width: 100%;
	display:flex;
}

._tTableFixHeader td,._tTableFixHeader th{
	flex-basis:100%;
	flex-grow:2;
	display: block;
	text-align:left;
}

/* Other options */

._tTableFixHeader.small-first-col td:first-child,
._tTableFixHeader.small-first-col th:first-child{
	flex-basis:20%;
	flex-grow:1;
}

._tTableFixHeader tbody tr:nth-child(2n){
	background-color: rgba(130,130,170,0.1);
}

.small-col{flex-basis:10%;}

._tBoxHeader{
	border-radius: 5px;
	background-color: rgb(154, 200, 122);
	min-width: 200px;
	padding-top: 3px;
	padding-bottom: 3px;
	width: 200px;
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: 15px;
}
._tBoxHeader h3{
	font-size: 14px;
	margin-bottom: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: #fff;
}

._tBoxContent{
	border: 1px solid rgb(154, 200, 122);
	border-radius: 5px;
	width: 100%;
	padding: 13px 30px 2px 30px;
	margin-top: -15px;
}

._tBoxContent .row *{
	margin-right: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

._tFooterLine{
	border-bottom: 1px solid #bfbfbf;
}

._tPopupWrapper{
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

._tPopup{
	width: 1500px;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -750px;
    margin-top: -20%;
    background: #fff;
}

@media only screen and (max-width: 1500px) {
    ._tPopup{
		width: 100%;
		margin-left: 0;
		left:0;
	}
}

._tPopupHeader{
	height: 34px;
	background: #0070c0;
	padding: 0 5px;
	position: relative;
}

._tPopupHeader h3{
	font-size: 14px;
	color:#fff;
	margin-bottom: 0;
	display: inline-block;
	line-height: 34px;
}

._tCloseBtn{
	display: inline-block;
	line-height: 20px;
    font-size: 16px;
    border-radius: 2px;
    cursor: pointer;
    background: #ffffff;
    color: #000000;
    padding: 0px 3.5px;
    border: none;
    width: 20px;
    height: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 5px;
}

._tCloseBtn:focus{
	outline-style: solid;
    outline-width: 2px;
    outline-color: #000;
	box-shadow: none;
}

._tSearchBar{
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
	margin-bottom: 15px;
}

._tSearchGroup{
	display: inline-block;
	margin-right: 15px;
}

._tSearchBar ._tSearchGroup ._tSelect, ._tSearchBar ._tSearchGroup ._tInput{
	width: 200px;
}

._tSelect{
	padding-right: 10px;
}

._tSearchBarLine{
	width: 100%;
    border-top: 1px solid rgb(191, 191, 191);
	margin-bottom: 30px;
}

.ui-corner-all > input[type="checkbox"]
{
    display: unset;
}

table
{
    font-size: 14px;
}

.tabulator-headers {
    color: black;
}

._tPopup-iframe{
	width: 1500px;
    height: 96%;
    position: absolute;
    left: 50%;
    margin-left: -750px;
    background: #fff;
}

._tPopup-menu{
	width: 1500px;
    height: 80%;
    position: absolute;
    left: 50%;
    margin-left: -750px;
    background: #fff;
}

._tPopup-menu ._tPopupHeader {
    height: 34px;
    background: rgb(155, 183, 217);
    padding: 0 5px;
    position: relative;
}

.btn_back_A04{
    width: 100px;
	background-color: #fff;
	color: rgb(0, 0, 0);
	border: solid 1px rgb(7, 99, 167);
	height: 21px;
	line-height: 0px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px 15px;
}

.FlexTextarea {
	position: relative;
	/* font-size: 1rem;
	line-height: 1.8; */
}
  
.FlexTextarea__dummy {
	overflow: hidden;
	visibility: hidden;
	box-sizing: border-box;
	white-space: pre-wrap;
	word-wrap: break-word;
	overflow-wrap: break-word;
	border: 1px solid;
	padding: 3px 7px;
	min-height: 90px;
	line-break: anywhere;
}

textarea.FlexTextarea__textarea {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	overflow: hidden !important;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	resize: none;
	line-break: anywhere;
}