@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* CSS Document */
HTML, BODY {
	margin: 0;	
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 1.3;
	color: #000000;
	background: #ffffff;
}
body * {
	box-sizing: border-box;
}
a {
	color: #000000;
	font-weight: bold;
	text-decoration: none;
}
a img {
	border:none;
	display: block;
}
strong {
	font-weight: bold;
}
.inner {
	max-width: 1600px;
	width: 100%;
	min-width: 320px;
	box-sizing: border-box;
	margin: 0px auto;
	position: relative;
	overflow: hidden;
}
.inner.maxWidth {
	max-width: 1720px;
}
.disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
h1 {
	font-size: 28px;
	margin: 0px;
	margin-bottom: 15px;
	font-weight: 500;
}
h1 .small {
	font-size: 16px;
	font-weight: 300;
}
h2 {
	font-size: 22px;
	margin: 0px;
	margin-bottom: 10px;
	font-weight: 500;
}
h2 a.small {
	font-size: 16px;
}

p.small {
	font-size: 16px;
}
h3 {
	font-size: 18px;
	margin: 0px;
	margin-bottom: 7px;
	font-weight: 500;
}


/* Wrapper Elements */
div.wrapper {
	overflow: hidden;
}

div.wrapper.column2 {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
div.wrapper.column2 > div {
	flex-shrink: 1;
	flex-grow: 1;
	flex-basis: calc(50% - 5px);
	max-width: calc(50% - 5);
}
div.wrapper.column2 > a.displayOption {
	flex-shrink: 1;
	flex-grow: 1;
	flex-basis: calc(50% - 5px);
	max-width: calc(50% - 5);
}

div.wrapper.column3 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
div.wrapper.column3 > div {
	flex-shrink: 1;
	flex-grow: 1;
	flex-basis: calc(33% - 10px);
	max-width: calc((100% - 20px) / 3);
}
div.wrapper.column3 > a.displayOption {
	flex-shrink: 1;
	flex-grow: 1;
	flex-basis: calc(33% - 10px);
	max-width: calc((100% - 20px) / 3);
}


/* Display Elements */
.displayOption {
	background: #ffffff;
    width: 100%;
    padding: 0px;
    line-height: 36px;
    display: flex;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid #cccccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
a.displayOption {
	cursor: pointer;
}
.displayOption .label {
	font-size: inherit;
    display: inline-block;
    padding-right: 6px;
    padding-left: 10px;
    padding-bottom: 0px;
    font-weight: normal;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.displayOption .value {
	font-size: inherit;
    border: 0px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    padding-right: 10px;
    padding-left: 0px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    line-height: 36px;
}
.displayOption .value .input-row {
	margin: 0px;
}
.displayOption .value input {
	font-size: inherit;
    border: 0px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    padding-right: 10px;
    padding-left: 0px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    cursor: pointer;
    line-height: 36px;
}
.displayOption .value input:focus {
	outline: none;
}


/* pagination */
.pagination {
	text-align: center;
	margin: 6px 0px 6px 0px;
	padding: 0px;
	display: block;
	clear: both;
	border-top: 1px dashed #cccccc;
	border-bottom: 1px dashed #cccccc;
	line-height: 34px;
}


/* Deletion Popover */
div.deletionPopoverWrapper {
	position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    background: #1d1d1d;
    z-index: 99984;
    
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
  	align-items: center;
 	justify-content: center;
}
div.deletionPopoverWrapper .middle {
	width: 400px;
    background: #3c3a3a;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	
    color: #a9a8a8;
    position: relative;
}
div.deletionPopoverWrapper .middle .close {
	display: block;
	height: 20px;
	width: 20px;
	position: absolute;
	top: 12px;
	right: 14px;
	cursor: pointer;
    
	background-image: url(/images/icons/close.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
div.deletionPopoverWrapper .middle h2 {
	margin: 0px;
	padding: 0px;
	padding-bottom: 25px;
	text-align: center;
}
div.deletionPopoverWrapper .middle p.message {
	margin: 0px;
	padding: 0px;
	padding-bottom: 25px;
}
div.deletionPopoverWrapper .middle .action {
	overflow: hidden;
}
div.deletionPopoverWrapper .middle .action .decline {
	box-sizing: border-box;
    border: 1px solid #a9a8a8;
    background: #730000;
    color: #a9a8a8;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
    float: left;
	cursor: pointer;
}
div.deletionPopoverWrapper .middle .action .accept {
	box-sizing: border-box;
    border: 1px solid #a9a8a8;
    background: #005604;
    color: #a9a8a8;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
    float: right;
}
div.deletionPopoverWrapper .middle .action .decline:hover, div.deletionPopoverWrapper .middle .action .accept:hover {
	-webkit-box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.60);
	-moz-box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.60);
	box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.60);
}


/* Popup confirmation */
div#popupConfirmation {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 999999;
	
	text-align: center;
    color: #ffffff;
    background: #008000;
    border: 2px solid #008000;
    line-height: 32px;
    padding: 0px 15px;
	
	-webkit-animation: popupdown 1s forwards;
	animation: popupdown 1s forwards;
	
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}
@keyframes popupdown {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		top: -100px; 
	}
}




/* Header */
div#header {
	background: #0085c6;
	padding: 25px;
	margin-bottom: 15px;
	overflow: hidden;
}
div#header a.logo {
	float: left;
}
div#header a img {
	height: 60px;
	width: auto;
	display: block;
}
div#header ul.menu {
	float: right;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	overflow: hidden;
	line-height: 58px;
}
div#header ul.menu li {
	float: left;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	margin: 0px 5px;
}
div#header ul.menu li a {
	display: block;
	font-weight: 400;
	color: #ffffff;
	border-bottom: 2px solid transparent;
	padding: 0px 5px;
}
div#header ul.menu li a:hover {
	border-bottom: 2px solid #ffffff;
}

div#header ul.menu li a div.notification {
	position: relative;
	display: inline;
}
div#header ul.menu li a div.notification::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 500; 
    content: "\f27a";
}
div#header ul.menu li a div.notification span {
    position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
	text-align: center;
	font-size: 7px;
	line-height: 7px;
}

div#content {
	margin-left: 15px;
	margin-right: 15px;
}



/* Login Wrapper */
div#loginwrapper {
	position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	
	min-height: 100vh;
	background: #1d1d1d;
}
div#loginwrapper .inner {
	width: 400px;
	
	background: #3c3a3a;
	padding: 20px;
	
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
div#loginwrapper .inner form {
	margin: 0px;
}






/* Mimic Dropdown */
.fancy-input.with-prefil .input-row {
	margin-bottom: 0px;
}
.input-row.mimic-dropdown {
	display: block;
	float: none;
	clear: both;
	max-height: 0px;
	overflow: hidden;
	margin-bottom: 10px;
}
.input-row.mimic-dropdown.show {
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
	background: transparent;
	margin-top: -3px;
	border: 2px solid #cccccc;
	border-width: 0px 2px 2px 2px;
	
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.input-row.mimic-dropdown::before {
	display: block;
	content: "Suggested:";
	font-size: 13px;
    font-weight: 500;
    padding: 7px 8px 0px 8px;
    opacity: 0.5;
}
.input-row.mimic-dropdown.nooption::before {
	content: "No suggestions available";
}
.input-row.mimic-dropdown .option {
	cursor: pointer;
	padding: 5px 8px;
}
.input-row.mimic-dropdown .option:hover {
	background: #f1f1f1;
}



/* Custom Radio */
.fancy-input.filter-radio .input-row {
	margin-bottom: 0px;
}
.input-row.custom-radio {
	margin-bottom: 0px;
	max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    margin-top: -3px;
    border: 2px solid #cccccc;
    border-width: 0px 2px 2px 2px;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
	margin-bottom: 10px;
}
.input-row.custom-radio::before {
	display: block;
	content: "Please select:";
	font-size: 13px;
    font-weight: 500;
    padding: 7px 8px 0px 8px;
    opacity: 0.5;
}
.input-row.custom-radio.selected::before {
	content: "Selected:";
}
.input-row.custom-radio.nooption::before {
	content: "No options available";
}
.input-row.custom-radio .input-row {
	margin: 0px;
}
.input-row.custom-radio ul.radio {
	overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}
.input-row.custom-radio ul.radio li {
	overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
	position: relative;
}
.input-row.custom-radio ul.radio li input {
	opacity: 0;
	padding: 0px;
    margin: 0px;
    border: 0px;
    height: 1px;
    position: absolute;
    top: 0px;
}
.input-row.custom-radio ul.radio li label {
	cursor: pointer;
	display: block;
	padding: 0px;
	margin: 0px;
    padding: 5px 8px;
	font-weight: 400;
}

.input-row.custom-radio ul.radio li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 500; 
    content: "\f111";
	padding-right: 8px;
}
.input-row.custom-radio ul.radio li label:hover {
	background: #f1f1f1;
}
.input-row.custom-radio ul.radio li input[type="radio"]:checked+label {
	background-color: #e3e3e3;
}
.input-row.custom-radio ul.radio li input[type="radio"]:checked+label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 500; 
    content: "\f058";
	padding-right: 8px;
}
.input-row.custom-radio .quicklink {
	cursor: pointer;
    display: block;
    padding: 0px;
    margin: 0px;
    padding: 5px 8px;
    font-weight: 400;
}
.input-row.custom-radio .quicklink::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f35d";
	padding-right: 8px;
}
.input-row.custom-radio .quicklink:hover {
	background: #f1f1f1;
}


/* Custom Action Rows */
.action-row {
	overflow: hidden;
}
form#newordersage4 .action-row input,
.action-row input[value=Next] {
	float: right;
	width: auto;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 18px;
}
.action-row input[value=Back] {
	float: left;
	width: auto;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 18px;
}


/* Form Stages */
.formStage {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	
	overflow: hidden;
    /*border: 2px solid #cccccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;*/
	display: flex;
	margin-bottom: 25px;
}
.formStage .stage {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	text-align: center;
	
	position: relative;
	padding-top: 25px;
	
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 0;
	
	color: #cccccc;
	text-transform: uppercase;
}
.formStage .stage::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0px;
	height: 4px;
	width: 100%;
	background: #cccccc;
}
.formStage .stage::after {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
	
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
	text-align: center;
	
	position: absolute;
	top: 0px;
    left: calc(50% - 10px);
	width: 20px;
	
	font-size: 18px;
	line-height: 20px;
	
	content: "\f111";
	color: inherit;
	background: #ffffff;
}

.formStage .stage.completeStage {
	color: #68d073;
}
.formStage .stage.completeStage::before {
	background: #68d073;
}
.formStage .stage.completeStage::after {
	content: "\f058";
}

.formStage .stage.currentStage {
	color: #ffb347;
}
.formStage .stage.currentStage::before {
	background: #ffb347;
}
.formStage .stage.currentStage::after {
	content: "\f192";
}



/* Table */
div.table {
	margin-bottom: 25px;
}
div.table .row {
	overflow: hidden;
	border-bottom: 1px solid #cccccc;
}
div.table .row:nth-of-type(odd){
	background: #f1f1f1;
}
div.table .row.header {
	background: #0085c6;
	color: #ffffff;
}
div.table .row .cell {
	padding: 7px 5px;
	float: left;
	overflow-wrap: break-word;
}
div.table .row .cell.nowrap {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}



/* Table Styles */
div.table.customerList .row .cell:nth-of-type(1) {
	width: calc( (100% - 100px) / 2 );
}
div.table.customerList .row .cell:nth-of-type(2) {
	width: calc( (100% - 100px) / 2 );
}
div.table.customerList .row .cell:nth-of-type(3) {
	width: 100px;
	text-align: right;
}
div.table.customerList div.notification {
	position: relative;
	display: inline;
}
div.table.customerList div.notification::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 500; 
    content: "\f27a";
}
div.table.customerList div.notification span {
    position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
	text-align: center;
	font-size: 7px;
	line-height: 7px;
}


div.table.customerAddressList .row .cell:nth-of-type(1) {
	width: 200px;
}
div.table.customerAddressList .row .cell:nth-of-type(2) {
	width: calc( 100% - 200px - 100px - 100px );
}
div.table.customerAddressList .row .cell:nth-of-type(3) {
	width: 100px;
	text-align: center;
}
div.table.customerAddressList .row .cell:nth-of-type(4) {
	width: 100px;
	text-align: right;
}



div.table.supplierList .row .cell:nth-of-type(1) {
	width: calc( 100% - 100px );
}
div.table.supplierList .row .cell:nth-of-type(2) {
	width: 100px;
	text-align: right;
}


div.table.productList .row .cell:nth-of-type(1) {
	width: calc( ( 100% - 100px - 100px ) / 2 );
}
div.table.productList .row .cell:nth-of-type(2) {
	width: calc( ( 100% - 100px - 100px ) / 2 );
}
div.table.productList .row .cell:nth-of-type(3) {
	width: 100px;
	text-align: center;
}
div.table.productList .row .cell:nth-of-type(4) {
	width: 100px;
	text-align: right;
}



div.table.productStockList .row .cell:nth-of-type(1) {
	width: 250px;
}
div.table.productStockList .row .cell:nth-of-type(2) {
	width: calc( (100% - 250px - 100px - 100px - 100px) / 2 );
}
div.table.productStockList .row .cell:nth-of-type(3) {
	width: calc( (100% - 250px - 100px - 100px - 100px) / 2 );
}
div.table.productStockList .row .cell:nth-of-type(4) {
	width: 100px;
	text-align: center;
}
div.table.productStockList .row .cell:nth-of-type(5) {
	width: 100px;
}
div.table.productStockList .row .cell:nth-of-type(6) {
	width: 100px;
	text-align: right;
}




div.table.productStockList2 .row .cell:nth-of-type(1) {
	width: 250px;
}
div.table.productStockList2 .row .cell:nth-of-type(2) {
	width: calc( (100% - 250px - 100px - 200px - 100px - 100px) / 2 );
}
div.table.productStockList2 .row .cell:nth-of-type(3) {
	width: calc( (100% - 250px - 100px - 200px - 100px - 100px) / 2 );
}
div.table.productStockList2 .row .cell:nth-of-type(4) {
	width: 200px;
	text-align: center;
}
div.table.productStockList2 .row .cell:nth-of-type(5) {
	width: 100;
	text-align: center;
}
div.table.productStockList2 .row .cell:nth-of-type(6) {
	width: 100px;
}
div.table.productStockList2 .row .cell:nth-of-type(7) {
	width: 100px;
	text-align: right;
}




div.table.productStockList3 .row .cell:nth-of-type(1) {
	width: 250px;
}
div.table.productStockList3 .row .cell:nth-of-type(2) {
	width: calc( (100% - 250px - 100px - 200px - 100px - 100px - 100px) / 2 );
}
div.table.productStockList3 .row .cell:nth-of-type(3) {
	width: calc( (100% - 250px - 100px - 200px - 100px - 100px - 100px) / 2 );
}
div.table.productStockList3 .row .cell:nth-of-type(4) {
	width: 200px;
	text-align: center;
}
div.table.productStockList3 .row .cell:nth-of-type(5) {
	width: 100;
	text-align: center;
}
div.table.productStockList3 .row .cell:nth-of-type(6) {
	width: 100px;
}
div.table.productStockList3 .row .cell:nth-of-type(7) {
	width: 100px;
}
div.table.productStockList3 .row .cell:nth-of-type(8) {
	width: 100px;
	text-align: right;
}



div.table.incomingStockList .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.incomingStockList .row .cell:nth-of-type(2) {
	width: 200px;
}
div.table.incomingStockList .row .cell:nth-of-type(3) {
	width: calc( 100% - 100px - 200px - 100px );
}
div.table.incomingStockList .row .cell:nth-of-type(4) {
	width: 100px;
	text-align: right;
}


div.table.stockSummaryList .row .cell:nth-of-type(1) {
	width: calc( 100% - 200px - 100px );
}
div.table.stockSummaryList .row .cell:nth-of-type(2) {
	width: 200px;
}
div.table.stockSummaryList .row .cell:nth-of-type(3) {
	width: 100px;
	text-align: right;
}


div.table.stockSummaryList2 .row .cell:nth-of-type(1) {
	width: calc( 100% - 200px - 200px );
}
div.table.stockSummaryList2 .row .cell:nth-of-type(2) {
	width: 200px;
}
div.table.stockSummaryList2 .row .cell:nth-of-type(3) {
	width: 200px;
	text-align: right;
}


div.table.pendingStockBreakdown .row .cell:nth-of-type(1) {
	width: calc( 100% - 150px - 150px - 150px );
}
div.table.pendingStockBreakdown .row .cell:nth-of-type(2) {
	width: 150px;
	text-align: center;
}
div.table.pendingStockBreakdown .row .cell:nth-of-type(3) {
	width: 150px;
	text-align: center;
}
div.table.pendingStockBreakdown .row .cell:nth-of-type(4) {
	width: 150px;
	text-align: center;
}

div.table.pendingStockBreakdown2 .row .cell:nth-of-type(1) {
	width: calc( 100% - 150px - 150px - 150px - 140px );
}
div.table.pendingStockBreakdown2 .row .cell:nth-of-type(2) {
	width: 150px;
	text-align: center;
}
div.table.pendingStockBreakdown2 .row .cell:nth-of-type(3) {
	width: 150px;
	text-align: center;
}
div.table.pendingStockBreakdown2 .row .cell:nth-of-type(4) {
	width: 150px;
	text-align: center;
}
div.table.pendingStockBreakdown2 .row .cell:nth-of-type(5) {
	width: 140px;
	text-align: right;
}


div.table.incomingStockProductList .row .cell:nth-of-type(1) {
	width: calc( 100% - 120px - 120px - 220px - 110px - 100px );
}
div.table.incomingStockProductList .row .cell:nth-of-type(2) {
	width: 120px;
	text-align: center;
}
div.table.incomingStockProductList .row .cell:nth-of-type(3) {
	width: 120px;
	text-align: center;
}
div.table.incomingStockProductList .row .cell:nth-of-type(4) {
	width: 220px;
	text-align: center;
}
div.table.incomingStockProductList .row .cell:nth-of-type(5) {
	width: 110px;
	text-align: center;
}
div.table.incomingStockProductList .row .cell:nth-of-type(6) {
	width: 100px;
	text-align: right;
}



div.table.incomingStockProductScreen .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.incomingStockProductScreen .row .cell:nth-of-type(2) {
	width: 250px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
div.table.incomingStockProductScreen .row .cell:nth-of-type(3) {
	width: calc( 100% - 100px - 250px - 120px - 120px - 220px - 110px );
}
div.table.incomingStockProductScreen .row .cell:nth-of-type(4) {
	width: 120px;
	text-align: center;
}
div.table.incomingStockProductScreen .row .cell:nth-of-type(5) {
	width: 120px;
	text-align: center;
}
div.table.incomingStockProductScreen .row .cell:nth-of-type(6) {
	width: 220px;
	text-align: center;
}
div.table.incomingStockProductScreen .row .cell:nth-of-type(7) {
	width: 110px;
	text-align: center;
}


div.table.incomingMiscStockProductList .row .cell:nth-of-type(1) {
	width: calc( 100% - 120px - 220px - 220px - 100px );
}
div.table.incomingMiscStockProductList .row .cell:nth-of-type(2) {
	width: 120px;
	text-align: center;
}
div.table.incomingMiscStockProductList .row .cell:nth-of-type(3) {
	width: 220px;
	text-align: center;
}
div.table.incomingMiscStockProductList .row .cell:nth-of-type(4) {
	width: 220px;
	text-align: center;
}
div.table.incomingMiscStockProductList .row .cell:nth-of-type(5) {
	width: 100px;
	text-align: right;
}


div.table.incomingMiscStockProductList2 .row .cell:nth-of-type(1) {
	width: calc( 100% - 120px - 120px - 220px - 220px - 100px );
}
div.table.incomingMiscStockProductList2 .row .cell:nth-of-type(2) {
	width: 120px;
	text-align: center;
}
div.table.incomingMiscStockProductList2 .row .cell:nth-of-type(3) {
	width: 120px;
	text-align: center;
}
div.table.incomingMiscStockProductList2 .row .cell:nth-of-type(4) {
	width: 220px;
	text-align: center;
}
div.table.incomingMiscStockProductList2 .row .cell:nth-of-type(5) {
	width: 220px;
	text-align: center;
}
div.table.incomingMiscStockProductList2 .row .cell:nth-of-type(6) {
	width: 100px;
	text-align: right;
}




div.table.incomingStockItemList .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.incomingStockItemList .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.incomingStockItemList .row .cell:nth-of-type(3) {
	width: calc( ( 100% - 100px - 150px - 120px - 120px - 100px ) / 2 );
}
div.table.incomingStockItemList .row .cell:nth-of-type(4) {
	width: calc( ( 100% - 100px - 150px - 120px - 120px - 100px ) / 2 );
}
div.table.incomingStockItemList .row .cell:nth-of-type(5) {
	width: 120px;
	text-align: center;
}
div.table.incomingStockItemList .row .cell:nth-of-type(6) {
	width: 120px;
	text-align: center;
}
div.table.incomingStockItemList .row .cell:nth-of-type(7) {
	width: 100px;
	text-align: right;
}


div.table.stockBreakdownList .row .cell:nth-of-type(1) {
	width: calc( 100% - 250px - 150px - 150px - 100px - 120px );
}
div.table.stockBreakdownList .row .cell:nth-of-type(2) {
	width: 250px;
	text-align: center;
}
div.table.stockBreakdownList .row .cell:nth-of-type(3) {
	width: 150px;
	text-align: center;
}
div.table.stockBreakdownList .row .cell:nth-of-type(4) {
	width: 150px;
	text-align: center;
}
div.table.stockBreakdownList .row .cell:nth-of-type(5) {
	width: 100px;
	text-align: center;
}
div.table.stockBreakdownList .row .cell:nth-of-type(6) {
	width: 120px;
	text-align: center;
}


div.table.stockBreakdownList2 .row .cell:nth-of-type(1) {
	width: calc( 100% - 250px - 150px - 150px - 100px - 120px - 140px - 140px );
}
div.table.stockBreakdownList2 .row .cell:nth-of-type(2) {
	width: 250px;
	text-align: center;
}
div.table.stockBreakdownList2 .row .cell:nth-of-type(3) {
	width: 150px;
	text-align: center;
}
div.table.stockBreakdownList2 .row .cell:nth-of-type(4) {
	width: 150px;
	text-align: center;
}
div.table.stockBreakdownList2 .row .cell:nth-of-type(5) {
	width: 100px;
	text-align: center;
}
div.table.stockBreakdownList2 .row .cell:nth-of-type(6) {
	width: 120px;
	text-align: center;
}
div.table.stockBreakdownList2 .row .cell:nth-of-type(7) {
	width: 140px;
	text-align: right;
}
div.table.stockBreakdownList2 .row .cell:nth-of-type(8) {
	width: 140px;
	text-align: right;
}


div.table.orderList .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderList .row .cell:nth-of-type(2) {
	width: calc( 100% - 100px - 200px - 200px - 120px - 100px );
}
div.table.orderList .row .cell:nth-of-type(3) {
	width: 200px;
}
div.table.orderList .row .cell:nth-of-type(4) {
	width: 200px;
}
div.table.orderList .row .cell:nth-of-type(5) {
	width: 120px;
}
div.table.orderList .row .cell:nth-of-type(6) {
	width: 100px;
	text-align: right;
}
div.table.orderList div.notification {
	position: relative;
	display: inline;
}
div.table.orderList div.notification::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 500; 
    content: "\f27a";
}
div.table.orderList div.notification span {
    position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
	text-align: center;
	font-size: 7px;
	line-height: 7px;
}


div.table.orderListv2 .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderListv2 .row .cell:nth-of-type(2) {
	width: 160px;
}
div.table.orderListv2 .row .cell:nth-of-type(3) {
	width: calc( 100% - 100px - 160px - 120px - 200px - 120px - 100px );
}
div.table.orderListv2 .row .cell:nth-of-type(4) {
	width: 120px;
}
div.table.orderListv2 .row .cell:nth-of-type(5) {
	width: 200px;
}
div.table.orderListv2 .row .cell:nth-of-type(6) {
	width: 120px;
}
div.table.orderListv2 .row .cell:nth-of-type(7) {
	width: 100px;
	text-align: right;
}
div.table.orderListv2 div.notification {
	position: relative;
	display: inline;
}
div.table.orderListv2 div.notification::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 500; 
    content: "\f27a";
}
div.table.orderListv2 div.notification span {
    position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
	text-align: center;
	font-size: 7px;
	line-height: 7px;
}


div.table.orderListv3 .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderListv3 .row .cell:nth-of-type(2) {
	width: 160px;
}
div.table.orderListv3 .row .cell:nth-of-type(3) {
	width: calc( 100% - 100px - 160px - 140px - 120px - 200px - 120px - 100px );
}
div.table.orderListv3 .row .cell:nth-of-type(4) {
	width: 140px;
}
div.table.orderListv3 .row .cell:nth-of-type(5) {
	width: 120px;
}
div.table.orderListv3 .row .cell:nth-of-type(6) {
	width: 200px;
}
div.table.orderListv3 .row .cell:nth-of-type(7) {
	width: 120px;
}
div.table.orderListv3 .row .cell:nth-of-type(8) {
	width: 100px;
	text-align: right;
}
div.table.orderListv3 div.notification {
	position: relative;
	display: inline;
}
div.table.orderListv3 div.notification::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 500; 
    content: "\f27a";
}
div.table.orderListv3 div.notification span {
    position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
	text-align: center;
	font-size: 7px;
	line-height: 7px;
}


div.table.orderListv4 .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderListv4 .row .cell:nth-of-type(2) {
	width: 160px;
}
div.table.orderListv4 .row .cell:nth-of-type(3) {
	width: calc( 100% - 100px - 160px - 140px - 200px - 120px - 200px - 120px - 100px );
}
div.table.orderListv4 .row .cell:nth-of-type(4) {
	width: 140px;
}
div.table.orderListv4 .row .cell:nth-of-type(5) {
	width: 200px;
}
div.table.orderListv4 .row .cell:nth-of-type(6) {
	width: 120px;
}
div.table.orderListv4 .row .cell:nth-of-type(7) {
	width: 200px;
}
div.table.orderListv4 .row .cell:nth-of-type(8) {
	width: 120px;
}
div.table.orderListv4 .row .cell:nth-of-type(9) {
	width: 100px;
	text-align: right;
}
div.table.orderListv4 div.notification {
	position: relative;
	display: inline;
}
div.table.orderListv4 div.notification::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 500; 
    content: "\f27a";
}
div.table.orderListv4 div.notification span {
    position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
	text-align: center;
	font-size: 7px;
	line-height: 7px;
}



div.table.productScreenPendingTaskList .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.productScreenPendingTaskList .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.productScreenPendingTaskList .row .cell:nth-of-type(3) {
	width: calc( 100% - 100px - 150px - 300px - 300px - 200px - 120px );
}
div.table.productScreenPendingTaskList .row .cell:nth-of-type(4) {
	width: 300px;
}
div.table.productScreenPendingTaskList .row .cell:nth-of-type(5) {
	width: 300px;
}
div.table.productScreenPendingTaskList .row .cell:nth-of-type(6) {
	width: 200px;
	overflow-wrap: break-word;
}
div.table.productScreenPendingTaskList .row .cell:nth-of-type(7) {
	width: 120px;
}







div.table.orderTaskList .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderTaskList .row .cell:nth-of-type(2) {
	width: calc( 100% - 100px - 150px - 250px - 120px - 120px - 120px - 100px );
}
div.table.orderTaskList .row .cell:nth-of-type(3) {
	width: 150px;
}
div.table.orderTaskList .row .cell:nth-of-type(4) {
	width: 250px;
}
div.table.orderTaskList .row .cell:nth-of-type(5) {
	width: 120px;
}
div.table.orderTaskList .row .cell:nth-of-type(6) {
	width: 120px;
}
div.table.orderTaskList .row .cell:nth-of-type(7) {
	width: 120px;
}
div.table.orderTaskList .row .cell:nth-of-type(8) {
	width: 100px;
	text-align: right;
}

div.table.orderTaskList span.additionalCost {
	display: block;
	opacity: 0.6;
	font-style: italic;
}


div.table.orderTaskList6 .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderTaskList6 .row .cell:nth-of-type(2) {
	width: calc( 100% - 100px - 150px - 250px - 150px - 120px - 120px - 120px - 100px );
}
div.table.orderTaskList6 .row .cell:nth-of-type(3) {
	width: 150px;
}
div.table.orderTaskList6 .row .cell:nth-of-type(4) {
	width: 250px;
}
div.table.orderTaskList6 .row .cell:nth-of-type(5) {
	width: 150px;
}
div.table.orderTaskList6 .row .cell:nth-of-type(6) {
	width: 120px;
}
div.table.orderTaskList6 .row .cell:nth-of-type(7) {
	width: 120px;
}
div.table.orderTaskList6 .row .cell:nth-of-type(8) {
	width: 120px;
}
div.table.orderTaskList6 .row .cell:nth-of-type(9) {
	width: 100px;
	text-align: right;
}

div.table.orderTaskList span.additionalCost {
	display: block;
	opacity: 0.6;
	font-style: italic;
}






div.table.orderTaskList3 .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderTaskList3 .row .cell:nth-of-type(2) {
	width: 200px;
}
div.table.orderTaskList3 .row .cell:nth-of-type(3) {
	width: 100px;
	cursor: pointer;
	font-weight: bold;
}
div.table.orderTaskList3 .row .cell:nth-of-type(4) {
	width: 100px;
}
div.table.orderTaskList3 .row .cell:nth-of-type(5) {
	width: calc( 100% - 100px - 200px - 100px - 100px - 150px - 250px - 120px - 130px - 100px );
}
div.table.orderTaskList3 .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.orderTaskList3 .row .cell:nth-of-type(7) {
	width: 250px;
}
div.table.orderTaskList3 .row .cell:nth-of-type(8) {
	width: 120px;
}
div.table.orderTaskList3 .row .cell:nth-of-type(9) {
	width: 130px;
}
div.table.orderTaskList3 .row .cell:nth-of-type(10) {
	width: 100px;
}
div.table.orderTaskList3 .row {
	border-bottom: 0px;
	border-top: 1px solid #cccccc;
}

div.table.orderTaskList3 .stockBreakdown {
	padding: 25px;
	background: #f5f5f5;
	display: none;
}
div.table.orderTaskList3 .stockBreakdown.expand {
	display: block;
}
div.table.orderTaskList3 .stockBreakdown .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderTaskList3 .stockBreakdown .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.orderTaskList3 .stockBreakdown .row .cell:nth-of-type(3) {
	width: 200px;
	font-weight: normal;
	cursor: auto;
}
div.table.orderTaskList3 .stockBreakdown .row .cell:nth-of-type(4) {
	width: 150px;
}
div.table.orderTaskList3 .stockBreakdown .row .cell:nth-of-type(5) {
	width: calc( 100% - 100px - 150px - 200px - 150px - 250px );
}
div.table.orderTaskList3 .stockBreakdown .row .cell:nth-of-type(6) {
	width: 250px;
}







div.table.orderTaskList4 .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderTaskList4 .row .cell:nth-of-type(2) {
	width: 200px;
}
div.table.orderTaskList4 .row .cell:nth-of-type(3) {
	width: 100px;
	cursor: pointer;
	font-weight: bold;
}
div.table.orderTaskList4 .row .cell:nth-of-type(4) {
	width: 100px;
}
div.table.orderTaskList4 .row .cell:nth-of-type(5) {
	width: calc( 100% - 100px - 200px - 100px - 100px - 150px - 250px - 120px - 130px - 100px - 120px );
}
div.table.orderTaskList4 .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.orderTaskList4 .row .cell:nth-of-type(7) {
	width: 250px;
}
div.table.orderTaskList4 .row .cell:nth-of-type(8) {
	width: 120px;
}
div.table.orderTaskList4 .row .cell:nth-of-type(9) {
	width: 130px;
}
div.table.orderTaskList4 .row .cell:nth-of-type(10) {
	width: 100px;
}
div.table.orderTaskList4 .row .cell:nth-of-type(11) {
	width: 120px;
}
div.table.orderTaskList4 .row {
	border-bottom: 0px;
	border-top: 1px solid #cccccc;
}

div.table.orderTaskList4 .stockBreakdown {
	padding: 25px;
	background: #f5f5f5;
	display: none;
}
div.table.orderTaskList4 .stockBreakdown.expand {
	display: block;
}
div.table.orderTaskList4 .stockBreakdown .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderTaskList4 .stockBreakdown .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.orderTaskList4 .stockBreakdown .row .cell:nth-of-type(3) {
	width: 200px;
	font-weight: normal;
	cursor: auto;
}
div.table.orderTaskList4 .stockBreakdown .row .cell:nth-of-type(4) {
	width: 150px;
}
div.table.orderTaskList4 .stockBreakdown .row .cell:nth-of-type(5) {
	width: calc( 100% - 100px - 150px - 200px - 150px - 250px );
}
div.table.orderTaskList4 .stockBreakdown .row .cell:nth-of-type(6) {
	width: 250px;
}







div.table.orderTaskList5 .row .cell:nth-of-type(1) {
	width: 80px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(3) {
	width: 100px;
	cursor: pointer;
	font-weight: bold;
}
div.table.orderTaskList5 .row .cell:nth-of-type(4) {
	width: 80px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(5) {
	width: calc( 100% - 80px - 150px - 80px - 100px - 150px - 150px - 200px - 120px - 130px - 80px - 120px );
}
div.table.orderTaskList5 .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(7) {
	width: 150px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(8) {
	width: 200px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(9) {
	width: 120px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(10) {
	width: 130px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(11) {
	width: 80px;
}
div.table.orderTaskList5 .row .cell:nth-of-type(12) {
	width: 120px;
}
div.table.orderTaskList5 .row {
	border-bottom: 0px;
	border-top: 1px solid #cccccc;
}

div.table.orderTaskList5 .stockBreakdown {
	padding: 25px;
	background: #f5f5f5;
	display: none;
}
div.table.orderTaskList5 .stockBreakdown.expand {
	display: block;
}
div.table.orderTaskList5 .stockBreakdown .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderTaskList5 .stockBreakdown .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.orderTaskList5 .stockBreakdown .row .cell:nth-of-type(3) {
	width: 200px;
	font-weight: normal;
	cursor: auto;
}
div.table.orderTaskList5 .stockBreakdown .row .cell:nth-of-type(4) {
	width: 150px;
}
div.table.orderTaskList5 .stockBreakdown .row .cell:nth-of-type(5) {
	width: calc( 100% - 100px - 150px - 200px - 150px - 250px );
}
div.table.orderTaskList5 .stockBreakdown .row .cell:nth-of-type(6) {
	width: 250px;
}






div.table.orderTaskList2 .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.orderTaskList2 .row .cell:nth-of-type(2) {
	width: 100px;
}
div.table.orderTaskList2 .row .cell:nth-of-type(3) {
	width: calc( 100% - 100px - 100px - 150px - 250px - 120px - 120px );
}
div.table.orderTaskList2 .row .cell:nth-of-type(4) {
	width: 150px;
}
div.table.orderTaskList2 .row .cell:nth-of-type(5) {
	width: 250px;
}
div.table.orderTaskList2 .row .cell:nth-of-type(6) {
	width: 120px;
}
div.table.orderTaskList2 .row .cell:nth-of-type(7) {
	width: 120px;
}


div.table.taskList .row.full {
	display: none;
}
div.table.taskList .row.full.show {
	display: block;
}
div.table.taskList .row.full.show a {
	padding: 7px 5px;
	text-align: center;
	font-weight: 500;
	display: block;
}
div.table.taskList .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.taskList .row .cell:nth-of-type(2) {
	width: calc( ( 100% - 100px - 150px ) / 2 );
}
div.table.taskList .row .cell:nth-of-type(3) {
	width: calc( ( 100% - 100px - 150px ) / 2 );
}
div.table.taskList .row .cell:nth-of-type(4) {
	width: 150px;
}



form#taskreadyform div.table.taskList .row .cell:nth-of-type(1) {
	width: 150px;
}
form#taskreadyform div.table.taskList .row .cell:nth-of-type(2) {
	width: 200px;
}
form#taskreadyform div.table.taskList .row .cell:nth-of-type(3) {
	width: calc( ( 100% - 150px - 200px - 150px - 120px - 50px ) / 2 );
}
form#taskreadyform div.table.taskList .row .cell:nth-of-type(4) {
	width: calc( ( 100% - 150px - 200px - 150px - 120px - 50px ) / 2 );
}
form#taskreadyform div.table.taskList .row .cell:nth-of-type(5) {
	width: 150px;
}
form#taskreadyform div.table.taskList .row .cell:nth-of-type(6) {
	width: 120px;
}
form#taskreadyform div.table.taskList .row .cell:nth-of-type(7) {
	width: 50px;
	text-align: right;
}



form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(1) {
	width: 150px;
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(2) {
	width: 150px;
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(3) {
	width: 200px;
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(4) {
	width: calc( ( 100% - 150px - 150px - 200px - 150px - 150px - 100px - 160px - 50px ) / 2 );
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(5) {
	width: calc( ( 100% - 150px - 150px - 200px - 150px - 150px - 100px - 160px - 50px ) / 2 );
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(6) {
	width: 150px;
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(7) {
	width: 150px;
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(8) {
	width: 100px;
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(9) {
	display: none;
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(10) {
	width: 160px;
}
form#taskreadyform div.table.taskList2 .row .cell:nth-of-type(11) {
	width: 50px;
	text-align: right;
}

/* Admin Display */
form#taskreadyform div.table.taskList2.admin .row .cell:nth-of-type(4) {
	width: calc( ( 100% - 150px - 150px - 200px - 150px - 150px - 100px - 120px - 160px - 50px ) / 2 );
}
form#taskreadyform div.table.taskList2.admin .row .cell:nth-of-type(5) {
	width: calc( ( 100% - 150px - 150px - 200px - 150px - 150px - 100px - 120px - 160px - 50px ) / 2 );
}
form#taskreadyform div.table.taskList2.admin .row .cell:nth-of-type(9) {
	display: block;
	width: 120px;
}


div.table.taskListForPicking .row.full {
	display: none;
}
div.table.taskListForPicking .row.full.show {
	display: block;
}
div.table.taskListForPicking .row.full.show a {
	padding: 7px 5px;
	text-align: center;
	font-weight: 500;
	display: block;
}
div.table.taskListForPicking .row .cell:nth-of-type(1) {
	width: 30px;
}
div.table.taskListForPicking .row .cell:nth-of-type(2) {
	width: 100px;
}
div.table.taskListForPicking .row .cell:nth-of-type(3) {
	width: 100px;
}
div.table.taskListForPicking .row .cell:nth-of-type(4) {
	width: 150px;
}
div.table.taskListForPicking .row .cell:nth-of-type(5) {
	width: 200px;
}
div.table.taskListForPicking .row .cell:nth-of-type(6) {
	width: calc( 100% - 30px - 100px - 100px - 150px - 200px - 150px - 150px - 90px - 120px - 100px - 160px );
}
div.table.taskListForPicking .row .cell:nth-of-type(7) {
	width: 150px;
}
div.table.taskListForPicking .row .cell:nth-of-type(8) {
	width: 150px;
}
div.table.taskListForPicking .row .cell:nth-of-type(9) {
	width: 90px;
}
div.table.taskListForPicking .row .cell:nth-of-type(10) {
	width: 120px;
}
div.table.taskListForPicking .row .cell:nth-of-type(11) {
	width: 100px;
}
div.table.taskListForPicking .row .cell:nth-of-type(12) {
	display: none;
}
div.table.taskListForPicking .row .cell:nth-of-type(13) {
	width: 160px;
}



/* Admin Display */
div.table.taskListForPicking.admin .row .cell:nth-of-type(6) {
	width: calc( 100% - 30px - 100px - 100px - 150px - 200px - 150px - 150px - 90px - 120px - 100px - 120px - 160px );
}
div.table.taskListForPicking.admin .row .cell:nth-of-type(12) {
	display: block;
	width: 120px;
}


div.table.taskListWithAction .row.full {
	display: none;
}
div.table.taskListWithAction .row.full.show {
	display: block;
}
div.table.taskListWithAction .row.full.show a {
	padding: 7px 5px;
	text-align: center;
	font-weight: 500;
	display: block;
}
div.table.taskListWithAction .row .cell:nth-of-type(1) {
	width: 50px;
}
div.table.taskListWithAction .row .cell:nth-of-type(2) {
	width: 80px;
}
div.table.taskListWithAction .row .cell:nth-of-type(3) {
	width: 80px;
}
div.table.taskListWithAction .row .cell:nth-of-type(4) {
	width: 90px;
}
div.table.taskListWithAction .row .cell:nth-of-type(5) {
	width: calc( ( 100% - 50px - 80px - 80px - 90px - 150px - 80px - 150px - 120px - 90px - 100px - 120px - 160px - 25px ) / 2 );
}
div.table.taskListWithAction .row .cell:nth-of-type(6) {
	width: calc( ( 100% - 50px - 80px - 80px - 90px - 150px - 80px - 150px - 120px - 90px - 100px - 120px - 160px - 25px ) / 2 );
}
div.table.taskListWithAction .row .cell:nth-of-type(7) {
	width: 150px;
}
div.table.taskListWithAction .row .cell:nth-of-type(8) {
	width: 80px;
}
div.table.taskListWithAction .row .cell:nth-of-type(9) {
	width: 150px;
}
div.table.taskListWithAction .row .cell:nth-of-type(10) {
	width: 120px;
}
div.table.taskListWithAction .row .cell:nth-of-type(11) {
	width: 90px;
}
div.table.taskListWithAction .row .cell:nth-of-type(12) {
	width: 100px;
}
div.table.taskListWithAction .row .cell:nth-of-type(13) {
	width: 120px;
}
div.table.taskListWithAction .row .cell:nth-of-type(14) {
	width: 160px;
}
div.table.taskListWithAction .row .cell:nth-of-type(15) {
	width: 25px;
}


div.table.taskListForDipatch .row.full {
	display: none;
}
div.table.taskListForDipatch .row.full.show {
	display: block;
}
div.table.taskListForDipatch .row.full.show a {
	padding: 7px 5px;
	text-align: center;
	font-weight: 500;
	display: block;
}
div.table.taskListForDipatch .row .cell:nth-of-type(1) {
	width: 150px;
}
div.table.taskListForDipatch .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.taskListForDipatch .row .cell:nth-of-type(3) {
	width: 200px;
}
div.table.taskListForDipatch .row .cell:nth-of-type(4) {
	width: calc( 100% - 150px - 150px - 200px - 150px - 150px - 120px );
}
div.table.taskListForDipatch .row .cell:nth-of-type(5) {
	width: 150px;
}
div.table.taskListForDipatch .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.taskListForDipatch .row .cell:nth-of-type(7) {
	width: 120px;
	text-align: right;
}


div.table.tasksInProcessing .row .cell:nth-of-type(1) {
	width: 150px;
}
div.table.tasksInProcessing .row .cell:nth-of-type(2) {
	width: calc( 100% - 150px - 150px - 200px - 150px - 150px );
}
div.table.tasksInProcessing .row .cell:nth-of-type(3) {
	width: 150px;
}
div.table.tasksInProcessing .row .cell:nth-of-type(4) {
	width: 200px;
}
div.table.tasksInProcessing .row .cell:nth-of-type(5) {
	width: 150px;
}
div.table.tasksInProcessing .row .cell:nth-of-type(6) {
	width: 150px;
}


div.table.tasksInProcessing2 .row .cell:nth-of-type(1) {
	width: 150px;
}
div.table.tasksInProcessing2 .row .cell:nth-of-type(2) {
	width: calc( 100% - 150px - 150px - 150px - 150px - 150px - 150px );
}
div.table.tasksInProcessing2 .row .cell:nth-of-type(3) {
	width: 150px;
}
div.table.tasksInProcessing2 .row .cell:nth-of-type(4) {
	width: 150px;
}
div.table.tasksInProcessing2 .row .cell:nth-of-type(5) {
	width: 150px;
}
div.table.tasksInProcessing2 .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.tasksInProcessing2 .row .cell:nth-of-type(7) {
	width: 150px;
}


div.table.tasksInProcessing3 .row .cell:nth-of-type(1) {
	width: 150px;
}
div.table.tasksInProcessing3 .row .cell:nth-of-type(2) {
	width: calc( 100% - 150px - 150px - 200px - 150px - 150px - 150px );
}
div.table.tasksInProcessing3 .row .cell:nth-of-type(3) {
	width: 150px;
}
div.table.tasksInProcessing3 .row .cell:nth-of-type(4) {
	width: 200px;
}
div.table.tasksInProcessing3 .row .cell:nth-of-type(5) {
	width: 150px;
}
div.table.tasksInProcessing3 .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.tasksInProcessing3 .row .cell:nth-of-type(7) {
	width: 150px;
}


div.table.operationalProfit .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.operationalProfit .row .cell:nth-of-type(2) {
	width: calc( 100% - 100px - 200px - 150px - 150px - 150px - 150px - 150px - 120px - 150px );
}
div.table.operationalProfit .row .cell:nth-of-type(3) {
	width: 200px;
}
div.table.operationalProfit .row .cell:nth-of-type(4) {
	width: 150px;
}
div.table.operationalProfit .row .cell:nth-of-type(5) {
	width: 150px;
}
div.table.operationalProfit .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.operationalProfit .row .cell:nth-of-type(7) {
	width: 150px;
}
div.table.operationalProfit .row .cell:nth-of-type(8) {
	width: 150px;
}
div.table.operationalProfit .row .cell:nth-of-type(9) {
	width: 120px;
}
div.table.operationalProfit .row .cell:nth-of-type(10) {
	width: 150px;
}


div.table.operationalProfit2 .row .cell:nth-of-type(1) {
	width: 90px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(2) {
	width: 70px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(3) {
	width: calc( 100% - 90px - 70px - 200px - 150px - 150px - 150px - 150px - 130px - 100px - 140px );
}
div.table.operationalProfit2 .row .cell:nth-of-type(4) {
	width: 200px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(5) {
	width: 150px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(7) {
	width: 150px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(8) {
	width: 150px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(9) {
	width: 130px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(10) {
	width: 100px;
}
div.table.operationalProfit2 .row .cell:nth-of-type(11) {
	width: 140px;
}


div.table.operationalProfit3 .row .cell:nth-of-type(1) {
	width: 90px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(2) {
	width: 110px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(3) {
	width: 70px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(4) {
	width: calc( 100% - 90px - 110px - 70px - 200px - 150px - 150px - 150px - 150px - 130px - 100px - 140px );
}
div.table.operationalProfit3 .row .cell:nth-of-type(5) {
	width: 200px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(7) {
	width: 150px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(8) {
	width: 150px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(9) {
	width: 150px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(10) {
	width: 130px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(11) {
	width: 100px;
}
div.table.operationalProfit3 .row .cell:nth-of-type(12) {
	width: 140px;
}



div.table.tasksOutstanding .row .cell:nth-of-type(1) {
	width: 150px;
}
div.table.tasksOutstanding .row .cell:nth-of-type(2) {
	width: calc( 100% - 150px - 150px - 200px - 150px );
}
div.table.tasksOutstanding .row .cell:nth-of-type(3) {
	width: 150px;
}
div.table.tasksOutstanding .row .cell:nth-of-type(4) {
	width: 200px;
}
div.table.tasksOutstanding .row .cell:nth-of-type(5) {
	width: 150px;
}



div.table.tasksOutstandingV2 .row .cell:nth-of-type(1) {
	width: 150px;
}
div.table.tasksOutstandingV2 .row .cell:nth-of-type(2) {
	width: 200px;
}
div.table.tasksOutstandingV2 .row .cell:nth-of-type(3) {
	width: 150px;
}
div.table.tasksOutstandingV2 .row .cell:nth-of-type(4) {
	width: 150px;
}
div.table.tasksOutstandingV2 .row .cell:nth-of-type(5) {
	width: calc( 100% - 150px - 200px - 150px - 150px - 150px - 200px - 150px );
}
div.table.tasksOutstandingV2 .row .cell:nth-of-type(6) {
	width: 150px;
}
div.table.tasksOutstandingV2 .row .cell:nth-of-type(7) {
	width: 200px;
}
div.table.tasksOutstandingV2 .row .cell:nth-of-type(8) {
	width: 150px;
}



div.table.invoiceList .row .cell:nth-of-type(1) {
	width: 100px;
}
div.table.invoiceList .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.invoiceList .row .cell:nth-of-type(3) {
	width: calc( 100% - 100px - 150px - 250px - 150px );
}
div.table.invoiceList .row .cell:nth-of-type(4) {
	width: 250px;
}
div.table.invoiceList .row .cell:nth-of-type(5) {
	width: 150px;
}



div.table.invoiceGroupList .row .cell:nth-of-type(1) {
	width: calc( 100% - 150px - 220px - 100px );
}
div.table.invoiceGroupList .row .cell:nth-of-type(2) {
	width: 150px;
}
div.table.invoiceGroupList .row .cell:nth-of-type(3) {
	width: 220px;
}
div.table.invoiceGroupList .row .cell:nth-of-type(4) {
	width: 100px;
	text-align: right;
}
div.table.invoiceGroupList .row .cell:nth-of-type(4) a {
	display: inline-block;
}
div.table.invoiceGroupList .row .cell:nth-of-type(4) i {
	text-align: right;
	font-size: 20px;
}



/* Search Box */
div.hidden-search {
	background: #f1f1f1;
    padding: 15px;
	display: none;
}
div.hidden-search.show {
	display: block;
	margin-bottom: 15px;
}
div.hidden-search h2 {
	font-size: 22px;
    font-weight: 500;
    margin: 0px;
	margin-bottom: 7px;
}
div.hidden-search form {
	margin-bottom: 0px;
}


/* Icon Buttons */
.icon-button {
	border: 1px solid #cccccc;
	font-weight: 400;
	padding: 5px;
	cursor: pointer;
	margin-right: 7px;
	display: inline-block;
	margin-bottom: 15px;
}
.icon-button::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
	padding-right: 7px;
}

.icon-button:hover {
	background: #f1f1f1;
}

.icon-button.icon-back::before {
    content: "\f104";
}
.icon-button.icon-new::before {
    content: "\f067";
}
.icon-button.icon-search::before {
    content: "\f002";
}
.icon-button.icon-delete::before {
    content: "\f2ed";
	font-weight: 500;
}
.icon-button.icon-dispatch::before {
    content: "\f0d1";
}
.icon-button.icon-email::before {
    content: "\f0e0";
	font-weight: 500;
}
.icon-button.icon-group::before {
    content: "\f5fd";
}
.icon-button.icon-order::before {
    content: "\f543";
}
.icon-button.icon-download::before {
    content: "\f56d";
}
.icon-button.icon-convert::before {
    content: "\f021";
}



/* Custom Forms */
form#jobdeliveryform > div {
	display: flex;
	gap: 10px;
}
form#jobdeliveryform .wrapper {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: calc( 100% - 100px );
}
form#jobdeliveryform .action-row {
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 100px;
}
form#jobdeliveryform .action-row input.btn {
	line-height: 40px;
	padding-top: 0px;
	padding-bottom: 0px;
}
form#jobdeliveryform .fancy-input .input-row {
	margin: 0px;
}


form#taskprocessform .actions {
	margin-bottom: 15px;
}
form#taskprocessform .actions input.btn {
	display: inline-block;
	width: auto;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 18px;
}


form#taskreadyform .actions {
	margin-bottom: 15px;
}
form#taskreadyform .actions input.btn {
	display: inline-block;
	width: auto;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 18px;
}


form#taskdispatchform .actions {
	margin-bottom: 15px;
}
form#taskdispatchform .actions input.btn {
	display: inline-block;
	width: auto;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 18px;
}


form#taskcompleteform .actions {
	margin-bottom: 15px;
}
form#taskcompleteform .actions input.btn {
	display: inline-block;
	width: auto;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 18px;
}


form#invoiceactionform .action-row {
	margin-bottom: 15px;
}
form#invoiceactionform .action-row input.btn {
	display: inline-block;
	width: auto;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 18px;
}



div.tabNavigation {
	margin-bottom: 15px;
	
	border-bottom: 2px solid #0085c6;
	display: flex;
}
div.tabNavigation .tabOption {
	text-align: center;
	padding: 7px 10px;
	cursor: pointer;
}
div.tabNavigation .tabOption:hover {
	background: #e7e7e7;
}
div.tabNavigation .tabOption.current {
	background: #0085c6;
	color: #ffffff;
}

div.tabNavigation .reload {
	text-align: center;
	padding: 7px 10px;
	cursor: pointer;
	margin-left: auto;
}
div.tabNavigation .reload:hover {
	background: #e7e7e7;
}
div.tabNavigation .reload.available {
	animation: 1s infinite alternate ease-out breathing-reload;
}
@keyframes breathing-reload {
    from { background-color: transparent; }
    to { background-color: #e1e1e1; }
}



div.tabPage {
	display: none;
}
div.tabPage.current {
	display: block;
	min-height: 48px;
	position: relative;
}

div.tabPage.loading {
	max-height: 48px;
	overflow: hidden;
}
div.tabPage .loadercover {
	display: none;
}
div.tabPage.loading .loadercover {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	background: #ffffff;
	z-index: 100;
	width: 100%;
}
div.tabPage .loadercover .loader {
	margin: 0px auto;
}

div.tabPage .noactionprompt {
	display: none;
}
div.tabPage.nojobs .noactionprompt {
	display: block;
}

div.tabPage.nojobs form {
	display: none;
}



.loader {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	position: relative;
	animation: rotate 1s linear infinite
}
.loader::before , .loader::after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 5px solid #f1f1f1;
	animation: prixClipFix 2s linear infinite ;
}
.loader::after{
	inset: 8px;
	transform: rotate3d(90, 90, 0, 180deg );
	border-color: #0085c6;
}

@keyframes rotate {
	0%   {transform: rotate(0deg)}
	100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
	0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
}


iframe.documentIframe {
	width: 100%;
	height: 60vh;
}


/* Colour Key */
div.colourKey {
	margin-bottom: 20px;
}
div.colourKey .option {
	display: block;
	margin-bottom: 5px;
}
div.colourKey .option span.block {
	width: 24px;
	height: 24px;
	display: inline-block;
	margin-right: 7px;
}
div.colourKey .option span {
	line-height: 24px;
	vertical-align: top;
}


/* Random Extra Filters */
.taskScreenFilterCustomers {
	font-size: inherit;
    border: 0px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
	
	display: block;
    background: #ffffff;
    width: 100%;
    padding: 0px;
    line-height: 36px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid #cccccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	clear: both;
	
	padding: 0px 10px;
}
.taskScreenFilterJobType {
	font-size: inherit;
    border: 0px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
	
	display: block;
    background: #ffffff;
    width: 100%;
    padding: 0px;
    line-height: 36px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid #cccccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	clear: both;
	
	padding: 0px 10px;
}

.taskScreenFilterDateSearch {
	display: flex;
	gap: 10px;
}
.taskScreenFilterStart {
	font-size: inherit;
    border: 0px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
	
	display: block;
    background: #ffffff;
    width: 100%;
    padding: 0px;
    line-height: 36px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid #cccccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	clear: both;
	
	padding: 0px 10px;
}
.taskScreenFilterEnd {
	font-size: inherit;
    border: 0px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
	
	display: block;
    background: #ffffff;
    width: 100%;
    padding: 0px;
    line-height: 36px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid #cccccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	clear: both;
	
	padding: 0px 10px;
}