html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

#content {
	position: relative;
	z-index: 1;
	padding: 0px;
}

html {
	overflow-y: hidden;
}

body {
	overflow-y: auto;
	color: white;
}

body, table {
	font-size: 1em;
}

#content {
	position: static;
	padding: 0px;
}

.masterTable {
	width: 100%;
	height: 100%;
	font-family: Tahoma, Arial;
}

.footer {
	height: 10%;
	opacity: 0.8;
	filter: alpha(opacity = 80);
	background-color: white;
}

.login {
	height: 24%;
	opacity: 0.8;
	filter: alpha(opacity = 80);
	background-color: white;
}

.error {
	border: 1px solid #ff8888;
	background-color: red;
	text-align: center;
	border-radius: 8px;
	padding: 5px 15px 5px 15px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
}

.error label {
	color: white;
}

/*@media only screen and (max-width: 704px) {*/
.logo {
	background-color: rgba(255, 255, 255, 0.750);
	padding: 10px 0px 10px 0px;
	/* 	border-radius: 8px; */
	/*  	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9); */
	width: 100%;
}
/*}*/
.links {
	background-color: rgba(255, 255, 255, 1);
	padding: 3px 0px 5px 0px;
	width: 100%;
}

.links a {
	font-size: 0.95em;
	color: var(--text-color);
	text-decoration: none;
	margin: 0px 16px
}

.links a:HOVER {
	text-decoration: underline;
}

div.centeredMenuBar.ui-menubar {
	display: flex;
	justify-content: center;
	color: var(--text-color) !important;
}

body .ui-menu.ui-menubar {
	background: #024D86 !important;
}

.ui-menubar * {
	font-size: 12pt !important;
}

ul[role="menubar"] .ui-menuitem-text:not(.ui-widget-content[role="menu"] .ui-menuitem-text):not(.ui-menuitem-highlight .ui-menuitem-text) {
	color: white !important;
}

.ui-widget-content[role="menu"] li {
	text-align: left !important;
}

ul.ui-menu-child {
	white-space: nowrap;
	width: auto !important;
}

#submitBtn:disabled {
	cursor: not-allowed;
}

body.waiting {
	cursor: wait !important;
}

body.waiting * {
	cursor: wait !important;
}

.neon-blue {
	box-shadow: 0 0 4px #009fff, 0 0 12px #009fff, 0 0 30px #007fff, 0 0 60px #0080ff33;
	border: 1px solid #007fff88;
	border-radius: 13px;
}

.neon-blue-animated {
  border: 1px solid #009fff88;
  border-radius: 13px;
  animation: neon-pulse-kf 2s ease-in-out infinite;
}

@keyframes neon-pulse-kf {
  0%, 100% {
    box-shadow:
      0 0 4px #009fff,
      0 0 12px #009fff,
      0 0 30px #008fff,
      0 0 60px #0050ff33;
  }
  50% {
    box-shadow:
      0 0 8px #00cfff,
      0 0 24px #00cfff,
      0 0 50px #0080ff,
      0 0 90px #0060ff55;
  }
}