/* Style Sheet */

/* General Page */

* {
	margin: 0;
	padding: 1px;
	text-decoration: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

html, body {
	background-color: WhiteSmoke;
	padding-top: 0px;
	padding-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
	height: 100%;
}


print-page {
	background: white;
	display: block;
	margin: 0 auto;
	box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}


print-page[size="A4"] { 
 
	width: 21cm;
	height: 29.7cm; 

}


print-page[size="A4"][layout="landscape"] {
	
	width: 29.7cm;
	height: auto;  

}


print-page[size="A3"] {
	
	width: 29.7cm;
	height: 42cm;

}


print-page[size="A3"][layout="landscape"] {
	
	width: 42cm;
	height: 29.7cm;  

}


print-page[size="A5"] {
	
	width: 14.8cm;
	height: 21cm;

}


print-page[size="A5"][layout="landscape"] {
	
	width: 21cm;
	height: 14.8cm;  

}


.print-page-break { 

	display: block; 
	page-break-before: always; 
	
}


@media print {
	
	@page {
		
	margin-top: 5mm;
	margin-bottom: 5mm;
	
	}
	
	body  {
		
	-webkit-print-color-adjust: exact;
	
	}

}

.Page {
	
	overflow: auto;
	
}

.ScrollPage {
	
	overflow: auto;
	padding-bottom: 60px;
	
}


.page-name {
	color: black;
	padding: 5px;
}

.page-data {
	position: relative;
	-webkit-animation-name: PageData;
	-webkit-animation-duration: 1s;
	animation-name: PageData;
	animation-duration: 1s
}

@-webkit-keyframes PageData {
	from { bottom:-100px; opacity:0 } 
	to { bottom:0px; opacity:1 }
}

@keyframes PageData { 
	from{ bottom:-100px; opacity:0 } 
	to{ bottom:0; opacity:1 }
}


/* Top Navigation */

/*
.top-navigation {
	overflow: hidden;
	background-color: #333;
	z-index: 999;
}

*/

.top-navigation {
	
	background-color: #333;
	display: block;
	overflow: hidden;
	z-index: 999;
	
}


.top-navigation.sticky {
	
	position: fixed;
	top: 0;
	width: 100%;
  
}


.top-navigation a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}


.top-navigation .right {
	float: right;
}




.top-navigation .active {
	font-size: 17px;    
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

.top-navigation .active:hover {
	background-color: #555;
	color: white;
}

.top-navigation .logo img {

	float: left;
	height: 50px;
}

.top-navigation .icon {
	display: none;
}

.top-navigation .dropdown {
	float: left;
}

.top-navigation .dropdown right {

	float: right;
}

.top-navigation .dropdown .dropbtn {
	font-size: 17px;    
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;

}

.top-navigation img {
	height: 50px;
	float: left;
}

.top-navigation .dropdown-content {
	display: none;
	position: fixed;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 9999;
	overflow: auto;

}

.top-navigation .dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.top-navigation a:hover, .dropdown:hover,  .dropbtn {
	background-color: #555;
	color: white;
}

.top-navigation .dropdown-content a:hover {
	background-color: #ddd;
	color: black;
}

.top-navigation .dropdown:hover .dropdown-content {
	display: block;
}

@media screen and (max-width: 600px) {
	
	.top-navigation a:not(:first-child), .dropdown .dropbtn {
	display: none;
	}
	
	.top-navigation .active {
		display: none;
		
	}
	
	
	.top-navigation a.icon {
	float: right;
	display: block;
	}
}

@media screen and (max-width: 600px) {
	
	.top-navigation.responsive {position: relative;} 
	
	.BannerMessageWindow {
		
		padding-top: 0;
		
	}
	
	
	
	
	.top-navigation.responsive .icon {
	position: absolute;
	right: 0;
	top: 0;
	}
	
	
	
	
	.top-navigation.responsive a {
	float: none;
	display: block;
	text-align: left;
	}
		
	.top-navigation.responsive .right {
	float: left;
	display: block;
	text-align: left;
	width: 100%;
	}
	
	.top-navigation.responsive .dropdown {float: none;}
	.top-navigation.responsive .dropdown-content {position: relative;}
	.top-navigation.responsive .dropdown .dropbtn {
		display: block;
		width: 100%;
		text-align: left;
	}
	
	.top-navigation.responsive .active {
		display: block;
		width: 100%;
		text-align: left;
	}

	
	.top-navigation.responsive .logo {
		width: 100%;
		display: inline-block;

	}
	

	.top-navigation.responsive .logo img {
		height: 50px;
		object-fit: contain;

	}
	


}


/* Banner Message */

.BannerMessageWindow {
	
	padding-top: 60px;
	
}

@media screen and (max-width: 600px) {
	
	
	.BannerMessageWindow {
		
		padding-top: 0;
		
	}
	
}

.banner-message {
	padding: 10px;
	background-color: #f44336;
	border:1px solid #f44336;
	border-radius: 5px;
	color: white;
	opacity: 1;
	transition: opacity 0.6s;
	margin-bottom: 5px;
}

.banner-message.success {background-color: #4CAF50; border:1px solid #4CAF50;}
.banner-message.information {background-color: #2196F3; border:1px solid #2196F3;}
.banner-message.warning {background-color: #ff9800; border:1px solid #ff9800;}
.banner-message.user {background-color: #cf34eb; border:1px solid #cf34eb;}
.banner-message.system {background-color: #a8a3a3; border:1px solid #a8a3a3;}

.banner-message .closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}

.banner-message .closebtn:hover {
	color: black;
}


/* System Name */

.system-name {
	


}

.system-name h2 {
	color: white;
	padding: 8px;
	background-color: #000000;
	border-radius: 5px;
	border-collapse: collapse;
	margin-bottom: 5px;
	
}


/* Page Loader */


#PageLoader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -75px 0 0 -75px;
	border: 16px solid #ecf0f1;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 150px;
	height: 150px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 1;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


#PageLoaderImage {

	position: absolute;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	z-index: 1;
}

#PageLoaderImage>img {

	position: absolute;
	left: 50%;
	top: 50%;
	width: 80px;
	height: 80px;
	margin-top: -40px;
	margin-left: -40px;
  
  }


/* Footer*/


.footer {
	overflow: hidden;
	margin: 0 auto;
	background-color: #333;
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	text-align: center;
	z-index: 99;
  }

.footer p {
	display: block;
	color: #fff;
	padding: 1px 1px 1px 1px;
	text-decoration: none;
	font-size: 12px;
}

.footer-grid {  
	display: grid;  
	grid-gap: 10px;
	padding:0px;	
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	grid-template-rows: auto;
}
  
.footer-logon p {
	color: white;
	text-align: center;
}

@media screen and (max-width: 600px) {
	.footer_logon { display: none; }
}


/* Cookie Policy */

.policy-container {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
}

.policy-container button {
	background-color: silver;
	color: black;
	font-size: 18px;
	padding: 16px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	margin-bottom:10px;
	opacity: 0.8;
}


/* General Content */

.content-frame-50 {
	position:relative;
	margin: auto;
	width: 50%;
	padding: 10px;
}

.content-frame-50.error{
	background: #ff0000;
	position:relative;
	margin: auto;
	width: 50%;
	padding: 10px;
}

.content-frame-100 {
	position:relative;
	margin: auto;
	width: 100%;
	padding: 10px;
	z-index: 1;
}


.content-frame-100-textarea-display {
	position:relative;
	width: 100%;
	padding: 10px;
	z-index: 1;
	margin: 5px 0 22px 0;
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.content-frame-100-textarea-display p{
	
font-size: 1.5em;
	text-align: center;
	margin: .5em 0 .75em;
}


.textarea-display-left {
    float:left;
    width: 33.3%;
}
.textarea-display-right {
    float:right;
    width: 33.3%;
    text-align: right;

}
.textarea-display-center{
    float: left;
    width: 33.3%;
    text-align: center;
}




.text-area-edit {
	position: relative;
	background: transparent;
	border: none !important;
	font-size: 30px;
	color: grey;
	margin-bottom: 10px;
	margin-right:10px;
	width: 25px;
	height: 25px;
	float: right;
	top: 0px;
}


@media screen and (max-width: 600px) {
	
	.content-frame-50 {
	  width: calc(100% - 10px);
	}
	
}

.content-container-white {
  margin: auto;
  max-width: 100%;
  padding: 10px;
  background-color: white;
  
}


.content-frame-50 input[type=text], .content-frame-50 input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  border-radius: 5px;
  background: #f1f1f1;
    box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.content-frame-50 textarea {
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

}

.text-area-input {
	width: 100%;
	position: relative; 
	padding-top: 30px;
	font-family: Arial;
	font-size: 16px;
	overflow: hidden;
}

.text-area-display {
	width: 100%;
	position: relative; 
	padding: 5px;
	background-color: #f8f8f8;
	font-family: Arial;
	font-size: 16px;

}

.text-area-save {
	position: absolute;
	position: absolute;
	background: transparent;
	border: none !important;
	font-size: 30px;
	color: grey;
	padding: 1px;
	width: 25px;
	height: 25px;
	right: 55px;
	top: 0px;
}

.text-area-close {
	position: absolute;
	background: transparent;
	border: none !important;
	font-size: 30px;
	color: grey;
	padding: 1px;
	width: 20px;
	height: 20px;
	right: 15px;
	top: 0px;
}

.tooltip {

}

.tooltip .tooltiptext {
position: absolute;
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.content-frame-50 select {
  width: 100%;
  height: 46px;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  border-radius: 5px;
  background: #ddd;
    box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  
}




/* When the inputs get focus, do something */

.content-frame-50 input[type=text]:focus, .content-frame-50 input[type=password]:focus, textarea:focus {
  background-color: #ddd;
  outline: none;
}



/* Set a style for the submit/login button */
.content-frame-50 .btn {
  background-color: silver;
  color: black;
  font-size: 18px;
  padding: 16px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

.content-frame-50 button:disabled {
  opacity: 0.40;

}

.content-frame-50 button:disabled:hover {
    cursor:not-allowed;
	opacity: 0.40;
 }

/* Add a red background color to the cancel button */
.content-frame-50 .cancel {
  background-color: red;
}

/* Add a red background color to the cancel button */
.content-frame-50 .back {
  background-color: grey;
}

/* Add some hover effects to buttons */
.content-frame-50 .btn:hover, .open-button:hover {
  opacity: 1;
}











.input-container-grey {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  border-radius: 5px;
  background: #f1f1f1;

}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container p {
	
	padding: 1px;
	margin-top: 5px;

}


/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-style: solid;
  border-color: #808080;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #808080;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}








/* Tables */


table {
	border: 1px solid #ccc;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;

}

table select {

  width: 100%;
  padding: 8px 8px;
  border: none;
  border-radius: 5px;
  background: #f1f1f1;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  vertical-align: top;

  
}


table caption {
	
	font-size: 1.25em;
	padding: 5px;

}

table tr {
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	padding: .35em;
}

table th, table td {
	padding: .625em;
	text-align: left;

	
}


table th {
	font-size: .85em;
	letter-spacing: .1em;

}

table button {

  background-color: silver;
  color: black;
  font-size: .85em;
  font-weight: bold;
  padding: .35em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
  
}


table button:disabled {
  opacity: 0.40;

}

table button:disabled:hover {
    cursor:not-allowed;
	opacity: 0.40;
 }

@media screen and (max-width: 600px) {
	table {
		border: 0;
	}

	table caption {
		font-size: 1.3em;
	}

	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	table tr {
		border-bottom: 3px solid #ddd;
		display: block;
		margin-bottom: .625em;
	}

	table td {
		border-bottom: 1px solid #ddd;
		display: block;
		font-size: .8em;
		text-align: right;
	}

	table td::before {
	/*
	* aria-label has no advantage, it won't be read inside a table
	content: attr(aria-label);
	*/
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	table td:last-child {
		border-bottom: 0;
	}
}



/* Date Input */




/* Removes the clear button from date inputs */
input[type="date"]::-webkit-clear-button {
    display: none;
}

/* Removes the spin button */
input[type="date"]::-webkit-inner-spin-button { 
    display: none;
}

/* Always display the drop down caret */
input[type="date"]::-webkit-calendar-picker-indicator {
    color: #000000;
}


/* A few custom styles for date inputs */
input[type="date"] {
    appearance: none;
	width: 100%;
    -webkit-appearance: none;
    color: #000000;
    font-family: Arial;
    font-size: .85em;
	font-weight: bold;
    border:1px solid #ecf0f1;
    background:#ecf0f1;
    padding: 8px 8px;
    display: inline-block !important;
    visibility: visible !important;
}

input[type="date"], focus {
    color: #000000;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    color: #000000;
}

input[type="time"] {
    appearance: none;
	width: 100%;
    -webkit-appearance: none;
    color: #000000;
    font-family: Arial;
    font-size: .85em;
	font-weight: bold;
    border:1px solid #ecf0f1;
    background:#ecf0f1;
    padding: 8px 16px;
    display: inline-block !important;
    visibility: visible !important;
}

input[type="time"], focus {
    color: #000000;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}






















.invalid {
    background:url(../../image/icons/cross.png) no-repeat 0 50%;
    padding-left:22px;
    line-height:24px;
    color:#ec3f41;
}
.valid {
    background:url(../../image/icons/tick.png) no-repeat 0 50%;
    padding-left:22px;
    line-height:24px;
    color:#3a7d34;
}

ul {
   list-style-position: inside;
}

.switch {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: red;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 50%;
  width: 25%;
  left: 10%;
  bottom: 25%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: green;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  left: 65%;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.access-level-switch-panel {
	width: 100%;
	margin: auto;
	padding-left: 10px;
	padding-right: 10px;
	clear:both;

}



.access-level-module-panel {
	width: 100%;
	margin: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	clear:both;

}

.access-level-grid-wrapper-left {
  width: 50%;
  float: left;
  margin: auto;
  padding: 10px;

}


@media screen and (max-width: 600px) {
	
  .access-level-grid-wrapper-left {
	
    width: 100%;
	  
  }
	
}

.access-level-grid-wrapper-right {
  width: 50%;
  float: right;
  margin: auto;
  padding: 10px;

}


@media screen and (max-width: 600px) {
	
  .access-level-grid-wrapper-right {
	
     width: 100%;
	 float: left;
	  
  }
	
}



.access-level-grid-wrapper-full {
  width: 100%;
  float: left;
  margin: auto;
  padding: 10px;

}

.access-level-grid-container-full {
  display: grid;
  grid-template-columns: 4fr 6fr;
  grid-auto-rows: minmax(20px, auto);
  grid-gap: 10px 20px;
  background-color: color: #f2f2f2;
  padding: 10px;
}

@media screen and (max-width: 600px) {
	
  .access-level-grid-container-full {
	
    grid-template-columns: 1fr;
	  
  }
	
}


.access-level-grid-container {
  display: grid;
  grid-template-columns: 2fr 0.5fr;
  grid-auto-rows: minmax(20px, auto);
  grid-gap: 10px 20px;
  background-color: color: #f2f2f2;
  padding: 10px;
}

@media screen and (max-width: 600px) {
	
  .access-level-grid-container {
	
    grid-template-columns: 3fr 1fr;
	  
  }
	
}

.select {
  background-color: #F0F0F0;
  box-sizing:border-box;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0;
  border: none;
  border-radius: 5px;
  font-size: 20px;
}





.access-level-grid-title {
  background-color: lightgray;
  text-align: left;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 20px;
}


.access-level-module-title {
  background-color: lightgray;
  text-align: center;
  padding: 8px 20px;
  border: 1px solid black;
  border-radius: 5px;
  font-size: 20px;
}

input[type=text] {
  background-color: #F0F0F0;
  border: none;
  width: 100%;
  padding: 8px 20px;
  border-radius: 5px;
}

select[type=text] {
  background-color: #F0F0F0;
  border: none;
  width: 100%;
  padding: 8px 20px;
  border-radius: 5px;
}







.flex-container-40-px {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	font-size: 20px;
	text-align: center;
	height: auto;
	border-radius: 5px;
	margin-bottom: 5px;

}


.flex-container-25-vh {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: 25vh;
	border-radius: 5px;
	margin-bottom: 5px;

}


.flex-container-30-vh {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: 30vh;
	border-radius: 5px;
	margin-bottom: 5px;

}


.flex-container-50-vh {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: 50vh;
	border-radius: 5px;
	margin-bottom: 5px;

}


.flex-container-75-vh {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: 75vh;
	border-radius: 5px;
	margin-bottom: 5px;

}


.flex-container-100-vh {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: 100vh;
	border-radius: 5px;
	margin-bottom: 5px;
	
}

.flex-container-h-auto {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: auto;
	border-radius: 5px;
	margin-bottom: 5px;
	
}

.flex-container-h-100 {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: 100%;
	width:100%;
	border-radius: 5px;
	margin-bottom: 5px;
	
}


.flex-item-20 {
	
	background-color: white;
	padding: 10px;
	flex: 20%;
	border:1px solid black;
	border-radius: 5px;
	margin: 2px;
	
}


[class^="flex-item-"].button {
	
	background-color: silver;
	border: 1px solid silver;
	
}


[class^="flex-item-"].button.red {
	
	background-color: red;
	border: 1px solid red;
	
}


[class^="flex-item-"].button.selected {
	
	background-color: grey;
	border: 1px solid grey;
	
}


.button-icon-container {

	float: right;

}

.button-icon-button {
	
	border: 1px solid Silver;
	border-radius: 5px;
	margin: 10px auto;
	height: 30px;
	width: 30x;
	text-align: center;
	vertical-align: middle;
	line-height: 30px;
	background-color: Silver;
	font-size: 20px;
padding: 5px;	
		
}


[class^="flex-item-"].blend {
	
	background-color: WhiteSmoke;
	border: none;
	
}


[class^="flex-item-"].hidden {
	
	visibility: hidden;
	
}

[class^="flex-item-"].empty {
	
	background-color: WhiteSmoke;
	
}

[class^="flex-item-"].display-none {
	
	display: none;
	
}

[class^="flex-item-"].no-border {
	
	border: none;	
	
}


[class^="flex-item-"].title {
	
	background-color: WhiteSmoke;
	font-size: 16px;
	color: black;
	text-align: left;
	border: none;
	
}

.error-tile {
	
	border: none;
	border-radius: 5px;
	margin: 10px auto;
	height: 200px;
	width: 200px;
	text-align: center;
	vertical-align: middle;
	line-height: 200px;
	background-color: WhiteSmoke;
	font-size: 150px; 
	color: red;

}

.item-title-center {
	
	border: 1px solid LightGray;
	border-radius: 5px;
	padding: 5px;
	background: LightGray;
	font-size: 14px;
	font-family: inherit;
	color: black;
	font-weight: bold;
	text-align: center;

}


.item-title-center.red {
	
	border: 1px solid red;
	background: red;
	
}

.flex-item-tile-test {
	
	background-color: white;
	padding: 10px;
	flex: 400px;
	border:1px solid black;
	border-radius: 5px;
	margin: 2px;

}


.flex-item-25 {
	
	background-color: white;
	padding: 10px;
	flex: 25%;
	border:1px solid black;
	border-radius: 5px;
	margin: 2px;

}


.flex-item-50 {
	
	background-color: white;
	padding: 10px;
	flex: 50%;
	border:1px solid black;
	border-radius: 5px;
	margin: 2px;
	
}


.flex-item-75 {
	
	background-color: white;
	padding: 10px;
	flex: 75%;
	border:1px solid black;
	border-radius: 5px;
	margin: 2px;
	
}


.flex-item-100 {
	
	background-color: white;
	padding: 10px;
	flex: 100%;
	border:1px solid black;
	border-radius: 5px;
	margin: 2px;
	
}


@media screen and (max-width: 600px) {
  .flex-container-40-px, .flex-container-25-vh, .flex-container-30-vh, .flex-container-50-vh, .flex-container-75-vh, .flex-container-100-vh  {
      flex-direction: column;
	  height: auto;
  }
}


.tab-button-text {

	font-size: 20px;
	color: black;	
	
}


.tab-button-icon {
	
	text-align: center;
	position: relative;
	background: transparent;
	border: none !important;
	font-size: 20px;
	color: black;

	width: 25px;
	height: 25px;
	
}

.tab-button-icon.right {
	
  display: block;
  float: right;

}

.tab-button-icon.left {
	
  display: block;
  float: left;
	
}

.edit-form-input {
	
	font-size: 16px;
	color: black;
		
}

.edit-form-input hr {
	
	
	color: black;
	  border-top: 8px solid #bbb;
  border-radius: 5px;
  margin: 5px 0 22px 0;
  padding: 0px;
		
}

.edit-form-input h4 {
	
  padding: 1px;
		
}

.edit-form-textarea-input-2 {
	
	width: 100%;
	height: 120px;
	padding: 10px;
	margin: 5px 0 18px 0;
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-size: 16px;
	font-family: inherit;
	color: black;
	text-align: left;
	
}


.edit-form-textarea-100 {
	
	width: 100%;
	height: 100%;
	padding: 10px;
	margin: 5px 0 18px 0;
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-size: 16px;
	font-family: inherit;
	color: black;
	text-align: left;
	
}

.edit-form-textarea-100.auto-overflow {
	
	 resize: vertical;
	 height: auto;
	
}


.edit-form-input input[type=text] {
	
	width: 100%;
	padding: 10px;
	margin: 5px 0 5px 0;
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

}

.edit-form-input input[type=date] {
	
	width: 100%;
	padding: 10px;
	margin: 5px 0 5px 0;
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

}

.edit-form-input input[type=time] {
	
	width: 100%;
	padding: 10px;
	margin: 5px 0 5px 0;
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

}


.edit-form-input select {
	
	width: 100%;
	padding: 10px;
	margin: 5px 0 5px 0; 
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

}


.edit-form-input-checkbox {
	
	display: block;
	position: relative;
	margin-bottom: 5px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

}








/* Hide the browser's default checkbox */
.edit-form-input-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.edit-form-input-checkbox p {
	
	padding: 1px;
	margin-top: 5px;

}


/* Create a custom checkbox */
.edit-form-input-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-style: solid;
  border-color: #808080;
}

/* On mouse-over, add a grey background color */
.edit-form-input-checkbox:hover input ~ .edit-form-input-checkmark  {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.edit-form-input-checkbox input:checked ~ .edit-form-input-checkmark  {
  background-color: #808080;
}

/* Create the checkmark/indicator (hidden when not checked) */
.edit-form-input-checkmark :after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.edit-form-input-checkbox input:checked ~ .edit-form-input-checkmark :after {
  display: block;
}

/* Style the checkmark/indicator */
.edit-form-input-checkbox .edit-form-input-checkmark :after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}














[class^="edit-form-input"].disabled input[type=text],  [class^="edit-form-input"].disabled select,  [class^="edit-form-input"].disabled textarea{
	
	pointer-events:none;
		
}


.edit-form-input select:focus, input[type=text]:focus, input[type=password]:focus, textarea:focus {
	
	background-color: #ddd;
	outline: none;

}


.edit-form-input label {
	
	float: left;
	width: 10em;
	margin-right: 1em;
	text-align: left;

}


.schedule-table-row-deleted {
	
	text-decoration: line-through;
	text-decoration-color: red;
	background-color: #F67280;
	
}


.schedule-table-row-cancelled {
	
	background-color: #C1E1C1;

}


.schedule-table-row-active {
	
	background-color: #fc03e8;

}





.app-flex-row-container-40-px {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: auto;
	border-radius: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	max-width: 400px;
	justify-content: center;
		
}


.app-flex-col-container-h-auto {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	height: auto;
	border-radius: 5px;
	margin-bottom: 5px;
	max-width: 400px;
	justify-content: center;
	
}


.app-flex-row-container-h-auto {
	
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	height: auto;
	border-radius: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	max-width: 400px;
	justify-content: center;
		
}


.app-flex-row-container-h-auto.title {
	
	 background: LightGray;
	 font-size: 16px;
	 margin: 0;

}


.app-data-container {
	
	border: 1px solid black;
	border-radius: 5px;
	margin-bottom: 5px;
	
}


.app-flex-item-25 {
	
	background-color: white;
	padding: 1px;
	flex: 25%;
	border-radius: 5px;
	margin-bottom: 3px;
	
}


.app-flex-item-50 {
	
	background-color: white;
	padding: 1px;
	flex: 50%;
	border: none;
	border-radius: 5px;
	margin-bottom: 3px;
	
}


.app-flex-item-75 {
	
	background-color: white;
	padding: 1px;
	flex: 75%;
	border-radius: 5px;
	margin-bottom: 3px;
	
}


.app-flex-item-100 {
	
	background-color: white;
	padding: 1px;
	flex: 100%;
	border-radius: 5px;
	margin-bottom: 3px;
	
}


.app-item-title {
	
	border: 1px solid LightGray;
	border-radius: 5px;
	padding: 2px;
	background: LightGray;
	font-size: 14px;
	font-family: inherit;
	color: black;
	font-weight: bold;
	text-align: left;
		
}


.app-item-title-center {
	
	border: 1px solid LightGray;
	border-radius: 5px;
	padding: 5px;
	background: LightGray;
	font-size: 14px;
	font-family: inherit;
	color: black;
	font-weight: bold;
	text-align: center;

}


.app-item-title-center.red {
	
	border: 1px solid red;
	background: red;
	
}


.app-item-data {
	
	border: 1px solid LightGray;
	border-radius: 5px;
	padding: 2px;
	font-size: 14px;
	font-family: inherit;
	color: black;
	text-align: left;
	
}

.app-item-data-center {
	
	border: 1px solid White;
	border-radius: 5px;
	padding: 5px;
	background: White;
	font-size: 14px;
	font-family: inherit;
	color: black;
	font-weight: bold;
	text-align: center;

}




[class^="app-flex-item-"].button {
	
	text-align: center;
	font-size: 20px;
	background-color: silver;
	border: 1px solid silver;
	height: auto;
	margin-bottom: 5px;
	padding: 10px;
	
}


[class^="app-flex-item-"].button.red {
	
	background-color: red;
	border: 1px solid red;
	
}

[class^="app-flex-item-"].button.green {
	
	background-color: green;
	border: 1px solid green;
	
}


[class^="app-flex-item-"].button.selected {
	
	background-color: grey;
	border: 1px solid grey;
	
}


[class^="app-flex-item-"].title-header {
	
	border: 1px solid LightGray;
	border-radius: 5px;
	padding: 2px;
	background: LightGray;
	font-size: 20px;
	font-family: inherit;
	color: black;
	font-weight: bold;
	text-align: left;

	
}

[class^="app-flex-item-"].data-header {
	
	border: 1px solid LightGray;
	border-radius: 5px;
	padding: 2px;
	font-size: 20px;
	font-family: inherit;
	color: black;
	font-weight: bold;
	text-align: left;

	
}


[class^="app-flex-item-"].hidden {
	
	visibility: hidden;
	
}

[class^="app-flex-item-"].blend {
	
	background-color: WhiteSmoke;
	
}




[class^="app-flex-item-"].empty {
	
	background-color: WhiteSmoke;

}


[class^="app-flex-item-"].display-none {
	
	display: none;
	
}


[class^="app-flex-item-"].title {
	
	background-color: WhiteSmoke;
	font-size: 16px;
	color: black;
	text-align: left;
	border: none;
	
}


.app-flex-item-25 {
	
	background-color: white;
	padding: 10px;
	flex: 25%;
	border:1px solid black;
	border-radius: 5px;
	margin: 2px;

}


.app-tab-button-icon {
	
	text-align: center;
	vertical-align: middle;
	background: transparent;
	border: none !important;
	font-size: 20px;
	color: black;
	width: 100%;

}


.app-text-area {
	
	width: 100%;
	padding: 10px;
	margin: 5px 0 18px 0;
	border: none;
	border-radius: 5px;
	background: #f1f1f1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-size: 16px;
	font-family: inherit;
	color: black;
	text-align: left;
	resize: vertical;
    overflow: auto;
	
}


.app-text-area.vh25 {
	
	min-height: 25vh;
	
}


.app-text-area.vh30 {
	
	min-height: 30vh;
	
}


.app-text-area.vh40 {
	
	min-height: 40vh;
	
}


.app-line-break {
	
	color: black;
	border-top: 8px solid #bbb;
	border-radius: 5px;
	margin: 5px 0 22px 0;
	padding: 0px;
	margin-top: 20px;
		
}


.app-dashboard-tile {
	
	border: 1px solid Silver;
	border-radius: 5px;
	margin: 10px auto;
	height: 200px;
	width: 200px;
	text-align: center;
	vertical-align: middle;
	line-height: 200px;
	background-color: Silver;
	font-size: 160px; 
		
}


.app-error-tile {
	
	border: none;
	border-radius: 5px;
	margin: 10px auto;
	height: 200px;
	width: 200px;
	text-align: center;
	vertical-align: middle;
	line-height: 200px;
	background-color: WhiteSmoke;
	font-size: 150px; 
	color: red;

}

.ts-table-main-table-header {
background-color: #808080;
text-align: center;	
position: sticky;
	
}

.ts-table-day-table-header {
background-color: #d9d9d9;
text-align: center;	
	
}

.ts-table-day-table-values {
background-color: #e6e6e6;
text-align: center;	
	
}



.ts-table-day-table-header.top {
	
	border-top: 2px solid #808080;
	
}

.ts-table-day-table-values.bottom {
	
	border-bottom: 2px solid #808080;
	
}




.ts-table-travel {
background-color: #ffccff;	
	
}

.ts-table-site {
background-color: #ccffcc;	
	
}

.ts-table-break {
	
background-color: #ffcccc;
	
}


.printable-table caption {
	
	font-size: 20px;
	margin: 5px;
	
	
}


.printable-table th {
	
	font-size: 10px;
	padding: 1px;
	text-align: left;
	
}


.printable-table td {
	
	font-size: 10px;
	padding: 1px;
	text-align: left;
	
}

