/* System wide */
html, body {
	font-size: 14px;
}
.hidden {
	display: none !important;
}
.myInline {
	display: inline;
}

/* Navigation bar */
nav#mainNav a.nav-link {
	padding-top: 2px;
	padding-bottom: 2px;
}
/* https://stackoverflow.com/questions/18529274/change-navbar-color-in-twitter-bootstrap */
nav#mainNav .navbar-nav > .show div.show a:hover,
nav#mainNav .navbar-nav > .show div.show a:focus {
   background-color: #E6E6E6;
}

/* Toast */
#toastArea {
	position: fixed;
	top: 50px;
	left: 10px;
	width: 300px;
	z-index: 5000;
}
#toastArea .toast {
	background-color: #e5f1f9;
	border: 1px solid #ccc;
	box-shadow: 0.3rem 0.3rem 0.75rem rgba(0,0,0,.5);
	font-size: 1em;
}
#toastArea .toast_timer
{
	height: 5px;
	width: 100%;
	position: relative;
	z-index: 5001;
}
#toastArea .toast_timer_inner
{
	background-color: #3b7aff;
	z-index: 5002;
	height: 100%;
	width: 0%;
}

/* Footer */
footer#mainFooter {
	background-color: #DDDDDD;
}

/* Forms */
form#regForm label, form#loginForm label, form#editForm label {
	display: block;
	margin-bottom: 0.25rem;
}
form#regForm .myWidth, form#loginForm .myWidth, form#editForm .myWidth {
	width: 300px;
	display: inline;
}
form#regForm .form-group, form#loginForm .form-group, form#editForm .form-group {
	margin-bottom: 0.75rem;
}

form#regForm .error, form#loginForm .error, form#editForm .error {
	margin-left: 1rem!important;
	color: red;
}

form#regForm input.error, form#loginForm input.error, form#editForm input.error {
	border: 1px solid red;
}

form#regForm select, form#loginForm select, form#editForm select {
	padding-left: .45rem;
}

/* Form placeholders */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aaa !important;
  font-style: italic;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa !important;
  font-style: italic;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #aaa !important;
  font-style: italic;
}

/* Tables */
table.data, table.data th, table.data td {
	
}

#tcont .dt-buttons
{
	/*margin-bottom: 4px;*/
}

table.data tr td
{
	cursor: pointer;
}

table.data tr td:first-child
{
	cursor: default;
}

table.data .editLink .fas, table.data .confirmLink .fas, table.data .deleteLink .fas
{
	color: black; 
	font-size: 0.9em;
}

#tcont .dataTables_length, #tcont .dataTables_filter, #tcont .dataTables_info, #tcont .dataTables_paginate
{
	display: inline-block;
}

#tcont .alr
{
	text-align: right;
}

#tcont .sp
{
	width: 15px;
	display: inline-block;
}

/* DateTimePicker */

.ui-timepicker-div .ui-button-icon-only .ui-icon
{
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -8px;
	margin-top: -8px;
}


/* RESPONSIVE */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
	
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	
}

/*  Home page  */
dl.home
{
}
dl.home dd
{
	font-size: 1em;
	font-weight: normal;
}
