@import url('https://fonts.googleapis.com/css?family=Lato:400,300,700,900');

body
{
/* 	background: #394864; */
	background: steelblue;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.6em;
/* 	-webkit-font-smoothing: antialiased; */
/* 	-webkit-overflow-scrolling: touch; */
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
}
/* h1 { font-weight: bold; text-align: center; } */
/* h3 { padding: 5px; margin: 5px; } */
table, th, td
{
  border: 2px solid black;
}
p { margin-bottom: 25px; }
a {
	color: #ACBAC1;
	word-wrap: break-word;
	-webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
	-moz-transition: color 0.1s ease-in, background 0.1s ease-in;
	-ms-transition: color 0.1s ease-in, background 0.1s ease-in;
	-o-transition: color 0.1s ease-in, background 0.1s ease-in;
	transition: color 0.1s ease-in, background 0.1s ease-in;
}
ul, li { margin-left: 10px; padding: 0px; 	font-size: 20px; font-weight: bold; }
a:link { color: black; }
a:visited { color: black; }
a:hover { color: green; }
a:active { color: red; }
a:hover, a:focus
{
	color: maroon;
	text-decoration: none;
	outline: 0;
}
.border
{
	border-style: solid;
	border-radius: 10px;
}
.container-list
{
	display: grid;
	gap: 10px;
	padding: 10px;
	font-size: 15px;
	font-weight: bold;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.sort-truck, .listings
{
	text-align: center;
	padding: 10px;
	font-size: 15px;
	font-weight: bold;
	border: 1px solid transparent;
	border-radius: 3px;
	box-shadow: 0 0 0 0 rgba(0,149,255,0);
	color: black;
	cursor: pointer;
}
.container
{
	display: grid;
/* 	padding: 5px; */
	font-weight: bold;
	grid-template-columns: repeat(4, minmax(0, 1fr));
/* 	width: 100%; */
}
.shift
{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	background: black;
	color: gray;
}
.btn, .sort-belt
{
	text-align: center;
	padding: 5px;
	margin: 5px;
	font-size: 20px;
	font-weight: bold;
	border: 3px solid black;
	border-radius: 10px;
	box-shadow: 0 0 0 0 rgba(0,149,255,0);
	color: black;
	cursor: pointer;
	background: silver;
}
.btn2
{
	text-align: center;
	padding: 10px;
	margin: 5px;
	font-size: 25px;
	font-weight: bold;
	border: 3px solid black;
	border-radius: 10px;
	box-shadow: 0 0 0 0 rgba(0,149,255,0);
	color: black;
	cursor: pointer;
	background: silver;
}
.table
{
/* 	border-color: gold; */
/* 	border: 3px solid gold; */
	table-layout: auto;
	width: 100%;
}
.other
{
	display: grid;
	font-size: 15px;
	font-weight: bold;
	justify-content: center;
	border-style: solid;
	border-radius: 10px;
}
.arrow-down:after
{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid black;
}
.sticky
{
	position: fixed;
	top: 0;
}
.sticky-bottom
{
	position: fixed;
	bottom: 0;
}
.sort-belt { padding: 10px; }
.orange { background-color: darkorange; }
.brown { background-color: sienna; }
.black { background-color: black; color: gray; }
.gray { background-color: gray; }
.gold { background-color: gold; }
.purple { background-color: purple; }
.yellow { background-color: yellow; }
.green { background-color: green; }
.red { background-color: red; }
.blue { background-color: blue; }
.silver { background-color: silver; }
.tan { background-color: tan; }
.pink { background-color: pink; }
.white { background-color: white; }
.double { grid-column: span 2; }
.triple { grid-column: span 3; }
.quad { grid-column: span 4; }
.center { text-align: center; }
.right { text-align: right; }
.input { width: 8em; }
.slic { width: 4em; }
.unbroken { white-space: nowrap; }
.3time { grid-template-columns: repeat(3, minmax(0, 1fr)); }
/* .4time { grid-template-columns: repeat(4, minmax(0, 1fr)); } */
.larger { font-size: 25px; }
.pointer { 	cursor: pointer; }
.disabled
{
	opacity: 0.2;
	cursor: not-allowed;
}
.strikethrough
{
	background: repeating-linear-gradient( 180deg, red 0%, red 100% );
	background-size: 100% 10px;
	background-position: center;
	background-repeat: no-repeat;
}
.strike
{
	-webkit-text-decoration-line: line-through; /* Safari */
	text-decoration-line: line-through;
/* 	opacity: 0.5; */
	color: darkslategray;
}
.decomission
{
	background-color: black;
	color: gray;
	opacity: 0.5;
}
.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: auto; /* 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
{
	background: steelblue;
/* 	background-color: #394864; //#fefefe; */
	margin: auto;
	padding: 10px;
	border: 5px solid #888;
	width: 90%;
}
.close
{
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.close:hover, .close:focus
{
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
#navbar
{
	overflow: auto;
	white-space: nowrap;
	background-color: #333;
	display: flex;
	padding: 5px;
	font-weight: bold;
	width: 95%;
}
/* Navbar links */
#navbar button
{
	float: left;
	text-align: center;
	text-decoration: none;
/* 	font-size: 25px; */
}
/*#navbar input
{
 	font-size: 25px;
}*/
#wrapper
{
	text-align: center;
	border-style: solid;
	border-radius: 10px;
}
#wrapper h1
{
	margin-top: 40px;
	margin-bottom: 40px;
	color: silver;
	font-size: 45px;
	font-weight: 900;
	letter-spacing: -1px;
}
