.box-placeholder {
	border: 1px dotted black;
	margin: 0 1em 1em 0;
	height: 50px;
}

.table .fa-fw {
	color: #001f3f;
}

/*.chartCol {
	min-height: 100px;
}*/

table.table-scrollable tbody,
table.table-scrollable thead tr { display: block; }
table.table-scrollable tbody {
	/* height:400px; set it in the tag*/
	white-space: nowrap;
	overflow: auto;
}

table.table-reduce tbody tr {
	font-size: 12;
	padding: 1;
}

/* The Modal (background) */
.dModal {
	display: block; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.dModal-content {
	background-color: #fefefe;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.dClose {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.dClose:hover,
.dClose:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.dSlimAll {
	padding-top:0px;
	padding-bottom:0px;
	padding-left:0px;
	padding-right:0px;
}

.dSlim {
	padding-top:0px;
	padding-bottom:0px;
}

.dSlimTop {
	padding-top:0px;
}

.dSlimBottom {
	padding-bottom:0px;
}

/* Grid */
.dGrid-container {
	display: grid;
	grid-template-columns: auto auto;
	grid-gap: 20px;
	// background-color: #2196F3;
	padding: 20px;
}

.dGrid-container > div {
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
	padding: 30px 0;
	background-color: #EEEEEE;
	font-size: 20px;
}

.gItem2 {
	grid-column: 1 / 3;
}
.gItem1 {
	grid-column: 1;
}

/* blinking text */
.blinking {
	animation:blinker 3.0s infinite;
}

@keyframes blinker {
	0%{ opacity: 1.0; }
	35%{ opacity: 0.9; }
	50%{ opacity: 0.0; }
	65%{ opacity: 0.9; }
	100%{ opacity: 1.0; }
}

/* disabled input */
.disabled {
	pointer-events:none;
	opacity:40%;
}
