/* Style Sheet */

* {
  margin: 0;
  padding: 1px;
  text-decoration: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html, body {
	background-color: WhiteSmoke;
	padding-top: 28px;
	padding-bottom: 40px;
	font-family: Arial, Helvetica, sans-serif;
}

#page {
	overflow: auto;
	
}

.MessageBox {
 margin-top: 1px;   
}

.AlertBox {
 margin-top: 1px;

}

.topnav {
  z-index: 500;
  background-color: #333;
  margin-bottom: auto;
  left: 0;
  width: 100%;
  position: fixed;
  top:0;   
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;  
  border: none;
  outline: none;
  margin: 0;  
}

.topnav button {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;  
  border: none;
  outline: none;
  margin: 0;  
}

.navlogo {

  float: left;
  overflow: hidden;
  height: 50px;
	
}

@media screen and (max-width: 600px) {
	
	.navlogo {
	   height: 50px;
	}



	
}
.navlogo.logo {

  height: 100%;
	
}



.active {
  background-color: Gray;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}



.dropdown-right {
  float: right;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: left;
    display: block;

  }
  .topnav button.icon {
    float: richt;
    display: block;

  }
}


@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: block;
    right: 0;
    top: 0;
	z-index: 501;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .topnav.responsive button {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

.system_name h2 {
  color: white;
  padding: 8px;
  background-color: #000000;
  border-radius: 5px;
  border-collapse: collapse;
  margin-bottom: 5px;
}


.page_name {
  color: black;
  padding: 5px;
}

.content_heading h3 {
  color: black;
  padding: 5px;
  font-size: 16px;
}

/* Pool Search */

#pool_search {
  width: 100%;
  overflow:visible;
  margin-bottom:2px;

}

#pool_search div {
  float: left;
  width: 100%;
  overflow:visible;
}


/* Dropdown Box */


/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
  font-size: 18px;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}



.select-selected {
  background-color: #ecf0f1;
  border:1px solid #ecf0f1;
  border-radius: 5px;
}



/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 5px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #000000;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: Gray;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #ecf0f1;);
}



/* Date Picker */

/* 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: 18px;
    border:1px solid #ecf0f1;
    background:#ecf0f1;
    padding: 8px 16px;
    display: inline-block !important;
    visibility: visible !important;
}

input[type="date"], focus {
    color: #000000;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.search_input {
  background-image: url('/css/searchicon.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}




/* Pool Results Table */


table {
  border: 1px solid black;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

tr:nth-child(even) {background-color: #f2f2f2;}

table th,
table td {
  padding: .625em;
  text-align: center;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  background-color: lightgray;
}


@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 tr:nth-child(even){background-color: lightgray}
  
  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:empty::after{
  content: "\00a0";
}
  
  table td:last-child {
    border-bottom: 0;
  }
}



















/* Button */

.button {
  background-color: silver;
  border: none;
  color: black;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  cursor: pointer;
  border:1px solid silver;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 5}

.button:hover:enabled {
  background-color: gray;
  color: white;
}

.button:disabled {
  opacity: 0.40;
  cursor: not-allowed;
}


.wrapper-main {
  width: 900px;
  margin: 0 auto;
}

header {
  width: calc(100% - 30px);
  height: 60px;
  padding: 0 5px;
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Nav Bar */

.nav-header-main {
  height: 80%;
  display: flex;
  flex-direction: row;
}

.header-logo {
  width: 48px;
  padding-right: 20px;
}

.nav-header-main img {
  height: 100%;
}

.nav-header-main ul {
  height: 100%;
}

.nav-header-main ul li {
  list-style: none;
  float: left;
  height: 100%;
}

.nav-header-main ul li a {
  display: block;
  height: 100%;
  padding: 0 10px;
  border-radius: 6px;
  line-height: 48px;
  font-family: arial;
  font-size: 16px;
  color: #111;
  text-transform: uppercase;
}

.header-login {
  height: 60%;
  display: flex;
  flex-direction: row;
}

.header-login form {
  height: 100%;
}

.header-login form input {
  height: 100%;
  width: 160px;
  padding: 0 15px;
  border: none;
  border-radius: 4px;
  background-color: #F6F6F6;
  float: left;
  margin-left: 8px;
  font-family: arial;
}

.header-login form button {
  height: 100%;
  padding: 0 10px;
  border: none;
  border-radius: 4px;
  background-color: #333;
  margin-left: 8px;
  font-family: arial;
  font-size: 13px;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
}

.header-signup {
  height: 100%;
  width: 70px;
  padding: 0 6px;
  border: none;
  border-radius: 4px;
  margin-left: 8px;
  font-family: arial;
  font-size: 13px;
  line-height: 36px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
}

main {
  padding-top: 20px;
}

.section-default {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  background-color: #FFF;
}

.login-status {
  text-align: center;
  font-size: 26px;
  font-family: arial;
  color: #111;
}

h1 {
  text-align: center;
  font-size: 26px;
  font-family: arial;
  color: #111;
}

/* signup.php */

.form-signup {
  margin: 0 auto;
  padding-top: 20px;
  width: 60%;
}

.form-signup input {
  width: calc(100% - 10px);
  height: 40px;
  padding: 0 15px;
  margin-bottom: 10px;
  border: 1px solid #ecf0f1;
  background-color: #ecf0f1;
  float: left;
  font-family: arial;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.form-signup button {
  width: calc(100% - 10px);
  display: inline-block;
  height: 40px;
  padding: 0px 15px;
  margin-top: 20px;
  margin-bottom: 10px;
  border: 1px solid #ecf0f1;
  border-radius: 5px;
  background-color: silver;
  cursor: pointer;
  font-size: 18px;
  color: black;
  text-align: center;

  
}

.form-signup button:hover:enabled {
  background-color: gray;
  color: white;
}

.form-signup button:disabled {
  opacity: 0.40;
  cursor: not-allowed;
}




.form-signup a {
  width: 100%;
  display: inline-block;
  height: 40px;
  padding: 0px 15px;
  margin-top: 20px;
  border: none;
  background-color: Gray;
  font-size: 18px;
  color: white;
  text-align: center;
  border:1px solid Gray;
}




.rts35_logo_large {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}









/* Alert Messages */

.alert {
  padding: 10px;
  background-color: #f44336;
  border:1px solid #f44336;
  border-radius: 5px;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 5px;
}

.alert.success {background-color: #4CAF50; border:1px solid #4CAF50;}
.alert.info {background-color: #2196F3; border:1px solid #2196F3;}
.alert.warning {background-color: #ff9800; border:1px solid #ff9800;}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.group5 {
  display: block;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 22px;
  color: black;
  border-style: solid;
  border-width: 1px;
  border-color: Gray;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.group5 input[type=number], select {
  width: 15%;
  font-size: 16px;
  padding: 8px 8px;
  margin: 8px 0;
  display: relative;
  border-style: solid;
  border-width: 1px;
  border-color: Gray;
}

.group5 input[type=text], select {
  width: 98.5%;
  height: 80%;
  font-size: 16px;
  padding: 8px 8px;
  margin: 8px 0;
  display: relative;
  border-style: solid;
  border-width: 1px;
  border-color: Gray;
}

.group5 textarea {
  width: 95%;
  height: 40%;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 8px;
  display: block;
  border-style: solid;
  border-width: 1px;
  border-color: Gray;
}

.group4 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 22px;
  color: black;
  border-style: solid;
  border-width: 1px;
  border-color: Gray;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.group4 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.group4:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.group4 input:checked ~ .checkmark {
  background-color: Gray;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.group4 input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.group4 .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.group1 {
  display: block;
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 22px;
  border-style: solid;
  border-width: 3px;
  border-color: Gray;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.group2 {
  display: block;
  position: relative;
  color: black;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

.group3 {
  display: block;
  position: relative;
  color: black;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 20px;
}


/* Footer */

.footer {
  overflow: hidden;
  margin: 0 auto;
  background-color: #333;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;

  
  }

.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: 800px) {
  #footer_logon { display: none; }
}


/* Pool Search */

.date_search {  
    display: grid;  
    grid-gap: 10px;
	padding:5px;	
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    grid-template-rows: auto;
    
}

.search {

  display: block; 
  width: 100%;
  position: relative;
  border:1px solid black;
  border-radius: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;  

}

.search_header {
  background-color: #DCDCDC;
  color: black;
  text-align: center;
  padding:5px;
  border:1px solid black;
  border-radius: 5px;
  margin-bottom: 5px;
  font-weight: bold;
	
}

.search_button {
  color: black;
  text-align: center;
  padding:5px;
  margin-bottom: 5px;
  font-weight: bold;
  
}

/* Loading Spinner */

#content-loader {
  border: 16px solid #ecf0f1;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: auto;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#content-loader-image {

  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  z-index: 1;
}

#content-loader-image>img {

   position: absolute;
   left: 50%;
   top: 50%;
   width: 60px;
   height: 60px;
   margin-top: -30px;
   margin-left: -30px;
  
  }










#page-loader {
  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); }
}


#page-loader-image {

  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  z-index: 1;
}

#page-loader-image>img {

   position: absolute;
   left: 50%;
   top: 50%;
   width: 80px;
   height: 80px;
   margin-top: -40px;
   margin-left: -40px;
  
  }























/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
  text-align: center;
}


.dot-red {
  height: 25px;
  width: 25px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}

.dot-green {
  height: 25px;
  width: 25px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;

}

.dash_module {  
    display: grid;
    grid-gap: 10px;
	padding:5px;	
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    grid-template-rows: auto;
    
}

.chart {

  display: block; 
  width: 100%;
  height: auto;
  position: relative;
  border:1px solid black;
  border-radius: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;  

}

.chart_header {
  background-color: #DCDCDC;
  color: black;
  text-align: center;
  padding:5px;
  border:1px solid black;
  border-radius: 5px;
  margin-bottom: 5px;
  font-weight: bold;
	
}

/* Password Checker */


#Password-Info-Prompt {

    display:none;
	margin: auto;
	bottom:-75px;
    bottom: -115px\9; /* IE Specific */
    right:55px;
    width:50%;
    padding:15px;
    background:#fefefe;
    font-size:.875em;
    border-radius:5px;
    box-shadow:0 1px 3px #ccc;
    border:1px solid #ddd;
}

.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;
}


/*Pool Pin */

.pool-pin {
  margin: 0 auto;
  padding-top: 20px;
  width: 60%;
}

.pool-pin input {
  width: 100%;
  background-color: #ecf0f1;
  font-size: 30px;
  text-align: center;
}


.pool-pin-data-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(20px, auto);
  grid-gap: 10px 20px;
  background-color: color: #ecf0f1;
  border: 1px solid;
  border-radius: 5px;
  padding: 10px;
}

.pool-pin-number {

  font-size: 30px;
  text-align: center;
  font-weight: bold;
  border: 1px solid;
  border-radius: 5px;
  padding: 10px;
    	
}



.dashboard-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 25%;
  max-height: 100%;
  max-width: 100%;
}


.dashboard-site-logo {
  width: 50%;
  margin: auto;
}

.dashboard-site-logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 100%;
  max-width: 100%;
}






/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
  
}

/* The popup form - hidden by default */
.input-popup {
  position:relative;
  margin: auto;
  width: 50%;
  padding: 10px;
  /* z-index: 1000; */
}

@media screen and (max-width: 600px) {
	
	.input-popup {
	  width: calc(100% - 10px);
	}
	
}



.terms-popup {
  position:relative;
  margin: auto;
  width: calc(100% - 10px);
  padding: 10px;
  z-index: 499;
}

.terms-container {
  margin: auto;
  max-width: 100%;
  padding: 10px;
  background-color: white;
}

.terms-container h4 {
  text-decoration: underline;
  font-weight: bold;  
}

.terms-container .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;
}









/* Add styles to the form container */
.input-container {
  margin: auto;
  max-width: 100%;
  padding: 10px;
  background-color: white;
  
}


.networkbanner-onnet {
  color: white;
  padding: 8px;
  background-color: #4CAF50;
  border-radius: 5px;
  border-collapse: collapse;
  margin-bottom: 20px;
}	

.networkbanner-offnet {
  color: white;
  padding: 8px;
  background-color: red;
  border-radius: 5px;
  border-collapse: collapse;
  margin-bottom: 20px;
}		
	
	
	






/* Full-width input fields */
.input-container input[type=text], .input-container 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;
}

.input-container select {
  width: 100%;
  height: 46px;
  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;
  
}




/* When the inputs get focus, do something */
.input-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}



/* Set a style for the submit/login button */
.input-container .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;
}

.input-container .btn-green{
  background-color: green;
  color: black;
  font-size: 18px;
  padding: 16px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

.input-container .btn-red{
  background-color: red;
  color: black;
  font-size: 18px;
  padding: 16px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}






.input-container button:disabled {
  opacity: 0.40;

}

.input-container button:disabled:hover {
    cursor:not-allowed;
	opacity: 0.40;
 }

/* Add a red background color to the cancel button */
.input-container .cancel {
  background-color: red;
}

/* Add a red background color to the cancel button */
.input-container .back {
  background-color: grey;
}

/* Add some hover effects to buttons */
.input-container .btn:hover, .open-button:hover {
  opacity: 1;
}



/* Network Status */




.networkstatus-offline {

  float: right;
  font-size:40px;
  color: silver;
  
}






.networkstatus-onnet {
  
  float: right;
  font-size:40px;
  color: green;
}

.networkstatus-offnet {

  float: right;
  font-size:40px;
  color: red;
  
}


.devicestatus {
  
  font-size:30px;
  	
}

.devicestatus.onnet {

  color: green;
}

.devicestatus.offnet {

  color: red;
}

.devicestatus.offline {

  color: silver;
}


@media screen and (max-width: 600px) {
	
	.networkstatus {
	    font-size:40px;
	}
	
}




.input-container2 {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  border-radius: 5px;
  background: #f1f1f1;
}





.CheckboxContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  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 */
.CheckboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


/* 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 */
.CheckboxContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.CheckboxContainer 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 */
.CheckboxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.CheckboxContainer .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);
}



.policy-container {
    position: fixed;
    bottom: 0;
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  border-radius: 5px;
  background: #f1f1f1;
}

.policy-container .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;
}



.linear-activity {
    overflow: hidden;
    width: 50%;
    height: 20px;
    background-color: #B3E5FC;
    margin: 20px auto;
}

.determinate {
    position: relative;
    max-width: 100%;
    height: 100%;
    -webkit-transition: width 500ms ease-out 5s;
       -moz-transition: width 500ms ease-out 5s;
         -o-transition: width 500ms ease-out 5s;
            transition: width 500ms ease-out 5s;
    background-color: #03A9F4;
}

.indeterminate {
    position: relative;
    width: 100%;
    height: 100%;
}

.indeterminate:before {
    content: '';
    position: absolute;
    height: 100%;
    background-color: #03A9F4;
    animation: indeterminate_first 5s infinite ease-out;
}



@keyframes indeterminate_first {
    0% {
        left: -100%;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}


@keyframes indeterminate_second {
    0% {
        left: -150%;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}