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

html {
	
}

body {
	background-color: #D7D7D7;
}

/* Start form styles */
form {
	box-sizing: border-box;
	width: 100%;
	max-width: 500px;
	margin: 50px auto;
	padding: 30px;
	background-color: #FFF;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.5);
	font: normal 16px sans-serif;
	font-family: 'Muli', sans-serif;
	text-align: center;
	border-radius: 10px;
}

form .form-row {
	text-align: left;
	max-width: 800px;
	margin: 25px auto 0;
	font-weight: 600;
}

form .from-row > label span {
	display: block;
	box-sizing: border-box;
	color: #F5F5F5;
	padding: 0 0 12px;
	min-width: 305px;
	font-size: 16px;
}

form input {
	box-sizing: border-box;
	box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.1);
	padding: 12px 18px;
	border 1px solid #dbdbdb;
}

form input[type=text],
form input[type=password] {
	background-color: #FAFAFA;
	min-width: 400px;
	width: 100%;
}

.button {
	display: inline-block;
	padding: 15px 25px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	background-color: #FAFAFA;
	border: none;
	border-radius: 15px;
	box-shadow: 5px 10px 5px #ccc;
}

.button:hover {background-color: #eee}

.button:active {
	background-color: #eee;
	box-shadow: 5px 10px 5px #ccc;
	transform: translateY(4px);
}
/* End form styles */

/* Start table styles */
table {
	width: 100%;
	background-color: white;
}

th {
	background-color: #000;
	color: #F2F2F2;
	padding: 10px 15px 10px 15px;
	text-align: center;
	font-size: 15px;
}

td {
	font-size: 13px;
	padding: 10px 15px 10px 15px;
	vertical-align: middle;
}

th, td {
	border-bottom: 1px solid #DDD;
}

td:hover {
	background-color: #eee;
}
/* End table styles */

/* Start custom styles */
.logout {
	position: absolute;
	top: 10px;
	right: 10px;
}

.kern {
	letter-spacing: -7px;
}

.red {
	font-size: 38px;
	color: #FF0000;
}

.silver {
	font-size: 38px;
	color: #999999;
}

.successMessage {
	font-weight: 400;
	text-align: center;
	color: #093;
}

.errorMessage {
	font-weight: 400;
	text-align: center;
	color: #f00;
}

a {
	text-decoration: none;
	color: black;
}

.decorated {
	text-decoration: underline;
	color: blue;
}
/* End custom styles */

/* Start shipping label styles */
#shippingLabelContainer {
	width: 435px;
	margin: 50px auto;
	border-style: solid;
	border-radius: 15px;
	box-shadow: 5px 10px 5px #ccc;
}

#shippingLabel {
	width: 400px;
	margin: 15px auto;
	border-style: solid;
	border-width: 1px;
}

.item1 { 
	grid-area: header; 
	font-size: 50px;
	text-align: center;
	font-family: "Arial Black", Gadget, sans-serif;
}

.item2 { 
	grid-area: right; 
	text-align: left;
}

.item3 { 
	grid-area: subheader; 
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	font-size: 2vw;
}

.item4 { 
	grid-area: main; 
}


.item5 { 
	grid-area: contact; 
	text-align: center;
}

.item6 { 
	grid-area: footer; 
	text-align: center;
}

.grid-container {
	display: grid;
	grid-template-areas:
	 'header right right right'
	 'subheader subheader subheader subheader'
	 'main main main main'
	 'contact contact contact contact'
	 'footer footer footer footer';
	grid-gap: 1px;
	background-color: #000;
	padding: 1px;
}
.grid-container > div {
	background-color: #fff;
	padding: 3px 0;
}

.shipTo {
	float:left; 
	text-align:left; 
	padding-left:10px; 
	font-weight:bold;
}

.shipInfo {
	float:left;
	text-align:left;
	padding-left:30px;
}

.barcodeFont {
	font-family: 'Libre Barcode 128 Text', cursive;
	font-size: 40px;
	margin-bottom: -50px;
}
/* End shipping label styles */


