.table_blcok {
	width: calc( 100% - 10px );
	margin: 5px;
	position: relative;
	max-height:500px;
	background-color: #fff;
	overflow-y: auto;
}
.table_blcok::-webkit-scrollbar {
	bottom: 0;
	left: 0;
	width: 0.5px;
}
.table_blcok::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background: rgba(0, 0, 0, .18);
}
.table_blcok::-webkit-scrollbar-track {
	background: rgba(222, 222, 222, .6);
}
.rwdv1_table {
	position: relative;
	border: 0.8px solid #e5e5e5;
	margin: 0 auto;
	margin-bottom: 10px;
	
	border-collapse: separate; /* Don't collapse */
}
.tablev1_thead {
	position: -webkit-sticky; /* for Safari */
	position: sticky;
	top:0;
	z-index: 3;
	
	box-sizing: border-box;
	font-weight: 400;
	color: #fff;
	background-color: #2A95D1;
	display: flex;
	justify-content: center;
}
.tablev1_th {
	
	font-weight: 500;
	
	box-sizing: border-box;
	padding: 5px;
	text-align: center;
	border-right: 0.5px solid rgba(0,0,0,0.1);
}
.tablev1_th:last-child {
	border-right-width: 0px;
}
.tablev1_thead .tablev1_th.fixed_precolumn, .tablev1_thead .tablev1_th.fixed_lastcolumn {
	position: -webkit-sticky; /* for Safari */
	position: sticky;
	
	background-color: #2A95D1;
}
.tablev1_thead .tablev1_th.fixed_precolumn {
	left: 0;
	z-index: 3;
}
.tablev1_thead .tablev1_th.fixed_lastcolumn {
	right: 0;
	z-index: 3;
}
.tablev1_tbody {
	position: relative;
	display: block;
	background-color: #fff;
	border-bottom: 0.5px dashed rgba(0,0,0,0.1);
}
.tablev1_tbody:last-child {
	border-bottom-width: 0px;
}
.tablev1_tr {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	border-top: 0.5px dashed rgba(0,0,0,0.1);
}
.tablev1_tr:first-child {
	border-top-width: 0px;
}
.tablev1_tr:nth-child(even), .tablev1_tr:nth-child(even) .tablev1_td.fixed_precolumn, .tablev1_tr:nth-child(even) .tablev1_td.fixed_lastcolumn,.tablev1_tr:hover, .tablev1_tr:hover .tablev1_td.fixed_precolumn, .tablev1_tr:hover .tablev1_td.fixed_lastcolumn {
	background-color: #F0F7FB;
}
.tablev1_tr.copydata
{
	background-color:#FFF8D7;
}
.tablev1_td {
	color: rgba(0,0,0,0.92);
	box-sizing: border-box;
	padding: 5px;
	border-right: 0.5px dashed rgba(0,0,0,0.1);
	word-break: break-all;
}
.tablev1_td:last-child {
	border-right-width: 0px;
}
.tablev1_td.fixed_precolumn, .tablev1_td.fixed_lastcolumn {
	position: -webkit-sticky; /* for Safari */
	position: sticky;
	top:0;
	z-index: 2;
	
	background-color: #fff;
	border-right: 0.5px dashed rgba(0,0,0,0.1);
}
.tablev1_td.fixed_precolumn {
	left: 0;
}
.tablev1_td.fixed_lastcolumn {
	right: 0;
}
.tablev1_footer {
	
	position: -webkit-sticky; /* for Safari */
	position: sticky;
	bottom:0;
	z-index: 3;
	
	box-sizing: border-box;
	font-weight: 400;
	color: #999;
	background-color: #2A95D1;
	display: flex;
	justify-content: center;
}
.tablev1_footer_ocolor {
	background-color: #D7FFEE;
}
.tablev1_ftd {
	box-sizing: border-box;
	padding: 4px 2px;
	text-align: center;
	border-right: 0.8px solid rgba(0,0,0,0.1);
}
.tablev1_ftd:last-child {
	border-right-width: 0px;
}
.numberv1_color {
	color: #ff9090;
}
.status_ok {
	color: #019858;
}
.status_del {
	color: #FF6969;
}
.mob_l {
	display: none;
}
.mob_r {
	width: 100%;
}
.mb_hidden
{
	display:none;
}
@media only screen and (max-width: 720px) {
	.rwdv1_table {
		border-width: 0px;
		width: 100%;
	}
	.tablev1_thead {
		display: none;
	}
	.tablev1_tbody {
		border: 0.8px solid rgba(0,0,0,0.1);
		margin: 10px 0;
		display: table-row-group;
		max-height: auto;
		overflow-y: auto;
	}
	.tablev1_tbody:last-child {
		border-bottom-width: 1px;
	}
	.tablev1_tr {
		display: block;
	}
	.tablev1_td {
		display: flex;
		width: 100% !important;
		border-width: 0px;
		padding: 0px;
	}
	.mob_l {
		color:#fff;
		display: block;
		padding: 10px 5px;
		font-weight: 600;
		width: 100px;
		background-color: #2A95D1;
		border-bottom: 0.8px solid rgba(0,0,0,0.1);
	}
	.tablev1_td:last-child .mob_l {
		border-bottom-width : 0px;
	}
	.mob_r {
		padding: 10px 5px;
		padding-left: 10px;
		width: calc( 100% - 100px );
		text-align: left;
	}
	.mb_hidden
	{
		display: block;
	}
}