table,
td {
	border: 1px solid #333;
}

thead,
tfoot {
	background-color: #333;
	color: #fff;
}

.container {
	width: 95%;
	margin: 12% auto;
	padding: 20px;
	background: #eeeeee;
	border: 1px solid #969696;	
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #eeeeee;
	border: 1px solid #969696;
	z-index: 100;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #eeeeee;
	border: 1px solid #969696;
	z-index: 100;
}

.logo {
	height: 17px;
	width: 17px;
	z-index: 100;
}

.input-edit{
     border: 3px solid #555; 
	 text-transform:uppercase;
	 width:98%;
	 text-align:center;
}

.input-code{
     border: 3px solid #555; 
	 text-transform:uppercase;
	 width:98%;
	 text-align:center;
	 border-color: blue;
}

.input-code-scan{
  background-color: white;
  background-image: url('../img/scan.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  line-height: 42px;
  font-size:24px;
  width:98%;
  font-family: monospace;
  text-align:center;
}

.input-fixed-place{
  background-color: white;
  background-image: url('../img/town.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  line-height: 42px;
  font-size:24px;
  width:99%;
  font-family: monospace;
  text-transform:uppercase;
  text-align:center;	
}


.readOnly{
 
}


.button-red {
	background-color: #f44336;
	/* Red */
	border: none;
	color: white;
	padding: 7px 7px;
	text-align: center;
	margin: 2px;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 2px;
}

.button-blue {
	background-color: #00BFFF;
	/* Red */
	border: none;
	color: white;
	padding: 7px 7px;
	text-align: center;
	margin: 2px;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 2px;
}

.button-fade {
	background-color: #2F4F4F;
	/* Fade */
	border: none;
	color: white;
	padding: 7px 7px;
	text-align: center;
	margin: 2px;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 2px;
}


.button-green {
	background-color: #4CAF50;
	/* Green */
	border: none;
	color: white;
	padding: 7px 7px;
	text-align: center;
	margin: 2px;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 2px;
}

/* Alert message box */

.alert-red {
	padding: 20px;
	background-color: #f44336;
	/* Red */
	color: white;
	margin-bottom: 15px;
}

.alert-green {
	padding: 20px;
	background-color: #4CAF50;
	/* Red */
	color: white;
	margin-bottom: 15px;
}




.data-list {
  list-style:none;
  font-size: 13px;
  list-style-image: url('../img/select.png');
  cursor: default;
}

/* ----------------------------------  MODALE CSS -------------------------------------*/
 
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 10px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}