/* CSS Document */

body {
	margin:0px;
	font-size:12px;
	font-family: 'Montserrat', sans-serif;
	top: 0px;
    padding-left: 165px;
    box-sizing: border-box;
    left: 0px;
}

input.login {
	padding:15px 20px 15px 20px;
	font-size:16px;
	margin-bottom:20px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	font-family: 'Montserrat', sans-serif;
}

input, select, button, textarea, a.recent_ord {
	padding:5px 8px 5px 8px;
	border:1px solid #CCC;
	font-size:14px;
	margin-bottom:0px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	font-weight:normal;
	font-family: 'Montserrat', sans-serif;
}

div#page_title {
	flex: 1;
    text-align: left;
	display: flex;
    align-items: center;
}
div.page_title_text {
	margin-left:8px;
}

#pac-container {
	width: 160px;
}
div#pac-container input {
	border:none;
	background:transparent;
	padding:0px;
}
gmp-place-autocomplete div.autocomplete-icon, gmp-place-autocomplete div.clear-button {
	display:none !important;
}
gmp-place-autocomplete {
	background-color:transparent;
	border:none;
}
gmp-place-autocomplete::part(autocomplete-icon) {
    display: none;
  }

gmp-place-autocomplete::part(clear-button) {
	display: none;
}
google-maps-place-autocomplete, gmp-place-autocomplete {
    --gmp-icon-display: none;
    --gmp-clear-button-display: none;
}
.autocomplete-dropdown, .cus-dropdown {
  	list-style: none;
    padding: 0px;
    margin: 0px;
    border: 1px solid rgb(204, 204, 204);
    position: absolute;
    z-index: 5;
    width: 350px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px;
    display: block;
    border-radius: 10px;
	text-align:left;
	background: rgba(255, 255, 255, 1);
}
div.jBox-content .autocomplete-dropdown {
	max-width:100%;
}
div.jBox-content .autocomplete-dropdown i {
	max-width:unset;
	margin: 0;
}
.autocomplete-dropdown li, .cus-dropdown li {
  	padding: 8px;
  	cursor: pointer;
	display:flex;
	align-items: center;
	border-bottom: 1px solid light-dark(rgb(217, 217, 217), rgb(68, 71, 70));
}
.autocomplete-dropdown li:hover,
.autocomplete-dropdown li.highlighted,
.cus-dropdown li:hover,
.cus-dropdown li.highlighted {
  background: #f0f0f0;
}
.autocomplete-dropdown div.mainText,
.cus-dropdown div.mainText {
	font-size: 13px;
	font-weight:500;
	color: #111;
}
.autocomplete-dropdown div.subText,
.cus-dropdown div.subText {
	font-size: 12px;
	color: #666;
}
.autocomplete-dropdown div.icon,
.cus-dropdown div.icon {
	width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: .7rem;
    font-weight: bold;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.autocomplete-dropdown li:hover div.icon, .autocomplete-dropdown li.highlighted div.icon, .cus-dropdown li:hover div.icon, .cus-dropdown li.highlighted div.icon {
	background:#d8d8d8;
}
.cus-dropdown li.inactive div.icon {
	background:white;
	color:#a3a3a3;
	border:1px solid #e5e5e5;
}
/* Hide any custom icons or clear buttons */
.autocomplete-icon, .clear-button {
  display: none !important;
}

.align-middle {
	vertical-align: middle;
}

.d-none {
	display:none !important;
}

div.empty-state-content div.search-icon i {
	font-size: 2.7rem;
    color: #0c4d8b;
}

.filter-title {
	font-size: 16px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 16px;
}

.active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	margin-top: 15px;
}

.filter-pill {
	display: inline-flex;
	align-items: center;
	background: rgba(46, 77, 134, 0.1);
	color: rgb(46, 77, 134);
	border: 1px solid rgba(46, 77, 134, 0.2);
	border-radius: 20px;
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 500;
	gap: 8px;
	animation: pillSlideIn 0.2s ease-out;
}

@keyframes pillSlideIn {
	from {
		/*opacity: 0;*/
		transform: scale(0.95) translateX(1px);
	}
	to {
		/*opacity: 1;*/
		transform: scale(1) translateX(0);
	}
}

.pill-remove {
	background: none;
	border: none;
	color: rgb(46, 77, 134);
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	padding: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.pill-remove:hover {
	background: rgba(46, 77, 134, 0.2);
}

.filter-dropdowns {
	display: flex;
	flex-wrap:wrap;
	gap: 6px;
}

.filter-dropdown {
	position: relative;
	flex: .5;
    min-width: calc(50% - 3px);
}

.filter-button {
	width: 100%;
	padding: 10px 16px;
	background: white;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	text-align: left;
	cursor: pointer;
	font-size: 14px;
	color: #374151;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.2s;
}

.dropdown-content.bigger {
	min-width:200px;
}

.filter-button:hover {
	border-color: rgb(46, 77, 134);
	box-shadow: 0 0 0 3px rgba(46, 77, 134, 0.1);
}

.filter-button.active {
	border-color: rgb(46, 77, 134);
	background: rgba(46, 77, 134, 0.05);
}

.dropdown-arrow {
	transition: transform 0.2s;
	font-size: 12px;
}

.filter-button.active .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
	display: none;
	margin-top: 4px;
}

.dropdown-content.show {
	display: block;
	animation: dropdownSlide 0.2s ease-out;
}

@keyframes dropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dropdown-item {
	padding: 10px 16px;
	cursor: pointer;
	font-size: 14px;
	color: #374151;
	border-bottom: 1px solid #f3f4f6;
	transition: background-color 0.2s;
}

.dropdown-item:last-child {
	border-bottom: none;
}

.dropdown-item:hover {
	background: #f8fafc;
	color: rgb(46, 77, 134);
}

.dropdown-item.selected {
	background: rgba(46, 77, 134, 0.1);
	color: rgb(46, 77, 134);
	font-weight: 500;
}
button.filter-button span.title {
	display:flex;
	align-items: center;
	gap:7px;
	line-height: 18px;
}

.filter-close-btn {
    position: absolute;
    top: -5px;
    right: -10px;
    background: white;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.filter-close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.btn {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary {
	background: transparent;
	text-transform: none;
    letter-spacing: unset;
	border: 1px solid #CCC;
	display: flex;
    align-items: center;
    gap: 6px;
}

.btn-primary:hover {
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
    background-color: rgb(222 229 236 / 18%) !important;
    border-color: #0c4d8b !important;
    transform: translateY(-1px) scale(1.01);
    color: #2e4d86;
}

.btn-sm {
	font-size:12px;
}

.btn-danger {
	border:1px solid #ee5a52;
	background:transparent;
	color: #ee5a52;
}

.btn-danger:hover {
	transform: translateY(-1px) scale(1.03);
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.05);
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
	color:white;
}

.btn:disabled, .btn:hover:disabled {
	cursor:auto !important;
	color: #bbb !important;
    border-color: #bbb !important;
	background:transparent !important;
}

.btn-secondary {
	background: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background: #5a6268;
	transform: translateY(-2px);
}

.clear-filters-btn {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
	margin:0px;
}
div.filter-controls {
	flex:1;
	min-width:100%;
	margin-top: 10px;
	display: flex;
	justify-content: center;
    align-items: center;
    gap: 10px;
}

.clear-filters-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.form {
	font-family: 'Montserrat', sans-serif;
	font-size:12px;
	border: 1px solid #CCC;
	background-color:#F0F0F0;
	padding:10px;
	border-radius:4px;
	box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;
}

input, select, textarea {
	border: 1px solid #CCC;
}

button, textarea {
	font-weight:normal;
}

#menu {
	position:fixed;
	left: 0px;
	z-index:100;
	width:165px;
    background-color: rgb(194,211,226, 0.98);
	margin-top:0px;
	top:0px;
	border-bottom: .5px solid #FFF;
	font-size:12px;
	text-align:left;
	font-family: 'Montserrat', sans-serif;
	padding-bottom:5px;
	box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.2), 0 0px 5px 0 rgba(0, 0, 0, 0.19);
	height: 100%;
}
.relative_time {
	font-size: 12px;
	color: #666;
	margin-top: 4px;
	display:block;
}
.pad {
	padding:4px;
	margin:0px;
	margin-bottom:3px;
}

#menu a {
	position:relative;
	color:#333;
	display:block;
	font-size:14px;
	padding: 11px 10px 11px 12px;
    margin-top: 2px;
	text-transform:uppercase;
	border:.5px solid transparent;
    border-left: 5px solid transparent;
	-webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

#menu a:hover:not(.selected) {
	padding-left:17px;	
}

div#menu a i {
	margin-right:8px;
	width:16px;
}

div#menu_logo {
	margin-bottom: 4px;
    background-color: #0c4d8b;
    padding: 8px 0px;
    color: #FFF;
	font-size:10px;
	text-align: center;
	border-bottom: .5px solid #FFFF;
}
div#menu_logo span {
	font-size:20px;
	font-weight:bold;
	letter-spacing: -1px;
	transform:scale(1.15,1);
}

#menu a:hover {
	text-decoration:none;
}

#menu a:hover:not(.selected), #menu .selected {
	background-color: #0c4d8b;
    border: .5px solid rgba(12, 77, 139, 0.58);
	border-left:5px solid transparent;
    color: #FFF;
    font-weight: bold;
}

#menu .selected {
	border-left: 5px solid #0674dd;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15), 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}

#menu_toggle {
	display:none;
}

a {
	text-decoration:none;
}

p {
	margin:0px;
}

a:hover {
	color:#1191CE;
	text-decoration:underline;
}

tr.d0 td, tr.d1 td, tr.cd0 td, tr.cd1 td, tr.selected td, tr.main td, tr.line td {
	padding-top:10px;
	padding-bottom:10px;
	padding-left:7px;
	font-size:11px;
	cursor:pointer;
}

tr.line td.trash {
	padding-left:2px;
}

table#dt_table tr.d0 td, table#dt_table tr.d1 td, table#dt_table tr.cd0 td, table#dt_table tr.cd1 td, table#dt_table tr.selected td, table#dt_table tr.main td, table#dt_table tr.line td {
	padding-top:5px;
	padding-bottom:5px;
	padding-left:7px;
	font-size:11px;
	cursor:pointer;
}
table#dt_table tr.cd0 td.dt_inv, table#dt_table tr.cd1 td.dt_inv, table#dt_table tr.cd0.moh td, table#dt_table tr.cd1.moh td {
	background: rgb(24 144 255 / 10%);
}
select.dt_qty, div.item_bo select, div.item_ret select, div.item_ret select, select.nbo_qty {
	border: 0px solid #CCC;
    background: rgba(255,255,255,0.75);
    font-weight: bold;
    border-radius: 5px;
	color: #0c4d8b;
}
select.nbo_qty {
	vertical-align: middle;
}
div.item_bo select {
	margin-right:5px;	
}
div.item_ret select {
	font-weight:normal;
}
div.item_bo, div.item_ret {
	padding: 4px 0px;
}
table#report_list tr.main td, table#report_list tr.main_top td {
	padding-top:10px;
	padding-bottom:10px;
	padding-left:0;
	font-size:11px;
	cursor:default;
	font-weight: bold;
}
table#report_list tr.main td.padded {
	padding-left:4px;
    padding-right:0px;
	font-weight:bold;
}
table#report_list tr td {
	padding-top:3px;
	padding-bottom:3px;
	padding-left:0;
	font-size:11px;
	cursor:default;
	box-sizing: border-box;
}
table#report_list tr.inv td {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 12px;
}
table#report_list tr:nth-child(even):not(.tax_info):not(.tax_totals):not(.inv_details), table#eod_table tr:nth-child(even), table#reco_preview tr:nth-child(even) {
	background: rgba(99,99,99,0.1);
}
table#order_list tbody tr:not(#tr_pdrw):not(.buffer):nth-child(even) {
	background-color: rgba(180,190,199,0.23);
}
table#order_list tbody tr:not(#tr_pdrw):not(.buffer):not(#grp_delivery):hover {
	background-color: rgba(12, 77, 139, 0.18);
}
#edit_line {
	margin-top:4px;
	padding-bottom:10px;
	padding-left:0px;
	font-size:11px;
	position:relative;
	background: #F0F0F0 url(../galleria/themes/azur/bg.png);
	border: 1px solid #CCC;
	-webkit-box-shadow: 0 8px 8px -6px gray;
    -moz-box-shadow: 0 8px 8px -6px gray;
    box-shadow: 0 8px 8px -6px gray;
	border-radius: 8px;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
#edit_line {
	cursor:default;
}
tr.d0 td, tr.cd0 td {
	background-color: transparent;
	font-weight:600;
}
tr.d1, tr.cd1 {
	background: rgba(101, 108, 45, 0.05);
	font-weight:600;
}
table#ao_table tbody tr:last-child td {
	border-bottom: 1px solid #CCC;
}
div#prod_today table#ao_table {
	width:1215px;
}
div#flip_me {
	width: 1400px;
}
div#prod_today {
	width:1400px;
}
tr.main td {
	border-bottom:1px solid #CCC;
	padding-top:4px;
	padding-bottom:4px;
	font-size:12px;
	cursor:default;
}
tr.main td.rec_qty, tr.main_top td.rec_qty {
    background-color:rgba(37,255,0,0.36);
}
tr.main td.obs_qty, tr.main_top td.obs_qty {
    background-color:rgba(0,239,255,0.36);
}
tr.main td.adj_qty, tr.main_top td.adj_qty {
    background-color:rgba(253,255,0,0.36);
}
tr.selected td {
	background-color: rgba(255, 255, 204, 0.74);
	-webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
tr.inv_details.selected td, tr.inv_history.selected td {
	background-color: rgb(188, 227, 255);
	-webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}
table.history_table tbody tr.h_row td {
	background-color: transparent;
	padding:20px;
}
table#report_list tr.inv_details.selected td, table#report_list tr.inv_details.selected td select {
	font-weight:bold;
	font-size:12px;
}
tr.inv_details.selected td select {
	font-weight:bold;
}
tr.inv_history i {
	margin-left: 10px;
}
table.history_table {
	margin-bottom:5px;
}
.open_order {
	cursor:pointer;
}
tr.header td div {
	text-decoration:underline;
}
tr.data td div {
	font-size:11px;
	font-weight:600;
	margin-top:-2px;
}
table.login tr td {
	padding-top:2px;
	padding-bottom:2px;
}
table.login tr.fail td, .login_container div.fail {
	padding:10px;
	margin-bottom:20px;
	background-color:#EAEAEA;
	color:#C00;
	font-family: 'Montserrat', sans-serif;
}
.editing {
	display:block;
	position:relative;
	font-family: 'Montserrat', sans-serif;
}
.edit_elem, .edit_elemc, .numbers {
	border:1px solid transparent;
	background-color:transparent;
	padding:3px;
	position:relative;
	font-family: 'Montserrat', sans-serif;
	top:2px;
	padding-bottom:2px;
}
.numbers {
	padding: 3px 0px 3px 3px;
}
.edit_elemc {
	left:0px;
	cursor:pointer;
}
.edit_elemc:hover {
	background-color:#DEF1F1;
	border:1px solid #ABCDD4;
}
.edit_input, .editc_input, .editc_contact, .editc_qb {
	position:relative;
	top:0px;
	left:0px;
	margin-top:0px;
	margin-bottom:-4px;
	padding-left:3px;
	font-size:11px;
	font-family: 'Montserrat', sans-serif;
}
.editc_contact {
	margin-top:-2px;
}
.editc_qb {
	font-size: 12px;
    font-weight: bold;
}
.editc_input, .editc_contact {
	font-weight:normal;
	font-size:11px;
}
.edit_date {
	position:relative;
	top:0px;
	left:3px;
	margin-bottom:3px;
	border:2px solid #666;
}
.page-break {
	display:none;
}
#v_all {
	margin-top:7px;
}
.close, .close_cus_x {
	position:absolute;
	cursor:pointer;
	line-height:18px;
	font-weight:600;
	width:20px;
	top:6px;
	right:1px;
	z-index:100;
	color:#000;
}
.close {
	font-size:16px;
	font-weight:normal;
	top:17px;
	right:-10px;
}
.close_cus_x {
	position:absolute;
	top:-14px;
	right:8px;
	font-size:18px;
}
a.close:hover, a.close_cus_x:hover {
	color:#F00;
	text-decoration:none;
}
#d_pick {
	margin-top:10px;
}
.img_button {
	cursor:pointer;
	border:0;
	vertical-align:top;
}
.login_button {
	margin-top:8px;padding:10px 20px 10px 20px;font-family: 'Montserrat', sans-serif;font-size:12px;background-color:#3a7798;color:#FFF;cursor:pointer;border:0px;
}
.login_button:hover {
	background-color:#224659;text-decoration:underline;
}
.login_container {
	margin:0px auto;width:320px;font-family: 'Montserrat', sans-serif;text-align:center;
}
.faded {
	color:#A6A6A6;
	border:1px #D5D5D5 solid;
}
.complete {
	color:#3a7798;
	border:1px #3a7798 solid;
}
div.pass, div.user {
	position:relative;
}
.super_name {
	font-size:11px;
	position:absolute;
	top:-13px;
	left:8px;
}
span.report_icons {
	text-indent:-9999px;
	overflow:hidden;
	background:url(images/icons.png);
	display:block;
	width:21px;
	height:21px;
}
span.delete_new, div.delete_new, span.search_em {
	color:#333;
}
div.delete_new {
	position:absolute;
	right:-10px;
	cursor:pointer;
	top:9px;
	font-size:14px;
}
span.delete_new:hover, div.delete_new:hover {
	color:#DC0509;
}
button#cancel_emp:hover {
	background:#a60003;
}
span.search_em:hover {
	color:#00424D;
}
span.srch_cus {
	display:inline-block;padding: .9% 1%;cursor: pointer;margin: .3%;border:1px solid #999;background:rgba(37, 136, 173, 0.1);min-width:49.4%;box-sizing: border-box;position:relative;
}
span.srch_pr {
	min-width:49.4%;
	max-width: 49.4%;
	box-sizing: border-box;
	margin:.3%;
	text-align: left;
}
tr#ops span.srch_pr {
	padding: 7px 9px;
}
tr#ops span.srch_pr span {
	padding-right: 50px;
}
div.qoh {
	position:absolute;top:3px;right:5px;margin-left:5px;
}
tr#ops span.srch_grp {
	padding: 5px 9px 4px 9px;
}
span.srch_gr {
	min-width:49.4%;
	box-sizing: border-box;
	margin:.3%;
	padding:.4% 1%;
}
div.grp_find span.srch_gr {
	padding-right: 4%;
	display:block;
	float:left;
	width:49.4%;
}
div.prd_res span.srch_gr {
	box-sizing: border-box;
    margin: .5%;
    padding: 1.5% 2%;
    display: block;
    text-align: left;
	min-width:inherit;
}
span.srch_cus:hover {
	background-color: lightblue;
    border: 1px solid #5EA8BB;
}
span.cus_adds span {
	display:inline-block;
	cursor:pointer;
	background:rgba(37, 136, 173, 0.38);
	padding: 5px 8px 5px 8px;
    cursor: pointer;
    margin: 3px;
}
span.cus_adds span:hover {
	background:rgba(29,99,126,0.53);
}
span.open_order {
	background-position:0px 0px;
}
span.open_order:hover {
	background-position:0px -21px;
}
div.page_numbers, div.report_type {
	display:none;
}
#logo_print {
	display:none;
}
.cus_title {
	padding-top:3px;
	position:relative;
	display:block;
}
div.low {
	display:inline-block;
	margin-top:3px;
}
div.email-list div.low {
	display:inline-block;
	margin-top:0px;
}
div.new_contact {
	margin-top:4px;
	display:block;
}
div.hidden {
	display:none;
}
.add_contact {
	font-weight:normal;
}
div.form-group button.add_contact {
	padding: 8px 12px;
    font-size: 12px !important;
    border-radius: 6px;
}
.contact-list {
	line-height:19px;
}
.cus_row {
	position:relative;
}
div.con_row {
	padding-bottom:4px;position:relative;
}
.row {
	padding-bottom:6px;position:relative;box-sizing: border-box;
	-webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.row_select {
	background-color:rgb(141, 176, 210);
	-webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.row_error {
	background-color:rgba(204,208,40,0.68);
	-webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
div.contact-list div.new_contact {
	margin-top:3px;
	margin-bottom:5px;
}
div.contact-list div.new_contact input.add_contact, div.contact-list div.new_contact button.add_contact, div.editing input.add_contact, div.editing button.add_contact, div.email-list div.new_contact input.add_contact, div.email-list div.new_contact button.add_contact, div.form-group button.add_contact {
	cursor:pointer;
	font-size:11px;
}
div.editing input.add_contact, div.editing button.add_contact, button.recent_ord, a.recent_ord {
	background-color:#D0E5EC;
	border:1px solid #8AC8D8;
}
div.form-group button.add_contact {
	background-color:transparent;
	border:1px solid #8AC8D8;
}
div.contact-list div.new_contact input.add_contact:hover, div.contact-list div.new_contact button.add_contact:hover, div.editing input.add_contact:hover, div.editing button.add_contact:hover, a.round:hover, input.round:hover, button.round:enabled:hover, button.recent_ord:hover, div.email-list div.new_contact input.add_contact:hover, div.email-list div.new_contact button.add_contact:hover {
	background-color: rgba(155, 195, 232, 0.51);
    border: 1px solid rgba(12, 77, 139, 0.33);
	cursor:pointer;
}
div.form-group button.add_contact:hover {
	background-color: #2e4d862b;
    border: 1px solid rgba(12, 77, 139, 0.33);
	cursor:pointer;
}
div.form-group.orders .order_link {
	display: flex;
    flex-direction: row;
	text-decoration: none;
	align-items: center;
}
div.form-group.orders div.order_link {
	font-weight: bold;
    padding: 7px 4px;
    background: #fafafa;
}
div.form-group.orders a.order_link {	
    border-top: 1px solid lightgray;
}
div.form-group.orders a.order_link:hover {
	text-decoration: none;
	background-color:#c8dbff1a;
}
a.order_link span:not(.order_status) {
	text-align:left;
	color:black;
}
a.order_link span {
	padding: 8px 4px;
}
.order_link span svg {
	width:14px;
}
.order_link span.order_status {
	text-align:right;
	flex:.05;
}
.order_link span.order_name {
	flex:.5;
}
.order_link span.order_date {
	flex:.2;
}
.order_link span.order_total {
	flex:.25;
}
button.round:disabled, button.round:disabled:hover {
	cursor:default;
}
.light-blue {
	background-color:#CBE1E8;
	border:1px solid #5EA8BB;
}
input.round, button.round, a.round {
	border-radius:3px;
	cursor:pointer;
	-webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
input.round.bold, button.round.bold, a.round.bold {
	font-size:14px;
	text-transform:uppercase;
	font-weight:600;
	border-radius:5px;
	margin: 10px 3px;
	padding: 8px 13px;
}
tr.d0 td div.editing span:hover, tr.d1 td div.editing span:hover, tr.selected td div.editing span:hover, .edit_elem:hover, span.edit_elem:hover {
	border-color:rgb(153,153,153);
	background-color:rgb(228,228,228);
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
tr.top {
	background-color:#0c4d8b;
	border-top:1px solid #0c4d8b;
	border-left:1px solid #0c4d8b;
	border-right:1px solid #0c4d8b;
	color:#FFF;
	padding:1%;
	font-size:14px;
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	text-indent:4px;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
	box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;
}
.notes {
	display:block;width:130px;text-align:center;background:lightblue;border:1px solid #999;
}
.notes:hover {
	background-color:#BCE9FE;
}
.title_bar {
	position:relative;padding:35px 10px 10px 10px;background:#F0F0F0 url(../galleria/themes/azur/bg.png);-webkit-box-shadow: 0 8px 8px -6px gray;-moz-box-shadow: 0 8px 8px -6px gray;box-shadow:0 8px 8px -6px gray;
}
div.editing span.edit_elem {
	display:inline-block;
	top:-1px;
	cursor:pointer;
}
i.print_hover,i.delete_hover,i.dup_hover,i.plant_ind,i.link_hover, i.recode_hover {
	font-size:18px;
	color:#333;
	cursor:pointer;
}
i.recode_hover {
	margin-left:5px;
}
div.prd_loc {
	display:inline-block;
	margin-left:5px;
}
table#prod_setup div.prd_loc {
	margin-left:0px;
}
i.plant_ind {
	cursor:auto;
	color: #0c4d8b;
}
i.plant_ind.wr_plant {
	color:brown;
}
div.prd_loc {
	position:relative;
	text-align: center;
}
div.loc_let {
	position: absolute;
    font-weight: bold;
    top: 0.8px;
    left: 2px;
    color: #FFF;
    cursor: auto;
    margin: 0px auto;
    text-align: center;
    width: 10px;
	font-size:12px;
}
table#grp_table div.loc_let {
	top:0px;
}
tr.rb i.delete_hover {
	font-size:14px;
}
i.dup_hover {
	font-size:18px;
}
.print_hover:hover {
	color:#000;
}
.delete_hover:hover {
	color:#CC0003;
}
.recode_hover:hover {
	color:#00A9CC;
}
.dup_hover:hover {
	color:#000000;
}
.link_hover:hover {
	color:#000A5E;
}
.x_close, .x_email, .cus_close, .x_delete, .x_key, .lpb_close, .lpb_delete, .lpb_save, .x_qb {
	position:relative;display:inline-block;padding:9px 12px 8px 4px;text-align:center;font-size:16px;cursor:pointer;top:0px;right:0px;
}
#edit_line input:not([readonly]), #edit_line select, #edit_line textarea, table#grp_table #edit_line input:not([readonly]), table#grp_table #edit_line select, table#grp_table #edit_line textarea {
	border-radius: 8px;
	background: #ffffffcc;
    backdrop-filter: blur(3px);
	padding: 5px 8px 5px 8px;
	font-weight: normal;	
    font-size: 12px;
}
table#grp_table td.trash {
	min-width:80px;
}
.cus_close, .x_delete, .x_key, .x_qb {
	padding:8px 12px;
	top:0px;
	right:0px;
}
.lpb_close, .lpb_save, .lpb_delete {
	padding: 16px;
}
.cus_close {
	padding-left: 11px;
}
.x_email, .x_delete, .lpb_delete, .x_key, .x_qb {
	border-top-right-radius:0px;
	right:auto;
}
.x_close:hover, .cus_close:hover, .lpb_close:hover {
	background-color:#ED0003;
}
.lpb_save:hover {
	background-color:#139747;
}
.x_delete, .x_key, .x_qb, .cus_close {
	right:auto;
	padding:16px;
}

.lpb_delete {
	right:auto;
}
.x_delete:hover, .lpb_delete:hover {
	background-color:#AB0002;
}
.x_email:hover {
	background-color:#5F8294;
}
.x_key:hover {
	background-color:#069B1C;
}
.x_qb:hover {
	background-color:#2ca01c;
}
.title_date {
	margin-right:80px;
}
.title_date_no_buttons {
	margin-right:3px;
	display:inline-block;
	float:right;
}
#p_all {
	margin-bottom:20px;
	position:relative;
	display:block;
}
tr.d0:hover, tr.d1:hover {
	background-color:#B0D2D7;
}
div.cog_load {
	display:none;font-size:20px;color:#333;position:relative;top:0px;left:0px;
}
.cus_data {
	min-width:175px;
	border: 1px solid lightgray;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1.00);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow:hidden;
}
#cus_panel_srch {
	width:300px;
	display:flex;
	min-width: 300px;
	transition: width 0.5s ease;
}
#cus_cont {
	width:100%;
    padding: 0px 15px;
    min-width: 350px;
	max-width: 950px;
	flex-grow: 1;
	opacity: 0;
	visibility: hidden;
	/*transform: translateX(20px);*/
	transition: all 0.5s ease;
  	transition-behavior: allow-discrete;
	box-sizing: border-box;
	z-index:1;
	position:relative;
	/*display:none;*/
}
#cus_flex.active #cus_cont {
	opacity: 1;
  	visibility: visible;
	display:block;
}
@starting-style {
  #cus_flex.active #cus_cont, #cus_flex #cus_cont {
    opacity: 0;
  	transform: translateX(0px);
  }
}
.cus_body {
	padding: 15px 20px 20px;
	display:flex;
	flex-wrap:wrap;
	box-sizing:border-box;
	gap:10px;
}
.sales_contact_title {
	margin-top:10px;
	color: #2c3e50;
}
.form-group, .button-group {
	margin-bottom: 20px;
	position: relative;
	text-align: left;
}
.button-group {
	margin-bottom:10px;
}
.cus_row .form-group {
	margin-bottom:0px;
}
.cus_row {
	padding: 4px 5px 7px;
    margin-bottom: 5px;
    border-radius: 5px;
}
.cus_row .form-group input {
	font-size:13px;
}
.cus_row .form-group.name {
	flex:.7;
}
.cus_row .form-group.email {
	flex:1.3;
}
.form-group input, .form-group select, .form-group textarea {
	width: 100%;
	padding: 2px 0px;
	border: none;
	border-bottom: 1px solid #e8e8e8;
	border-radius: 0;
	font-size: 14px;
	transition: all 0.3s ease;
	background: transparent;
	position: relative;
}

.form-group input:not(:read-only):focus, .form-group select:not(:read-only):focus, .form-group textarea:not(:read-only):focus {
	outline: none;
	border-bottom-color: #667eea;
	transform: translateY(-1px);
}

.form-group input.phone {
	min-width: 110px;
}

.form-group input:read-only {
  	border: 0; /* No border for read-only inputs */
}

.form-group input:not(:read-only):focus::after, .form-group select:not(:read-only):focus::after, .form-group textarea:not(:read-only):focus::after {
	transform: scaleX(1);
}

.form-group::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(135deg, #2e4d86 0%, #c8d4e1 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: left;
}

.fade-out-bottom {
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.fade-out-top-bottom {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.form-group :input:focus-within::after {
	transform: scaleX(1);
}

.form-group label {
	display: block;
	margin-bottom: 2px;
	font-weight: 500;
	color: #555;
	font-size: 12px;
}
div#cus_flex {
	transition: all 0.5s ease;
}
div.cd0, div.cd1 {
	position:relative;margin:3px 0px;padding:10px 28px 10px 12px;font-weight:600;display:inline-block;width:100%;vertical-align:top;border-radius:12px;background-color: rgb(255 255 255 / 46%);border: 1px solid #bababa;box-sizing:border-box;cursor:pointer;transition: all 0.25s ease;color: #434343;
}
div.cus_sel {
	border-color: #2e4d86;
    background: #2e4d860d;
    color: #0c4d8b;
    font-size: 14px;
    transform: scale(1.05);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.10);
}
div.cus_sel:hover {
	background-color:#c8dbff1a;
}
div.cus_init div.acct_logo svg path {
	fill:#111 !important;
}
div.hub_cus:not(.cus_sel):hover div.cus_init div.acct_logo svg path {
	fill:#111 !important;
}
div.cus_sel div.cus_init div.acct_logo svg path {
	fill:#fff !important;
}
.avatar i {
	font-size:.7rem;
}
.avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f2f2f2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	font-size: .7rem;
	font-weight: bold;
	margin-right: 10px;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	transition: all 0.3s ease;
}
div.cus_sel .avatar {
	background: #0c4d8b;
	color:white;
}
div.hub_cus:not(.cus_sel):hover .avatar {
	background: #e1e1e1;	
}
.avatar::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(transparent, rgba(255,255,255,0.3), transparent);
	animation: rotate 3s linear infinite;
	opacity: 0;
	transition: opacity 0.3s;
}

.hub_cus:hover .avatar::after {
	opacity: 1;
}
div.live_inv {
	gap:10px;
	margin-bottom: 20px;
}
div.live_inv_field {
	font-size:14px;
}
div.live_inv div.status-card {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 15px 10px 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
	width: 100px;
    box-sizing: border-box;
	width: calc(33.9% - 10px);
}
div.live_inv div.status-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;	
    flex-wrap: wrap;
}
div.live_inv div.status-value {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}
div.live_inv div.status-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
	min-width: 150px;
}
div.live_inv div.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}
div.live_inv div.status-icon {
    width: 32px;
    height: 32px;
	min-width:32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
/*.status-customer-ready::before {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}
.status-moh::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.status-repair::before {
    background: linear-gradient(135deg, #fd7e14 0%, #e91e63 100%);
}
.status-second::before {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
}
.status-available::before {
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
}
.status-quoted::before {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}*/
.status-customer-ready .status-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}
.status-moh .status-icon {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}
.status-repair .status-icon {
    background: rgba(253, 126, 20, 0.1);
    color: #fd7e14;
}
.status-second .status-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}
.status-available .status-icon {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}
.status-quoted .status-icon {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}
div.live_inv div.status-customer-ready:hover {
	border-color: #28a745;
}
div.live_inv div.status-moh:hover {
	border-color: #667eea;
}
div.live_inv div.status-repair:hover {
	border-color: #fd7e14;
}
div.live_inv div.status-second:hover {
	border-color: #ffc107;
}
div.live_inv div.status-available:hover {
	border-color: #17a2b8;
}
div.live_inv div.status-quoted:hover {
    border-color: #6f42c1;
}
div.action-header {
	display:flex;
}
span.action-icon {
	font-size: 14px;
    padding: 2px;
    color: #2c3e50;
    cursor: pointer;
	transition: all 0.3s ease;
}
span.action-icon:hover {
	transform:scale(1.02);
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/* Empty State Design */
.empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	padding: 48px;
	color: #64748b;
	position: relative;
}

.empty-state-content {
	position: relative;
	max-width: 420px;
	margin-bottom: 80px;
}

.search-icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 32px;
	background: #ffffff;
	border: 2px solid #e2e8f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: float 6s ease-in-out infinite;
	box-shadow: 0 4px 20px rgba(148, 163, 184, 0.1);
}

@keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-3px) scale(1.02); }
        }

        @keyframes orb1 {
            0%, 100% { transform: translate(0px, 0px); opacity: 0.4; }
            25% { transform: translate(15px, -10px); opacity: 0.6; }
            50% { transform: translate(-8px, -20px); opacity: 0.3; }
            75% { transform: translate(-12px, 5px); opacity: 0.5; }
        }

        @keyframes orb2 {
            0%, 100% { transform: translate(0px, 0px); opacity: 0.3; }
            25% { transform: translate(-18px, 8px); opacity: 0.5; }
            50% { transform: translate(10px, 15px); opacity: 0.4; }
            75% { transform: translate(20px, -5px); opacity: 0.6; }
        }

        @keyframes orb3 {
            0%, 100% { transform: translate(0px, 0px); opacity: 0.2; }
            33% { transform: translate(12px, 18px); opacity: 0.4; }
            66% { transform: translate(-15px, 10px); opacity: 0.5; }
        }

        .floating-orbs {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(46, 77, 134, 0.06) 0%, rgba(46, 77, 134, 0.02) 100%);
            border: 1px solid rgba(46, 77, 134, 0.08);
            backdrop-filter: blur(20px);
            box-shadow: 
                0 8px 32px rgba(46, 77, 134, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .orb:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 10%;
            animation: orb1 16s ease-in-out infinite;
        }

        .orb:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 55%;
            right: 15%;
            animation: orb2 20s ease-in-out infinite reverse;
        }

        .orb:nth-child(3) {
            width: 160px;
            height: 160px;
            bottom: 20%;
            left: 20%;
            animation: orb3 24s ease-in-out infinite;
        }

        .orb:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 35%;
            right: 25%;
            animation: orb1 18s ease-in-out infinite reverse;
            animation-delay: -6s;
        }

        .orb:nth-child(5) {
            width: 60px;
            height: 60px;
            bottom: 35%;
            right: 8%;
            animation: orb2 22s ease-in-out infinite;
            animation-delay: -10s;
        }

.search-icon svg {
	width: 60px;
	height: 60px;
	fill: #0c4d8b;
}

.empty-state h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
	color: #1e293b;
}

.empty-state p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 32px;
}

.quick-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.action-button {
	padding: 12px 16px;
	background: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	flex: 1;
    box-sizing: border-box;
    min-width: calc(50% - 12px);
}

.action-button:hover {
	background: #0c4d8b;
	color: white;
	border-color: #0c4d8b;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 77, 134, 0.15);
}

.stats-preview {
	position: relative;
	display: flex;
	justify-content: space-around;
	border-radius: 12px;
	padding: 20px;
    width: 90%;
    max-width: 300px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 4px;
	color: #1e293b;
}

.stat-label {
	font-size: 12px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
div#cus_cont_empty {
	position: absolute;
    width: 100%;
	box-sizing: border-box;
	max-width:900px;
}
div.cus_panel_fixed {
    width: 370px;
	transition: width 0.5s ease;
	text-align:left;
	display:flex;
	flex-wrap:wrap;
}
div.cus_boxes {
	min-width: 250px;
    width: 55%;
    text-align: left;
	display:block;
}
div.cus_boxes input {
	accent-color: #FFF;
}
.cus_top {
	display:flex;
	vertical-align:middle;
	align-items: center;
	position:relative;
	top:0px;
	left:0px;
	width:100%;
	background-color:#0c4d8b;
	padding:0px;
	color:#FFF;
	overflow: hidden;
}
.cd0:not(.no_hover):not(.cus_sel):hover, .cd1:not(.cus_sel):not(.no_hover):hover, .cd0.draft:hover, .cd1.draft:hover, .cd0.final:hover, .cd1.final:hover {
	background-color: rgba(12, 77, 139, 0.18);
    border-color: #0c4d8b;
}
div.hub_cus:not(.cus_sel):hover {
	background-color: rgb(222 229 236 / 18%) !important;
    border-color: #0c4d8b !important;
	transform:translateY(-1px) scale(1.01);
	color: #2e4d86;
}
div.add_space {
	margin-bottom:6px;
}
div#search-box-icon, div#search-box-filter-icon {
	display: block;
	width: 0px;
	position: absolute;
	color: #CCC;
	font-size: 20px;
	transition: all 0.3s ease;
}
div#search-box-filter-icon {
	cursor:pointer;	
}
div#search_filters {
	text-align: center;
    width: 98%;
	margin-top:3px;
    position: absolute;
    box-sizing: border-box;
    padding: 0px 10px 10px;
	background: rgba(255, 255, 255, 0.5); /* Semi-transparent white for glass effect */
    backdrop-filter: blur(12px); /* Frosted glass blur */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border-radius: 12px; /* Rounded corners */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden; /* Hide element without breaking animations */
    pointer-events: none; /* Prevent interaction when hidden */
	transform: translateX(90px) translateY(-85px) scale(.35);
	transition: all 0.3s ease;
}
div#search_filters.active {
	transform:translateY(0px) scale(1);
	visibility: visible; /* Show element */
    pointer-events: auto; /* Allow interaction when visible */
	opacity: 1;
	display:block;
}

.cus-section {
	background: white;
	border-radius: 12px;
	padding: 15px 18px 2px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-sizing:border-box;
	text-align: left;
	border: 1px solid lightgray;
	flex: 1 1 calc(50% - 5px);
}

.cus-section:hover {
	/*transform: translateY(-4px);*/
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
	border-color:#0c4d8b;
}

.cus-section-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #2c3e50;
	padding-bottom: 8px;
	margin-top:0px;
	flex: 1;
}
.form-row, .cus_row {
	display:flex;
	gap:0 15px;
	flex-wrap:wrap;
	position:relative;
	min-width: 250px;
}
div.cus_row div.contact_num {
	position: absolute;
    left: -13px;
    font-size: 9px;
    font-weight: bold;
    padding: 1px 4.5px;
    border-radius: 9px;
    border: 1px solid #0c4d8b;
    color: #0c4d8b;
	margin-top: 3px;
}
div.form-group .cus_row:hover {
	background-color:#c8dbff1a;
}
.cus_row:nth-child(odd) { background: rgba(99,99,99,0.03); }

/* light pole base submittal styles for grouped items */
table#grp_table div#edit_line {
	div.j_pat {
		left:55%;
	}
	div.pvc_op {
		left:58%;
		top:105px;
	}
	div.pvc-cam-arrow {
		left: -104px;
		width: 100px;
	}
	select[name=jbolts] {
		top:0px;
		left:3px;
	}
	select[name=con_dist] {
		top:159px;
		left:278px;
	}
	select[name=b_ring] {
		top: 60px;
		left: 3px;
		max-width: 115px;
	}
	div.ext-rebar-div {
		top: 98px;
    	left: 3px;
	}
	div.ext-rebar-arrow {
		top: -24px;
    	left: 152px;
		width:80px;
		height:45px;
	}
	div.ext-rebar {
		top: -40px;
    	left: 156px;
		height:35px;
		width:108px;
	}
	div[name=rebar] {
		top:142px;
		left:5px;
	}
	div[name=conduit] {
		top:244px;
		left:5px;
	}
	div#ground-wire {
		left:24px;
	}
	div.lpb_width {
		top:563px;
		left:189px;
	}
	div.lpb_height {
		top:403px;
		left:292px;
	}
	div#lpb_side {
		height:615px;
	}
}
/* light pole base submittal styles for standard line items */
div#edit_line {
	div.j_pat {
		left:207px;
		top:0px;
	}
	div.pvc_op {
		left:207px;
		top:120px;
	}
	select[name=jbolts] {
		top:5px;
		left:8px;
	}
	select[name=con_dist] {
		top:159px;
		left:315px;
	}
	select[name=b_ring] {
		top: 70px;
		left: 8px;
		max-width: unset;
	}
	div.ext-rebar-div {
		top: 112px;
    	left: 8px;
	}
	div[name=rebar] {
		top:159px;
		left:8px;
	}
	div[name=conduit] {
		top:265px;
		left:8px;
	}
	div#ground-wire {
		width:360px;
		height:370px;
		left:45px;
		top:-370px;
	}
	div.lpb_width {
		top:614px;
		left:210px;
	}
	div.lpb_height {
		top:423px;
		left:328px;
	}
	textarea[name=ord_notes] {
		max-width: 100%;
    	box-sizing: border-box;
	}
	div#lpb_side {
		height:670px;
	}
}

i.grp_srt {
	display:none;
	position: absolute;
    top: 1px;
    right: 3px;
    font-size: 14px;
    cursor: move;
}
table#grp_table tbody tr:hover i.grp_srt {
	display:block;
}

.expand {
	padding:4px;
}
span.ord {
	position:absolute;right:6px;cursor:pointer;top:5px;font-size:18px;
}
button.recent_ord, a.recent_ord {
	font-size:11px;display:block;margin:3px 0px;border-radius:0px;font-weight:600;
}
a.recent_ord {
	display:inline-block;
	color:#000;
}
a.recent_ord:hover {
	text-decoration:none;
}
tr.top td div a {
	color:#FFF;
}
i.mod {
	font-size:18px;display:inline-block;color:#333;cursor:pointer;margin-left:5px;
}
i.edit:hover {
	color:#04131B;
}
i.add:hover {
	color:#1A6305;
}
i.kill:hover {
	color:#BB0003;
}
div.top_left, div.top_right {
	width:50%;
	vertical-align:top;
	text-align:left;
	display:inline-block;
}
div.top_left {
	/*background-color: #c1dce0;*/
    padding: 2%;
    width: 42%;
	margin-right:4%;
    border: 1px dotted #999;
    box-sizing: border-box;
	background: rgba(187, 176, 157, 0.38) url(../galleria/themes/azur/bg.png);
}
div#edit_line span.title {
	font-size:16px;
	font-weight:600;
	display:block;
}
.buf_right {
	margin-right:8px;
}
span.weight_e, span.weight_t {
	font-size:14px;
}
div.line, div#lpb_side {
	display:block;
	margin-top:5px;
	margin-bottom:5px;
}
div.wzone {
	vertical-align: top !important;
}
div.top_right div.line select, div.top_right div.line input, div#bottom_left select, div#bottom_left input, div#lpb_side select, div#lpb_side input {
	font-size:12px;
	margin-bottom:2px;
}
div#lpb_side {
	background-size:98%;height:670px;background-repeat:no-repeat;background-position:right 20px;position:relative;
}
div.edit_bar {
	background-color: #0c4d8b;
    color: #FFF;
    padding: 0;
    font-size: 14px;
    position: relative;
    top: 0px;
    width: 100%;
	box-sizing: border-box;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
	text-align:center;
	display:flex;	
	overflow: hidden;
}
div.edit_bar_title {	
	width:32%;
	text-align:left;
	font-weight:bold;
	padding:15px;
}
table#order_list, table#report_list {
	border:0px;
	background-color:transparent;
	margin-top:10px;
}
table#order_list {
	margin-top:0px;
	padding-top:0px;
}
table#report_list {
	margin-top:0px;
	padding-top:0px;
}
div.rep_content {
	width:100%;text-align:center;max-height:75%;margin-top:20px;
}
table#order_list td, tr#delivery {
    padding-top: 4px;
    padding-bottom: 4px;
}
table#order_list tbody td {
	text-align:left;
}
tr#delivery {
	background-color:rgba(117, 228, 191, 0.24);
	padding:0px;
	margin:0px;
}
div.delivery_head {
	position:absolute;
	display:block;
	padding:10px;
	font-weight:600;
	font-size:11px;
	top: -37px;
}
div.dlv_order {
	position:relative;
	display:block;
	font-weight:600;
	font-size:11px;
	margin-top: 15px;
}
div.dlv_order button {
	margin: 10px auto 10px 5px;
    font-size: 11px;
    background-color: rgba(117, 228, 191, 0.74);
    border:1px solid rgba(80, 175, 143, 0.64);
}
div.dlv_order button:hover {
    background-color: rgb(117, 228, 191);
    border:1px solid rgba(53, 132, 105, 0.64);
}
div#bottom_left {
	background-size:57%;height:241px;background-repeat:no-repeat;background-position:left 20px;position:absolute;width:45%;top:465px;margin:2%;left:20px;
}
input.ro, div.lpb_width input, div.lpb_height input {
	background-color:transparent;
	border:0px;
}
input.ro {
	padding:4px 2px;
}
#d_base {
	background-size:100%;text-align:center;width:50%;height:110px;background-repeat:no-repeat;background-position:center 0px;float:right;
}
div.top_left div.line {
	margin-top:3px;
	margin-bottom:3px;
}
div.top_left div.top {
	margin-top:10px;
}
div.edit_single {
	height:42px;background: rgba(148, 139, 123, 0.38) url(../galleria/themes/azur/bg.png);margin-bottom:15px;padding-top:10px;position:relative;top:-1px;text-align:center;
}
table#ao_table tr td.draft {
	padding-left:5px;
}
table#ao_table tr td.lost {
	padding-left:4px;
}
table#ao_table tr td.sales_order {
	padding-left:4px;
}
td.draft i, td.submitted i, td.approved i, td.lost i, td.in_prod i, td.delivered i, td.idle i {
	font-size: 16px;
    box-sizing: border-box;
    padding: 0px 4px;
	opacity:0.7;
    color: rgba(107, 55, 0, 0.83);
}
.order_link span.draft i, .order_link span.submitted i, .order_link span.approved i, .order_link span.lost i, .order_link span.in_prod i, .order_link span.idle i, .order_link span.delivered i {
	opacity:0.7;
    color: rgba(107, 55, 0, 0.83);	
}
td.draft, td.submitted, td.approved, td.lost, td.in_prod, td.idle {
	text-align:left;
}
td.sales_order img, td.sales_order svg {
	width: 17px;
    padding: 0px 5px 0px 1px;
}
td.sales_order svg path.qb_logo, .order_link span.sales_order svg path.qb_logo {
	fill:rgb(44, 160, 28);
}
td.sales_order svg path.sage_logo, .order_link span.sales_order svg path.sage_logo {
	fill:#52AF38;
}
td.sales_order.pending svg path, .order_link span.sales_order.pending svg path {
	fill:rgb(100, 105, 100);
}
.order_link span.idle i {
	color: rgb(152 97 7);
	opacity:1.0;
}
.order_link span.lost i {
	color: rgba(91, 107, 0, 0.96);
	opacity:1.0;
}
.order_link span.approved i {
	color: rgba(38, 148, 68, 0.88);
}
.order_link span.in_prod i {
	color: rgba(0, 0, 0, 0.95);
}
.order_link span.delivered i {
	color: #0c4d8b;
}
tr.cd1.draft {
	background: rgba(167, 93, 15, 0.25);
}
tr.cd0.draft {
	background: rgba(167, 93, 15, 0.17);
}
td.submitted i {
    padding: 0px 5px 0px 1px;
    color: rgb(7, 107, 128);
}
td.delivered i {
    padding: 0px 7px 0px 0px;
    color: #0c4d8b;
}
td.lost i {
	color: rgba(91, 107, 0, 0.96);
	opacity:1.0;
}
td.idle i {
	color: rgb(152 97 7);
	opacity:1.0;
	padding-left:2px;
}
tr.cd1.approved {
	background: rgba(138, 241, 166, 0.28);
}
tr.cd0.approved {
	background: rgba(138, 241, 166, 0.15);
}
td.approved i {
    padding: 0px 5px 0px 1px;
    color: rgba(38, 148, 68, 0.88);
}
td.in_prod i {
    padding: 0px 4px 0px 2px;
    color: rgba(0, 0, 0, 0.95);
    font-size: 16px;
}
div.approved, div.account_flags {
	background-color: rgba(38, 148, 68, 0.88);
	padding: 10px;
    color: #FFF;
	border-radius: 20px;
}
div.account_flags {
	border: 1px solid #8b0000d9;
    background-color: transparent;
    color: darkred;
    font-weight: bold;
}
tr#approved.lost div.approved {
	background-color: rgba(91, 107, 0, 0.71);
	padding: 10px;
    color: #FFF;
}
tr#approved {
	display:none;
}
.ord_title {
	background-color: #0c4d8b;
    color: #FFF;
    padding:9px;
	font-weight: bold;
    font-size: 14px;
    position: absolute;
    width: 100%;
    left:0px;
	top:-1px;
	margin:0px;
	box-sizing:border-box;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
input.no_style, select.no_style {
	font-size:11px;
	font-weight:600;
	border:0px;
	background:transparent;
	padding:0px;
}
div.jBox-content select.no_style {
	font-size:12px;
	font-weight:600;
	border:0px;
	background:transparent;
	margin:2px 0px;
	border-bottom:1px solid #999;
}
table#dt_table select.no_style {
	color: #000;
    font-size: 14px;
}
select.no_style_bigger {
	font-size:12px;
	font-weight:500;
	border:0px;
	background:transparent;
	padding:0px;
	border-bottom:1px solid #999;
	margin-top: 4px;
}
#table1 div.indiv, #table2 div.indiv, #order_list div.price_e, #order_list div.weight_t, div.log_in, #order_list div.pr_name, #order_list div.pr_qty, #app_table div.indiv {
	width:auto;
	position:relative;
	display:inline-block;
	top:1px;
}
#table1 div.indiv {
	width:100%;
}
div.price_e, div.price_t {
	font-weight:600;
	letter-spacing:0px;
}
div.price_t {
	position:relative;
	top: 1px;
}
#order_list div.pr_name {
	width:100%;
}
div.price_e input, div.weight_t input {
	width:89%;
}
div.pr_name input, div.pr_qty input {
	width:98%;
}
div.log_in {
	margin-bottom:8px;
}
#table1 input, #table1 select, #table2 input, #table2 select, input.editc_qb, div#pr_setup select, div.add_space select, tr#ops input, div.s_date input, div.s_time input, div.s_terms select, #app_table input {
	border:0px;
	border-bottom:1px solid #999;
	background:transparent;
	padding:14px 0px 2px 0px;
	margin:2px 0px 3px 2px;
}
div.s_time input {
	font-size:14px;
	padding-top:7px;
}
div#pr_setup select {
	padding:2px 0px;
	font-weight:600;
}
tr#ops div#spr input {
	font-size:20px;
}
div.add_space input[type="text"] {
	border:0px;
	border-bottom:1px solid #999;
	background:transparent;
	padding:8px 0px 2px 0px;
	margin:2px 0px 3px 2px;
	font-size:12px;
	font-weight:600;
}
div.low_line {
	display:inline-block;
	top:0px;
}
div.drop_cc input.editc_qb, div.drop_cc select.editc_qb {
	border-bottom:1px solid #f00;
}
span.cc_res {
	margin-top: 10px;
    position: relative;
    display: block;
	font-weight: bold;
}
span.comp {
	color:#00420F;
}
div.drop_cc input.complete, div.drop_cc select.complete {
	border-bottom:1px solid #007513;
	color:#007513;
}
span.span_so select {
	display:inline-block;
}
select#bases, select#pr_cats, select#pr_plants, input.srch_prd, #order_list [id^=qty], table#details select, table#details input.mail_2, span.span_so input, span.span_so select, .login_container input.login, tr#delivery select, tr#grp_delivery select, tr#tr_pdrw select, div.drag_title input, div.jBox-content input, div.rep_content input {
	border:0px;
	border-bottom:1px solid #999;
	background:transparent;
	padding:4px 0px 2px 0px;
	margin:2px 0px 3px 2px;
}
div.rep_content input, div.rep_content select {
	padding:0px;
	font-size:11px;
	margin:0px;
	background-color:transparent;
}
div.rep_content select {
	border:0px;
}
div.rep_content tr.rb select[name=area] {
	max-width:110px;
}
div.jBox-content input, div.jBox-content div.nc_content select, div.jBox-content div.qbc_content select {
	font-size:12px;
	font-weight:bold;
}
div.jBox-content input[name=prod_hours], div.jBox-content input[name=act_hrs] {
	text-align:center;
}
#order_list [id^=qty] {
	border:0px;
	padding: 0px;
    line-height: 12px;
    margin: 0px;
}
div.pr_qty input {
	font-weight:600;
	font-size:12px;
	text-align:center;
}
div.pr_qty input {
	max-width:70px;
}
div.weight_t input, div.price_e input {
	max-width:90px;
}
div.pr_name input {
	min-width:325px;
}
tr#delivery select, table#grp_table tr#grp_delivery select {
	border-bottom:1px solid rgba(80, 175, 143, 0.85);
}
tr#tr_pdrw select, tr#tr_pdrw div.weight_t input, tr#tr_pdrw div.prdi_items input, tr#tr_pdrw div.prd_details input {
	border-bottom:1px solid rgba(80, 175, 87, 0.85);
}
tr#tr_pdrw div.prdi_items div.like_prd input {
	border-bottom:0px;
}
table#grp_table select {
	border:0px;
}
div.grp_find div.grp {
	padding:6px;
	margin-top:2px;
	max-height: 300px;
    overflow-y: auto;
}
div.pr_qty {
	padding:6px 0px;
}
.login_container input.login {
	padding: 12px 8px 5px 8px;
	margin:2px 0px 3px 0px;
}
div.pr_notes {
	display:none;
}
div.pr_notes textarea {
	width:98%;
	margin-bottom:10px;
	background-color: rgba(255, 255, 255, 0.33);
    border: 1px solid #618f63;
    border-radius: 5px;
	font-size:11px;
}
div.pr_notes textarea:focus, div.s_notes textarea:focus, div.s_terms select:focus, button.round:focus, textarea:focus, div.pr_qty input:focus, tr#act_buttons button:focus, table#prod_setup input[type=text]:focus, select, input, textarea, div.jBox-content button:focus, div.jBox-content input:focus, button:focus { outline:none; }

input.no_style:focus, #table1 input:focus, #table1 select:focus, #table2 input:focus, #table2 select:focus, #order_list select:focus, table#details select:focus, table#details input.mail_2:focus, span.span_so input, span.span_so select, .login_container input.login, input.srch_prd, div.cus_data select:focus, div.cus_data input:focus, input.editc_qb:focus, div.add_space select:focus, div.add_space input:focus, tr#ops input:focus, tr#delivery select:focus, div.drag_title input:focus { outline:none; }

/* BOTTOM BARS ================================= */
.bar    { position:relative; display:block; width:100%; }
div.price_e span.bar, div.weight_t span.bar, table#grp_table td span.bar, div.pr_qty span.bar, div.pr_name span.bar, div.like_prd span.bar, div.grp_prd span.bar, div.qb_int.so span.bar, table#prod_setup span.bar, tr#new_emp span.bar, tr#new_area span.bar, div.drag_title span.bar, div.jBox-content span.bar {
	top:1px;
	border-bottom:1px solid #999;
	box-sizing: border-box;
}
div.jBox-content span.bar {
	top:-1px;
}
table#prod_setup span.bar, div.pr_field span.bar {
	top:-1px;
}
div.qb_int.so span.bar {
	top:-4px;
}
div.pr_qty span.bar {
	top:0px;
}
div.drag_title span.bar {
	top:0px;
}
div.pr_name span.bar, div.pr_qty span.bar, table#prod_setup span.bar, div.pr_field span.bar { width:100%; }
table#grp_table td span.bar { width:100%; }
table#grp_table td div.grp_save span.bar { width:100%; }
table#grp_table input.weight_grpt ~ span.bar, table#grp_table input.grp_prce ~ span.bar { width:95%; }
.bar:before, .bar:after {
  content:'';
  height:1px;
  bottom:-1px;
  width:0%;
  position:absolute;
  background:#0c4d8b;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}
#table1 .bar:after, #table2 .bar:after {
	height:2px;
  	bottom:2px;
}
table#grp_table input.grp_prce ~ span.bar {
	top:0px;
}
table#grp_table input.grp_prce ~ span.bar:after {
	top:0px;
	height:1px;
}
span.span_so .bar:after {
	height:2px;
  	bottom:2px;
}
.login_container span.bar {
	top:-4px;
	left:0px;
}
.login_container .bar:after {
	height:2px;
}
div.prdi_items .bar {
	bottom:1px;
}
div.s_date .bar, div.s_time .bar {
	top:-4px;
}
div.s_terms .bar {
	top:-4px;
}
.bar:before {
  left:0%;
}
.bar:after {
  left:0%;
}
div.pr_qty .bar:before {
  left:50%;
}
div.pr_qty .bar:after {
  	left:auto;
	right:50%;
}
tr#ops div.psrch_res .bar:after {
	bottom:0px;
}

/* active state */
input.no_style:focus ~ .bar:after, input.srch_prd:focus ~ .bar:after, #table1 input:focus ~ .bar:after, #table2 input:focus ~ .bar:after, span.span_so input:focus ~ .bar:after, div.login_container input.login:focus ~ .bar:after, div.qb_int.so input:focus ~ .bar:after, div.qb_int.so select:focus ~ .bar:after, table#prod_setup input:focus ~ .bar:after, div.drag_title input:focus ~ .bar:after, div.jBox-content input:focus ~ .bar:after, div.pr_field input:focus ~ .bar:after {
  width:100%;
}
div.pr_qty input:focus ~ .bar:before, div.pr_qty input:focus ~ .bar:after {
	width:50%;
}
div.pr_name input.no_style:focus ~bar:after {
	width:80%;
}
td.left {
	text-align:left;
}

/* LABEL ======================================= */
#table1 label, #prod_setup label, #table2 label, span.span_so label, div.login_container label, #details label, div#spr label, div.qb_int.so label, div.s_date label, div.s_time label, div.s_terms label, div.s_notes label, tr#new_emp label, tr#new_area label, div.drag_title label, #app_table label, div.adj_item label, div.qty_div label, div.nc_content label, div.qbc_content label, div.aic_content label, div.pr_field label, div.dc_content label {
  color:#999;
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:2px;
  top:15px;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}

div.nc_content label, div.qbc_content label, div.aic_content label {
	top:0px;
}
div.aic_content label {
	top: 5px;
    left: 11px;
}
div.dc_content label {
	top: 7px;
}

div.drag_title label {
	top:5px;
	left:0px;
	font-weight: bold;
    text-transform: uppercase;
	font-size:12px;
}

#prod_setup label {
	top:-4px;
}
tr#new_emp label, tr#new_area label {
	top:0px;
}
tr#new_emp select ~ label, tr#new_area select ~ label {
	top:3px;
}

#table1 input[name=job_addenda] ~ label {
	top:17px;
}

div.qb_int.so label {
	top:8px;
}

div.qb_int.so select ~ label {
	top:16px;
}

div#spr label {
	top:19px;
	font-weight:bold;
}

div.login_container label {
	left:8px;
}

div#spr {
	display:inline-block;
	position:relative;
	margin-top:10px;
}

div.psrch_res {
	margin-top:10px;
	max-height: 300px;
    overflow-y: auto;
	text-align: left;
}

div.prdi_items div.psrch_res {
	line-height:16px;
	max-height:200px;
}

div.prdi_items div.psrch_res span.srch_cus {
	display:block;
	min-width:90%;
	margin: .8%;
}

div#spr .bar {
	top:-4px;
	left:2px;
}

#details label {
	top:8px;
}

span.span_so label {
  top:6px;
}

span.group.dates {
	margin:auto 25px;
}

div#report_buttons {
	max-width:1100px;
	margin:0px auto;
}

div#report_buttons span.span_so label {
  	top:6px;
	font-size:14px;
	text-transform: uppercase;
}

div#report_buttons span.span_so span.group.dates input ~ label {
  	font-size:18px;
	text-transform:none;
}

div#report_buttons span.span_so input ~ label {
  	top:6px;
}

div#report_buttons span.span_so span.group.dates input {
  	font-size:20px;
}

span.group {
	display:inline-block;
	vertical-align: text-bottom;
}
div.nc_content input, div.nc_content select, div.qbc_content input, div.qbc_content select {
	padding: 1px 0px;
	border:0px;
}
span.dollar {
	left: -7px;
    top: 3px;
    position: absolute;
	display:inline-block;
}

/* active state */
#table1 input:focus ~ label, #table1 select:focus ~ label, #prod_setup input:focus ~ label, #prod_setup input.not_empty ~ label, #table2 input:focus ~ label, #table2 select:focus ~ label, span.span_so input:focus ~ label, span.span_so select:focus ~ label, div#report_buttons span.span_so select:focus ~ label, div#report_buttons span.span_so input:focus ~ label, #table1 input:not(:empty) ~ label, #table1 input.not_empty ~ label, #table1 select.not_empty ~ label, #table2 input:not(:empty) ~ label, #table2 input.not_empty ~ label, #table2 select.not_empty ~ label, span.span_so input.not_empty ~ label, span.span_so span.group.dates input.not_empty ~ label, span.span_so select.not_empty ~ label, div#report_buttons span.span_so select.not_empty ~ label, div#report_buttons span.span_so input.not_empty ~ label, div#report_buttons span.span_so span.group.dates input.not_empty ~ label, table#table1 select.min:focus ~ label, table#table1 select.min.not_empty ~ label, table#table1 input.min.not_empty ~ label, table#table1 input.min:focus ~ label, table#table2 select.min:focus ~ label, table#table2 select.min.not_empty ~ label, table#table2 input.min.not_empty ~ label, table#table2 input.min:focus ~ label, div.login_container input.login.not_empty ~ label, div.login_container input.login:focus ~ label, div.login_container input.login:valid ~ label, table#details input.mail_2:focus ~ label, table#details input.mail_2.not_empty ~ label, div#spr input.srch_prd:focus ~ label, div#spr input.not_empty ~ label, div.qb_int.so input:focus ~ label, div.qb_int.so input.not_empty ~ label, div.qb_int.so select:focus ~ label, div.qb_int.so select.not_empty ~ label, #table1 textarea ~ label, #table2 textarea ~ label, div.s_date input ~ label, div.s_time input ~ label, div.s_terms select ~ label, div.s_notes textarea ~ label, tr#new_emp input:focus ~ label, tr#new_emp input.not_empty ~ label, tr#new_emp select:focus ~ label, tr#new_emp select.not_empty ~ label, tr#new_emp textarea:focus ~ label, tr#new_emp textarea.not_empty ~ label, tr#new_area input:focus ~ label, tr#new_area input.not_empty ~ label, tr#new_area select:focus ~ label, tr#new_area select.not_empty ~ label, tr#new_area textarea:focus ~ label, tr#new_area textarea.not_empty ~ label, div.drag_title input:focus ~ label, div.drag_title input.not_empty ~ label, #app_table input:focus ~ label, #app_table input.not_empty ~ label, div.adj_item label, div.qty_div label, div.nc_content input.not_empty ~ label, div.nc_content input:focus ~ label, div.nc_content select.not_empty ~ label, div.nc_content select:focus ~ label, div.qbc_content input.not_empty ~ label, div.qbc_content input:focus ~ label, div.qbc_content select.not_empty ~ label, div.qbc_content select:focus ~ label, div.aic_content input.not_empty ~ label, div.aic_content input:focus ~ label, div.aic_content select.not_empty ~ label, div.aic_content select:focus ~ label, div.pr_field label, div.dc_content input:focus ~ label, div.dc_content input.not_empty ~ label {
  left:2px;
  top:-1px;
  font-size:10px;
  color:#0c4d8b;
  font-weight:600;
  text-transform:uppercase;
}
div.nc_content input.not_empty ~ label, div.nc_content input:focus ~ label, div.nc_content select.not_empty ~ label, div.nc_content select:focus ~ label, div.qbc_content input.not_empty ~ label, div.qbc_content input:focus ~ label, div.qbc_content select.not_empty ~ label, div.qbc_content select:focus ~ label, div.dc_content input:focus ~ label {
	top:-13px;
	left:0px;
}
div.aic_content input.not_empty ~ label, div.aic_content input:focus ~ label, div.aic_content select.not_empty ~ label, div.aic_content select:focus ~ label {
	top:-10px;
	left:0px;
}
div.dc_content input:focus ~ label, div.dc_content input.not_empty ~ label {
	top:-8px;
	left:0px;
}
div.qty_div label {
	position: absolute;
    left: 0;
    right: 0;
    top: -9px;
}
div.adj_item label {
	top:-8px;
	left:0px;
}
div.drag_title input:focus ~ label, div.drag_title input.not_empty ~ label {
	top:-9px;
	left:0px;
}
div.qb_int.so input:focus ~ label, div.qb_int.so input.not_empty ~ label {
	top:-6px;
}
#prod_setup input:focus ~ label, #prod_setup input.not_empty ~ label {
	top:-14px;
	left:0px;
}
tr#new_emp input:focus ~ label, tr#new_emp input.not_empty ~ label, tr#new_emp select:focus ~ label, tr#new_emp select.not_empty ~ label, tr#new_emp textarea:focus ~ label, tr#new_emp textarea.not_empty ~ label, tr#new_area input:focus ~ label, tr#new_area input.not_empty ~ label, tr#new_area select:focus ~ label, tr#new_area select.not_empty ~ label, tr#new_area textarea:focus ~ label, tr#new_area textarea.not_empty ~ label {
	top:-12px;
	left:0px;
}
div.qb_int.so select.not_empty ~ label, div.qb_int.so select:focus ~ label {
	top:2px;
}
div.login_container input.login.not_empty ~ label, div.login_container input.login:focus ~ label, div.login_container input.login:valid ~ label, table#details input.mail_2:focus ~ label, table#details input.mail_2.not_empty ~ label {
	top:-5px;
}
span.span_so input.not_empty ~ label, span.span_so select.not_empty ~ label, span.span_so input:focus ~ label, span.span_so select:focus ~ label {
	top:-9px;
}
div#report_buttons span.span_so input.not_empty ~ label, div#report_buttons span.span_so span.group.dates input.not_empty ~ label, div#report_buttons span.span_so select.not_empty ~ label, div#report_buttons span.span_so input:focus ~ label, div#report_buttons span.span_so span.group.dates input:focus ~ label, div#report_buttons span.span_so select:focus ~ label {
	top:-11px;
}
div#spr input.srch_prd:focus ~ label, div#spr input.not_empty ~ label {
	top:0px;
}
table#table1 input.min, table#table1 select.min, table#table1 input.min ~ label, table#table1 select.min ~ label, table#table2 input.min, table#table2 select.min, table#table2 input.min ~ label, table#table2 select.min ~ label, table#details input.mail_2, table#details input.mail_2 ~ label {
	font-size:12px;
}
span.span_so select {
	padding-left:5px;
	padding-right:5px;
	font-size:13px;
}
div#report_buttons span.span_so select {
	padding-left:5px;
	padding-right:5px;
	font-size:14px;
	text-transform: uppercase;
}

div.s_notes textarea ~ label {
	left:9px;
}
span.span_so {
	display:block;
	font-family:'Montserrat', sans-serif;
}
span.checkers {
	vertical-align:middle;margin-right:15px;
}
span.checkers input[type="checkbox"] {
	top: 2px;
}
div.email-list input[type="checkbox"] {
	margin-left:4px;margin-right:2px;width:14px;height:14px;vertical-align: text-bottom;top: 1px;
}
div.contact-list input[type="checkbox"] {
	margin-left:4px;margin-right:2px;width:14px;height:14px;vertical-align: text-bottom;top: 2px;
}
div.gen_login, div.qb_int {
	margin-top:35px;
	text-align:center;
	margin-bottom: -15px;
    padding-bottom: 15px;
    width: 100%;
    border-bottom: 1px dotted #666;
}
table.gen_login th {
	min-width: 60px;
}
div.gen_login form {
	display:flex;
	justify-content: center;
}
div.qb_int.so {
	border-bottom:0px;
	border-top:1px dotted #666;
	padding-top:20px;
}
div.gen_login select, div.gen_login input, div.qb_int select, div.qb_int input {
	font-size:12px;
	margin:5px;
}
div.gen_login table th {
	font-weight:normal;
}
div.gen_login select, div.gen_login input {
	padding: 5px 0px 2px;
	border: 0px;
    border-bottom: 1px solid #CCC;
    margin-bottom: 7px;
    font-size: 13px;
}
div.gen_login button, div.qb_int button {
	font-size:12px;
}
span.log_title, span.qb_title {
	font-weight:600;
	text-align:center;
	display:block;
	width:100%;
}
span.log_error {
	display: block;
    padding: 8px;
    margin-top: 15px;
    font-weight: bold;
}
div.exist_error {
	font-size:11px;
	display:none;
	color:#9A0002;
	max-width: 70%;
	margin-left: 5px;
}
span.log_res, span.qb_res {
	margin-left:8px;
}
span.qb_res {
	display:block;
}
table#details textarea {
	font-size:12px;
}
div.email-list div.row {
	padding: 1px 0px;
}
div.srch_res {
	margin-top:4px;
}
.prbar, .pbar {
    height: 4px;
    background: green;
}
div.progress, div#progress, div.pdf_prog {
	margin:10px auto 10px auto;width:80%;display:block;position:relative;
}
div.pdf_prog {
	width:23px;
	display:none;
	vertical-align: middle;
	top: -1px;
	margin: 0px;
    margin-left: 8px;
}
div.draw_div, div.pd_item {
	padding: 6px 10px 5px 10px;
	border-radius: 5px;
    cursor: pointer;
	margin:5px;
	display:inline-block;
	font-family: 'Montserrat', sans-serif;
	background-color: #ade6b9;
    border: 1px solid #5ebb61;
	position:relative;
	text-align: center;
	vertical-align: top;
}
div.pd_item {
	border-radius:5px;
}
div.draw_div:hover, div.pd_item:hover {
	background-color:#95d4a2;
	border: 1px solid #49984c;
}
span.draw_ops {
	top:2px;
	position:relative;
	display:block;
}
div#draw_list {
	display:inline-block;
	margin:0px auto 0px auto;
	vertical-align:middle;
}
i.srt {
	display:none;
	position:absolute;
	top: 0px;
    right:9px;
	font-size:14px;
	cursor:move;
}
#dropzone, div#fu_drop, .wzone, .prd_details, .prd_group, tr#delivery div.deldiv, tr#grp_delivery div.deldiv, .prdi_items, div.revision, div#add_call, div#add_note {
    background: #ade6b9;
    width: 290px;
    height: 50px;
	padding:5px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
	display:inline-block;
	border-radius: 5px;
    border: 1px solid #5ebb61;
	margin: 5px;
	font-size:11px;
}
#dropzone, .wzone, .prd_details, .prd_group, .prdi_items, div#fu_drop, tr#delivery div.deldiv, tr#grp_delivery div.deldiv, div.revision, div#add_call, div#add_note {
	min-width:75px;
	width:auto;
	height:auto;
	line-height:25px;
	vertical-align: middle;
	cursor:pointer;
}
div.prd_details, div.prd_group, div.prdi_items, div.revision {
	vertical-align:top;
}
div.prdi_items {
	width:auto;
	min-width:75px;
}
tr#delivery div.deldiv, tr#grp_delivery div.deldiv {
	width:auto;
	cursor:default;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 1;
	min-width: 70px;
	margin: 5px 12px;
	border: 1px solid transparent;
	background-color:transparent;
}
tr#grp_delivery div.deldiv {
	margin: 5px 8px;
}
tr#delivery div.deldiv select, #tr_pdrw select, tr#grp_delivery div.deldiv select {
	font-size:12px;
	font-weight: bold;
}
div#fu_drop {
	vertical-align: top;
}
.wdisabled {
	background:#dcdcdc;
	cursor:default;
	border:1px solid #b7b9b8;
}
div.wdisabled:hover {
	background-color:#dcdcdc;
	border:1px solid #b7b9b8;
}
#dropzone:hover, .wzone:hover, #fu_drop:hover, .prd_details:hover, .prd_group:hover, .prdi_items:hover, div.revision:hover, div#add_call:hover, div#add_note:hover {
	background-color:#95d4a2;
	border: 1px solid #49984c;
}
/*
tr#delivery div.deldiv:hover {
	border: 1px solid rgba(80, 175, 143, 0.45);
}
*/
#dropzone.in, div#fu_drop.in {
    width:220px;
    height:150px;
    line-height:100px;
}
input#fileupload.hover {
    background: #37ea5c;
	font-size: larger;
}
#dropzone.hover, div#fu_drop.hover {
	background: #009E20;
}
#dropzone.fade, div#fu_drop.fade, .prd_details, .prd_group, .wzone, .prdi_items {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 1;
}
div.revision {
	width:80%;
    line-height: 16px;
	position:relative;
	text-align:left;
}
div#add_call, div#add_note {
	min-width:80px;
	width: 30%;
    line-height: 16px;
	position:relative;
	vertical-align: top;
}
div#add_call textarea, div#add_note textarea {
	margin-top:2px;
    border: 0px;
    border-left: 1px solid #999;
    border-bottom: 1px solid #999;
	background-color: rgba(255, 255, 255, 0.25);
    text-align: left;
}
div.rev_num {
	font-size:12px;
	font-weight:600;
	position:absolute;
	top:0px;
	right:0px;
	background-color:rgba(7,7,7,0.25);
	border-top-right-radius: 5px;
	padding: 1px 2px;
}
div.rev_num i {
	font-weight: bold;
	font-size: 12px;
	position:relative;
	top:1px;
}
div.revision div.rev_email {
	display:none;
	margin-top: 5px;
	text-align: left;
    background-color: rgba(255, 255, 255, 0.5);
    padding:8px;
	clear: both;
}
div.revision div.rev_icons {
	font-size: 30px;color: rgba(0, 0, 0, 0.5);display: inline-block;position:relative;text-align:left;float: left;
}
div.revision div.rev_icons i {
	margin:2px 5px;font-size: 30px;color: rgba(0, 0, 0, 0.5);display:inline-block;position:relative;
}
div.rev_main {
	display: inline-block;
    padding-left: 2%;
}
div.rev_rec {
	display: inline-block;
    padding-left: 2%;
    position: relative;
}
div.rev_rec span {
	display:inline-block;
	padding:2px 4px;
	margin-right:4px;
	border:1px solid #999;
	background:rgba(0,0,0,.1);
	margin-top: 3px;
}
div#revs_drop {
	display:none;
}
div.prd_draw {
	display:inline-block;
	text-align:left;
	vertical-align: top;
}
table#order_list tbody tr.buffer, tr.buffer, tr#tr_pdrw {
	background:rgba(117, 228, 120, 0.24) url(../galleria/themes/azur/bg.png);
}
tr.buf_prd, tr#tr_pdrw.buf_prd {
	background-color:rgba(228, 203, 117, 0.24);
}
tr#tr_pdrw td {
	text-align:left;
	padding: 10px;
	line-height: 80px;
}
tr#delivery td {
	text-align:left;
	position: relative;
}
tr#delivery div.delivery_ops {

}
tr#tr_pdrw hr {
	width: 2px;
    display: inline-block;
    height: 50px;
    background: #266729;
    border: 0px;
    margin: auto 8px;
    vertical-align: middle;
}
i.sort_ar {
	margin-right:8px;font-size:15px;top:-1px;position:relative;
}
span.qb_fields {
	display:block;
}
span.qb_fields.ib {
	display: inline-block;
    min-width: 33%;
    text-align: left;
}
div.cus_qb {
    position: relative;
    line-height: 14px;
}
span.cc_line {
	display:block;
	margin:2px auto;
}
div.drop_cc {
	border: 1px dotted #666;
    margin: 10px;
    padding: 10px;
    background-color: rgba(255, 226, 125, 0.58);
}
span.so_title {
	font-size:12px;
	font-weight:600;
}

div#ord_sales, div#ord_form {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
div#cus_err, div#qb_err, div#fn_err {
	display:none;
	font-weight:600;
	font-size:16px;
	max-width: 175px;
    vertical-align: top;
    border: 1px solid #999;
    padding: 25px 10px;
    border-radius: 8px;
    margin: 15px;
	color: #323232;
}
div.cus_init {
	display:flex;
	align-items: center;
}
div#ord_sales {
	width:900px;
}
div#so_proc {
	display:none;
	max-width:200px;
	vertical-align: top;
}
.success {
	background-color: rgba(33, 255, 33, 0.23);
}
.fail {
	background-color: rgb(255, 201, 201);
}
div.qb_int.so div.add_space div {
	text-align: left;
	position:relative;
}
div.qb_int.so div.add_space {
	display:inline-block;
	vertical-align: top;
}
div.qb_int.so input, div.qb_int.so select {
	border:0px;
}
div.qb_int.so select {
	margin-left: 0px;
    padding-top: 6px;
    margin-top: 12px;
}
div.qb_int.so div.drop_cc input, div.qb_int.so div.drop_cc select {
	border-bottom:1px solid #999;
}
div.qb_int.so div.drop_cc select {
	padding-top: 8px;
}
div.qb_data span input[type=checkbox] {
	width: 14px;
    height: 14px;
    vertical-align: text-bottom;
    margin: 0px;
    margin-right: 5px;
    top: -1px;
}
div.qb_data span.ib input[type=checkbox]:checked ~ input[type=text] {
	background: rgba(149, 255, 162, 0.63);
}
div.qb_data span.ib input[type=text] {
	border-bottom: 1px solid #CCC;
    background: rgba(255, 237, 149, 0.63);
	padding: 4px 3px 2px 3px;
}
tr#tax td {
	padding: 12px 0px 8px 7px;
	font-size:11px;
}
tr#tax td select {
	background: rgba(197, 209, 196, 0.37);
    padding: 4px;
}
tr#total td, tr#ord_payments td, tr#ord_fees td {
	padding: 5px 7px 0px;
	font-size:12px;
}
tr#ord_payments td, tr#ord_fees td {
	font-size: 11px;
    font-weight: 500;
}
table#grp_table {
	margin:10px auto;
	min-width: 600px;
	width:725px;
}
table#grp_table td {
	line-height:16px;
	padding: 4px 8px;
}
tr#grp_delivery td {
	line-height:16px;
	padding: 4px 5px;
}
table#grp_table thead td {
	line-height:16px;
	padding: 8px 8px;
}
table#grp_table thead td i.fa-save, table#grp_table thead td i.fa-check, table#grp_table thead td i.fa-dollar-sign, table#grp_table thead td i.fa-tag, table#grp_table thead td i.fa-exchange {
	position:relative;right:0px;color:#000;font-size:18px;top:0px;padding: 7px 10px;float:right;
}
table#grp_table thead td i.fa-check {
	padding: 7px 9px;
}
table#grp_table thead td i.fa-tag {
	padding: 8px 9px;
	font-size:16px;
}
table#grp_table thead td i.fa-exchange {
	padding: 8px 9px;
	font-size:16px;
}
table#grp_table thead td i.fa-save:hover, table#grp_table thead td i.fa-dollar-sign:hover, table#grp_table thead td i.fa-tag:hover, table#grp_table thead td i.fa-exchange:hover {
	background-color:rgba(100, 144, 107, 0.66);
	cursor:pointer;
}
table#grp_table thead td i.fa-check:hover {
	background-color:rgba(10, 213, 42, 0.66);
	cursor:pointer;
}
table#grp_table tbody td {
	cursor:move;
}
table#grp_table tr:nth-child(even) { background: rgba(99,99,99,0.1); }
div.dc_item {
	display:block;margin-bottom:3px;font-size:14px;position:relative;
}
input[name=dc_item] {
	margin-right:5px;
}
div.dc_item select {
	margin: 0px 8px 1px 0px;
    border: 0px;
    border-bottom: 1px solid #CCC;
    padding-left: 5px;
}
table#dt_table {
	border-spacing:0px;
	padding:5px;
	width:99%;
}
table#dt_table tr td {
	cursor:auto;
}
table#dt_table tr.grp {
	background-color:rgba(191, 237, 187, 0.75);
}
table#dt_table tr.grp.cd1 {
	background-color:rgba(191, 237, 187, 0.50);
}
table#dt_table tr.grp_head {
	background-color:rgba(173, 228, 168, 0.9);
}
table#dt_table tfoot tr td {
	padding-top:10px;
	padding-bottom:10px;
	font-size:14px;
	font-weight:bold;
	border-top: 5px solid rgba(51, 51, 51, 0.82);
    background: #f6dfb4;
}
table#dt_table tfoot tr td.qty_total {
	padding-left: 10px;
}
table#dt_table div.dt_num {
	font-size:14px;
}
div.dt_old {
	margin-top:20px;
}
div.dt_old div.past_ticket {
	display:block;
	padding:8px;
	text-align:left;
	margin:5px;
	border:1px solid #999;
	background-color:#B6E4B7;
	width: 60%;
	cursor:pointer;
	position:relative;
}
div.dt_old div.past_ticket div.t_icon i {
	width: 13px;
}
div.dt_old div.past_ticket.ret_pending {
	background-color:#fbff89;
}
div.dt_old div.past_ticket:hover {
	border:1px solid #777;
	background-color:#8BC88C;
}
div.dt_old div.past_ticket.ret_pending:hover {
	border:1px solid #777;
	background-color:#f9ff47;
}
div.s_date, div.s_notes, div.s_terms, div.s_ops, div.s_time {
	display:inline-block;text-align:center;margin:10px;position:relative;vertical-align: middle;float:left;
}
div.s_date {
	margin:10px 10px 0px 10px;
}
div.s_time {
	margin:14px 0px 8px 0px;
	text-align:left;
	margin-top:9px;
}
div.s_time div.dw {
	display: inline-block;
}
div.s_terms {
	margin:2px 10px;
}
div.s_ops {
	margin:2px 10px 10px 10px;
	text-align: left;
    line-height: 20px;
}
tr.dt_draw {
	display:none;
}
table#prod_setup tr.dt_draw {
	display:table-row;
}
tr.dt_draw:not(.grp) td {
	padding-top: 0px;
}
tr.dt_draw.grp td {
	padding-bottom: 0px;
}
tr.dt_draw td div, div.dt_draw {
	position:relative;
	display:inline-block;
    margin-right: 7px;
	cursor:pointer;
}
tr.it_dets div.dt_draw {
	position:relative;
	display:inline-block;
    margin-right: 4px;
	margin-top:2px;
	cursor:pointer;
}
tr.it_dets a {
	color:initial;
}
table#prod_setup tr.it_dets.grp td {
	padding-top:5px;
}
tr.dt_draw td img, div.dt_draw img {
	display: inline-block;
    border: 1px solid #CCC;
	margin:0px;
}
table#prod_setup tr.dt_draw td img, div.dt_draw img {
	max-width: 60px;
}
tr.dt_draw td img:hover, div.dt_draw img:hover {
    border: 1px solid rgba(9, 131, 57, 0.71);
}
tr.dt_draw td img ~ div.check, tr.dt_draw td div a, div.dt_draw img ~ div.check, div.dt_draw a {
	display:none;
}
tr.dt_draw td img.dt_draw_sel, div.dt_draw img.dt_draw_sel, div.auto_draw_sel {
	border:1px solid rgba(9, 131, 57, 0.71);
	margin:0px;
}
tr.dt_draw td img.dt_draw_sel ~ div.check, div.auto_draw_sel div.check, div.dt_draw img.dt_draw_sel ~ div.check {
	display:flex;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	opacity:1;
	height: 100%;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(26, 169, 41, 0.29);
	overflow: hidden;
	line-height: 100%;
    padding: 5%;
    box-sizing: border-box;
	justify-content: center;
    align-items: center;
}
div.auto_draw_sel {
	display: inline-block;
    padding: 3px;
    padding-top: 8px;
	position: relative;
    border-radius: 4px;
}

div.dt_draw img.dt_draw_sel.dt_error ~ div.check {
	background-color: rgba(230, 25, 25, 0.29);
}
tr.dt_draw td div div:hover a, div.dt_draw:hover a {
	display:block;
}
div.jBox-content div.dt_draw a {
	display:block;
}
div.check i {
	font-size: 2rem;
    color: rgba(38, 38, 38, 0.86);
}
i.o_draw {
	font-size: 16px;
    color: rgba(38, 38, 38, 0.86);
    padding: 2px 4px 3px 4px;
    border-bottom-left-radius: 5px;
    position: absolute;
    right: 1px;
    top: 1px;
    background-color: rgba(255, 255, 255, 0.59);
}
i.o_draw:hover {
	background-color: rgba(255, 255, 255, 1.0);
}
div.em_res {
	max-height: 180px;
    overflow-y: auto;
    margin-bottom: 5px;
}
div#spr i.fa-cog {
	color:rgba(0,0,0,0.7);
	font-size:20px;
}
div#spr i.fa-search {
	color: rgba(0, 0, 0, 0.329412);
	font-size:18px;
}
table#report_list tr.err td {
	padding: 20px;
}
table#report_list tr.highlight td {
	background:rgba(55, 223, 104, 0.34);
}
table#prod_setup tr.highlight td {
	background:rgba(252, 255, 77, 0.48);
}
table#report_list td.brown {
    background: rgba(163, 135, 95, 0.4);
	background: -webkit-linear-gradient(left,rgba(163, 135, 95, 0.4), rgba(163, 135, 95, 0) 75%);
    background: -o-linear-gradient(right,rgba(163, 135, 95, 0.4),rgba(163, 135, 95, 0) 75%);
    background: -moz-linear-gradient(right,rgba(163, 135, 95, 0.4),rgba(163, 135, 95, 0) 75%);
    background: linear-gradient(to right,rgba(163, 135, 95, 0.4), rgba(163, 135, 95, 0) 75%);
}
table#report_list td.brown_st {
    background: rgba(163, 135, 95, 0.4);
}
table#report_list td.green {
	background:rgba(165, 173, 122, 0.7);
	background: -webkit-linear-gradient(left,rgba(165, 173, 122, 0.7), rgba(165, 173, 122, 0) 75%);
    background: -o-linear-gradient(right,rgba(165, 173, 122, 0.7),rgba(165, 173, 122, 0) 75%);
    background: -moz-linear-gradient(right,rgba(165, 173, 122, 0.7),rgba(165, 173, 122, 0) 75%);
    background: linear-gradient(to right,rgba(165, 173, 122, 0.7), rgba(165, 173, 122, 0) 75%);
}
table#report_list td.green_st {
	background:rgba(165, 173, 122, 0.7);
}
table#report_list td.tan {
	background:rgba(232, 218, 207, 0.65);
	background: -webkit-linear-gradient(left,rgba(232, 218, 207, 0.65), rgba(232, 218, 207, 0) 75%);
    background: -o-linear-gradient(right,rgba(232, 218, 207, 0.65),rgba(232, 218, 207, 0) 75%);
    background: -moz-linear-gradient(right,rgba(232, 218, 207, 0.65),rgba(232, 218, 207, 0) 75%);
    background: linear-gradient(to right,rgba(232, 218, 207, 0.65), rgba(232, 218, 207, 0) 75%);
}
table#report_list td.tan_st {
	background:rgba(232, 218, 207, 0.65);
}
table#report_list td.orange {
	background:rgba(233, 185, 119, 0.58);
	background: -webkit-linear-gradient(left, rgba(233, 185, 119, 0.58), rgba(233, 185, 119, 0) 75%);
    background: -o-linear-gradient(right,rgba(233, 185, 119, 0.58),rgba(233, 185, 119, 0) 75%);
    background: -moz-linear-gradient(right,rgba(233, 185, 119, 0.58),rgba(233, 185, 119, 0) 75%);
    background: linear-gradient(to right,rgba(233, 185, 119, 0.58), rgba(233, 185, 119, 0) 75%);
}
table#report_list td.orange_st {
	background:rgba(233, 185, 119, 0.58);
}
table#report_list td.turq {
	background:rgba(182, 205, 185, 0.55);
	background: -webkit-linear-gradient(left,rgba(182, 205, 185, 0.55), rgba(182, 205, 185, 0) 75%);
    background: -o-linear-gradient(right,rgba(182, 205, 185, 0.55),rgba(182, 205, 185, 0) 75%);
    background: -moz-linear-gradient(right,rgba(182, 205, 185, 0.55),rgba(182, 205, 185, 0) 75%);
    background: linear-gradient(to right,rgba(182, 205, 185, 0.55), rgba(182, 205, 185, 0) 75%);
}
table#report_list td.turq_st {
	background:rgba(182, 205, 185, 0.55);
}
table#report_list td.blue {
	background:rgba(134, 208, 209, 0.4);
	background: -webkit-linear-gradient(left,rgba(134, 208, 209, 0.4), rgba(134, 208, 209, 0) 75%);
    background: -o-linear-gradient(right,rgba(134, 208, 209, 0.4),rgba(134, 208, 209, 0) 75%);
    background: -moz-linear-gradient(right,rgba(134, 208, 209, 0.4),rgba(134, 208, 209, 0) 75%);
    background: linear-gradient(to right,rgba(134, 208, 209, 0.4), rgba(134, 208, 209, 0) 75%);
}
table#report_list td.blue_st {
	background:rgba(134, 208, 209, 0.4);
}
table#report_list thead tr.main {
	background:white;
}
span.sig_name {
	font-size:12px;
}
div.sig_preview {
	font-size:10px;
}
div.section_title {
	position:absolute;
	font-weight:600;
	font-size:40px;
    transform: rotate(270deg);
	transform-origin: top left;
	left: -75px;
    top: 135px;
    background-color: rgba(49, 97, 122, 0.11);
    padding: 5px 15px 5px 15px;
    color: #0c4d8b;
}
div#prefs {
	top:335px;
}
div#process {
	display:none;
	position: fixed;
    top: 30%;
    left: 0;
	right:0;
	padding-left:165px;
	text-align:center;
	color: rgba(0,0,0,0.2);
}
div#order_buttons {
	display: flex;
	align-items: center;
	flex-wrap:wrap;
}
div#notify, div#send_inv, div#send_stmt, div#notify_bg, div#search, div#mess, div#go_dash_map, div#new_product, div#new_quote, div#new_cus, div#new_so, div#new_stock, div#load_all, div#m_open, div#print_draw, div#print_rep, div#bt_down, div#imp_sched, div.head_button, tr#act_buttons button, table#prod_setup button, div#dt_proc button, button.r_button, div.jBox-content button {
	position:relative;
	margin-right:5px;
	top:5px;
	color:#0c4d8b;
	border-radius: 80px;
	display:inline-block;
	text-align:center;
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
div#notify {
	overflow: visible;
}
div.head_button {
	top:0px !important;
	min-width: 40px;
}
div.head_icon:hover i {
	padding-left:10px !important;
}
div#send_stmt {
	padding:0px 2px;
}
button.r_button:disabled, button.r_button:disabled:hover {
	color:gray;
	border:1px solid gray;
	background: transparent;
	cursor:auto;
}
div#notify, div#send_inv, div#send_stmt, div#search, div#mess, div#go_dash_map, div#new_quote, div#new_cus, div#new_so, div#new_stock, div#load_all, div#m_open, div#print_rep, div#bt_down {
	border-radius: 0px;
}
div#search, div#mess, div#go_dash_map, div#new_product, div#new_quote, div#new_cus, div#new_so, div#new_stock, div#load_all, div#m_open, div#print_draw, div#print_rep, div#bt_down, div#imp_sched, div.head_button, tr#act_buttons button, table#prod_setup button, div#dt_proc button, button.r_button {
	overflow:hidden;
}
tr#act_buttons button, table#prod_setup button, div#dt_proc button, button.r_button, div.jBox-content button {
	float:none;
	background-color:transparent;
	padding: 0px 16px 0px 8px;
	border:0px;
	margin-right:0px;
	margin-top:3px;
	text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
}
div.jBox-content div.emp_info button {
	margin-top:0px;
	top:0px;
}
button.r_button i {
	vertical-align: middle;
}
button.r_button span {
	vertical-align: middle;
}
div#notify span, div#send_inv span, div#send_stmt span, div#search span, div#mess span, div#go_dash_map span, div#new_product span, div#new_quote span, div#new_so span, div#new_stock span, div#load_all span, div#m_open span {
	display:inline-block;
	left:100px;
	margin-left:-2px;
	position:relative;
	vertical-align: middle;
	font-weight: 600;
	margin-right: 10px;
	top:0px;
}
div#notify i, div#send_inv i, div#send_stmt i, div#search i, div#mess i, div#go_dash_map i, div#new_product i, div#new_quote i, div#new_cus i, div#new_stock i, div#new_so svg, div#load_all i, div#m_open i, div#print_draw i, div#print_rep i, div#bt_down i, div#imp_sched i, div.head_button i, button.r_button i, tr#act_buttons button i, tr#act_buttons button svg, table#prod_setup button i, div#dt_proc button i, div.jBox-content div.adj_schedule i, div.jBox-content div.adj_item i, div.jBox-content div.pr_sched i {
	font-size:20px;
	padding:10px;
	height: 20px;
	top:0px;
}
div#print_draw:hover i, div#imp_sched:hover i, div.head_button:hover i {
	padding-left:15px;
}
div.head_button.inv_button i, div.head_button.inv_button:hover i {
	padding-left:11px;
}
tr#act_buttons button i, tr#act_buttons button svg, div#order_buttons svg, table#prod_setup button i, div#dt_proc button i, div.jBox-content button i {
	padding:10px 5px 10px 10px;
	top: 0px;
    position: relative;
	vertical-align: middle;
}
tr#act_buttons button i, div#dt_proc button i {
	padding: 7px;
    margin: 3px 3px 3px 0px;
}
div#order_buttons svg {
	vertical-align: top;
	padding:10px;
}
div.jBox-content button i {
	padding: 7px 3px 6px 3px;
}
div.jBox-content button#submit_nc i {
	padding: 0px;
	margin:0px;
	max-width:unset;
}
button#submit_nc {
	display: flex;
    align-items: center;
    margin: 0px auto;
    gap: 5px;
    line-height: 32px;
	padding-left:13px;
}
button#submit_nc span {
	margin-left: 3px;
}
tr#act_buttons button svg {
	height:22px;
}
tr#act_buttons button svg path, div#order_buttons div svg path {
	fill:#0c4d8b;
}
div.prd_details svg path, div.prd_dets svg path {
	fill:rgba(0, 0, 0, 0.5);
}
div.prd_details svg, div.prd_dets svg {
	height: 50px;
    text-align: center;
    display: block;
	margin: 10px auto;
}
div.acct_logo svg {
	height: 14px;
}
div.acct_logo {
	display:inline-block;
}
div.cus_init div.acct_logo {
	display:flex;
}
span.cus_main_line {
	font-size: 13px;
}
span.cus_sub_line {
	font-weight: 400;
    font-size: 11px;
	color:#646464;
}
div.cus_sel span.cus_sub_line {
	color: #2e4d86;
}
div.x_qb svg {
	height: 16px;
}
div.x_qb svg path {
	fill: white;
}
tr#act_buttons button:hover svg path, div#order_buttons div:hover svg path {
	fill:#FFF;
	transition:0.3s ease all;
	-moz-transition:0.3s ease all;
	-webkit-transition:0.3s ease all;
}
div#notify:hover, div#send_inv:hover, div#send_stmt:hover, div#search:hover, div#mess:hover, div#go_dash_map:hover, div#new_product:hover, div#new_quote:hover, div#new_cus:hover, div#new_stock:hover, div#new_so:hover, div#print_draw:hover, div#imp_sched:hover, div.head_button:hover, button.r_button:hover, div#load_all:hover, div#m_open:hover, tr#act_buttons button:hover, table#prod_setup button:hover, div#dt_proc button:hover, div.jBox-content button:hover, div#print_rep:hover, div#bt_down:hover {
    background: #0c4d8b;
	color:#FFF;
	cursor:pointer;
}
div#notify:hover, div#send_inv:hover, div#send_stmt:hover, div#search:hover, div#mess:hover, div#go_dash_map:hover, div#new_quote:hover, div#new_cus:hover, div#new_so:hover, div#new_stock:hover, div#load_all:hover, div#m_open:hover, div#print_rep:hover, div#bt_down:hover {
	border-radius:19px;
}
div#new_product:after, div#print_draw:after, div#imp_sched:after, div.head_button:after, button.r_button:after, tr#act_buttons button:after, table#prod_setup button:after, div#dt_proc button:after {
	bottom:3px;
	left:75px;
	position:relative;
	display:inline-block;
	color:#FFF;
	margin-right: 0px;
	font-weight: 600;
	max-width:0px;
	transition:0.3s ease all;
	-moz-transition:0.3s ease all;
	-webkit-transition:0.3s ease all;
}
div#new_so {
	max-height:40px;
}
div#new_product:after {
	content:'ADD PRODUCT';
}
div#print_draw:after {
	content:'PRINT';
}
div#imp_sched:after {
	content:'IMPORT SCHEDULE';
}
div#new_employee:after {
	content:'NEW EMPLOYEE';
}
div#new_driver:after {
	content:'NEW DRIVER';
}
div#import_hrs:after {
	content:'IMPORT HOURS';
}
div#new_area:after {
	content:'NEW CATEGORY';
}
div#new_truck:after {
	content:'NEW EQUIPMENT';
}
div#sort_areas:after {
	content:'EDIT CATEGORIES';
}
div#sort_trucks:after {
	content:'EDIT EQUIPMENT';
}
div#qc_tools:after {
	content:'IMPORT BATCH';
}
div#prod_reps:after {
	content:'REPORTS';
}

tr#act_buttons button[name=qb_so_mod] img, tr#act_buttons button[name=qb_so_close] img {
	vertical-align: middle;
}
div#search:hover:after, div#mess:hover:after, div#go_dash_map:hover:after, div#new_product:hover:after, div#new_quote:hover:after, div#new_so:hover:after, div#new_stock:hover:after, div#load_all:hover:after, div#m_open:hover:after, div#print_draw:hover:after, div#imp_sched:hover:after, div.head_button:hover:after, button.r_button:hover:after, tr#act_buttons button:hover:after, table#prod_setup button:hover:after, div#dt_proc button:hover:after {
	left:0px;
	position:relative;
	max-width:200px;
	margin-right: 15px;
	transition:0.3s ease all;
	-moz-transition:0.3s ease all;
	-webkit-transition:0.3s ease all;
}
div#search:hover, div#mess:hover {
    background: #2282df;
}
div#new_product:hover {
    background: rgb(58, 186, 145);
}
div#new_quote:hover, div#new_cus:hover, div#go_dash_map:hover {
    background: rgb(58, 186, 145);
}
div#new_cus i {
	position:relative;
	top:1px;
	font-size:17px;
}
div#load_all:hover, div#new_stock:hover {
    background: rgb(130, 102, 23);
}
div#print_draw:hover, div#m_open:hover, div#print_rep:hover {
	background: #7a5331;
}
div#imp_sched:hover, div#new_employee:hover, div#new_driver:hover, div#import_hrs:hover, div#new_area:hover, div#new_truck:hover, div#bt_down:hover {
	background: rgb(58, 186, 145);
}
div#qc_tools:hover {
	background: #0e684b;
}
tr#act_buttons button:hover, table#prod_setup button:hover, div#dt_proc button:hover, div.head_button:hover {
    background: #0c4d8b;
}
tr#act_buttons button[name=approve]:hover, tr#act_buttons button[name=submit]:hover, button.r_button[name=t_gen]:hover {
    background: rgb(3, 99, 69);
}
tr#act_buttons button[name=unapprove]:hover, button.r_button[name=t_cancel]:hover, button#cne_no_notify:hover {
    background: rgb(150, 8, 8);
}
tr#act_buttons button[name=lost]:hover, button#del_prd:hover, button#cancel_bol:hover {
    background: rgb(150, 8, 8);
}
tr#act_buttons button[name=print]:hover, button#sort_areas:hover, div.jBox-content button.split:hover, button#move_prd:hover {
    background: #7a5331;
}
tr#act_buttons button[name=qb_so]:not(:disabled):hover, tr#act_buttons button[name=qb_so_mod]:hover, tr#act_buttons button[name=qb_so_close]:hover, div#new_so:hover {
    background: rgb(44, 160, 28);
}
tr#act_buttons button[name=qb_so].progress {
	border: 1px solid;
}
tr#act_buttons button[name=production]:hover {
    background: rgb(86, 79, 62);
}
div#dt_proc button[name=dt_gen]:hover, div#dt_proc button[name=dt_all]:hover {
	background: rgb(3, 99, 69);
}
div#dt_proc button[name=dt_save]:hover, table#prod_setup button[name=pc_save]:hover, div.jBox-content button.combine:hover {
	background: rgb(58, 186, 145);
}
div#dt_proc button[name=dt_none]:hover, table#prod_setup button[name=pc_none]:hover {
	background: #7a5331;
}
table#prod_setup button[name=pc_all]:hover, table#prod_setup button[name=pc_gen]:hover {
	background: rgb(3, 99, 69);
}
table#prod_setup tbody.grp button.sm_button:hover {
	background: rgb(9, 87, 9);
}
tr#act_buttons button[name=qb_so]:disabled {
	background:transparent;
	color: #0c4d8b;
	cursor:default;
}
div#notify_content {
	position:fixed;
	display:none;
	width:650px;
	margin: 0px auto;
	padding: 0px;
    background: #f9f9f9fa;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom: 1px solid rgb(12, 77, 139);
    border-left: 1px solid rgb(12, 77, 139);
    border-right: 1px solid rgb(12, 77, 139);
	max-height: 70%;
    overflow-y: auto;
	overflow-x: hidden;
	left:165px;
	right:0;
	top:0;
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.2), 0 0px 10px 0 rgba(0, 0, 0, 0.20);
	z-index:15;
	border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
	padding-top: 48px;
}
div#notify_content div.n_item {
    padding: 8px;
    border-bottom: 1px solid #e1e1e1;
	position:relative;
	box-sizing: border-box;
	line-height: 18px;
}
div#notify_content div.n_item:hover {
	background:rgba(0,0,0,0.05);
}
div#notify_content div.n_header {
    padding: 15px;
    font-weight: bold;
    text-align: left;
    background-color: rgb(12, 77, 139);
    color: white;
    font-size: 14px;
	display:flex;
	align-items: center;
	box-sizing: border-box;
	position:fixed;
    z-index: 5;
	top: 0;
}
div.notify-title {
	flex:1;
}
div#notify_content i {
	margin-right:5px;
	font-size: 13px;
}
div#notify_content i.fa-cog {
	margin-left: 8px;
    font-size: 20px;
    vertical-align: text-top;
    top: -2px;
    position: relative;
}
div#notify_content div.not_action i {
	margin-right: 10px;
    font-size: 15px;
    vertical-align: text-bottom;
	padding: 10px;
	margin:0px;
}
div#notify_content div.not_action i:hover {
	background-color:rgba(0,0,0,0.1);
}
div.notify_num {
	font-weight: bold;
    padding: 3px;
    border-radius: 10px;
    background: red;
    position: absolute;
    color: #FFF;
    min-width: 10px;
    height: 10px;
    line-height: 10px;
    top: 2px;
    left: 22px;
	display:none;
}
div.not_action {
	font-weight: bold;
    position: absolute;
    top: 0px;
    right: 0px;
}
div.not_action i {
	cursor:pointer;
}
div.not_info {
	margin-top: 5px;
	width:100%;
}
div.not_info input.no_style, div.not_info select.no_style {
	border-bottom:1px solid #666;
	font-size:12px;
}
div#notify_content div.not_action i.com_hover:hover {
	background-color: #00a8cc;
	color:#FFF;
}
div#notify_content div.not_action i.quo_hover:hover {
	background-color: #0e606d;
	color:#FFF;
}
div#notify_content div.not_action i.app_hover:hover {
	background-color: rgba(38, 148, 68, 0.88);
	color:#FFF;
}
div#notify_content div.not_action i.snooze_hover:hover {
	background-color: rgba(204, 121, 0, 0.69);
	color:#FFF;
}
div#notify_content div.not_action i.lost_hover:hover {
	background-color: #CC0003;
	color:#FFF;
}
div.notify_em {
	width:100%;
	margin-top:5px;
	display:none;
}
div.notify_em textarea {
	margin-bottom:5px;
}
span.pad_right {
	padding-right: 170px;
    width: 100%;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
	text-align: left;
}
span.em_select {
	padding: 2px 5px;
    border-radius: 3px;
    border: 1px solid #999;
	margin: 2px;
	background-color: rgba(0,0,0,0.05);
	display: inline-block;
	cursor:pointer;
	color:#666;
}
span.em_select:hover {
    border: 1px solid #777;
	background-color: rgba(35, 174, 241, 0.6);
	color:#000;
}
div#notify_content span.em_select i {
	display:none;
	margin-right:5px;
	vertical-align: text-bottom;
    font-size: 12px;
    top: -1px;
    position: relative;
}
span.em_select.sd {
	background-color:rgba(35, 174, 241, 0.4);
	font-weight:600;
	color:#000;
}
div#notify_content span.em_select.sd i {
	display:inline-block;
}
div.em_sub {
	margin:5px 0px;
}
div.mark_lost {
	margin: 8px auto 3px auto;
}
div.mark_lost input.no_style {
	border-bottom: 1px solid #CCC;
	font-size:12px;
}
div#prod_proc {
	margin-top:32px;
}
table#prod_setup, table#sort_str {
	width:95%;
}
table#prod_setup tbody, table#sort_str tbody {
	font-weight:600;
}
table#prod_setup tr:nth-child(even), table#sort_str tr:nth-child(even) {
	background: rgba(99,99,99,0.05);
}
table#prod_setup input[type=checkbox] {
	margin-right:5px;
	vertical-align:middle;
	height:16px;
	width:16px;
    top: -2px;
}
table#prod_setup input[type=text], table#prod_setup select, table#sort_str input, table#sort_str select {
    background-color: transparent;
    border: 0px;
	padding: 0px 1px;
	font-weight: 600;
    font-size: 12px;
}
table#prod_setup tr td, table#prod_setup tr.it_head.grp td, table#prod_setup tr.it_dets.grp td, table#prod_setup tr.it_dets td, table#sort_str tr td {
	padding-left:7px;
	padding-top: 7px;
    padding-bottom: 6px;
	text-align:left;
	position:relative;
}
table#prod_setup tr.it_head td {
	padding-left:7px;
	padding-top: 12px;
    padding-bottom: 11px;
	text-align:left;
}
table#prod_setup tr td:last-child {
	padding-right:7px;
}
table#prod_setup tr.prod_grp {
    text-transform: uppercase;
    color: #000;
	border-bottom: 1px solid rgba(24, 80, 19, 0.75);
}
table#prod_setup tr.prod_grp div {
	padding:5px 8px;
	color:#FFF;
	background:rgb(9, 87, 9);
	display:inline-block;
}
table#prod_setup tr.prod_grp td {
	padding-top: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
	text-align: left;
}
table#prod_setup tr.prod_chk {
	background: rgba(191, 237, 187, 0.75);
}
table#prod_setup tr.prod_chk:nth-child(even) {
	background: rgba(191, 237, 187, 0.50);
}
form[name=vform], form[name=dt_form], form[name=prod_form], div.ord_prod {
	opacity: 0.999;
}
table#prod_setup tr td.select_head {
	font-size:18px;
	color:#0c4d8b;
	padding-bottom:12px;
	text-transform: uppercase;
    font-weight: 600;
	text-align:center;
}
table#prod_setup tr input.prod_date {
	text-align:center;
}
table#prod_setup tr label {
	top: 7px;
    font-size: 11px;
    left: 7px;
	width:100%;
	padding-right: 7px;
    box-sizing: border-box;
}
table#prod_setup tr.add_more_q label {
	top: -1px;
    left: 0px;
	padding-right: 0px;
}
table#prod_setup tr input:focus ~ label, table#prod_setup tr input.not_empty ~ label, table#prod_setup tr select:focus ~ label, table#prod_setup tr select.not_empty ~ label {
	display:none;
}
table#prod_setup tr[id^=prod_draw] button {
	display:none;
	margin-top:0px;
	top:0px;
	vertical-align: middle;
}
table#prod_setup tr[id^=prod_draw]:hover button {
	display:inline-block;
}
/*
table#prod_setup tr.grp {
	background-color:rgba(191, 237, 187, 0.75);
}
table#prod_setup tr.grp:nth-child(even) {
	background-color:rgba(191, 237, 187, 0.50);
}*/
input[name=total] {
	font-size:12px;
}
div.lm_container {
	width:115px;color:#FFF;background-color:#038309;font-size:12px;border-bottom-right-radius:8px;border-bottom-left-radius:8px;padding:6px 5px 7px 5px;margin: 0px auto;text-align: center;font-weight: 500;display:none;cursor:pointer;position:absolute;left:165px;right:0;
}
span.labeled {
    font-size: 10px;
    color: #0c4d8b;
    font-weight: 600;
    text-transform: uppercase;
	display:block;
	margin-bottom:5px;
}
div#quote_text {
	padding:10px;
	box-sizing:border-box;
}
div#quote_text div.text_div {
	display:inline-block;
	padding-right:10px;
	padding-left:10px;
	margin-top:10px;
	text-align:left;
	width:100%;
	box-sizing:border-box;
}
div#dt_buttons {
	margin-top: 18px;
    padding-bottom: 12px;
    border-top: 1px dotted #999;
    border-bottom: 1px dotted #999;
    background: rgba(118, 184, 232, 0.14);
}
tr.it_list, tr.it_dets {
	display:none;
	position:relative;
}
tr.it_list {
	cursor:pointer;
}
table#prod_setup tr.it_list:hover, table#prod_setup tr.it_list:nth-child(even):hover {
	background-color:rgba(103, 184, 158, 0.65);
}
table#prod_setup tbody.grp tr.it_list:hover, table#prod_setup tbody.grp tr.it_list:nth-child(even):hover {
	background-color:rgba(89, 158, 101, 0.7);
}
tbody.body_item tr.it_head {
	cursor:pointer;
}
table#prod_setup {
	border-collapse: collapse;
}
table#prod_setup tr.it_dets.grp.it0, table#prod_setup tr.it_dets.grp.it1 {
	border-left: 1px solid rgba(24, 80, 19, 0.75);
	border-right: 1px solid rgba(24, 80, 19, 0.75);
}
table#prod_setup tr.it_dets.grp.it0, table#prod_setup tr.it_dets.grp.it1, table#prod_setup tr.it_dets.it0, table#prod_setup tr.it_dets.it1 {
	font-size:11px;
}
table#prod_setup tr.it_head.grp td:first-child, table#prod_setup tbody.grp tr.it_list td:first-child {
	border-left: 1px solid rgba(24, 80, 19, 0.75);
}
table#prod_setup tr.it_head.grp td:last-child, table#prod_setup tbody.grp tr.it_list td:last-child {
	border-right: 1px solid rgba(24, 80, 19, 0.75);
}
table#prod_setup tr.it_head.grp.grp_last td, table#prod_setup tbody.grp_last tr:last-child td, table#prod_setup tbody.grp_last tr:not(.it_sel):first-child td {
	border-bottom: 1px solid rgba(24, 80, 19, 0.75);
}
table#prod_setup tbody.grp_last::after, table#prod_setup tbody.body_item.grp_last:nth-child(even)::after {
	content: '';
	display: block;
	position:relative;
	height: 0px;
	padding-bottom:10px;
	background-color:#F0F0F0;
	width:100%;
	left:-4px;
	padding-right: 5px;
}
/*
table#prod_setup tr.it_head.grp.it0, table#prod_setup tr.it_dets.grp.it0 {
	background-color:rgba(191, 237, 187, 0.75);
}
table#prod_setup tr.it_head.grp.it1, table#prod_setup tr.it_dets.grp.it1 {
	background-color:rgba(191, 237, 187, 0.50);
}
*/
table#prod_setup tr.it_head.it0, table#prod_setup tr.it_dets.it0 {
	/*background-color:rgba(149, 224, 200, 0.4);
	border-right: 1px solid rgba(149, 224, 200, 0.4);*/
}
table#prod_setup tr.it_head.it1, table#prod_setup tr.it_dets.it1 {
	/*background-color:rgba(149, 224, 200, 0.65);
	border-right: 1px solid rgba(149, 224, 200, 0.65);*/
}
table#prod_setup tr.grp.it_head:hover {
	background:rgba(89, 158, 101, 0.7);
	border-right: 1px solid rgba(89, 158, 101, 0.7);
}
table#prod_setup tr.it_head:hover {
	background:rgba(103, 184, 158, 0.65);
	border-right: 1px solid rgba(103, 184, 158, 0.65);
}
table#prod_setup tr.it_head.it0.it_sel, table#prod_setup tr.it_head.it1.it_sel, table#prod_setup tr.it_dets.it0, table#prod_setup tr.it_dets.it1 {
	background:rgba(103, 184, 158, 0.65);
	border-right: 1px solid rgba(103, 184, 158, 0.65);
}
table#prod_setup tr.it_head.grp.it0.it_sel, table#prod_setup tr.it_head.grp.it1.it_sel, table#prod_setup tr.it_dets.grp.it0, table#prod_setup tr.it_dets.grp.it1 {
	background:rgba(89, 158, 101, 0.7);
}
table#prod_setup tbody.grp.it_sel, table#prod_setup tbody.body_item.grp.it_sel:nth-child(even) {
	background-color:rgba(142, 243, 142, 0.37);
	border-left: 4px solid rgb(9, 87, 9);
}
table#prod_setup tbody.it_sel, table#prod_setup tbody.body_item.it_sel:nth-child(even) {
	background-color: rgba(128, 223, 193, 0.38);
	border-left: 4px solid rgb(21, 80, 62);
}
table#prod_setup tbody.it_sel tr.it_sel div.prod_prog {
	border: 1px solid rgba(80, 77, 77, 0.55);
}
div.prod_prog {
	width: 140px;
    text-align: right;
    height: 7px;
    border: 1px solid rgba(153, 153, 153, 0.57);
	border-radius: 3px;
	display:inline-block;
}
div.pp_bar {
	background-color:#006E13;
	text-align:left;
	height:100%;
	border-radius: 2px;
	width:0%;
}
table#prod_setup tr#prod_draws {
	border-right: 1px solid rgba(24, 80, 19, 0.75);
	border-bottom: 1px solid rgba(24, 80, 19, 0.22);
	background:rgba(122, 183, 131, 0.31);
}
table#prod_setup tr.pd_sel:nth-child(even), table#prod_setup tr.pd_sel {
	border-top: 1px solid rgba(24, 80, 19, 0.22);
	background:rgba(122, 183, 131, 0.31);
}
table#prod_setup button.sm_button {
	margin-top:0px;
	top:0px;
	margin-left:10px;
	font-size:11px;
	padding: 4px 10px 2px 8px;
	position: relative;
    right: 0px;
    top: 0px;
	color:#000;
}
table#prod_setup tbody.grp button.sm_button {
	padding: 1px 12px 1px 3px;
	top: 2px;
}
table#prod_setup button.sm_button:hover {
	color:#FFF;
}
table#prod_setup tbody.body_item:nth-child(even) {
	background:rgba(99,99,99,0.05);
}
tr.it_list i.fa-trash-alt {
	position: absolute;
    right: -30px;
    font-size: 20px;
    top: 0px;
    color: #000;
    display: none;
    padding-left: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 8px;
}
tr.it_list:hover i {
    display: block;
}
tr.it_list i.fa-trash-alt:hover {
	background:#CC0003;
	color:#FFF;
}
table#prod_setup tr.it_head button.sm_button i {
	font-size:13px;
	padding:0px;
	top:3px;
}
table#prod_setup tr.add_more_q select {
	margin-right: 5px;
    min-width: 35px;
}
table#prod_setup tr.add_more_q i {
	font-size: 20px;
    margin-right: 10px;
    margin-left: 5px;
    top: 3px;
    position: relative;
	color: #000;
	cursor:pointer;
}
table#prod_setup tr.add_more_q i:hover {
	color:rgb(9, 87, 9);
}
table#prod_setup tr.aq_draw, table#prod_setup tr.add_more_q.aq_sel {
	background: rgba(26, 169, 41, 0.15);
}
table#prod_setup tr.aq_draw {
	border-bottom: 1px solid rgba(24, 80, 19, 0.75);
	border-right: 1px solid rgba(24, 80, 19, 0.75);
	border-left: 1px solid rgba(24, 80, 19, 0.75);
}
table#prod_setup tr.add_more_q.aq_sel {
	border-top: 1px solid rgba(24, 80, 19, 0.75);
	border-right: 1px solid rgba(24, 80, 19, 0.75);
	border-left: 1px solid rgba(24, 80, 19, 0.75);
}
table#prod_setup tr.add_more_q div {
	position:relative;
	margin-left:7px;
	top: 4px;
}
div.in_contain {
	display:inline-block;
	position:relative;
	margin: 12px auto;
    font-size: 14px;
}
tr#new_emp select, tr#new_area select {
	min-width:90px;
	font-weight:normal;
}
tr#new_emp input, tr#new_emp select, tr#new_area input, tr#new_area select {
	font-size:14px;
}
tr#new_emp textarea, tr#new_area textarea {
	background:transparent;
	border:0px solid;
	border-left:1px solid #999;
	border-bottom:1px solid #999;
}
div.new_employee, div.new_area, div.new_driver {
	background-color: rgb(247, 247, 247);
    padding: 10px 15px 5px;
    border: 1px solid #CCC;
	display:inline-block;
    border-radius: 5px;
    margin-bottom: 10px;
}
div#prod_today button.r_button {
	margin-bottom: 10px;
}
td.break {
	background:#FFF;
}
td.half-hourly.day_start, table#ao_table tbody td.half-hourly.day_start:nth-child(even), table#ao_table tbody td.half-hourly.day_start {
	border-left:2px solid black;
}
td.emp_name {
	padding-top:0px;
	padding-bottom:0px;
	text-align: left;
	padding-left: 0px;
	font-weight:bold;
}
div.hourly, td.hourly, td.break, td.break_head {
	width:4.16666666%;
	display:inline-block;
	box-sizing: border-box;
    font-size: 11px;
    font-weight: bold;
	text-align:left;
}
td.hourly:last-of-type {
	width:4.1%;
}
div.half-hourly, td.half-hourly {
	width:2.08333333%;
	display:inline-block;
	border-left: 1px dotted rgba(183, 183, 183, 0.99);
    height:40px;
	padding:0px;
	margin:6px 0px;
	box-sizing:border-box;
}
div.half-hourly.in {
    background-color:#91DFD1;
}
div.buf-half-hourly {
	width:2.08333333%;
	display:inline-block;
}
td.head_hrs {
	background: rgba(204, 204, 204, 0.25);
    border: 1px solid #CCC;
    padding: 6px 0px 5px;
	text-align:left;
}
td.fill {
	background-color:#31843B;
}
div.drag, div.proj, div.dragged, div.emp_drag, div.emp_dragged {
	height:35px;
	width:86.08px;
	border-radius: 15px;
	padding: 2.5px 2px 2.5px;
	overflow: hidden;
	color: #FFF;
    background-color: rgba(49, 97, 122, 0.95);
	cursor:move;
	display: inline-flex;
  	justify-content: center;
  	align-items: center;
	font-size:11px;
	white-space: normal;
	position:relative;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.19);
}
div.drag.pointer, div.proj.pointer {
	cursor:pointer;
}
div.dragged, div.emp_dragged {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.19);
	z-index:1000;
}
div.drag.active, div.proj.active, div.emp_drag.active {
	-webkit-transition: all .05s ease-in-out;
    transition: all .05s ease-in-out;
}
div.drag_cont div.drag, div.drag_cont div.proj, div.drag_cont div.dragged, div.ui-draggable-dragging, div#emps div.emp_drag, div#emps div.emp_dragged {
	margin-right: 5px;
	text-align:center;
	display:inline-flex;
}
table#ao_table tbody td.half-hourly:nth-child(even), td.break, td.break_head {
	border-left: 1px solid rgba(99,99,99,0.5);
}
div#prod_today table#ao_table tbody tr:last-child td {
    border-bottom:0px solid;
}
div#prod_today select {
	border:0px solid;
	padding:1px 1px 1px 0px;
	max-width: 100%;
}
div#prod_today tr#new_emp select, div#prod_today tr#new_area select {
	border:0px solid;
}
div#prod_today select[name=plant] {
	text-transform: uppercase;
	font-weight:bold;
	background:rgba(69, 103, 126, 0.1);
	padding: 5px;
}
div.drag_cont div {
	margin-bottom:5px;
}
div.drag_cont {
	width:100%;
	display:inline-block;
	overflow:hidden;
	margin-top: 8px;
}
div#dr {
	width:170px;
	text-align:left;
	float:right;
	display:inline-block;
	top: 70px;
	margin-left: -80px;
    position: fixed;
	padding: 10px 7px 0px;
    box-sizing: border-box;
    background: rgba(14, 81, 13, 0.12);
    border: 1px solid #dcdfe0;
}
div.drag_title input, div.jBox-content input {
	border:0px;
	padding: 2px 0px 0px 0px;
    margin: 2px 0px 0px 0px;
}
div.drag_title {
	font-weight:bold;
	font-size:18px;
	position:relative;
	padding:0px 0px 7px;
	z-index:100;
	text-align:left;
	display:inline-block;
	width:47%;
	margin-left:0px;
	margin-right:2px;
}
div.drag:hover, div.proj:hover, div.emp_drag:hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.19);
}
div.drag:not(.ui-draggable-dragging):not(.ui-resizable-resizing):not(.ui-selected):not(.urgent):not(.soon):not(.poured):not(.missed):hover {
	background-color: rgba(29, 70, 91, 0.95);
}
div.proj, div.proj.drag.missed {
	background-color: rgba(88,0,0,1.00);
}
div.proj:hover, div.proj.drag.missed:hover {
	background-color: rgba(106,0,0,1.00);
}
div.drag.missed:hover {
	background-color: rgb(37, 0, 43);
}
div.drag.poured:hover {
	background-color: rgb(125, 241, 188);
}
div#q div.drag.tent {
	border: 3px solid springgreen !important;
}
div.drag.ui-draggable-dragging, div.drag.ui-resizable-resizing, div.dragged, div.drag.urgent.ui-draggable-dragging, div.drag.urgent.ui-resizable-resizing, div.drag.soon.ui-draggable-dragging, div.drag.soon.ui-resizable-resizing {
	background-color: rgba(172, 152, 55, 0.95);
}
div.emp_drag.ui-draggable-dragging, div.emp_drag.ui-resizable-resizing, div.emp_dragged, div.emp_drag.urgent.ui-draggable-dragging, div.emp_drag.urgent.ui-resizable-resizing, div.emp_drag.soon.ui-draggable-dragging, div.emp_drag.soon.ui-resizable-resizing {
	background-color: rgba(54, 98, 54, .95);
}
div.drag.urgent {
	background-color:#8B0609;
}
div.drag.urgent:not(.ui-draggable-dragging):not(.ui-resizable-resizing):not(.ui-selected):not(.soon):not(.poured):not(.missed):hover {
	background-color:#630608;
}
div.drag.soon {
	background-color:#42740b;
}
div.drag.soon:not(.ui-draggable-dragging):not(.ui-resizable-resizing):not(.ui-selected):not(.urgent):not(.poured):not(.missed):hover {
	background-color:#345b09;
}
div.drag.task, div.proj.task {
	background-color:rgba(122, 83, 49, 0.95);
}
div.drag.task:not(.ui-draggable-dragging):not(.ui-resizable-resizing):not(.ui-selected):not(.urgent):not(.soon):not(.poured):not(.missed):hover {
	background-color:rgba(97, 64, 36, 0.95);
}
div.drag.ui-selected, div.drag.ui-selected:hover {
	background-color:rgba(229, 230, 160, 0.95);
	color:#333;
	font-weight:bold;
}
div.emp_drag.ui-selected, div.emp_drag.ui-selected:hover {
	background-color:rgba(160, 230, 185, 0.95);
	color:#333;
	font-weight:bold;
}
div#prod_today input#date, input#testdiv, div#prod_today input.other_dates {
	font-size:28px;
	font-weight:200;
	color:#0c4d8b;
	margin-bottom: 4px;
}
div#prod_today input.other_dates {
	padding:0px 10px;
	border:0px;
	margin-bottom: 0px;
	background:transparent;
}
div.date_cont, div.day_scroll {
	vertical-align: middle;
	font-size:28px;
	font-weight:200;
	color:#0c4d8b;
	float:left;
	margin-bottom: 14px;
}
div.date_cont i, div.day_scroll i {
	font-size:18px;
	vertical-align: middle;
	padding:3px 10px 4px 9px;
}
div.date_cont i.fa-angle-right, div.day_scroll i.fa-angle-right {
	padding:3px 9px 4px 10px;
}
div.date_cont i.arrow:hover, div.day_scroll i.arrow:hover {
	border-radius:40px;
	background:#0A4E09;
	color:#FFF;
	cursor:pointer;
}
table#calendar thead div.date_cont i.arrow:hover {
	border-radius:40px;
	background:#0c4d8b;
	color:#FFF;
	cursor:pointer;
}
div.date_cont input, div.day_scroll input {
	vertical-align: middle;
}
div.date_cont i.fa-cog, div.day_scroll i.fa-cog {
	display:none;
	font-size: 24px;
    padding: 0px;
    margin-top: -2px;
}
div.day_scroll i.fa-cog {
    margin-top: 4px;
    margin-left: 10px;
    position: absolute;
}
div#testdiv, div#stock {
	display:none;
}
div#testdiv {
	font-size:28px;
	font-weight:200;
	color:#0A4E09;
	margin-bottom: 4px;
}
div.jBox-content button i {
	position:relative;
	vertical-align: middle;
	font-size:18px;
	margin-right: 5px;
}
div.jBox-content button span {
	position:relative;
	vertical-align: middle;
}
div.jBox-content button#bank_now span.but_proc, div.jBox-content button#verify_bnk span.but_proc {
	padding-left:2px;
}
div.jBox-content button#bank_now, div.jBox-content button#verify_bnk {
	padding-right:8px;
}
div.jBox-content button#bank_now:disabled:not(.success) span.but_proc, div.jBox-content button#bank_now:disabled:not(.success) i, div.jBox-content button#verify_bnk:disabled:not(.success) span.but_proc, div.jBox-content button#verify_bnk:disabled:not(.success) i {
	color: rgb(12 77 139 / 41%);
}
div.jBox-content button#bank_now.processing:disabled, div.jBox-content button#bank_now.success:disabled, div.jBox-content button#bank_now.processing:disabled:hover, div.jBox-content button#bank_now.success:disabled:hover, div.jBox-content button#verify_bnk.processing:disabled, div.jBox-content button#verify_bnk.success:disabled, div.jBox-content button#verify_bnk.processing:disabled:hover, div.jBox-content button#verify_bnk.success:disabled:hover {
	color: #0c4d8b;
}
div.jBox-content button#bank_now:disabled:hover, div.jBox-content button#verify_bnk:disabled:hover {
	cursor:default;
	background-color: transparent;
}
div.jBox-content button#bank_now.success span.but_proc, div.jBox-content button#bank_now.processing span.but_proc, div.jBox-content button#verify_bnk.success span.but_proc, div.jBox-content button#verify_bnk.processing span.but_proc {
	padding-left:2px;
}
div.jBox-content button#bank_now:enabled:hover, div.jBox-content button#verify_bnk:enabled:hover {
	background-color:green;
}
div.jBox-content button.remove:hover {
	background-color:rgba(166,0,2,1.00);
}
div.sch_grp {
	background-color:rgba(22,117,158,1.00);
}
tr.emp_brown {
    background: rgba(163, 135, 95, 0.4);
	background: -webkit-linear-gradient(left, rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.4) 15%);
    background: -o-linear-gradient(right,rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.4) 15%);
    background: -moz-linear-gradient(right,rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.4) 15%);
    background: linear-gradient(to right, rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.4) 15%);
}
tr.emp_brown.manhours {
    background: rgba(163, 135, 95, 0.5);
	background: -webkit-linear-gradient(left, rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.5) 15%);
    background: -o-linear-gradient(right,rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.5) 15%);
    background: -moz-linear-gradient(right,rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.5) 15%);
    background: linear-gradient(to right, rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.5) 15%);
}
tr.emp_green {
	background:rgba(165, 173, 122, 0.5);
	background: -webkit-linear-gradient(left, rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.5) 15%);
    background: -o-linear-gradient(right,rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.5) 15%);
    background: -moz-linear-gradient(right,rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.5) 15%);
    background: linear-gradient(to right, rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.5) 15%);
}
tr.emp_green.manhours {
	background:rgba(165, 173, 122, 0.65);
	background: -webkit-linear-gradient(left, rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.65) 15%);
    background: -o-linear-gradient(right,rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.65) 15%);
    background: -moz-linear-gradient(right,rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.65) 15%);
    background: linear-gradient(to right, rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.65) 15%);
}
tr.emp_tan {
	background:rgba(232, 218, 207, 0.65);
	background: -webkit-linear-gradient(left, rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.65) 15%);
    background: -o-linear-gradient(right,rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.65) 15%);
    background: -moz-linear-gradient(right,rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.65) 15%);
    background: linear-gradient(to right, rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.65) 15%);
}
tr.emp_tan.manhours {
	background:rgba(232, 218, 207, 0.95);
	background: -webkit-linear-gradient(left, rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.95) 15%);
    background: -o-linear-gradient(right,rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.95) 15%);
    background: -moz-linear-gradient(right,rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.95) 15%);
    background: linear-gradient(to right, rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.95) 15%);
}
tr.emp_orange {
	background:rgba(233, 185, 119, 0.58);
	background: -webkit-linear-gradient(left, rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.58) 15%);
    background: -o-linear-gradient(right,rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.58) 15%);
    background: -moz-linear-gradient(right,rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.58) 15%);
    background: linear-gradient(to right, rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.58) 15%);
}
tr.emp_orange.manhours {
	background:rgba(233, 185, 119, 0.68);
	background: -webkit-linear-gradient(left, rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.68) 15%);
    background: -o-linear-gradient(right,rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.68) 15%);
    background: -moz-linear-gradient(right,rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.68) 15%);
    background: linear-gradient(to right, rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.68) 15%);
}
tr.emp_turq {
	background:rgba(182, 205, 185, 0.55);
	background: -webkit-linear-gradient(left, rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.55) 15%);
    background: -o-linear-gradient(right,rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.55) 15%);
    background: -moz-linear-gradient(right,rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.55) 15%);
    background: linear-gradient(to right, rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.55) 15%);
}
tr.emp_turq.manhours {
	background:rgba(182, 205, 185, 0.75);
	background: -webkit-linear-gradient(left, rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.75) 15%);
    background: -o-linear-gradient(right,rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.75) 15%);
    background: -moz-linear-gradient(right,rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.75) 15%);
    background: linear-gradient(to right, rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.75) 15%);
}
tr.emp_blue {
	background:rgba(134, 208, 209, 0.4);
	background: -webkit-linear-gradient(left, rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.4) 15%);
    background: -o-linear-gradient(right,rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.4) 15%);
    background: -moz-linear-gradient(right,rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.4) 15%);
    background: linear-gradient(to right, rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.4) 15%);
}
tr.emp_blue.manhours {
	background:rgba(134, 208, 209, 0.5);
	background: -webkit-linear-gradient(left, rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.6) 15%);
    background: -o-linear-gradient(right,rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.6) 15%);
    background: -moz-linear-gradient(right,rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.6) 15%);
    background: linear-gradient(to right, rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.6) 15%);
}
tr.emp_brown_week {
    background: rgba(163, 135, 95, 0.4);
	background: -webkit-linear-gradient(left, rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.4) 2%);
    background: -o-linear-gradient(right,rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.4) 2%);
    background: -moz-linear-gradient(right,rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.4) 2%);
    background: linear-gradient(to right, rgba(163, 135, 95, 0),rgba(163, 135, 95, 0.4) 2%);
}
tr.emp_green_week {
	background:rgba(165, 173, 122, 0.5);
	background: -webkit-linear-gradient(left, rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.5) 2%);
    background: -o-linear-gradient(right,rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.5) 2%);
    background: -moz-linear-gradient(right,rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.5) 2%);
    background: linear-gradient(to right, rgba(165, 173, 122, 0),rgba(165, 173, 122, 0.5) 2%);
}
tr.emp_tan_week {
	background:rgba(232, 218, 207, 0.65);
	background: -webkit-linear-gradient(left, rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.65) 2%);
    background: -o-linear-gradient(right,rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.65) 2%);
    background: -moz-linear-gradient(right,rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.65) 2%);
    background: linear-gradient(to right, rgba(232, 218, 207, 0),rgba(232, 218, 207, 0.65) 2%);
}
tr.emp_orange_week {
	background:rgba(233, 185, 119, 0.58);
	background: -webkit-linear-gradient(left, rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.58) 2%);
    background: -o-linear-gradient(right,rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.58) 2%);
    background: -moz-linear-gradient(right,rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.58) 2%);
    background: linear-gradient(to right, rgba(233, 185, 119, 0),rgba(233, 185, 119, 0.58) 2%);
}
tr.emp_turq_week {
	background:rgba(182, 205, 185, 0.55);
	background: -webkit-linear-gradient(left, rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.55) 2%);
    background: -o-linear-gradient(right,rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.55) 2%);
    background: -moz-linear-gradient(right,rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.55) 2%);
    background: linear-gradient(to right, rgba(182, 205, 185, 0),rgba(182, 205, 185, 0.55) 2%);
}
tr.emp_blue_week {
	background:rgba(134, 208, 209, 0.4);
	background: -webkit-linear-gradient(left, rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.4) 2%);
    background: -o-linear-gradient(right,rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.4) 2%);
    background: -moz-linear-gradient(right,rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.4) 2%);
    background: linear-gradient(to right, rgba(134, 208, 209, 0),rgba(134, 208, 209, 0.4) 2%);
}
td.emp_name.trans {
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 35%,rgba(255, 255, 255, 0.30) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 35%,rgba(255, 255, 255, 0.30) 100%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 35%,rgba(255, 255, 255, 0.30) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 35%,rgba(255, 255, 255, 0.30) 100%);
}
tr.first td.emp_name i {
	font-size: 12px;
    margin-right: 3px;
}
tr.first td.emp_name div.emp_t {
	text-align: left;
	padding: 5px 8px;
	box-sizing:border-box;
	display:inline-block;
}
/*tr.first td.emp_name div.emp_t:hover {
	cursor:pointer;
	color:#FFF;
	background:#0c4d8b;
	border-radius:10px;
}*/
tr.first.manhours td.emp_name div.emp_t, tr.first.pr_hrs td.emp_name div.emp_t {
    text-align: right;
    padding-right: 10px;
    box-sizing: border-box;
    display: inline-block;
    transform-origin: top left;
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.7);
	width: 100%;
}
tr.first.manhours td.emp_name div:hover, tr.first.pr_hrs td.emp_name div:hover {
	cursor:default;
	color:rgba(0,0,0,0.7);
	background:transparent;
	border-radius:0px;
}
tr.first td.emp_name span:not(.m_hrs):not(.p_hrs):not(.y_area):hover {
	cursor:pointer;
}
div#emp_res, div#area_res {
	color: #074a12;
}
span.emp_sub {
	display:block;
	font-size:11px;
	padding:0px 8px;
	font-weight:normal;
}
div.s_area {
	display:inline-block;
	padding:8px 15px;
	width: 15%;
    background-color: #0c4d8b;
	border-radius:15px;
    margin: 2px;
	cursor:move;
	color:#FFF;
	font-weight:bold;
	position:relative;
}
div.s_area:hover {
	background-color: #0c4d8b;
}
div.s_area:hover i:not(.fa-truck) {
	display:block;
}
div.s_area i.fa-truck {
	margin-right:5px;
}
span.p_hrs, span.m_hrs, span.y_area {
	font-size:11px;
	font-weight:normal;
	margin-right:0px;
	display:block;
}
span.y_area {
	margin-top: 5px;
}
span.m_hrs {
	padding-left:8px;
}
tr.pr_hrs span.p_hrs, tr.manhours span.m_hrs, tr.pr_hrs span.y_area {
	display:block;
	margin-right:0px;
}
tr.manhours span.m_hrs {
	margin-top:4px;
}
div.tot_hrs {
	display:inline-block;
    margin-top: 8px;
}
div.counter {
	padding:6px;
	margin-left:3px;
	margin-right:3px;
	display: inline-block;
}
div.counter i {
	margin-right:5px;
	font-size:14px;
}
div.prd_name input {
	font-size:14px;
}
div.prd_name {
	margin-bottom:2px;
}
span.sm_title {
	font-size:10px;
}
div.jBox-content i {
	margin-right:5px;
	max-width:15px;
}
div.drag_task {
	position:absolute;
	bottom:-50px;
}
#s-rectBox {
  	position: absolute;
  	z-index: 1090;
  	border: 2px dashed rgba(49, 97, 122, 0.95);
	background-color:rgba(49, 97, 122, 0.2);
}
div#multi_ops {
	display:inline-block;
}
div.drag.ui-selected:before {
    content: " ";
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 2px dashed rgb(69, 69, 69);
    border-radius: 15px;
}
div.task.ui-droppable-hover {
	background-color:rgba(209,211,120,0.95);
	color:#333;
}
div.task.ui-droppable-hover:before {
	content: " ";
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 2px dashed rgb(69, 69, 69);
    border-radius: 15px;
}
div.drag:before, div.proj:before {
    content: " ";
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 0px solid yellow;
    border-radius: 15px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
div.drag.sock_highlight:before {
    content: " ";
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 2px solid yellow;
    border-radius: 15px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
div.sock_user {
	position: absolute;
    top: -17px;
    left: 15px;
    background: rgba(0,120,55,1.00);
    color: #FFF;
    width: auto;
    min-width: 100px;
    font-size: 11px;
    padding: 2px 3px;
	white-space: nowrap;
}
div.inp_div {
	display:inline-block;
}
div.inp_div input {
	font-size:16px;
	text-align:center;
}
div.adj_schedule, div.adj_draw {
	text-align:center;
}
div.adj_schedule select, div.adj_draw select {
	border:0px;
}
div.adj_schedule input[type=checkbox], div.pr_sched input[type=checkbox] {
	margin: 10px 5px 0px 0px;
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}
div.prd_info, div.prd_draw {
	display:inline-block;
}
div.prd_draw {
	float:right;
	margin-left: 5px;
    padding-left: 5px;
}
tr#tr_pdrw div.prd_draw {
	float:none;
	margin-left:0px;
	padding-left:0px;
}
div.search_filter select {
	background:transparent;
	font-size:12px;
	margin-bottom:5px;
}
div.jBox-content button.split i, div.jBox-content button.combine i {
	margin-right:7px;
}
div.jBox-content button.split, div.jBox-content button.combine {
	margin-right:5px;
}
.fa-rotate-45 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
div.dt_draw.lpb {
	height:106px;
	width:77px;
	box-sizing: border-box;
    border: 1px solid #CCC;
    padding: 5px;
	text-align:center;
	color:#333;
	border-radius: 5px;
	background: rgba(221, 221, 221, 0.54);
}
div.dt_draw.lpb a {
	color:#333;
	text-decoration:none;
	font-size: 11px;
	font-weight:bold;
}
div.dt_draw.lpb i {
	margin:0px auto 4px auto;
	font-size: 50px;
	color: rgba(0, 0, 0, 0.5);
	display:block;
	max-width:none;
}
div.dt_draw.lpb:hover {
	background: #ade6b9;
	border: 1px solid #5ebb61;
	text-decoration:none;
}
div.dt_draw.lpb i:hover, div.dt_draw.lpb a:hover {
	text-decoration:none;
}
div.s_area i:not(.fa-truck) {
	position:relative;
	right: -5px;
    font-size: 14px;
	cursor:pointer;
	float:right;
}
div.qc_tools {
	margin-bottom:15px;
	border-bottom: 1px solid #999;
    padding-bottom: 10px;
}
div.qc_pour {
	display: inline-block;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 5px;
	margin-right: 5px;
}
div.qc_pour:hover {
	border: 1px solid rgba(49, 97, 122, 1);
	background-color: rgba(0, 173, 255, 0.06);
	cursor:pointer;
}
div.qc_pour.sel {
	border: 1px solid #666;
	background-color: rgba(49, 97, 122, 0.28);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
div.qc_pour i {
	margin-right:5px;
}
span.area_name {
	display:block;
	font-weight:bold;
	font-size:14px;
}
span.area_prod {
	display:block;
}
div.qc_pour_rep {
	margin-top: 10px;
}
div.qc_tools div.area {
	display:inline-block;
	margin-right:15px;
	vertical-align:top;
}
div.qc_pour_rep div.prd_draw {
	float:none;
	display:inline-block;
	margin-left: 0px;
    padding-left: 0px;
}
div.qc_pour_rep div.pd_item {
	float:none;
	display:inline-block;
	padding:0px;
	border-radius:0px;
	background-color:transparent;
	margin:0px;
	margin-top:2px;
	margin-right: 5px;
}
div.qc_pour_rep div.pd_item span.draw_ops {
	display:none;
	position: absolute;
    top: 28px;
    text-align: center;
    width: 100%;
    font-size: 12px;
	background-color: rgba(204, 204, 204, 0.42);
    padding: 3px 0px;
}
div.qc_pour_rep div.pd_item span.draw_ops i.delete_hover {
	font-size: 16px;
}
div.qc_pour_rep div.pd_item:hover span.draw_ops {
	display:block;
}
div.qc_pour_rep div.prd_draw img {
	max-height:50px;
}
div.qc_docs {
	display:block;
	margin-bottom: 10px;
}
table#grp_table thead td i.fa-dollar-sign.group-pricing {
	background-color:#062A55;
	color:#FFF;
}
span.grp_items {
	padding: 8px 10px;
    display: inline-block;
}
div.draw_add {
	min-width:60px;
	height:80px;
	border:1px solid #CCC;
	background: #ade6b9;
    width: auto;
    height: auto;
    padding: 5px;
    line-height: 25px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #5ebb61;
    margin: 5px;
    font-size: 11px;
	cursor:pointer;
}
div.jBox-content div.draw_add i {
	max-width:none;
}
div.jBox-content div.adj_schedule div#dropzone i, div.jBox-content div.adj_draw div#dropzone i {
	padding:inherit;
	height:auto;
	max-width:none;
}
div.q_qty {
	position: absolute;
	right: 3px;
    top: -1px;
    border-radius: 2px;
    background-color: #033d46;
    color: #FFF;
    padding: 2px;
    font-size: 8px;
    font-weight: bold;
    min-width: 9px;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.12);
}
button.sm_button span, button.round span {
	vertical-align: middle;
}
td.surplus {
	background-color:rgba(97, 90, 8, 0.15);
}
td.error {
	background-color:rgba(255, 0, 0, 0.05);
}
td.sched_date {
	color: #4a3e00;
    background-color: rgba(184, 184, 21, 0.13);
}
td.tent_date {
	color: #401515;
    background-color: rgba(117, 39, 4, 0.23);
}
td.pour_date {
	color: #153c40;
    background-color: rgba(4, 117, 116, 0.19);
}
td.cust_ready {
	color: #15401f;
    background-color: rgba(4, 117, 22, 0.19);
}
tr.pr_hrs.droppable, tr.manhours.droppable {
	background:rgba(49, 97, 122, 0.3);
}
tr.manhours.undroppable td, tr.pr_hrs.undroppable td, table#ao_table tbody tr.manhours.undroppable td.half-hourly:nth-child(even), table#ao_table tbody tr.pr_hrs.undroppable td.half-hourly:nth-child(even) {
	border-left:1px solid transparent;
}
div#man_mode i, div#end_of_day i, div#week_glance i {
	padding:5px 12px 6px;
}
div#end_of_day i {
	padding: 5px 9px 6px;
}
div#man_mode i:hover, div#man_mode.selected i, div#end_of_day i:hover, div#end_of_day.selected i, div#week_glance i:hover, div#week_glance.selected i {
	color:#FFF;
	background:#0A4E09;
	border-radius:20px;
	cursor:pointer;
}
div#end_of_day i:hover, div#end_of_day.selected i {
	background:#0c4d8b;
}
div#week_glance i:hover, div#week_glance.selected i {
	background:#0c4d8b;
}
div#emps {
	display:none;
}
div.emp_drag {
	background: #498249;
}
div.emp_drag:hover {
	background: #366236;
}
div.emp_t div.zone.rotated {
	color: rgba(0,0,0,0.9);
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
div.emp_t div.zone, span.t_type, span.t_caps {
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
div.emp_t:hover span.t_type, tr.first td.emp_name div.emp_t:hover span.t_type, tr.first td.emp_name div.emp_t:hover span.t_caps {
	text-decoration:none;
}
tr.first.pr_hrs td.emp_name div.emp_t span, tr.first.manhours td.emp_name div.emp_t span {
	color:rgba(0,0,0,0.9);
}
a#nc.new {
	position: absolute;
    right: -26px;
    top: 14px;
    font-size: 14.5px;
	cursor:pointer;
	color:#000;
	border-radius:25px;
}
a#nc.new i {
	padding:3.5px 5px 3px 4.5px;
}
a#nc.new:hover {
	color:rgb(44, 160, 28);
}
div#dt_buttons button span, tr#act_buttons button span {
	vertical-align: middle;
}
span.sp_draw_name {
	position: absolute;
    display: block;
    background: rgba(9, 131, 57, 0.99);
    z-index: 15;
    padding: 5px;
    color: #FFF;
	min-width:100px;
	width:auto;
	font-size: 11px;
}
tr.missed, tr.del_missed, table#report_list tr.missed:nth-child(even) {
    color: rgb(255, 0, 0);
    font-weight: bold;
}
tr.added, table#report_list tr.added:nth-child(even) {
    color: rgba(0,142,16,1.00);
    font-weight: bold;
}
table#report_list tr.del_missed td, table#report_list tr.del_return td {
	padding:8px 0px;
}
tr.rb_missed, table#report_list tr.rb_missed:nth-child(even) {
    background-color:rgba(255,0,0,0.32);
	color: rgb(255, 0, 0);
    font-weight: bold;
}
i.srt_str {
	margin-left: 15px;
    float: right;
    padding: 1.6px;
	cursor:pointer;
}
table#sort_str tr.it_list {
	cursor:move;
}
table#sort_str tr.ui-sortable-helper {
	background-color:antiquewhite;
}
div.pdf_pre div.spinner {
	font-size: 100px;
    color: rgba(148, 148, 148, 0.46);
    position: absolute;
    right: 0;
    left: 0;
    top: 100px;
    bottom: 0;
    display: block;
    width: 100px;
    height: 100px;
    padding: 0px;
    margin: 0px auto;
    text-align: center;
    vertical-align: middle;
}
div.pdf_pre div.spinner i {
    display: block;
    position: relative;
    padding: 0px;
    text-align: center;
	z-index:5;
	margin: 0px;
    max-width: none;
}
iframe {
	border:0px;
}
div.infoshow div.jBox-container {
	background: rgba(108, 108, 108, 0.92);
}
table#report_list:not(.inventory) tbody tr:not(.stype_head):not(.tax_info):hover, table#report_list:not(.inventory) tbody tr:not(.stype_head):not(.tax_info):hover td, table.bol_details tbody tr:hover td, table.bol_details tbody tr:hover {
	background-color: rgba(255, 255, 204, 0.74);
	background: rgba(255, 255, 204, 0.74);
}
table#report_list.inventory tbody tr:hover, table#report_list.inventory tbody tr:hover td {
	cursor:pointer;
}
table#report_list.inventory tr.tr_open {
	font-weight:bold;
	background-color:#B4E8B4;
}
table#report_list.inventory tr.inv_details {
	background-color:#E4FFE4;
}
table#report_list.inventory tr.inv_details:nth-child(even) {
	background-color:#e4ffe4cf;
}
table#report_list.inventory tr.tr_open td {
	padding-top:5px;
	padding-bottom:5px;
	font-size:12px;
}
table#report_list tbody tr.inv_history:not(.selected):hover, table#report_list tbody tr.inv_details:not(.selected):hover, table#report_list tbody tr.inv:not(.tr_open):hover {
	background-color: rgba(255, 255, 204, 0.74);
	background: rgba(255, 255, 204, 0.74);
}
tr.inv_history.selected td {
	line-height:20px;
}
div.jBox-content button i.print_spin, button#submit_sch_preview i {
	margin-right: 2px;
    padding: 7px;
    max-width: none;
    height: auto;
    width: auto;
}
div.miss_title {
	font-weight:bold;
	font-size:14px;
}
div.drag.missed {
	background-color: rgb(53, 3, 62);
    color: #FFF;
	font-weight:500;
}
div.drag.poured {
	background-color: rgb(181, 255, 221);
	color:#000;
	font-weight:500;
}
table.dash_table {
	width:100%;
}
div.dash_div {
	width:40%;
	margin-right:5%;
	margin-left:5%;
	float:left;
	position: relative;
}
table#quotes tbody tr, table#production tbody tr {
	cursor:pointer;
}
table.dash_table.double {
	width:90%;
	margin-right:5%;
	margin-left:5%;
	float:left;
}
table.dash_table td {
	padding: 8px 3px;
}
span.thin_title {
	font-size:28px;font-weight:200;color:#0c4d8b;
}
table#quotes tr:nth-child(even), table#production tr:nth-child(even) {
	background: rgba(99,99,99,0.05);
}
span.dash_tit {
	display:block;
	font-size:14px;
	font-weight:500;
}
div.dash_job {
	margin-right:1%;
	margin-bottom:1%;
	display:inline-block;
	padding:0px;
	border:1px solid #ececec;
	width:49%;
	border-radius: 3px;
    box-sizing: border-box;
	-webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
div.dj_content {
	padding:3px 5px 5px 5px;
}
div.dash_job:hover {
	border:1px solid #0c4d8b;
}
div.dash_job div.prod_prog {
	width:100%;
	height:4px;
	border:0px;
}
table#production div.prod_prog {
	width:80%;
	display:inline-block;
	float: left;
    top: 2px;
    position: relative;
}
div.dash_job div.prod_prog div.pp_bar {
	border-radius:1px;
}
div.prod_num {
	font-size:10px;
}
table.dash_table input, div#external-events input {
	border:0px;
	padding:0px 0px 2px 2px;
}
table.dash_table thead span.bar, div#external-events span.group span.bar {
	border-bottom:1px solid #0c4d8b;
}
table.dash_table thead i, div#external-events span.group i {
	color:#0c4d8b;
	font-size: 14px;
}
table#calendar thead i, table#calendar thead input, div#external-events input {
	color:#0c4d8b;
	font-size: 20px;
}
div#external-events input {
	font-size:16px;
	background:transparent;
}
table#calendar thead input {
	font-size:24px;
}
table#quotes tbody tr:hover, table#production tbody tr:hover {
	background:#0c4d8b;
	color:#FFF;
}
table#quotes tbody tr:hover td i, table#production tbody tr:hover td i {
	color:#FFF;
}
table#production tbody tr:hover td div.pp_bar {
	background-color:#42e5ec;
}
table#production tbody tr:hover td div.prod_prog {
	border-color:rgba(63, 146, 171, 0.8);
}
table#production span.prod_qty {
	font-size:11px;
}
td.dash_jn {
	font-weight:500;
}
div.dash_div div.lm_container {
	left:0px;
}
table.dash_table tbody {
	display:block;
	max-height:400px;
	overflow-y:auto;
}
table.dash_table tbody tr, table.dash_table thead tr {
	display:table;
	width:100%;
	table-layout:fixed;
}
div#calendar_container {
	width: 77%;
    margin: 0px auto;
    margin-top: 30px;
    padding-right: 13%;
	position: relative;
	z-index:0;
}
div#external-events {
	background: linear-gradient(180deg, rgb(204 204 204 / 34%), transparent);
    width: 13%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
	z-index:0;
}
div#external-events div.events {
	padding: 10px;
    margin-top: 40px;
    padding-top: 0px;
    box-sizing: border-box;
    overflow-y: scroll;
    height: 100%;
	z-index:0;
}
div.fc-event.queue {
	margin-bottom:2px;
	position:relative;
	z-index: auto;
	cursor:move;
	background-color: #357fc6;
    border: 1px solid #4587c7;
	line-height: 14px;
	padding: 3px;
}
div.fc-event.queue span.dets {
	margin-top:3px;
	line-height: 13px;
	font-size:10px;
	display:block;
}
div.fc-event.queue:hover {
	background-color: #0c4d8b;
    border: 1px solid #0c4d8b;
}
div.fc-event.queue.q_drag {
	width:11%;
	display:block;
	text-align:left;
}
div#calendar_container div.fc-header-toolbar div.fc-center h2 {
	font-size: 28px;
    font-weight: 200;
    color: #0c4d8b;
}
div.day_hrs {
	padding:2px;
}
div.day_hrs i {
	display:none;
}
a.fc-day-number {
	font-weight:600;
}
tr.inv_highlight, table.bol_details tbody tr.inv_highlight {
	background-color: rgba(11, 189, 74, 0.2);
}
table#report_list tr.inv_highlight:nth-child(even), table.bol_details tbody tr.inv_highlight:nth-child(even) {
	background-color: rgba(11, 189, 74, 0.3);
}
input[name=inventory] {
	width: 14px;
    height: 14px;
}
div#notify_bg {
	height:30px;
	width:30px;
	border-radius:20px;
	cursor:pointer;
	color:#FFF;
	font-weight:600;
}
div#notify_bg.complete {
	background-color: #0da519;
    border: 0px;
}
div#notify_bg.complete i {
	margin-top: 1px;
    font-size: 18px;
}
div#notify_bg.missing {
	background-color:#FF191D;
}
div#notify_bg div.missing_num {
	font-size: 14px;
    padding-top: 6px;
}
tr.rep_foot, table#report_list tr.rep_foot td, tr#rep_foot, table#report_list tr#rep_foot td {
	padding-top:5px;padding-bottom:5px;font-weight:bold;
}
tr.rep_foot, tr#rep_foot {
	text-align:left;
}
tr#rep_foot, table#report_list tr#rep_foot td {
	border-top:2px solid black;
}
div.qc_ops {
	display:none;
}
div.qc_add select, div.qc_add input, div.inv_add select, div.inv_add input {
	margin-bottom:0px;
	width:100%;
}
div.qc_add select, div.inv_add select {
	border:0px;
	border-bottom:1px solid #999;
}
div.qc_add label, div.inv_add label {
  color:#666;
  font-size:14px;
  font-weight: bold;
  position:absolute;
  text-transform: uppercase;
  pointer-events:none;
  left:10px;
  top:9px;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}
div.qc_add input[name=prd_name] ~ label, div.inv_add input[name=prd_name] ~ label {
	top:13px;
}
div.qc_add select:focus ~ label, div.qc_add input:focus ~ label, div.qc_add .not_empty ~ label, div.qc_add input[name=prd_name].not_empty ~ label, div.inv_add select:focus ~ label, div.inv_add input:focus ~ label, div.inv_add .not_empty ~ label, div.inv_add input[name=prd_name].not_empty ~ label {
  left:2px;
  top:-15px;
  font-size:10px;
  color:#0c4d8b;
  font-weight:600;
  text-transform:uppercase;
}
div#price_list div.margin {
	position:absolute;
	left: 9px;
    font-size: 11px;
}
table#report_list tr.ord_head td {
	font-weight:bold;
	padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
}
table#report_list tr.ord_head {
	background-color: #0c4d8b;
    color: #FFF;
}
tr.inv_ordered {
	background-color: rgba(49, 97, 122, 0.32);
}
table.ordered {
	margin: 10px auto;
	border: 1px solid #0c4d8b;
}
table#report_list table.ordered td {
	padding-left: 8px;
    padding-right: 8px;
}
table#report_list table.ordered td:first-child {
	    font-weight: bold;
}
table#report_list tr.ord_table {
	background-color: rgba(224, 224, 224, 0.17);
}
div.qc_add select, div.qc_add input {
	margin-bottom:15px;
	padding: .6rem 1.0rem;
	width:100%;
}
div.qc_add span.srch_cus select, div.inv_add span.srch_cus select {
	margin-bottom:0px;
	padding: 0rem 1.2rem;
	width:auto;
	min-width:60px;
	vertical-align: middle;
	top: 1px;
}
div.qc_add span.srch_cus select[name=qty], div.inv_add span.srch_cus select[name=qty] {
	position: absolute;
    right: 1px;
    border: 0px;
    top: -2px;
    height: 100%;
    border-left: 1px solid #CCC;
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.46);
    border-radius: 0px;
    padding: 0rem .8rem;
}
div.qc_add span.srch_cus select[name=category], div.inv_add span.srch_cus select[name=category] {
	font-size: .8rem;
    font-weight: bold;
	background:transparent;
	margin-top:5px;
	padding: 0rem .1rem;
}
div.qc_add span.srch_gr, div.inv_add span.srch_gr {
    box-sizing: border-box;
    margin: .5%;
    padding: 8px 10px;
    display: block;
    text-align: left;
}
div.qc_add span.srch_fork, div.inv_add span.srch_fork {
    padding-right: 100px;
}
table.transfer_table, table.transfer-go {
	display: block;
    width: 100%;
    margin-bottom: 12px;
    font-size: 12px;
    position: relative;
    border: 1px solid #0c4d8b;
    box-sizing: border-box;
}
div.transfer_title {
	font-weight: bold;
    text-transform: uppercase;
    background: #0c4d8b;
    width: 100%;
    padding: 6px;
    position: relative;
    display: block;
    color: #FFF;
    box-sizing: border-box;
}
tr.transfer_item td {
	font-weight:bold;
	padding: 4px 8px;
}
table.transfer_table select, table.transfer-go select {
	padding: 1px;
    margin: 0px;
    font-weight: bold;
	background:transparent;
}
table.transfer_table tbody tr:nth-child(even) {
	background: rgba(99,99,99,0.1);
}
table.transfer_table thead td, table.transfer-go thead td, table.transfer-return thead td {
	text-transform:uppercase;
	padding:6px 8px 2px;
	text-decoration:underline;
	font-weight:bold;
}
table.transfer_table thead tr, table.transfer-go thead tr, table.transfer-return thead tr {
	background: rgba(49, 97, 122, 0.5);
}
button.admin_act {
	font-weight:bold;
	padding: 10px 20px;
	font-size: 16px;
}
button.admin_act:hover {
	background-color: lightblue;
    border: 1px solid #5EA8BB;
    cursor: pointer;
}
form[name=code_form] div.char {
	font-size:14px;
}
div.warning {
	position: absolute;
    top: 7px;
    left: 1px;
    font-size: 12px;
    color: #6a0000;
}
div.warning i:hover {
	background:transparent;
	color:#CC0003;
}
table.back_orders {
	border:1px solid #CCC;
	padding:10px;
}
table.back_orders td {
	padding:12px;
}
div#inv_table {
    position: relative;
    width: 900px;
	z-index:0;
}
div#inv_table div.td, div#inv_table div.thead div.td {
	display:inline-block;
}
div#inv_table div.thead, div#inv_table div.tbody {
	width:100%;
	display:block;
}
div#inv_table div.thead {
	position: fixed;
    width: inherit;
    margin-top: -40px;
	z-index: 1;
}
div#inv_table.send_inv div.thead, div#inv_table.send_stmt div.thead {
	margin-top: -39px;
}
div#inv_table div.thead div.td {
	color: #9a9a9a;
}
div#inv_table div.tbody div.tr {
	border: 1px solid #cccccc7a;
    margin: 5px 0px;
    border-radius: 5px;
	background-color: #FFF;
    box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.02), 0 0px 4px 0 rgba(0, 0, 0, 0.02);
	overflow: hidden;
}
div#inv_table div.thead div.tr {
	border: 1px solid transparent;
	width:100%;
	background-color: rgba(250,251,253, .95);
	box-sizing: border-box;
}
div#inv_table div.td {
	padding:12px 3px;
	vertical-align: middle;
}
div#inv_table div.thead div.td i {
	position:relative;
	display:inline-block;
	top: -2px;
    margin-left: 3px;
}
div#inv_table div.thead div.td i.clear_all {
	top:4px;
	margin-bottom:5px;
	padding-top:0px;
}
div#inv_table.send_inv div.thead div.td i.clear_all, div#inv_table.send_stmt div.thead div.td i.clear_all {
	top:4px;
	margin-bottom:8px;
	padding-top:8px;
}
div#inv_table div.td.inv_num {
	padding-left:12px;
}
div.inv_num {
	width:9%;
}
div.inv_ops {
	display: inline-block;
    margin-top: 0px;
    position: relative;
}
div#inv_table.send_inv div.inv_ops, div#inv_table.send_stmt div.inv_ops {
	margin-top: -9px;
}
div.s_fields {
	top:9px;
}
div.s_fields.send_inv, div.s_fields.send_stmt {
	display:flex;
	align-items: center;
	justify-content: center;
	height:40px;
	top:0px;
}
div.s_fields.send_inv span.span_so, div.s_fields.send_stmt span.span_so {
	display:inline-block;
	margin-top:0px;
	margin-bottom:0px;
	position:relative;
	top:6px;
	margin-left:10px;
}
div#all_orders.invoices div.inv_cn {
	width:22%;
	flex-wrap:wrap;
}
div#all_orders.invoices div#inv_table.send_inv div.inv_cn, div#all_orders.invoices div#inv_table.send_stmt div.inv_cn {
	width:29%;
}
div#all_orders div.inv_cn {
	width:22%;
}
span.sub_email {
	font-size: 10px;
    color: lightslategray;
}
div.inv_created {
	width:9%;
}
div.inv_dd {
	width:7%;
}
div.inv_total {
	width:7.7%;
}
div.inv_act {
	font-weight:bold;
}
div.cl_sort {
	cursor:pointer;
}
div.cl_sort:hover {
	text-decoration:underline;
}
div#inv_table div.tbody div.tr.selected {
	border: 1px solid #0c4d8b;
	background: rgb(12 77 139 / 7%);
}

div.td.paid {
	color:#006602;
}
div.td.pending {
	color:#6b6a67;
}
button.pay, button.inv_view.email {
	border-radius:15px;
	padding: 7px 11px 6px 11px;
	color:#0c4d8b;
	background-color: rgba(0, 51, 102, 0.22);
	border:0px;
	font-size:12px;
	font-weight:bold;
	cursor:pointer;
	width:72px;
	text-align: center;
    display: inline-block;
	box-sizing: border-box;
	margin-left:5px;
}
div#pay_all button.pay {
	width: auto;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 13px 6px 12px;
	background-color: transparent;
    border: 1px solid #7aacdc;
}
div#pay_all button.pay:hover {
	background: #dff0ff;
    border: 1px solid #7aacdc;
    color: #0c4d8b;
}
div#inv_table div#pay_all button.pay i {
	top:0px;
	margin-left:0px;
}
div#inv_table.send_inv div#pay_all, div#inv_table.send_stmt div#pay_all {
	top:9px;
}
div#pay_all {
	top:1px;
}
button.pay:disabled, button.pay:disabled:hover {
	background-color: rgb(90 97 105 / 22%);
	color: #6d8093;
	cursor:not-allowed;
}
span.paid, span.pending {
	border-radius:15px;
	padding: 7px 11px 6px 11px;
	color:#006602;
	border:1px solid rgba(0, 102, 2, 0.22);
	font-size:12px;
	font-weight:bold;
	width:70px;
	text-align: center;
    display: inline-block;
	box-sizing: border-box;
	margin-left:5px;
}
span.pending {
	color:#6b6a67;
	border:0px;
	width:auto;
	margin-left:0px;
	padding: 7px 0px 7px 3px;
}
div.tr.pending {
	border-color:rgb(107, 106, 103, 0.4) !important;
}
span.paid.credit {
	border-color: rgb(128 128 128 / 38%);
    color: rgb(90 90 90 / 89%);
	padding: 6px 11px 5px 11px;
}
div.td span.paid.credit span {
	padding-left: 0px;
}
span.paid_confirm {
	border-radius:15px;
	color:#006602;
	border:1px solid rgba(0, 102, 2, 0.22);
	font-weight:bold;
	text-align: center;
    display: inline-block;
	box-sizing: border-box;
	font-size: 24px;
    width: auto;
    padding: 24px 18px;
    border: 0px;
}
button.pay:hover {
	color:#0c4d8b;
	background-color: rgba(0, 51, 102, 0.42);
}
button.view, button.portal-photos, button.inv_view.print {
	border-radius: 15px;
    padding: 7px 11px 6px 11px;
    color: #006602;
    background-color: rgba(0, 102, 2, 0.22);
    border: 0px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
	width: 69px;
}
button.view:hover {
	color:#006602;
	background-color: rgba(0, 102, 2, 0.42);
}
button.portal-photos {
	width: 32px;
	background-color:transparent;
}
button.portal-photos:hover {
	color:#006602;	
}
button.upload, button.snd_inv, button.snd_receipt, button.print_rcpt, button.snd_history, button.tic_photos, button.update_inv, button.del_inv {
	padding: 0px;
    color: rgba(143, 13, 6, 0.8);
    background-color: transparent;
    border: 0px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 8px;
	vertical-align: middle;
}
button.snd_inv, button.update_inv, button.snd_history, button.tic_photos, button.del_inv {
	margin:2px;
}
button.tic_photos, button.inv_view {
	margin-right: 5px;
}
span.span_send_inv button.inv_view.settings {
    padding: 0px;
    color: gray;
    border: 0px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    margin-left: 3px;
}
span.span_send_inv button.inv_view, span.span_send_stmt button.inv_view {
	width:auto;
	background:transparent;
	border: 1px solid #e0e0e0;
    color: gray;
}
button.inv_view.print, button.inv_view.email {
	padding:6px 11px;
}
span.span_send_inv {
	display:flex;
}
button.inv_view.print.selected {
	border:1px solid #70a558;
	background: rgb(234 254 234);
	color: #006602;
}
button.inv_view.print:hover {
	border:1px solid #70a558;
	color: #006602;
}
button.inv_view.email.selected {
	background: #dff0ff;
    border: 1px solid #7aacdc;
    color: #0c4d8b;
}
button.inv_view.email:hover {
    border: 1px solid #7aacdc;
    color: #0c4d8b;
}
button.rm_att {
	position:relative;
}
button.upload:hover {
	color:rgba(143, 13, 6, 1.0);
}
button.snd_history, button.tic_photos, button.update_inv, button.snd_inv, button.snd_receipt, button.print_rcpt, button.del_inv {
	color:rgb(0 51 102 / 76%);
}
button.snd_history:hover, button.update_inv:hover, button.tic_photos:hover {
	color:rgb(0 51 102);
}
button.snd_inv:hover, button.snd_receipt:hover {
	color:rgb(4 95 4);
}
button.del_inv:hover {
	color:darkred;
}
div.j_form {
	padding:15px 20px;
}
button.upload i, button.rm_att i, button.snd_inv i, button.snd_receipt i, button.snd_history i, button.del_inv i, button.tic_photos i {
	padding:1px 1px 2px;
}
div.td button.view i, div.td button.pay i, div.td span.paid i, div.td span.pending i {
	margin:0px;
	padding:0px;
}
div.td button.view span, div.td button.pay span, div.td span.paid span, div.td span.pending span, button.inv_view span {
	margin:0px;
	padding-left:5px;
}
div#butt_container {
	background-color: #FFF;
    padding: 15px 0px;
    margin-bottom: 10px;
	box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.2), 0 0px 3px 0 rgba(0, 0, 0, 0.05);
	position: fixed;
    right: 0;
    left: 0;
	z-index: 4;
}
div.jBox-content #send_receipt i, div.jBox-content #send_invoice i {
	margin-right: 0px;
    max-width:none;
}
span.first_time {
	display:block;
	margin-top:25px;
}
button#submit1.waiting {
	background: rgba(134, 208, 209, 0.4);
    background: -webkit-linear-gradient(90deg, #e9f2fa 0%, rgb(0 179 255 / 0%) 33%, #e9f2fa 66%, rgb(0 179 255 / 0%) 100%);
    background: -moz-linear-gradient(90deg, #e9f2fa 0%, rgb(0 179 255 / 0%) 33%, #e9f2fa 66%, rgb(0 179 255 / 0%) 100%);
    background: -ms-linear-gradient(90deg, #e9f2fa 0%, rgb(0 179 255 / 0%) 33%, #e9f2fa 66%, rgb(0 179 255 / 0%) 100%);
    background: -o-linear-gradient(90deg, #e9f2fa 0%, rgb(0 179 255 / 0%) 33%, #e9f2fa 66%, rgb(0 179 255 / 0%) 100%);
    background: linear-gradient(90deg, #e9f2fa 0%, rgb(0 179 255 / 0%) 33%, #e9f2fa 66%, rgb(0 179 255 / 0%) 100%);
    background-size: 400% 400%;
    -webkit-animation: gradient 2s linear infinite;
    -moz-animation: gradient 2s linear infinite;
    animation: gradient 2s linear infinite;
}
span.first_time a {
	color: #195894;
}
span.first_time.waiting a, span.first_time.waiting, span.first_time.waiting a:hover {
	color:gray;
	cursor:default;
	text-decoration: none;
}
span.first_time a:hover {
	color: #104577;
	text-decoration:underline;
	cursor:pointer;
}
i.day_notes {
	margin-right:5px;
	margin-left:3px;
}
div.srch_cus {
	display:block;
	padding:5px;
	margin:3px auto;
	width:80%;
	font-weight: bold;
	box-sizing:content-box;
	cursor:pointer;
	border: 1px solid #a4bfd9;
    border-radius: 5px;
}
div.srch_cus:hover {
	border-color:#306495;
}
div.select_cus {
	display:block;
	padding:5px;
	margin:3px auto;
	width:80%;
	font-weight: bold;
	box-sizing:content-box;
	cursor:pointer;
	border: 1px solid #a4bfd9;
    border-radius: 5px;
}
select[name=prep_email].no_style {
	border-bottom:1px solid #CCC;
	font-size:12px;
	margin-top:7px;
}
button.rm_att {
	color: #FFF;
	padding: 0px;
    border: 0px;
	vertical-align: middle;
	margin-left: 8px;
	background: transparent;
	top: -1px;
}
button.rm_att i {
	display:none;
	font-size: 18px;
}
button.rm_att img {
	display:block;
	max-height:23px;
}
button.rm_att:hover img {
	display:none;
}
button.rm_att:hover i {
	display:block;
	color:rgba(102, 0, 0, 0.82);
	cursor:pointer;
}
.progress-ring__circle {
  transition: 0.35s stroke-dashoffset;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
input[name=progress-ring] {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 80px;
}
input[name=sp_draw] {
	vertical-align: middle;
    margin-top: 0px;
    width: 15px;
    height: 15px;
}
table#report_list div.cl_sort i {
	margin-left:2px;
	display:inline-block;
	top: -2px;
    position: relative;
}
div.hrs_file {
	display:inline-block;
	font-size:12px;
	width:75%;
	text-align: center;
}
div.hrs_file input {
	font-size: 14px;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    border: 1px dotted #CCC;
}
div.rep_content input.inv_input, div.rep_content select.inv_input, div.rep_content button.inv_input {
	text-align:center;
	font-size:12px;
}
div.rep_content select.inv_input[name=reason] {
	text-align:left;
}
div.rep_content input.form_input, div.rep_content select.form_input, div.rep_content button.form_input {
	text-align:left;
	font-size:12px;
}
div.rep_content button.inv_input {
	cursor:pointer;
	margin-left:4px;
	font-size:11px;
}
div.rep_content button.inv_input:hover {
	background-color: lightblue;
    border: 1px solid #5EA8BB;
}
table#report_list tr.inv_q td, table#report_list tr.inv_form td {
	font-size:12px;
	padding-top: 5px;
    padding-bottom: 5px;
}
tr.inv_q i.delete_hover, tr.inv_form i.delete_hover, tr.inv_form i.dup_hover, tr.inv_form i.link_hover {
	margin-right:5px;
	margin-left:3px;
	font-size:14px;
}
div.form_link {
	display: block;
    text-align: left;
    width: auto;
    padding: 2px;
    font-weight: bold;
}
div.form_link i {
	font-size:14px;
	margin-right:6px;
}
div.add_button {
	padding:10px;
}
div.inv_cn i, div.inv_jn i, div.inv_dd i {
    margin-right:5px;
}
table#report_list thead {
	padding-top:124px;
}
div.drag i, div.dragged i, div.proj i {
	margin-right:5px;
}
div.prd_name i {
	max-width:none;
}
div.prd_name span {
	font-weight: bold;
}
span.t_type {
	font-size:14px;
	font-weight:normal;
	display:block;
}
span.t_caps {
	font-size:11px;
	font-weight:normal;
	display:block;
}
td.emp_name:hover span.t_caps {
	display:block;
}
td.emp_name select {
	font-weight:normal;
	padding-left:0px;
}
table#report_list tbody tr.disabled, table#report_list tbody tr.disabled, table#report_list tbody tr.disabled select, table#report_list tbody tr.disabled td.sched_date, table#report_list tbody tr.disabled td.pour_date, table#report_list tbody tr.disabled td.cust_ready, table#report_list tbody tr.disabled td.del_date input, table#report_list tbody tr.disabled td.comments input, table#report_list tbody tr.disabled td.need_date input, table#report_list tbody tr.disabled td.tent_date input, table#report_list tbody tr.disabled td.tent_date, table#report_list tbody tr.disabled span.bar {
	color: #c7c7c7;
    background: transparent;
	border:0px transparent;
}

div.jBox-content .trumbowyg-button-pane button {
	display: block;
    position: relative;
    width: 35px;
    height: 35px;
    padding: 1px 6px !important;
    margin-bottom: 1px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    background: none;
    -webkit-transition: background-color 150ms, opacity 150ms;
    transition: background-color 150ms, opacity 150ms;
	margin-right:0px;
	top:auto;
	color:inherit;
	border-radius:0px;
	float:none;
	margin-top: 0px;
    text-transform: none;
    font-weight: normal;
    font-size: 12px;
}

div.jBox-content .trumbowyg-dropdown-foreColor button, div.jBox-content .trumbowyg-dropdown-backColor button {
	display: block;
    position: relative;
    float: left;
    text-indent: -9999px;
    height: 20px;
    width: 20px;
    border: 1px solid #333;
    padding: 0;
    margin: 2px;
}
table#report_list tr.clicker td {
	cursor:pointer;
}
div.bt_div {
	cursor:pointer;
	padding:12px 15px;
	background-color:#048e34;
}
div.bt_div:hover {
	background:#047d2e;
}
div.jBox-content div.bt_div i {
	font-size:22px;margin:0px;padding:0px;color:#FFF;max-width:none;vertical-align:middle;
}
#ao_table div.drag.task span.user_name, #ao_table div.proj.task span.user_name, #ao_table div.dragged.task span.user_name {
	margin-top: 3px;
    display: block;
}
div.day_scroll {
	position: relative;
    margin-top: -56px;
    font-size: 24px;
	width:500px;
	margin-bottom:10px;
}
div.cal_div div.ui-datepicker-inline {
	margin:0px auto;
}
#ao_table div.drag span.tic, #ao_table div.proj span.tic, #ao_table div.dragged span.tic {
	line-height:16px;
	text-align:left;
}
table#report_list tr.stype_head, table#report_list tr.stype_head:hover {
	padding:10px 3px;
	font-weight:bold;
	font-size:12px;
	color:#FFF;
	background-color:#0c4d8b;
}
table#report_list tr.stype_head td, table#report_list tr.stype_head:hover td {
	padding:10px 3px;
	font-weight:bold;
	font-size:12px;
	background-color:#0c4d8b;
}
div#dash_map {
	width:100%;
	height:90.6%;
	margin:0px auto;
	box-sizing: border-box;
    top: 70px;
}
div#dash_map.tmt {
	height:85%;
}
span.map_content {
	display:flex;
	position:relative;
	margin-bottom:3px;
	align-items:center;
	font-size:12px;
	column-gap:5px;
}
span.map_content.dest {
	font-size:12px;
	font-weight:bold;
}
span.map_content.driver {
	font-size:16px;
	font-weight:bold;
	cursor:pointer;
	margin-bottom:0px;
}
div.truck_info {
	text-align:left;
}
div.truck_info div.more_info {
	display:none;
	margin-top:3px;
}
i.mi {
	-moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
	margin-left:5px;font-size:14px;
	margin-right:10px;
	cursor:pointer;
}
i.mi:hover {
	color:#0c4d8b;
}
i.mi.down{
    -moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
}
div.open_map {
	position: absolute;
    margin-left: -13px;
    margin-top: 17px;
    font-size: 14px;
    cursor: pointer;
}
img.driver_circle_thumb {
	border-radius:25px;
	width:30px;
	height:30px;
	vertical-align: middle;
	margin-right:2px;
}
div.map_progress {
	top: 70px;
    position: relative;
    font-size: 1.2em;
    padding: 10px;
	font-weight:normal;
}
div.map_progress table th {
	font-weight:normal;
}
div.map_progress span.time_remain, div.map_progress span.dist_remain {
	font-weight:bold;
}
div.adj_del_qty i {
	display:none;
	position:absolute;
	margin-top:2px;
}
div.adj_del_qty i.more {
	margin-left:10px;
}
div.adj_del_qty i.more:hover {
	color:#0c4d8b;
}
div.adj_del_qty i.less {
	margin-left:-22px;
}
div.adj_del_qty i.less:hover {
	color:red;
}
div.adj_del_qty:hover i {
	display:inline-block;
}
div#dash_map.view_only {
	position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 20000;
    left: 0px;
    top: 0px;
}
table#dt_table input.dt_qty.no_style {
	border-bottom:1px solid #999;
	font-size:16px;
	text-align:center;
	width:100%;
}

td.bo_title {
	border: 1px solid #9a0000;
    padding: 10px;
    font-weight: bold;
}
div.bo_box {
	vertical-align:middle;
	font-size:12px;
	display:inline-block;
	margin-left:8px;
	position: relative;
}
div.vis_bo {
	position: relative;
    border-radius: 20px;
    border: 1.5px solid #d7a2a2;
    color: #9f2626;
    text-align: center;
    box-sizing: border-box;
    padding: 0px 4px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    top: -.5px;
	min-width: 17px;
}
b.vert {
	vertical-align: middle;
}
div.bo_box span {
	display:none;
	font-size:11px;
	font-weight:normal;
	vertical-align: middle;
	margin-left:5px;
}
div.bo_box:hover span {
	display:inline-block;
}
div.bo_box input {
	min-width: auto;
	width:auto;
	margin:0px;
	vertical-align: middle;
}
span.rs_fee {
	display:none;
}
span.rs_fee input[name=restock] {
	font-size: 12px;
    margin-left: 2px;
    text-align: right;
}
div.pass_valid {
	display:none;
}
div.pass_item i {
	margin-right:5px;
	width: 12px;
}
div.pass_item {
	color:green;
}
div.pass_item.fail {
	color:red;
	background-color:transparent;
}
div.pass_item span.icon {
	text-align: center;
}
table#dt_table tr:not(.moh) td.dt_inv, table#dt_table td.sqft {
	display:none;
}
table#dt_table tr.moh td.dt_inv {
	display:table-cell;
}
table#dt_table tr.moh td.dt_tot {
	display:none;
}
span.ti_span {
	display:block;
}
div#cus_list div.pr_details {
	margin-top:3px;
	cursor:auto;
}
div.pr_details div.pr_field {
	display:inline-block;
	position:relative;
	margin-right:2px;
}
div.pr_details div.pr_cont {
	display:inline-block;
	margin-top:25px;
	position:relative;
	margin-right:1%;
	min-width: 32%;
	box-sizing: border-box;
}
div.pr_details div.pr_cont.bot_pad {
	margin-bottom:15px;
}
div.pr_details div.pr_field label {
	top:-14px;
	left:0px;
}
div.pr_details div.pr_field input, div.pr_details div.pr_field select {
	background:transparent;
	border:0px solid;
	border-bottom: 1px solid #CCC;
  padding: 0px 2px;
	vertical-align: middle;
	margin: 0px;
}
div.pr_details div.pr_field input.no_bar, div.pr_details div.pr_field select.no_bar {
	border-bottom: 0px solid #CCC;
	font-weight: 100;
  font-size: 20px;
}
div.pr_cont span {
	vertical-align: middle;
    font-size: 12px;
}
div.lpb_only span {
	font-weight:bold;
	text-decoration: underline;
}
div.pr_details div.pr_field input[type=checkbox] {
	width:16px;
	height:16px;
}
div.pr_details div.pr_field input[type=checkbox] ~ label {
	top:0px;
	margin-left:3px;
	position:relative;
	vertical-align: middle;
}
span.srch_cus.pr_select:hover, span.srch_cus.pr_select {
	background-color: #e9f9ff;
  border: 1px solid #5EA8BB;
}
div#cus_list span.srch_cus {
    border-radius: 3px;
}
div.reco_preview {
	width: 400px;
    margin-top: 15px;
    text-align: left;
    max-height: 400px;
    overflow-y: scroll;
}
table#dt_table tr.pallet {
	display:none;
}


span.pm_radio {
	vertical-align: middle;
	margin-right: 5px;
}
div.bank-row.confirmed span.pm_radio {
	margin-right: 7px;
}
div.bank-row.confirmed div.bank_image {
	margin-right: 11px;
}
div.saved-card {
	display:inline-block;
	vertical-align: middle;
	margin-left: 2px;
}
div.card-row, div.bank-row, div.check-row {
	padding: 10px;
	border-style: none;
	background-color: #ffffff;
	box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08), inset 0 1px 0 #FFF;
	border-radius: 4px;
	margin-bottom:7px;
	text-align: left;
	position: relative;
}
div.card-row, div.check-row, div.bank-row.confirmed {	
	display: flex;
    align-items: center;
}
div.payments div.form-row {
	gap: 0 3px;
}
div.payments div.card-row:hover {
	background-color: #c8dbff1a;
	border-color:#0c4d8b;
}
div.rm_card, div.up_card {
	position: absolute;
	right: 13px;
	top: 12px;
	font-size: 14px;
}
div.form-group div.rm_card, div.form-group div.up_card {
	top: 11px;
}
div.form-group span.pm_radio input {
	margin-top:0px;
}
div.rm_card i, div.up_card i {
	max-width:none;
	cursor:pointer;
	margin: 0px;
}
div.rm_card i:hover {
	color:red;
}
div.up_card {
	right: 30px;
	top: 12px;
	font-size: 12px;
}
div.up_card i:hover {
	color:#0c4d8b;
}
div.saved-card div.card_image, div.bank-row div.bank_image, div.check-row div.check_image {
	width: 24px;
	height: 15px;
	background-size: cover;
	display: inline-block;
	margin-right: 7px;
	vertical-align: middle;
}
div.bank-row div.bank_image {
	width: 12px;
}
div.bank-row.confirmed span.bank_span {
	width: 85%;
    display: inline-block;
}
div.check-row div.check_image {
	margin-right:0px;
	margin-left:2px;
}
div.jBox-content div.new_bank_info input {
	font-weight:normal;
}
div.jBox-content div.bank-element div.bank_image i, div.jBox-content div.check-element div.check_image i {
    max-width:none;
    font-size: 14px;
    color: #bbbbbb;
}
div.jBox-content div.bank-row.confirmed div.bank-element div.bank_image i, div.jBox-content div.check-row div.check-element div.check_image i {
    color: #0c4d8b;
}
div.saved-card span, div.bank-row span, div.bank-element, div.check-row span, div.check-element {
	vertical-align: middle;
}
div.bank-element, div.check-element {
    max-width: 85%;
    display: inline-flex;
	align-items: center;
}
div.bank-row.confirmed div.bank-element {
	width:100%;
}
div.saved-card div.card_image {
	background-image:url('images/cc_logos/generic.png');
}
div.saved-card.visa div.card_image {
	background-image:url('images/cc_logos/visa.png');
}
div.saved-card.mastercard div.card_image {
	background-image:url('images/cc_logos/mastercard.png');
}
div.saved-card.amex div.card_image {
	background-image:url('images/cc_logos/amex.png');
}
div.saved-card.discover div.card_image {
	background-image:url('images/cc_logos/discover.png');
}
div.saved-card.jcb div.card_image {
	background-image:url('images/cc_logos/jcb.png');
}
button.pm_save {
    font-size: 12px;
    border: 1px solid #0c4d8b;
    background-color: transparent;
		padding: 6px 9px 6px 9px;
    margin-right: 0px;
    margin-top: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #0c4d8b;
    border-radius: 80px;
    display: inline-block;
    text-align: center;
		transition: all .2s ease-in-out;
		cursor:pointer;
}
button.pm_save span {
  margin-left:5px;
}
button.pm_save:enabled:hover {
  border: 1px solid green;
  background-color: green;
  color:white;
}
button.pm_save:disabled {
  cursor:default;
  background-color: transparent;
  color: rgb(12 77 139 / 41%);
  border: 1px solid rgb(12 77 139 / 41%);
}
div#card-element {
	width: 88%;
	display: inline-block;
	vertical-align: middle;
}

div#card-errors {
	margin-top: 10px;
	color:red;
}

div.ord_totals {
	display:inline-block;
    font-weight:bold;	
}

div.ord_totals {
    display:none;
}

td.top_bord {
    border-top: 1px solid #999;   
}
tr#total i {
    cursor:pointer;
}
table.bol_details tbody tr:nth-child(even) {
    background-color: rgba(180,190,199,0.23);
}
div.current_bol a {
	padding: 7px 12px;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0c4d8b;
}
div.current_bol a:hover {
	color:white;
	background-color:#0c4d8b;
	text-decoration: none;
}
div.inv_hist_cont {
	box-sizing:border-box;
	width:100%;
	text-align:center;
	background: rgb(12 77 139 / 17%);
}
div.inv_hist {
	box-sizing:border-box;
	text-align:left;
	margin:0px auto;
	display:inline-block;
	padding:6px;
}
div.inv_hist_row {
	box-sizing:border-box;
	text-align:left;
	padding:2px;
}
.jBox-Modal.no_pad .jBox-content {
    padding: 0px;
}
div.dc_content div.prdi_items {
	background:none;
	border:0px solid rgb(116 116 116 / 36%);
	font-size: 12px;
}
div.dc_content div.prdi_items div.psrch_res span.srch_cus {
	min-width:97%;
	padding: 1% 1.5%;
}
div.dc_content .prdi_items:hover {
	background-color:none;
	border:0px;
}
table#reco_preview i {
	max-width:none;
	font-size:12px;
	padding: 2px 6px;
	height:auto;
	margin:0px;
}
table#reco_preview thead {
	font-weight:bold;
}
table#reco_preview tbody tr.new_day td {
	padding-top:6px;
}
table#reco_preview thead tr {
	background: #0c4d8b; /* rgba(49, 97, 122, 0.5);*/
	color:white;
}
table#reco_preview thead tr td {
	padding: 5px 3px;
}
table#reco_preview tr.caution {
	background: rgb(255 171 18 / 47%);
}
table#reco_preview tr.error {
	background: rgb(193 0 0 / 52%);
}
table.dlo_table {
	padding: 15px;
    width: 700px;
	left: 30px;
    position: relative;
}
table#dt_table tr.grp.selected td, table#dt_table tr.grp.cd1.selected td {
	background-color: rgb(255 227 164 / 85%);
}
tr#dlo {
	background-color: rgb(247 229 170 / 58%);
}
i.dlo_caret {
  	-moz-transition: transform .5s;
  	-webkit-transition: transform .5s;
  	transition: transform .5s;
	font-size: 12px;
	color: #0c4d8b;
}
div.qb_int.terms_only {
	width:350px;
	display:inline-block;
}
div#ccfee_amt {
	margin-top:10px;
	font-weight:bold;
	font-size: 11px;
}
i.clear_all {
	display:inline-block;
	font-size: 18px;
    vertical-align: middle;
	cursor:pointer;
}
div#inv_table div.thead div.td i.clear_all {
	display:none;
}
i.clear_all:hover {
	color:red;
}
div#inv_table div.cl_sort {
	display: inline-block;
    vertical-align: middle;
}
i.link_order {
	margin-left:10px;
	font-size:11px;
	vertical-align: middle;
	color: #0c4d8b;
	cursor:pointer;
}
i.link_order:hover {
	color: #103252;
}
div#cat-notes {
    border: 1px solid rgb(204 0 0 / 40%);
    background: #fafbfc;
	margin:0px auto;
	margin-top: 14px;
	margin-left:10px;
	display:inline-block;
	padding: 4px 10px;
	border-radius: 5px;
	color:#9e232e;
	font-size:.9rem;
	max-width:40%;
	text-align:center;	
}
.no-tent-date {
	background-color:orange;
}
button.pay_rpt i {
	font-size:16px !important;
	color: rgb(0 51 102 / 76%) !important;
}
button.pay_rpt {
	margin-left:4px !important;
}
div.clear_all {
	float:right;
}
div.clear_all i {
	cursor:pointer;
}
div.tt-ops button {
	border:1px solid;
	margin-top:0px;
}
div.tt-ops button:disabled, div.tt-ops button:disabled:hover {
	color: gray;
	background-color:transparent;
	cursor:default;
}
div.qc_add input.transfer_input {
	border-bottom: 1px solid #999;
    width: auto;
    padding: 0.2rem 0rem;
    font-size: 1rem;
}
div.transfer-ticket, div.transfer-ticket-list {
	position:relative;
	display:inline-block;
	margin-top: 10px;
}
div.transfer_loading {
	display:none;
	width: 100%;
    font-size: 8rem;
	padding: 3rem;
    box-sizing: border-box;
}
div.transfer_loading i {
	margin: 0px;
    max-width: none;
    color: #d7d7d7;
    padding: 0px;
}
div.ext-rebar {
	background: url(images/svg/ext-rebar.svg);
	width: 117px;
    height: 37px;
    background-size: contain;
    background-repeat: no-repeat;
    left: 167px;
    top: -51px;
    position: absolute;
}
div.ext-rebar-arrow {
	background:url(images/svg/rebar-arrow.svg);
	width: 120px;
    height: 55px;
    background-size: contain;
    background-repeat: no-repeat;
    top: -33px;
    left: 152px;
    position: absolute;
}
div.pvc-cam-arrow {
    background: url(images/svg/pvc-cam-arrow.svg);
    width: 118px;
    height: 53px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 68px;
    left: -118px;
    position: absolute;
}
div.ext-rebar-div, div[name=conduit], div[name=rebar], select[name=b_ring], select[name=con_dist], select[name=jbolts], input[name=j_dist] {
	z-index: 5;
}
div.ground-wire {
    background: url(images/svg/ground-wire.svg);
    width: 360px;
    height: 370px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 45px;
    position: absolute;
    top: -370px;
}
img.report-ticket-photo {
	max-height:35px;
	margin: 0px 1px;
}
img.img-popup {
	max-width:570px;
	max-height:570px;
	height:100%;
}
div.del_email_check div.intro_div {
	font-size: 14px;
    margin-bottom: 15px;
    line-height: 20px;
}
div.del_email_check div.contact_select {
	display:inline-block;
}
div.del_email_check div.contact_select span.select2-selection {
	border: 1px solid rgb(12 77 139 / 38%);
}
div.del_email_check div.contact_select span.select2-selection__rendered, div.del_email_check div.contact_select .select2-container--default .select2-selection__placeholder {
	color: #0c4d8b;
    font-weight: bold;
}
span#search_qbcategory span.select2-container--default .select2-selection, span#search_qbcategory input {
	border:0px;
}
span#search_qbcategory span.select2-container--default .select2-selection {
	border-bottom:1px solid #999;
	border-radius:0;
}
span.select2-container {
	z-index: 10000;
}
div#qb_err svg {
	opacity:0.5;
	margin:10px auto;
	height:100px;
	display:block;
}
div#qb_err svg path {
	fill: rgb(0, 0, 0);
}
div#send_inv.send_inv, div#send_stmt.send_stmt {
	border: 1px solid #97c99b;
    border-radius: 30px;
    background: #ddf6df;
}
div#send_inv.send_inv:hover, div#send_stmt.send_stmt:hover {
	border: 1px solid lightgray;
    background: #ebebeb;
	color:gray;
}
span.inv_loading {
	margin-left:8px;
	position:relative;
	display:inline-block;
}
div.live_inv.inv_loading {
	color:#CCC;
}

tr.tax_totals td {
	border-top: 1px dashed #666;
}

div.gm-style-iw-t div.gm-style-iw {
	display:flex;
	align-items: center;
	flex-direction: row-reverse;
}
div.gm-style-iw-chr {
	display:flex;
    max-width: 50px;
    margin-left: -12px;
}
div.gm-style-iw-d {
	overflow:hidden !important;
	padding-top:10px;
	padding-bottom:10px;
}
div.pr_button {
	display:inline-block;
	margin-right:8px;
}
div.pr_buttons {
	display:flex !important;
	align-items:center;
	gap: 10px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 0rem) {
	body {
		padding:0px;
	}
	div#menu {
		display:none;
    	width: 165px;
		height:auto;
		left:-165px;
		right:0;
	}		
    div#all_orders.invoices div#inv_table.send_inv div.inv_act, div#all_orders.invoices div#inv_table.send_stmt div.inv_act {
        width:7.5%;
    }
    div#all_orders.invoices div.inv_act {
        width:24.5%;
    }
    div#all_orders div.inv_act {
        width:21%;
    }	
    div#all_orders.invoices div.inv_jn {
        width:25%;
    }
    div#all_orders.invoices div#inv_table.send_inv div.inv_jn, div#all_orders.invoices div#inv_table.send_stmt div.inv_jn {
        width:35%;
    }
    div#all_orders div.inv_jn {
        width:28%;
    }
	div#order_buttons {
		width:95%;
	}
	div#all_orders {
		width:95%;
		max-height:none;
		overflow:visible;
		overflow-y:visible;
	}
	div#inv_table {
		padding-top:80px;
		width:100%;
	}
	table#table2.acc_table {
		padding-top:80px;
		width:100%;
	}
	div#inv_table div.thead {
		display:none;
	}
	div#m_open {
		display:inline-block;
	}
	div#inv_table div.td {
        display: inline-flex;
        min-width: 48%;
		padding: 6px 3px;
	}
	div#inv_table div.td.inv_act {
        display: inline-block;
	}
	div#inv_table div.tbody div.tr {
		padding: 10px;
	}
	div#inv_table div.td.inv_num {
		padding: 6px 3px;
		font-weight:bold;
		font-size:20px;
	}
	div.inv_cn i, div.inv_jn i, div.inv_dd i {
		display:inline-block;
	}
	div#inv_table div.td.inv_total {
		font-weight:bold;
		font-size:14px;
	}
	div#ord_form {
		width:100%;
	}
	div#notify_content, div#notify_content div.n_header {
		width:90%;
		max-width:650px;
	}
	div#notify_content {
		left:0;
	}
	div.s_fields {
		width:99%;
		text-align:center;
		float:none;
		clear:both;
	}
	span.group {
		margin-top: 10px;
	}
	div#butt_container {
		padding-left:0px;
	}
	div#mob_head {
		display:inline-block;
	}
	div#page_title i {
		display:none;
	}
	div.lm_container {
        left: 0;
        border-radius: 8px;
        padding: 6px;
        margin-bottom: 10px;
		margin-top:10px;
        background-color: transparent;
        color: gray;
    	border: 0px solid rgba(128, 128, 128, 0.17);
	}
	div.lm_container:hover {
		background-color: #038309;
        color: #FFF;
	}
	div#load_all {
		display:none;
	}
	table#ao_table {
		width:100%;
		float:none;
	}
	div#notify, div#send_inv, div#send_stmt, div#search, div#mess, div#go_dash_map, div#new_quote, div#new_so, div#new_stock, div#load_all, div#m_open, div#scan_item, div#transfer, div#excel, div#new_cus, div#print_rep, div#bt_down {
		top:0px;
	}
}

@media only screen and (min-width: 40rem) {
	body {
		padding:0px;
	}
	div#menu {
		display:none;
    	width: 165px;
		height:auto;
		left:-165px;
		right:0;
	}
	div#order_buttons {
		width:95%;
	}
	div#all_orders {
		width:95%;
		max-height:none;
		overflow:visible;
		overflow-y:visible;
	}
	div#inv_table {
		padding-top:85px;
		width:100%;
	}
	table#table2.acc_table {
		padding-top:85px;
		width:75%;
	}
	div.rep_content {
		padding-top:120px;
	}
	div#inv_table div.thead {
		display:none;
	}
	div#m_open {
		display:inline-block;
	}
	div#inv_table div.td {
        display: inline-flex;
        min-width: 45%;
		padding: 6px 3px;
	}
	div#inv_table div.td.inv_act {
        display: inline-block;
	}
	div#inv_table div.tbody div.tr {
		padding: 10px;
	}
	div#inv_table div.td.inv_num {
		padding: 6px 3px;
		font-weight:bold;
		font-size:20px;
	}
	div#inv_table div.td.inv_total {
		font-weight:bold;
		font-size:14px;
	}
	div.inv_cn i, div.inv_jn i, div.inv_dd i {
		display:inline-block;
	}
	div#ord_form {
		max-width:100%;
	}
	div#notify_content, div#notify_content div.n_header {
		width:70%;
		max-width:650px;
	}
	div#notify_content {
		left:0;
	}
	div.s_fields {
		width:99%;
		text-align:center;
		float:none;
		clear:both;
	}
	span.group {
		margin-top: 0px;
	}
	div#page_title i {
		display:none;
	}
	div#butt_container {
		padding-left:0px;
	}
	div#mob_head {
		display:inline-block;
	}
	div.lm_container {
        left: 0;
        border-radius: 8px;
        padding: 6px;
        margin-bottom: 10px;
		margin-top:10px;
        background-color: transparent;
        color: gray;
    	border: 0px solid rgba(128, 128, 128, 0.17);
	}
	div.lm_container:hover {
		background-color: #038309;
        color: #FFF;
	}
	div#load_all {
		display:inline-block;
	}
	table#ao_table {
		width:850px;
	}
	div#notify, div#send_inv, div#send_stmt, div#search, div#mess, div#go_dash_map, div#new_quote, div#new_so, div#new_stock, div#load_all, div#m_open, div#scan_item, div#transfer, div#excel, div#print_rep, div#new_cus, div#bt_down {
		top:0px;
	}
}

@media only screen and (min-width: 70rem) {
	body {
		padding-left:165px;
	}
	div#menu {
		display:block;
		width: 165px;
		height:100%;
		left:0px;
	}
	div#order_buttons {
		width:900px;
	}
	div#all_orders {
		width:900px;
		overflow:hidden;
		overflow-y:auto;
	}
	div#all_orders.invoices {
		width:940px;
		overflow:hidden;
		overflow-y:auto;
	}
	div#inv_table {
		padding-top:110px;
		width:900px;
	}
	div#all_orders.invoices div#inv_table {
		width:940px;
	}
	table#table2.acc_table {
		padding-top:80px;
		width:540px;
	}
	div.rep_content {
		padding-top:77px;
	}
	div#inv_table div.thead {
		display:block;
	}
	div#m_open {
		display:none;
	}
	div#inv_table div.td {
        display: inline-flex;
        min-width:auto;
		padding: 12px 3px;
	}
	div#inv_table.send_inv div.tbody div.td, div#inv_table.send_stmt div.tbody div.td {
		padding: 4px 3px;
	}
	div#inv_table div.tbody div.tr {
		padding: 0px;
	}
	div#inv_table div.td.inv_num {
		padding-left:12px !important;
		font-weight:normal;
		font-size:12px;
	}
	div#inv_table div.td.inv_total {
		font-weight:normal;
		font-size:12px;
	}
	div.inv_cn i, div.inv_jn i, div.inv_dd i {
		display:none;
	}
	div#ord_form {
		max-width:98%;
	}
	div#notify_content, div#notify_content div.n_header {
		width:650px;
	}
	div#notify_content {
		left:165px;
	}
	div.s_fields {
		width:65%;
		text-align:right;
	}
	span.group {
		margin-top: 0px;
	}
	div#butt_container {
		padding-left:165px;
	}
	div#mob_head {
		display:none;
	}
	div#page_title i {
		display:inline-block;
	}
	div.lm_container, div.lm_container:hover {
		display: none;
        left: 165px;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
        padding: 6px 5px 7px 5px;
        margin: 0px auto;
        background-color: #038309;
        color: #FFF;
    	border: 0px;
	}
	table#ao_table {
		width:900px;
	}
	div#notify, div#send_inv, div#send_stmt, div#search, div#mess, div#go_dash_map, div#new_quote, div#new_so, div#new_stock, div#load_all, div#m_open, div#scan_item, div#transfer, div#excel, div#print_rep, div#new_cus, div#bt_down {
		top:0px;
	}
}

@media only screen and (min-width: 1500px) {

}

/* Quoted Orders Modal Styles */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: white;
	border-radius: 8px;
	max-width: 900px;
	width: 90%;
	max-height: 80vh;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	position: relative;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		max-width: 95vw;
	}
	
	.order-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	
	.order-main-info {
		width: 100%;
		gap: 12px;
	}
	
	.order-details {
		width: 100%;
		min-width: auto;
		justify-content: space-between;
	}
	
	.customer-name {
		max-width: none;
	}
}

.modal-header {
	padding: 20px 25px;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
}

.modal-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	flex:1;
}

.modal-header h3 i {
	margin-right: 8px;
	color: #0c4d8b;
}

.clickable_tax_code td {
	cursor: pointer !important;
}
    
/* Tax code row styling */
tr.clickable_tax_code:hover {
	background-color: #f0f8ff !important;
}
/* 
.clickable_tax_code td {
	transition: background-color 0.2s ease;
} */

.modal-close {
	background: none;
	border: none;
	font-size: 24px;
	color: #999;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.modal-close:hover {
	background: #e5e5e5;
	color: #666;
}

.modal-body {
	padding: 20px;
	max-height: 65vh;
	overflow-y: auto;
}

.loading-state, .empty-state-modal, .error-state {
	text-align: center;
	padding: 40px 20px;
}

.loading-state i {
	font-size: 24px;
	color: #0c4d8b;
	margin-bottom: 15px;
}

.empty-state-modal h4 {
	margin: 0 0 10px 0;
	color: #666;
	font-size: 16px;
}

.empty-state-modal p {
	margin: 0;
	color: #999;
}

.orders-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.order-item {
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 12px 16px;
	cursor: pointer;
	transition: all 0.2s ease;
	background: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
	color: #666;
}

.order-item:hover {
	border-color: #0c4d8b;
	box-shadow: 0 2px 8px rgba(12, 77, 139, 0.1);
	transform: translateY(-1px);
}

.order-main-info {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.order-number {
	font-weight: 600;
	color: #0c4d8b;
	font-size: 16px;
	min-width: 80px;
}

.customer-name {
	font-weight: 500;
	color: #333;
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	max-width: 250px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.customer-name i {
	color: #0c4d8b;
}

.order-details {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
	color: #666;
	min-width: 280px;
	flex-shrink: 0;
}

.order-details span {
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.order-details .quantity {
	min-width: 120px;
	flex-shrink: 0;
	text-align: left;
}

.order-details .sales-person {
	min-width: 150px;
	flex-shrink: 0;
	text-align: left;
}

/* Ensure consistent spacing between columns */
.order-details .quantity,
.order-details .sales-person {
	padding-right: 10px;
}

.order-details i {
	color: #999;
	width: 16px;
	text-align: center;
	margin-right: 6px;
}

/* Make status-quoted clickable */
.status-quoted, .status-available {
	cursor: pointer;
	transition: all 0.2s ease;
}

.status-quoted:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.status-quoted .status-value:not(:empty) {
	position: relative;
}

/* Tooltip message */
.tooltip-message {
	position: absolute;
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	z-index: 1000;
}

.tooltip-message:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid rgba(0, 0, 0, 0.8);
}