@charset "UTF-8";
/* CSS Document */

* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

body {
  	background-color: #435165;
}

.ctr-button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.fixed_header{
	margin: auto;
	margin-bottom: 10px;
    width: 1000px;
    table-layout: fixed;
    border-collapse: collapse;
}

.fixed_header tbody{
  	display:block;
  	width: 100%;
  	overflow: auto;
  	height: 100px;
	background: tan;
}

.fixed_header thead tr {
   display: block;
}

.fixed_header thead {
  background: black;
  color:#fff;
}

.fixed_header th, .fixed_header td {
  padding: 5px;
  text-align: left;
  width: 210px;
}

.consign_header{
	/*			
	general layout entire table
	*/
	margin: auto;
	margin-bottom: 10px;
    width: 1000px;
    table-layout: fixed;
    border-collapse: collapse;
	border: 1px solid black;
}

.consign_header tbody{
	/*
	body attributes
	*/
  	display:block;
  	width: 100%;
  	overflow: auto;
  	height: 300px;
	background: #50C2E9;
}

.consign_header thead tr {
	/*
	header row
	*/
   display: block;
}

.consign_header thead {
	/*   header (all)   */
  background: black;
  color:#fff;
}

.consign_header th, .consign_header td {
	/*
	th = column in header
	td = column in table
	*/
  padding: 5px;
  text-align: center;
  /*width: 280px;*/
  border: 1px solid black;
}

.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login h3 {
  	text-align: center;
  	color:firebrick;
  	font-size: 18px;
  	padding: 5px 0 5px 0;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}

.navtop {
	background-color: #2f3947;
	height: 60px;
	width: 100%;
	border: 0;
}
.navtop div {
	display: flex;
	margin: 0 auto;
	width: 1000px;
	height: 100%;
}
.navtop div h1, .navtop div a {
	display: inline-flex;
	align-items: center;
}
.navtop div h1 {
	flex: 1;
	font-size: 24px;
	padding: 0;
	margin: 0;
	color: #eaebed;
	font-weight: normal;
}
.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
}
.navtop div a i {
	padding: 2px 8px 0 0;
}
.navtop div a:hover {
	color: #eaebed;
}

body.infopage {
	background-color: #f3f4f7;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.content {
	width: 1000px;
	margin: 0 auto;
}
.content h2 {
	margin: 0;
	padding: 25px 0;
	font-size: 22px;
	border-bottom: 1px solid #e0e0e3;
	color: #4a536e;
}
.content > div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
}

body.loggedin {
	background-color: #f3f4f7;
}
.content {
	width: 1000px;
	margin: 0 auto;
}
.content h2 {
	margin: 0;
	padding: 25px 0;
	font-size: 22px;
	border-bottom: 1px solid #e0e0e3;
	color: #4a536e;
}
.content > p, .content > div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
}
.content > p table td, .content > div table td {
	padding: 5px;
	border: 1px solid black;
}
.content > p table td:first-child, .content > div table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
	border: 1px solid black;
}
.content > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}

.fa,.fab,.fal,.far,.fas{
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
	display:inline-block;
	font-style:normal;
	font-variant:normal;
	text-rendering:auto;
	line-height:1}
.fa-lg{
	font-size:1.33333em;
	line-height:.75em;
	vertical-align:-.0667em}
.fa-xs{
	font-size:.75em}
.fa-sm{
	font-size:.875em}
.fa-1x{
	font-size:1em}
.fa-2x{
	font-size:2em}
.fa-3x{
	font-size:3em}
.fa-4x{
	font-size:4em}
.fa-5x{
	font-size:5em}
.fa-6x{
	font-size:6em}
.fa-7x{
	font-size:7em}
.fa-8x{
	font-size:8em}
.fa-9x{
	font-size:9em}
.fa-10x{
font-size:10em}
.fa-fw{
text-align:center;
width:1.25em}
.fa-ul{
list-style-type:none;
margin-left:2.5em;
padding-left:0}
.fa-ul>li{
position:relative}
.fa-li{
left:-2em;
position:absolute;
text-align:center;
width:2em;
line-height:inherit}
.fa-border{
border:.08em solid #eee;
border-radius:.1em;
padding:.2em .25em .15em}
.fa-pull-left{
float:left}
.fa-pull-right{
float:right}
.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{
	margin-right:.3em}
.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{
	margin-left:.3em}
.fa-spin{
	animation:fa-spin 2s infinite linear}
.fa-pulse{
	animation:fa-spin 1s infinite steps(8)}
@keyframes fa-spin{
0%{
	transform:rotate(0deg)}
to{
	transform:rotate(1turn)}
}
.fa-rotate-90{
	-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
	transform:rotate(90deg)}
.fa-rotate-180{
	-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	transform:rotate(180deg)}
.fa-rotate-270{
	-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
	transform:rotate(270deg)}
.fa-flip-horizontal{
	-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	transform:scaleX(-1)}
.fa-flip-vertical{
	transform:scaleY(-1)}
.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{
	-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}
.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{
	transform:scale(-1)}
:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{
	filter:none}
.fa-stack{
	display:inline-block;
	height:2em;
	line-height:2em;
	position:relative;
	vertical-align:middle;
	width:2.5em}
.fa-stack-1x,.fa-stack-2x{
	left:0;
	position:absolute;
	text-align:center;
	width:100%}
.fa-stack-1x{
	line-height:inherit}
.fa-stack-2x{
	font-size:2em}
.fa-inverse{
	color:#fff}
.fa-500px:before{
	content:"\f26e"}

.fa-lock:before{
content:"\1F512"}
.fa-lock-open:before{
content:"\1F513"}

.fa-user:before{
	content:"\1F4C7"}

.sr-only{
border:0;
clip:rect(0,0,0,0);
height:1px;
margin:-1px;
overflow:hidden;
padding:0;
position:absolute;
width:1px}
.sr-only-focusable:active,.sr-only-focusable:focus{
clip:auto;
height:auto;
margin:0;
overflow:visible;
position:static;
width:auto
}


@font-face{
	font-family:"Arial";
	font-style:normal;
	font-weight:normal;
	font-display:auto;
}
.fab{
	font-family:"Arial"
}


@font-face{
	font-family:"Arial";
	font-style:normal;
	font-weight:400;
	font-display:auto;
}
.far{
	font-weight:400
}
@font-face{
	font-family:"Arial";
	font-style:normal;
	font-weight:900;
	font-display:auto;
}
.fa,.far,.fas{
	font-family:"Arial"
}
.fa,.fas{
	font-weight:900
}