.confirmDialogWithDataTable
{
	width: 100%;
	min-height: none;
	max-height: none;
	height: 100% !important;
	overflow: hidden;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	font-family: BenchNine;
}

.confirmDialogWithDataTable > .dataTable
{
	width: 98%;
	height: 70%;
	overflow-y: scroll;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	box-shadow: 4px 5px 8px rgba(0,0,0,0.5);
}

.confirmDialogWithDataTable > .dataTable > table > thead > tr > th,
.confirmDialogWithDataTable > .dataTable > table > tbody > tr > td {
	height: 30px;
	border-spacing: 0px;
	border-collapse: collapse;
	border: solid 1px #000;
	background-color: #FAFAFC;
	border-top: 0;
	border-left: 0;
	border-color: #e6e6e6;
	padding: 0;
	margin: 0;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0px 8px;
	white-space: nowrap;
	overflow: hidden;
	font-weight: bold;
	font-size: 1.25em;
}

.confirmDialogWithDataTable > .dataTable > table > tbody > tr > td > textarea 
{
	width: 90%;
	background: rgba(229,57,53,0.75);
	box-shadow: 1px 1px 4px rgba(0,0,0,0.5) inset, -1px -1px 4px rgba(0,0,0,0.5) inset;
	text-align: left;
	border-radius: 0;
	font-family: BenchNine;
	font-weight: bold;
	font-size: 1.25em;
	color: white;
	text-shadow: 1px 1px 1px rgba(0,0,0,1);
}

.confirmDialogWithDataTable > .dataTable > table > thead > tr > th {
	color: #FEFEFF;
    text-transform: uppercase;
    background-color: darkslategrey;
	border-top: 2px solid rgba(255,255,255,0.5);
    font-family: BenchNine;
    font-size: 16px;
}

.confirmDialogWithDataTable > .confirmMessage
{
	width: 100%;
	height: 5%;
	margin: 0.5em 0;
	overflow: hidden;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	
	font-size: 1.75em;
	font-weight: bold;
	color: #F9F9FC;
	text-shadow: 1px 1px 1px rgba(0,0,0,1);
}

.confirmDialogWithDataTable > .confirmButtons {
	width: 100%;
	height: 40px;
	box-sizing: border-box;
	overflow: hidden;
}

.confirmDialogWithDataTable > .confirmButtons > .buttonContent {
	background: #FAFAFC;
	width: auto;
	height: 40px;
	float: right;
	padding: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.confirmDialogWithDataTable > .confirmButtons {
	font-family: BenchNine;
	font-size: 24px;
	line-height: 40px;
	color: #FDFDFE;

	padding-left: 15px;

	height: 20%;
	border-top: solid 1px #F0F0F1;
}

.confirmDialogWithDataTable > .confirmButtons > .arcContent {
	background: transparent url(/images/body/dialog_arc.png) top right no-repeat;
	width: 80px;
	height: 40px;
	float: right;
}


