/* responsive tables after .is-responsive */

@media(max-width: 679px)
{
	table.is-responsive td, table.is-responsive th
	{
		background: white;
		background-color: white;
		padding: 0.4rem;
		box-shadow: none;
		font-size: 13px;
		border-color: #ececec;
	}
	
	table.is-responsive tr
	{
		background: white;
		background-color: white;
		box-shadow: none;
	}
	
	table.is-responsive tr:last-child td, table.is-responsive tr:last-child th
	{
		padding-bottom: 20px;
        border-color: #d3d3d3 !important;
        border-bottom-width: 3px !important;
	}
	
	table.is-responsive tr:first-child td, table.is-responsive tr:first-child th
	{
		padding-top: 20px;
	}
}

/* end responsive tables */


.input-has-error
{
	border-color: var(--bs-form-invalid-border-color);
}

label.required
{
	position:relative;
}

label.required:after
{
	content: "*";
	position:absolute;
	color:red;
	right: -11px;
	top:0px;
}