/* Hide spinners in number inputs - Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spinners in number inputs - Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.protected-content {
	margin-top: 100px; 
}

/* Table styling just for Enter PO page */
#line-items-table {
	width: 100%;
	border-collapse: collapse;
	max-width: 100%;
	table-layout: auto;
}

#line-items-table th,
#line-items-table td {
	padding: 4px;
	text-align: center;
	word-wrap: break-word;
}

#line-items-table .item-number {
	width: 300px;
	font-size: 11px;
}

#line-items-table .quantity {
	width: 100px;
	text-align: center;
}

/* Hide the Description column (both header and cells) */
/* Hide the ship weight column (both header and cells) */
/* Hide the gross weight column (both header and cells) */
#line-items-table th:nth-child(3),
#line-items-table td:nth-child(3),
#line-items-table th:nth-child(6),
#line-items-table td:nth-child(6),
#line-items-table th:nth-child(7),
#line-items-table td:nth-child(7)	{
	display: none;
}


#line-items-table .description {
	width: 240px;
}

#line-items-table .caseWeight {
	width: 110px;
	text-align: center;
}
#line-items-table .netWeight {
	width: 120px;
	text-align: center;
}

#line-items-table .remove-line {
	padding: 2px 6px;
}

#totals-wrapper {
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.8;
}

#totals-wrapper .totals-line {
	margin-bottom: 4px;
}

#signature {
	font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
	font-size: 1.8em;
	color: #2c2c2c;
	border: none;
	border-bottom: 2px solid #333;
	outline: none;
	background: transparent;
	width: 100%;
	padding: 5px;
	text-align: left;
}

.po-submitted-content {
    padding-top: 100px;
    text-align: center;
}

.home-content {
	width: 100%;
    padding-top: 200px;
    text-align: center;
}