/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto+Slab:wght@300;400;600;700&family=Oxygen:wght@300;400;700&display=swap&display=swap');

:root {
   
	--FontColorBody:#555;
	
	--BackgroundColorMenuBarTopSelect:#444;
	--BackgroundColorMenuBarTop:#333;
	--FontColorMenuBarTop:#DFDFDF;
	
	--BackgroundColorMenuBarLeft:#E9E9E9;
	--BackgroundColorMenuBarLeftHover:#D9D9D9;
	--FontColorMenuBarLeft:#666;
	
	--BackgroundColorContent:#FDFDFD;
	--BackgroundColorHover:#F3F3F3;
	
	--AccentColorDark:#0078D4;
	--AccentColorLight:#0099D4;
	
	--TableTDBorder:#ddd;
	
	--LinkColorContent:#333;
	
	/* Form */
	--BackgroundColorFormSection:#F6F6F6;
	--BackgroundColorButton:#F1F1F1;
	--BackgroundColorButtonHover:#E1E1E1;
	--CheckboxInvert:0%;
	--FontColorError401:darkred;
	
	/* Icons */
	--CircleGreenPrimaryColor:#2e860e;
	--CircleGreenPrimaryOpacity:1;
	--CircleGreenSecondaryColor:#59d97f;
	--CircleGreenSecondaryOpacity:0.4;
	
	--CircleGreyPrimaryColor:black;
	--CircleGreyPrimaryOpacity:0.8;
	--CircleGreySecondaryColor:grey;
	--CircleGreySecondaryOpacity:0.2;
	
	--CircleRedPrimaryColor:white;
	--CircleRedPrimaryOpacity:1;
	--CircleRedSecondaryColor:#a50a0b;
	--CircleRedSecondaryOpacity:0.8;
	
	--EditingPrimaryColor:#0092ca;
	--EditingPrimaryOpacity:1;
	--EditingSecondaryColor:#0092ca;
	--EditingSecondaryOpacity:0.5;
	
	--PdfPrimaryColor:#a50a0b;
	--PdfPrimaryOpacity:1;
	--PdfSecondaryColor:#a50a0b;
	--PdfSecondaryOpacity:0.5;
	
	--LivelogPrimaryColor:#53bd51;
	--LivelogPrimaryOpacity:1;
	--LivelogSecondaryColor:#53bd51;
	--LivelogSecondaryOpacity:0.4;
	
	--TranscriptPrimaryColor:#0092ca;
	--TranscriptPrimaryOpacity:1;
	--TranscriptSecondaryColor:#0092ca;
	--TranscriptSecondaryOpacity:0.5;
	
	--HtmlColor:#0092ca;
	
	/*Tables */
	--RetiredSystemsRowBackgroundColor:#EFEFEF;
	--RetiredSystemsRowFontColor:darkred;
	
	/* old */
	--UltraLightAccent:rgba(28,118,161);
	--NavigationBarLeft:rgba(7,33,45);
	--NavigationBarTop:rgba(5,24,34);
	
	--FontColorLight:rgba(255,255,255);
	--FontColorDark:rgba(11,50,69);
	
	--ButtonShadow:rgba(34,155,197,0.3);
	--ButtonColor:rgba(0,0,0,95);
	
	--LinkTopnavi:rgba(255,255,255,1);
	--LinkTopnaviHover:rgba(28,118,161);
}

[data-theme="dark"] {
	--FontColorBody:#DFDFDF;
	
	--BackgroundColorMenuBarTopSelect:#202020;
	--BackgroundColorMenuBarTop:#101010;
	--FontColorMenuBarTop:#CCC;
	
	--BackgroundColorMenuBarLeft:#191919;
	--BackgroundColorMenuBarLeftHover:#484848;
	--FontColorMenuBarLeft:#CCC;
	
	--BackgroundColorContent:#141414;
	--BackgroundColorHover:#282828;
	
	--AccentColorDark:#0078D4;
	--AccentColorLight:#0099D4;
	
	--TableTDBorder:#484848;
	
	--LinkColorContent:#DFDFDF;
	
	/* Icons */
	--CircleGreenPrimaryColor:white;
	--CircleGreenPrimaryOpacity:1;
	--CircleGreenSecondaryColor:#21e114;
	--CircleGreenSecondaryOpacity:1;
	
	--CircleGreyPrimaryColor:black;
	--CircleGreyPrimaryOpacity:0.8;
	--CircleGreySecondaryColor:#999;
	--CircleGreySecondaryOpacity:1;
	
	--CircleRedPrimaryColor:white;
	--CircleRedPrimaryOpacity:1;
	--CircleRedSecondaryColor:#dd3142;
	--CircleRedSecondaryOpacity:0.7;
	
	--EditingPrimaryColor:#80b7ea;
	--EditingPrimaryOpacity:1;
	--EditingSecondaryColor:#80b7ea;
	--EditingSecondaryOpacity:0.5;
	
	--PdfPrimaryColor:#ec8383;
	--PdfPrimaryOpacity:1;
	--PdfSecondaryColor:#ec8383;
	--PdfSecondaryOpacity:0.5;
	
	--LivelogPrimaryColor:#76d274;
	--LivelogPrimaryOpacity:1;
	--LivelogSecondaryColor:#76d274;
	--LivelogSecondaryOpacity:0.4;
	
	--TranscriptPrimaryColor:#0092ca;
	--TranscriptPrimaryOpacity:1;
	--TranscriptSecondaryColor:#0092ca;
	--TranscriptSecondaryOpacity:0.5;
	
	--HtmlColor:#80b7ea;

	
	/*Tables */
	--RetiredSystemsRowBackgroundColor:#222;
	--RetiredSystemsRowFontColor:#d42b2b;

	
	/* Form */
	--BackgroundColorFormSection:#212121;
	--BackgroundColorButton:#212121;
	--BackgroundColorButtonHover:#3F3F3F;
	--CheckboxInvert:100%;
	--FontColorError401:red;
}

html,body {
	width:100%;
  	min-height: 100vh;
	height:100%;
	margin:0px;
	padding:0px;
	
}
body {
	margin:0px;
	padding:0px;
	font-size:20px;
	color:var(--FontColorBody);
	font-family: 'Oxygen', sans-serif;
	letter-spacing: 2px;
}

h1 {
	font-weight: 400;
}

a, a:visited {
	color:var(--FontColorLight);
	text-decoration: none;
}
a:hover {
	color:var(--UltraLightAccent);
}

.error401 {
  	color:var(--FontColorError401);
}


.page-layout {
  	display: flex;
  	flex-direction: column;
	min-height: 100vh;
	
	background-color:var(--BackgroundColorContent);
}

div.wrapper {
	margin:0 auto;
	width:100%;
	height:100%;
	box-sizing: border-box;
	
}

/* TOP NAVIGATION */
.topmenubar {

	background-color:var(--BackgroundColorMenuBarTop);
	color:var(--FontColorMenuBarTop);
	display: flex;
	min-height: 50px;
	font-size: 15px;
	padding:0px 15px 0px 25px;
}
.topmenubar > div {
	flex: 1;
}
.topmenubar-left {
	line-height: 50px;
	min-height:50px;
	
}
.topmenubar-middle .CompanyFilterSelectDiv {
	display: block;
	margin: 0 auto;
	
	text-align: center;
}
input[type="checkbox"] {
	
	transform: scale(1.5);
	cursor: pointer;
	filter: invert(var(--CheckboxInvert)) hue-rotate(18deg) brightness(1.7);
 	box-shadow: none;
	
}
select {
  appearance: none;
  /* safari */
  -webkit-appearance: none;
  /* other styles for aesthetics */
  width: 100%;
  font-size: 1.15rem;
  /* padding: 0.675em 6em 0.675em 1em; */
  background-color:var(--BackgroundColorMenuBarTop);
  border: 0px;
  text-align-last:left;
  color:var(--FontColorMenuBarTop);
  cursor: pointer;
}
select:focus {
	outline: none;
}
.topmenubar-middle .CompanyFilterSelectDiv select {
	appearance: none;
  /* safari */
  -webkit-appearance: none;
  /* other styles for aesthetics */
  width: 60%;
  font-size: 1.15rem;
  padding: 0.4em 0em 0.4em 0em;
  background-color:var(--BackgroundColorMenuBarTopSelect);
  border: 0px;
  text-align-last:center;
  color:var(--FontColorMenuBarTop);
  cursor: pointer;
  border-radius:4px; 
  margin-top:6px;
   background-image:
    linear-gradient(45deg, transparent 50%, #DFDFDF 50%),
    linear-gradient(135deg, #DFDFDF 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 15px,
    calc(100% - 10px) 15px;
  background-size:
    8px 8px,
    8px 8px;
  background-repeat: no-repeat;
}

.topmenubar-middle .CompanyFilterSelectDiv select:focus {
	outline: none;
}

.topmenubar-right ul {
	height:50px;
	margin:0px;
	text-align: right;
}
.topmenubar-right ul > li {
	display: inline-block;
	line-height: 50px;
	list-style-type: none;
	margin:0px;
	height:50px;
	padding:0px 3px;
}
.topmenubar-right ul > li > a:link, a:visited {
	color:var(--LinkTopnavi);
	text-decoration: none;
}
.topmenubar-right ul > li > a:hover {
	color:var(--LinkTopnaviHover);
}
.topmenubar-right ul > li > a > img {
	vertical-align: middle;
}


/* LOGIN FORM */
.login {
    min-height: 100vh;
    width: 100%;
    position: relative;
	background-color:#02030B;
	color:#888;
}
.loginwrapper {
	position: absolute;
	top:25%;
	left:25%;
	width:50%;

}
.loginwrapper .subtitle,
.loginwrapper h1 {
	text-align: center;
	width:100%;
}
.loginwrapper img {
	margin:auto;
	display: block;
}
.loginwrapper > .subtitle {
	margin:45px auto 15px auto;
}
.loginwrapper div {
	margin:10px auto;
	width:100%;
	max-width: 400px;
}
.loginwrapper input[type="text"],
.loginwrapper input[type="password"]{
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 8px;
	border-radius: 6px;
	border: 1px solid #333;
	margin:20px 0px;
	background:#02030B;
	font-size: 20px;
	color:#555;
}
.loginwrapper span {
	font-size:12px;
}
.loginwrapper input[type="submit"]{
	background:#dfdfdf;
	padding: 15px 25px;
	border-radius: 5px;
	color:#696969;
	box-shadow:0px;
	border:0px;
	font-size: 20px;
	cursor:pointer;
	margin-top:10px;
}
.loginwrapper input[type="submit"]:hover{
	background: var(--BackgroundColorButtonHover);
}

.loginwrapper .login-error {
	width:100%;
	box-sizing: border-box;
	color:rgba(145,36,36);
	border-left:4px solid rgba(145,36,36);
	background-color:#FFE8E5;
	padding:20px 10px;
}



/* CONTENT AREA */
.content-box {
	flex: 1;
  	display: flex;
}
.content-navigation {
    flex-basis: 300px;
    background-color:var(--BackgroundColorMenuBarLeft);
	box-sizing: border-box;
	padding-top:40px;
	
}
.content-wrapper {
	width:100%;
    box-sizing: border-box;
    padding:0px;
	flex: auto;
	display: flex;
  	align-items: stretch;
}
.content-menubar {
	width:100%;
	float:left;
	box-sizing: border-box;
	padding:0px 50px;
}
.content-area {
	width:100%;
    box-sizing: border-box;
    padding:0px 50px 0px 50px;
	/* float:left; */
	flex: auto;

}



/* LEFT NAVI */
#cMenu {
	padding: 0; 
	margin: 0;
	width: 280px;
}
#cMenu ul {
	padding: 0; 
	margin: 0;
}

#cMenu li a,
#cMenu li span {
	color:var(--FontColorMenuBarLeft);
	display:block;
	font-size: 16px;
	padding:18px 20px;
}
#cMenu li a .fa-fw,
#cMenu li span .fa-fw {
	padding-right:5px;
}

#cMenu li li a {
	display: block;
	font-size: 14px;
	padding:14px 60px;
}

#cMenu li span:hover {
	background-color:var(--BackgroundColorMenuBarLeftHover);
}
.sub-menu {
	display:none;
}
.sub-menu-open {
	display:block;
}
#cMenu li.active-menu a {
	position: relative;
}
#cMenu li.active-menu a:before {
    content: "";
    position: absolute;
    left: 45px;
    top: 12px;
    height: 50%;
    width: 3px;
    background:var(--AccentColorDark);
}
#cMenu, #cMenu ul {
	list-style-type: none; 
}
#cMenu a {
	text-decoration: none;
}

.menu-item-has-children {
	cursor: pointer;
}
.menu-item-has-children::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.menu-item-has-children > a::after,
.menu-item-has-children > span::after {
    font-family: "Font Awesome 6 Pro"; font-weight: 900; content: "\f078";
	text-align: right;
	padding-top:4px;
    float:right;
}


.theme-switcher {
	display: inline-block;
	/*background-color:var(--BackgroundColorContent);
	color:var(--FontColorBody);*/
	cursor: pointer;
	/*padding:0px 10px;
	float:right;
	font-size:0.8em;*/
	margin-right:5px;
}
.theme-switcher #light {
	display: none;
}
.theme-switcher #dark {
	display: none;
}
.theme-switcher:hover {
	/*background-color:var(--BackgroundColorHover);*/
}


/* Tables */
.listOverview {
	width:100%;
	border-spacing: 0px;
	font-size:16px;
}
tr:nth-child(even) {background: var(--DarkAccent)}
tr:nth-child(odd) {background: var(--LightAccent)}
.listOverview th {
	text-align: left;
	border-bottom:1px solid var(--TableTDBorder);
	padding:20px 10px;
	vertical-align: top;
}

.listOverview td {
	padding:10px 10px;
	vertical-align: top;
	border-bottom:1px solid var(--TableTDBorder);
}
.listOverview td.icons {
	padding:12px 4px;
	vertical-align: top;
	width:18px;
	max-width: 18px;
	min-width: 18px;
}

.listOverview td a {
	color:var(--AccentColorLight);
}
.listOverview .colCenter {
	text-align: center;
}
.listSystems .retired {
	background-color:var(--RetiredSystemsRowBackgroundColor);
	color:var(--RetiredSystemsRowFontColor);
}

.sort-column {
	cursor: pointer;
	display: block;
}
.sort-ascending::after {
    font-family: "Font Awesome 6 Pro"; font-weight: 900; content: "\f0de";
	margin-left:10px;

}
.sort-descending::after {
    font-family: "Font Awesome 6 Pro"; font-weight: 900; content: "\f0dd";
  	margin-left:10px;
}


.fa-check {
	color:#1c681c;
}
.fa-times {
	color:#FF0004;
}
.fa-edit {
	color:#c58d07;
}
.fa-edit:hover {
	color:#C3BC00;
}
.fa-trash-alt {
	color:#FF0004;
}
.fa-trash-alt:hover {
	color:#F79E9F;
}
.circle-green {
	color:#0CA831;
}
.circle-orange {
	color:orange;
}
.circle-red {
	color:#FF0004;
}
.circle-grey {
	color:#99999;
}
.livelog {
	color:#127007;
}
.transcript {
	color:#08349A;
}
.fa-file-pdf {
	color:#AB070A;
	
}

.icon-sun {
	--fa-primary-color:gold; 
	--fa-primary-opacity: 1;
	--fa-secondary-color:gold;
	--fa-secondary-opacity: 0.4;
}
.icon-sun:hover {
	--fa-primary-color:gold; 
	--fa-primary-opacity: 1;
	--fa-secondary-color:yellow;
	--fa-secondary-opacity: 0.7;
}
.icon-moon {
	--fa-primary-color:#f7f6cf; 
	--fa-primary-opacity: 1;
	--fa-secondary-color:#f7f6cf;
	--fa-secondary-opacity: 0.5;
}
.icon-moon:hover {
	--fa-primary-color:#e9e758; 
	--fa-primary-opacity: 1;
	--fa-secondary-color:#e9e758;
	--fa-secondary-opacity: 0.5;
}

.livelog-duotone {
	--fa-primary-color:var(--LivelogPrimaryColor); 
	--fa-primary-opacity: var(--LivelogPrimaryOpacity);
	--fa-secondary-color:var(--LivelogSecondaryColor);
	--fa-secondary-opacity: var(--LivelogSecondaryOpacity);
}
.transcript-duotone {
	--fa-primary-color:var(--TranscriptPrimaryColor); 
	--fa-primary-opacity: var(--TranscriptPrimaryOpacity);
	--fa-secondary-color:var(--TranscriptSecondaryColor);
	--fa-secondary-opacity: var(--TranscriptSecondaryOpacity);
}

.pdf-duotone {
	--fa-primary-color:var(--PdfPrimaryColor); 
	--fa-primary-opacity: var(--PdfPrimaryOpacity);
	--fa-secondary-color:var(--PdfSecondaryColor);
	--fa-secondary-opacity: var(--PdfSecondaryOpacity);
}

.html-regular {
	color:var(--HtmlColor);
}


.grey-duotone {
	--fa-primary-color:var(--CircleGreyPrimaryColor); 
	--fa-primary-opacity: var(--CircleGreyPrimaryOpacity);
	--fa-secondary-color:var(--CircleGreySecondaryColor);
	--fa-secondary-opacity: var(--CircleGreySecondaryOpacity);
}

.red-duotone {
	--fa-primary-color:var(--CircleRedPrimaryColor); 
	--fa-primary-opacity: var(--CircleRedPrimaryOpacity);
	--fa-secondary-color:var(--CircleRedSecondaryColor);
	--fa-secondary-opacity: var(--CircleRedSecondaryOpacity);
}

.green-duotone {
	--fa-primary-color:var(--CircleGreenPrimaryColor); 
	--fa-primary-opacity:var(--CircleGreenPrimaryOpacity); 
	--fa-secondary-color: var(--CircleGreenSecondaryColor); 
	--fa-secondary-opacity: var(--CircleEnabledSecondaryOpacity);
}

.editing-duotone {
	--fa-primary-color:var(--EditingPrimaryColor); 
	--fa-primary-opacity:var(--EditingPrimaryOpacity); 
	--fa-secondary-color: var(--EditingSecondaryColor); 
	--fa-secondary-opacity: var(--EditingSecondaryOpacity);
}

/* setup */
code.PowerShell {
	overflow-x: scroll;
	width:1200px;
	display: inline-block;
}
/* reports */
.logtranscript {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	font-size:12px;
	background-color:#012456;
	box-sizing: border-box;
	padding:10px;
	max-height:800px;
	overflow-y: scroll;
	overflow-x:scroll;
	line-height: 1.3;
	letter-spacing: 0px;
	color:#FEFEFE;
}

.transcripterrorline {
	background-color:black;
	color:#FF0000;
	display:inline-block;
	width:100%;
}
.transcriptdefaultline {
	display:inline-block;
	width:100%;
}
.transcriptwarnline {
	color:#ffdb00;
	background-color:black;
	width:100%;
	display:inline-block;
}
.transcriptinfoline {
	color:#00FF00;
	width:100%;
	display:inline-block;
}

.eventEntry {
	width:100%;
	margin-bottom:20px;
	border-top:3px solid var(--TableTDBorder);
	border-bottom:3px solid var(--TableTDBorder);
}
.eventEntry .eventDetails {
	width:100%;
	min-height: 20px;
}
.eventEntry .eventDetails table {
	width:100%;
	font-size: 14px;
	background-color:var(--BackgroundColorMenuBarLeft);
	
}
.eventEntry .eventDetails table th, td {
	
}
.eventEntry .eventDetails table th.eventid,
.eventEntry .eventDetails table td.eventid {
	text-align: center;
	width:110px;
}
.eventEntry .eventDetails table th.source,
.eventEntry .eventDetails table td.source {
	text-align: left;
}
.eventEntry .eventDetails table th.lastevent,
.eventEntry .eventDetails table td.lastevent {
	text-align: center;
	width:90px;
}
.eventEntry .eventDetails table th.occurrence,
.eventEntry .eventDetails table td.occurrence {
	text-align: center;
	width:90px;
}
.eventEntry .eventDetails table th.type,
.eventEntry .eventDetails table td.type {
	text-align: center;
	width:90px;
}
.eventEntry .eventDetails table td.message {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	font-size:12px;
	letter-spacing: 0px;
	padding:5px 4px;
	vertical-align: top;
}
.eventEntry .eventInfo {
	width:100%;

	min-height: 20px;
}



.eventEntry .eventInfo input[type="text"],
.eventEntry .eventInfo input[type="checkbox"]{
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 8px;
	border-radius: 6px;
	border: 1px solid transparent;
	margin:6px 0px;
	background:var(--BackgroundColorContent);
	color:var(--FontColorBody);
}

.eventEntry .eventInfo input[type="submit"]{
	background: var(--BackgroundColorButton);
	padding: 5px 15px;
	border-radius: 5px;
	color: var(--FontColorButton);
	box-shadow:0px;
	border:0px;
	font-size: 20px;
	cursor:pointer;
	
}
.eventEntry .eventInfo input[type="submit"]:hover{
	background: var(--BackgroundColorButtonHover);
}
.eventEntry .eventInfo table {
	width:100%;
	background-color:var(--BackgroundColorMenuBarLeft);
	border-bottom:1px solid var(--TableTDBorder);
}
.eventEntry .eventInfo table th {
	width:150px;
	font-size:14px;
}
.eventEntry .eventInfo table td.tdsubmit {
	width:80px;
	text-align: center;
}


/* livelog */
table.reportloggingevents {
	width:100%;
}
table.reportloggingevents td {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	font-size:12px;
	letter-spacing: 0px;
	padding:5px 4px;
	vertical-align: top;
}
table.reportloggingevents tr:nth-child(2n) {
	background-color:var(--BackgroundColorMenuBarLeft);
}
table.reportloggingevents th {
	padding:3px 4px;
	font-size:16px;
}
table.reportloggingevents th.source,
table.reportloggingevents th.message {
	text-align: left;
}
table.reportloggingevents td.date { width:140px; text-align: center; }
table.reportloggingevents td.level { width:70px; text-align: center; }
table.reportloggingevents td.source { width:160px; }
table.reportloggingevents td.system { text-align:center;}
table.reportloggingevents td.message { 
	word-wrap: break-word; }
table.reportloggingevents td.Error {
	color:#FF0000;
	background-color: black;
}
table.reportloggingevents td.Warning {
	color:#ffdb00;
	background-color:black;
}


/* MDM Devices Table */
table.mdmdevices {
	width:100%;
}
table.mdmdevices th, td {
	font-size:12px;
	letter-spacing: 0px;
	padding:5px 4px;
}
table.mdmdevices tr:nth-child(2n) {
	background-color:var(--BackgroundColorMenuBarLeft);
}
table th.alignright, td.alignright {
	text-align: right;
}
table th.alignleft, td.alignleft {
	text-align: left;
}


.lastrefresh {
	display:inline-block;
	padding:15px;
	box-sizing: border-box;
	width:100%;
	margin-bottom:10px;
	border-bottom:1px solid var(--TableTDBorder);
}
.lastrefreshleft {
	float:left;
}
.lastrefreshright {
	float:right;
}
.newitems {
	background-color:#FFF;
	color:#333;
}

.pdfactionbar {
	padding:10px;
	box-sizing: border-box;
	width:100%;
	height:50px;

	margin-bottom:10px;
}
.pdfactionbar .generate {
	float:left;
}
.pdfactionbar .generate a {
	color:var(--LinkColorContent);
}
.pdfactionbar .lastgeneration {
	float:right;
}


/* table language */
table.language {
	border-bottom:1px solid var(--TableTDBorder);
	width:100%;
	font-size:12px;
	
}
table.language input[type="text"] {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 8px;
	border-radius: 6px;
	border: 1px solid transparent;
	margin:6px 0px;
	background:var(--BackgroundColorMenuBarLeft);
	color:var(--FontColorBody);
}
table.language th {
	min-width:350px;
	max-width: 350px;
	width:350px;
	text-align: left;
}
table.language td.section {
	min-width:150px;
	max-width:150px;
	width:150px;
}
table.language td.tdinformation {
	min-width:150px;
}
table.language td.title {
	font-weight: bold;
	padding-left:7px;
}
/* INTUNE */
table.filter th {
	text-align: left;
}
table.filter select, table.filter input {
	width:400px;
}
/* REGISTER FORM */

.rform{
	width:90%;
	max-width: 1200px;
	margin:30px 0px 0px 50px;
}

.rform .inner-wrap {
	padding: 30px;
	margin:15px 0px 40px 0px;
	background:var(--BackgroundColorFormSection);
	border-radius: 6px;
	clear:both;
	
}
.clear {
	clear:both;
}
.rform .deletion-warning {
	background-color:darkred;
	font-weight: bold;
	color:#FFF;
}
.rform label{
	display: block;
	font-size: 14px;
	margin-top: 10px;
}
.rform input[type="text"],
.rform input[type="date"],
.rform input[type="datetime"],
.rform input[type="email"],
.rform input[type="number"],
.rform input[type="search"],
.rform input[type="time"],
.rform input[type="url"],
.rform input[type="password"],
.rform textarea,
.rform select {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 8px;
	border-radius: 6px;
	border: 1px solid transparent;
	margin:6px 0px;
	background:var(--BackgroundColorContent);
	color:var(--FontColorBody);
}
.rform textarea.input-error,
.rform select.input-error,
.rform input.input-error { 
	
	border:1px solid red;
} 
label.mandatory:after {
	margin-left:5px;
   	font-size:14px;
	color:#FF0000;
	content: '*';
}
.rform div.mandatory:after {
	color:#FF0000;
	content: '*';
}

.rform .section span {
	padding: 5px 10px 5px 10px;
	position: absolute;
	border-radius: 50%;
	border: 2px solid var(--FontColorBody);
	font-size: 14px;
	margin-left: -45px;
	color: var(--FontColorBody);
	margin-top: -3px;
}
.rform input[type="button"], 
.rform input[type="submit"]{
	background: var(--BackgroundColorButton);
	padding: 10px 30px;
	border-radius: 5px;
	color: var(--FontColorButton);
	box-shadow:0px;
	border:0px;
	font-size: 20px;
	cursor:pointer;
	float:right;
}
.rform input[type="button"]:hover, 
.rform input[type="submit"]:hover{
	background: var(--BackgroundColorButtonHover);
}
.rform .section span.note,
.rform .inner-wrap span.note{
	all:initial;
	font-size:16px;
	letter-spacing: 2px;
	color:var(--FontColorBody);
	clear:both;
	display: block;
	margin-bottom:20px;
}
.rform .mfa-button {
	min-height:40px;
	background-color:transparent;
}
.rform .mfa-button input[type="button"] {
	float:left;
	
}
::placeholder {
  color: #DFDFDF;
  opacity: 1; 
}
input:focus::placeholder {
  color: transparent;
}
.downloadButtons {
	margin:20px 0px 20px 0px;
	clear:both;
	display: none;
	float:left;

	
}
.downloadButtons input[type="button"] {
	background:#920002;
	padding: 10px 30px;
	border-radius: 5px;
	color:white;
	box-shadow:0px;
	border:0px;
	font-size: 20px;
	cursor:pointer;
	float:right;
	margin-right:10px;
	
}
.downloadButtons input[type="button"]:hover {
	background:#B20002;
}
.billableEntities th,
.billableEntities td {
	vertical-align: top;
}
.ui-datepicker-header select.ui-datepicker-month,
.ui-datepicker-header select.ui-datepicker-year {
  	background:white;
	color:black;
	width:200px;
}

.notification-report {
	padding:5px;
	width:100%;
	margin:5px 0px;
	box-sizing: border-box;
	display: flex;
	
}
.notification-report-icon {
	margin-right:5px;
}
.notification-report-text {
	font-size:11px;
	font-weight: normal;	
}


.notification {
	padding:20px;
	width:90%;
	max-width: 1200px;
	margin-left:50px;
	float:none;
	clear:both;
	margin-top:20px;
	box-sizing: border-box;
	display: flex;
	
	/*
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); */
}

.notification-info {
	padding:20px;
	width:100%;
	float:none;
	clear:both;
	margin-top:15px;
	margin-bottom:15px;
	box-sizing: border-box;
	display: flex;
	border-radius: 5px;
	
}

.notification-info span {
	clear:both;
	font-size:20px;
	font-weight: bold;
	display: block;
	margin-bottom:10px;
}

.alertWindow {
 	display:none;
  	position: fixed;
  	top: 30px;
  	left: 230px;
  	z-index: 11;
	width:100%;

}
.alertWindow .notification {
	width:100%;
	max-width: 100%;
	box-sizing: border-box;
}
.notification-icon {
	margin-right:5px;
	float:left;

}
.notification-text {

	font-weight: normal;	
	float:left;
}


.notification span {
	clear:both;
	font-size:20px;
	font-weight: bold;
	display: block;
	margin-bottom:10px;
}
.notification-success {
	color:#1c681c;
	border-left:4px solid #1c681c;
	background-color:rgba(210,248,210);
}
.notification-warning {
	background-color:rgba(255,241,204);
	color:rgba(113,100,41);
}
.notification-error {
	color:rgba(145,36,36);
	border-left:4px solid rgba(145,36,36);
	background-color:#FFE8E5;
}
.notification-info {
	background-color:rgba(224,242,255);
	color:rgba(82,123,152);
}

.chart {
	width:95%;
	box-sizing: border-box;
	padding:10px;
	min-height:450px;
}




table.mbxusage {
	width:95%;
	margin:40px 0px;
	clear:both;
	border: none;
	border-collapse: collapse;
	
}
table.mbxusage td, table.mbxusage th {
	border-left:1px solid #000;
	border-top:1px solid  #000;
}
table.mbxusage td:last-child { border: none; }
table.mbxusage td.mbxdate, table.mbxusage tr:first-of-type th:first-child { border-top:none; }
table.mbxusage th:first-child { border-left: none; }
table.mbxusage th {
	text-align: right;
	width:220px;
	padding-right:20px;

}
table.mbxusage td {
	text-align: right;
	padding:20px 20px;
}
td.mbxdate {
	font-weight: bold;
	width:120px;
}
td.mbxactive {
	
	color:green;
	font-weight: bold;
}
td.mbxinactive {
	
	color:#FF0000;
}

/* ADMIN Area */
/* Permission Table */
div.permissiontable,
div.permissiontable table {
	width:100%;
	max-width:600px;
}
div.permissiontable table th {
	text-align: left;	
	padding: 15px 0px;
}
div.permissiontable table td:first-child {
	padding-left:20px;	
	padding:5px 0px 5px 20px;
}


div.pdfview {
	text-align:center;
	height:calc(100vh - 220px) !important;
}