/*= ABSee stylesheet
 * 
 * Dark Blue: rgb(58, 108, 165);
 * Light Blue: rgb(7, 157, 217)
 *
 ****************************************/
 :root{
	--dark_blue: rgb(58, 108, 165);
	--light_blue: rgb(7, 157, 217);
	--green: rgb(1, 211, 85);
	--red: rgb(254, 1, 1);
 }
 
/* FadeIn Keyframes */
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fade {
	   -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

.attention {
  background-color: transparent;
  animation: 3s attention;
}

@keyframes attention {
  0% {
    background-color: #fff27f;
  }
}

@keyframes saving {
  100% {
    outline-style: solid;
    outline-color: var(--green);
	outline-width: 3px;
	border-radius: 4px;
	background-color: rgba(1, 211, 85, 0.1);
  }
}



/*= General elements
*********************************************/

body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	margin: 0;
}
body.index,
body.reset-password,
body.woo-activate,
body.woo-complete,
body.activate-2fa {
	background-image: url(/images/absee-background.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

body.check-2fa {
	background-image: url(/images/absee-2fa-background.jpg);
	background-size: cover;
	background-position: right top;
	background-repeat: no-repeat;
}


hgroup, menu, nav {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: rgba(0, 0, 0, 0);
}

hr {
	margin-bottom: 1rem;
}

.page_heading {
	text-align: center;
}

label {
    font-weight: bold;
}
.small {
	font-size: 75%;
}
p.small {
	margin: 0;
	line-height: 1.5;
}
.right {
	text-align: right;
}
.left {
	float: left;
	text-align: left;
}
header .container {
	max-width: 1320px;
	margin: 0 auto;
}
a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: rgba(0, 0, 0, 0);
	color: inherit;
	text-decoration: none;
	
}
a.btn,
input.btn {
	background-color: transparent;
	color: rgb(255, 255, 255);
	border: 1px solid white;
	line-height: 1.6875;
	letter-spacing: .15em;
	padding: 0.57143em 1.42857em;
	-webkit-font-smoothing: antialiased;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	margin: 15px;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
}
.btn.light-blue {
	padding: 1em 1.5em;
	background-color: rgba(7, 157, 217, .6);
	border: none;
}
.btn.dark-blue {
	padding: 1em 1.5em;
	background-color: rgba(6, 31, 63, .6);
	border: none;
}

.btn.exportExcel {
	margin: 1rem 0 0 0;
	display: inline-block;
	font-size:75%;
	padding: 0.8em 1.2em;
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
			border-radius: 10px;
}
.btn.disabled {
	pointer-events: none; /* Disables clicking */
	opacity: 0.5; /* Makes it visually appear disabled */
	cursor: not-allowed; /* Shows a "not-allowed" cursor */
}

.exportTable {
	position: relative;
	display:inline-block;
	padding-bottom: 4rem;
	margin-bottom: 1rem;
}

.exportOptions {
	position: absolute;
	right:0;
	margin: 0 5px;
    padding: 0;
    list-style-type: none;
	box-shadow: 1px 1px 3px #C9C9C9;
	border-radius: 4px;
	display: none;
}

.exportOptions li {
    padding: 0.5rem;
	border-bottom: 1px solid #c9c9c9;
	font-size: 90%;
}

.exportOptions li a {
	display: block;
}

.exportOptions li i {
	margin-right: .5rem;    
}

.btn.light-blue:hover {
	background-color: var(--dark_blue);
}

.btn.dark-blue:hover {
	background-color: var(--light_blue);
}


.toggleButton {
	background: url(../images/toggle-buttons.png) right 0 no-repeat;
	width: 67px;
	height: 35px;
	cursor: pointer;
	float:right;
}

a.small.dark_blue.reset {
    line-height:3.5;
}

.clear { clear: both; }
.hide { display: none !important; opacity: 0;}
.alignleft { float: left; }
.alignright { float: right; }
.aligncenter { text-align: center; }

input.required {
    border-left: 3px solid red!important;
    background-color: rgba(255, 0, 0, 0.1);
}

.google-visualization-table-td {
	white-space: nowrap!important;
}

.error {
    color: red;
    text-align: center;	
}
input.input-required,
input.input-required:focus {
	border: 1px solid red;
    background-color: #f8e1dd;
	outline-color: red;
}

.on_off_button.off {
	background-image: url(/images/on_off_button.png);
	background-position: 0px -30px;
	background-repeat: no-repeat;	
	height: 30px;
	width: 64px;
	cursor: pointer;
}
.on_off_button.on {
	background-position: 0px 0px;
}
.error_message {
	color: red;
	text-align:center;
}

.text-line-through {
	text-decoration: line-through;
}

.dark_blue {
	color: var(--dark_blue);
}

.light_blue {
	color: var(--light_blue);
}

.orange {
	color: orange;
}

.orangered {
	color: orangered;
}	
.red,
.red_text {
	color: red;
}

.green,
.green_text {
	color: limegreen;
}

.yellow,
.yellow_text {
	color: orange;
}

green {
	color: limegreen;
}

yellow {
	color: orange;
}

red {
	color: orangered;
}

redb {
	color: orangered;
	font-weight: bold;
}

.loading {
	width: 32px;
	width: 2rem;
	height: 32px;
	height: 2rem;
	margin: 32px;
	margin: 2rem;
}

.padding-small {
	padding: 0.5rem;
}

.padding-medium {
	padding: 1rem;
}

.padding-large {
	padding: 2rem;
}

.toggle {
	cursor: pointer;
}

.toggle:before {
	font-family: 'FontAwesome';
	content: '\f0da';
	margin-right: 0.5rem;
}

.toggle.open:before {
	content: '\f0d7';
}

.toggle ~ small {
	display: none;
}

.inactive {
	display: none;
}

/*= Header Menu Area
*********************************************/
#site-header {
	/*overflow: hidden;*/
	position: relative;
	display: flex;
	width: calc(100% - 100px);
	padding: 30px 50px;
	margin-bottom: 50px;
	background-color: transparent;
	z-index: 2000;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	perspective: 1000;
	z-index: 2;
	
}
body #site-header {
	background-color: rgb(58, 108, 165);
}
body.index #site-header,
body.reset-password #site-header,
body.activate-2fa #site-header,
body.check-2fa #site-header,
body.woo-activate #site-header,
body.woo-complete #site-header {
	background-color: transparent;
	margin-bottom: 0;
}

body.check-2fa #login-box,
body.activate-2fa #login-box {
	display: none;
}

/*= Dealer Dropdown menu select 
 ************************************/
#customer-list { 
	float: left; 
	margin-right: 20px;
	background-color: rgb(7, 157, 217);
	border: none;
	color: white;
	font-size: 14px;
    max-height: 40px;
	padding: 10px;
}
.select2-container--absee {
	background-color: rgb(7, 157, 217);
	height: 40px;
	line-height: 40px;
	color: white;
}
.select2-dropdown--below {
    background-color: rgb(7, 157, 217)!important;
    line-height: 0.8;
	max-height: 500px;
	overflow-x: hidden;
	overflow-y: scroll;
	white-space: nowrap;
}
input.select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    outline: azure;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.06);
    line-height: 25px;
}
.select2-container--absee .select2-selection__arrow {
	position: absolute;
	top: 50%;
	right: 5px;
	width: 20px;
}
.select2-container--absee .select2-selection__arrow b {
	border-color: #fff transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0;
}

#site-header #logo, 
#site-header .navigation, 
#site-header .navigation .site-nav, 
#site-header .navigation .action-nav, 
#site-header .navigation .nav-link {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	float: left;
}
#site-header #logo {
    width: 286px;
    height: 118px;
	margin: 12px 0;
}
#site-header #logo a {
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0, 0, 0, 0) url("../images/absee-logo.png") no-repeat center center;
	margin-top: -20px;
}
#site-header #logo a:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}
#site-header .navigation {
	margin-left: 20px;
	margin-right: 20px;
	display: flex;
	align-items: flex-start;
	flex-grow: 1;
}
#site-header .navigation .site-nav,
#site-header .navigation .action-nav {
	font-size: 11px;
	font-weight: bold;
	letter-spacing: .04em;
	padding: 0;
	margin: 0;
}
#site-header .navigation .site-nav {
	/*width: 68%;*/
	max-width: 840px;
}
#site-header .navigation .action-nav {
	float: right;
	/*width: 30%;*/
}
#site-header .navigation .site-nav .nav-link {
	height: 62px;
	line-height: 62px;
}	
#site-header .navigation .action-nav .nav-link  {
	height: 62px;
	}
#site-header .navigation .site-nav .nav-link  a{
	padding: 0px 15px;
	color: rgb(58, 58, 58);
	text-align: center;
	display: block;
}
#site-header .navigation .action-nav .nav-link  > a{
	padding: 15px 15px;
	color: rgb(58, 58, 58);
	text-align: center;
	display: block;
	width: 100%;
	white-space: nowrap;

}

#site-header .navigation .action-nav li.support-link,
#site-header .navigation .user-nav li.support-link {
	display: inline-block;
	height: 62px;
	line-height: 62px;
	margin-right: 10px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: .04em;
}
#site-header .navigation .user-nav li.support-link.loggedin {
	margin-right: 25px;
}   

#site-header .navigation .nav-link > a:hover {
	background-color: rgb(249, 249, 249);
	color: rgb(44, 154, 183);
}
#site-header .navigation #settings-icon {
	float: right;
	margin-left: 10px;
	border: none;
}

/*= Login Popup Div
*********************************************/
#login-box {
	display: block;
	flex-grow: 1;
}
#loginform {
	float: right;
	background-color: rgba(7, 157, 217, .6);
}
#loginform a {
	color: rgb(255, 255, 255);
}
#loginform fieldset {
	border: none;
}
#loginform input#username,
#loginform input#password {
	width: 90%;
	min-width: 250px;
	margin: 20px 20px 0;
	padding: 3px 5px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background-color: transparent;
	color: white;
	border: none;
	border-bottom: 1px solid white;
	box-sizing:border-box
}
#loginform input::placeholder {
	color: white;
}
#loginform .btn {
	float: right;
	    margin-right: 9px;
}
li.nav-link.logout {
	padding-left: 10px;
}
li.nav-link.logout a,
li.nav-link.login a {
	display: inline-block;
}

/**********************
Responsive Nav Menu
***********************/
/* nav */
.nav {
	position: relative;
	flex-grow: 1;
	vertical-align: top;
}
.nav ul {
	margin: 0;
	padding: 0;
	vertical-align: top;
	border-right: 1px solid rgba(124, 200, 228, 1);
	float: right;
	margin-right: 1rem;
}
.nav li {
	position: relative;
	margin-top: 5px;
	padding: 0 28px 5px 28px;
	list-style: none;
	display: inline-block;
	border-left: 1px solid rgba(124, 200, 228, 1);
	vertical-align: top;
}
.nav li:first-child {
	border-left: none;
}
.nav a {
	text-decoration: none;
	color: rgb(255,255,255);
	line-height: 100%;
	font-size: 1.2rem;
	font-weight: 500;
	text-transform: uppercase;
	text-align: left;
}
.nav a:hover {
	color: rgb(148, 200, 230);
}
.nav .current a {
	color: rgb(148, 200, 230);
	border-radius: 5px;
}

.nav ul.submenu {
	position: absolute;
	display: none;
	border: none;
	background-color: rgb(7, 157, 217);
	margin-top: 5px;
}

.nav li:hover ul.submenu {
    display: block;
}

ul.submenu li {
    min-width: 160px;
    border: none;
    padding: 10px 8px;
	margin-top: 0;
    border-bottom: 1px solid rgb(255,255,255);
}

.nav ul.submenu li a {
    font-size: 1rem;
}

.nav .current ul.submenu li a {
	color: white;
}

.nav .current  ul.submenu a:hover {
    color: rgb(148, 200, 230);
}

.nav .current ul.submenu .current a {
	color: rgb(148, 200, 230);
}

/*= Reset Password Page
*********************************************/
.splash.reset_password {
	text-align: center;
}
.reset_password input[type="email"],
.reset_password input[type="password"] {
	font-size: 16px;
	line-height: 24px;
	padding: 5px;
	width: 50%;
}

.reset_password input.btn {
	margin: 0;
	vertical-align: top;
}

form#reset_form {
	text-align: left;
	padding-left: 10%;
}
form#reset_form label {
	display: inline-block;
	width: 20%;
}
.reset_password input[type="password"] {
	width: 40%;
}
form#reset_form input#submit {
	float: right;
	margin-right: 50%;
	margin-top: 15px;
}
div.password_result {
	display: inline-block;
	width: 30%;
	padding: 1%;
}
#reset_form .short	{ color:#FF0000; }
#reset_form .weak	{ color:#E66C2C; }
#reset_form .good	{ color:#2D98F3; }
#reset_form .strong	{ color:#006400; }

/*= 2fa Page
*********************************************/


.splash.activate2fa {
	text-align: center;
	max-width: 600px;
}

.activate2fa table.table-2fa {
    background-color: white;
    color: initial;
}

.activate2fa table.table-2fa tbody td p {
    font-size: 15px;
}

.splash.check2fa {
	text-align: center;
	max-width: 500px;
}

.check-2fa input[type="text"],
.check-2fa input[type="submit"] {
	font-size: 16px;
	line-height: 24px;
	margin: 1rem 0 0 0;
	padding: 5px 10px;
	width: 80%;
	box-sizing: border-box;
     -webkit-box-sizing:border-box;
     -moz-box-sizing: border-box;
}

#check2fa_form .authcode {
  width: 240px; /* Total width (adjust based on needs) */
  height: 40px; /* Adjust height */
  font-size: 20px; /* Font size for clear text visibility */
  letter-spacing: 20px; /* Adds space between characters */
  padding: 0 10px; /* Adds inner padding */
  padding-right: 30px;
  border: 2px solid #ccc; /* Standard border for the entire field */
  border-radius: 5px; /* Optional: rounded corners */
  background: 
    linear-gradient(to right, #fff 39px, transparent 40px) 0 0, /* First box */
    linear-gradient(to right, #fff 79px, transparent 80px) 0 0, /* Second box */
    linear-gradient(to right, #fff 119px, transparent 120px) 0 0, /* Third box */
    linear-gradient(to right, #fff 159px, transparent 160px) 0 0, /* Fourth box */
    linear-gradient(to right, #fff 199px, transparent 200px) 0 0; /* Fifth box */
  background-repeat: no-repeat;
  background-size: 40px 100%; /* Each box width */
  box-sizing: border-box; /* Ensures padding and borders are included in width */
  text-align: center; /* Centers the text */
  outline: none; /* Removes default focus outline */
}

.authcode-input-container {
    position: relative;
    display: inline-block;
}

#authcode-icon {
    position: absolute;
    right: 10px; /* Adjust for proper alignment */
    top: 30%;
    transform: translateY(-50%);
    font-size: 16px; /* Match the input font size */
    color: #aaa;
}

#authcode-icon.fa-check {
	top: 50%;
}

.check-2fa div.error {

}

.check-2fa div.error p {
	
	margin: 5px 0 0 0;
}


/*= WooCommerce Activate Store
*********************************************/
.woo_connect input[type="url"] {
	font-size: 16px;
	line-height: 24px;
	padding: 5px;
	width: 50%;
}


/*= User Profile Menu
*********************************************/
ul.user-nav {
	float: right;
	margin: 0 20px;
	padding: 0;
	cursor: pointer;
	vertical-align: top;
}
ul li.user-nav-item {
	list-style-type: none;
	position: relative;
}
ul li.user-nav-item i {
	color: rgb(101, 180, 228);
}
ul li.user-nav-item i.fa-angle-down {
	margin-left: 3px;
	margin-top: -5px;
}
ul li.user-nav-item ul {
	margin: 0;
	padding: 5px 0;
	display: none;
	position: absolute;
	right: -5px;
	top: 40px;
	background-color: #FFF;
	border: 1px solid #CCC;
    
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	
    -webkit-box-shadow: #CCC 0px 0px 5px 0px;
    -moz-box-shadow: #CCC 0px 0px 5px 0px; /* color, h-offset, v-offset, blur, spread */
    box-shadow: #CCC 0px 0px 5px 0px; /* inset is optional */
}
ul li.user-nav-item:hover ul {
	display: block;
}
ul li.user-nav-item ul li {
	list-style-type: none;
	padding: 7px 20px;
	line-height: 1.5;
	font-size: 12px;
	font-style: italic;
}
ul li.user-nav-item ul li:first-child {
	border-bottom: 1px solid #CCC;
}
ul li.user-nav-item ul li:hover {
	background-color: #F8F8F8;
}
ul li.user-nav-item ul li a{
	display: block;
	white-space: nowrap;	
}
ul li.user-nav-item ul.user-sub-nav li i {
	margin-right: 5px;
	width: 10px;
}




/*= General Body Content
*********************************************/
#content {
	margin: 0 auto;
	max-width: 1320px;
}
.dealer-profile #content {display:block;}
#content p { 
	display: inline-block;
	line-height: 2.2em;
}
.messages{
	position: fixed;
	width: 500px;
	width: 50%;
	top: 40%;
	top: 0;
	left: 50%;
	left: 25%;
	margin-left: -250px;
	margin-left: 0;
	z-index: 99;
}
.messages .message {
	font-size: 16px;
	text-align: center;
	padding: 30px 20px;
	padding: 15px 20px;
	margin: 20px 5px 5px 5px;
	margin: 0px 5px 5px 5px;
	border-radius: 5px;
	cursor: pointer;
	line-height: 30px;
    border-top: 0!important;
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
	transition-property: all;
	transition-duration: 1s;
	transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.messages .message:before {
	content: url("../images/cross.png");
	float: right;
    margin-top: -12px;
    margin-right: -17px;
}
.messages .notice {
	background-color: white;
	border: 2px solid rgb(175, 165, 255);
}
.messages .error {
	background-color: white;
	border: 2px solid rgb(248, 121, 151);
}
.messages .success {
	background-color: white;
	border: 2px solid rgb(64, 241, 107);
}
.messages .loading {
	background-color: rgb(255,255,255);
	background-image: url(../images/loading.gif);
	height: 30px;
	background-position: center -200px;
	background-repeat: no-repeat;
}
.help {
	/*position: absolute;*/
    /*right: 0;*/
	float:right;
}
.help img,
.help i {
	float: right;
	color: #4f9dd9;
	/*padding-right: 73px;*/
}
SELECT#archived-reports {
	margin-top: 10px;
}

/*= Charts/tables formatting
*********************************************/
#table, #table1, #table2, #table3, #table4, #tableTotal, .data-table { 
	page-break-before: always;
	break-before: always;
	margin-bottom: 1rem;
}
#unsorted-table, #sale-types-table, #non-prod-table {
	float: left;
}
table td {
	font-size: 90%;
}
TD.total-row {
	font-weight: bold;
}


/*= Non-Prod Charts/tables formatting
*********************************************/
.non-prod-table table th {
	white-space:normal;
}
.non-prod-table table tr td {
	padding: 5px;
}

.non-prod-table table tr td:nth-child(2) {
	text-align:left;
	white-space:nowrap;
}
.non-prod-table table tr td:nth-child(3) {
	white-space: nowrap;
}
td.dealer_column.google-visualization-table-td {
    text-align: left; 
}

/*= WIP Report Charts/tables formatting
*********************************************/
.dept-perf-table-totals {
	margin: 20px 10px 0 0;
	float: right;
}

/*= WIP Report Charts/tables formatting
*********************************************/
.wip-report-chart {
	width: 80%; 
	margin: 0 auto;
}

.wip-report-table table tr td:nth-child(2){
	text-align: left;
}

/*= Open RO Charts/tables formatting
*********************************************/
.highlight-cell {
	font-weight: bold;
	font-size: 12px;
}
.highlight-cell-small {
	font-weight: bold;
	font-size: 11px;
}

#OpenROFilterForm {
	display: flex;
	justify-content: center;
}

#OpenROFilterForm #archiveReportFilter,
#OpenROFilterForm #departmentFilter {
	display:none;
}

#OpenROFilterForm .selectize-control {
	text-align: left;
	margin-right: .5rem;
}

#OpenROFilterForm .archiveReportFilter {
	min-width: 200px;
}

#OpenROFilterForm .archiveReportFilter .selectize-dropdown-content .option {
    white-space: nowrap;
}

#OpenROFilterForm .departmentFilter {
	min-width: 220px;
	max-width: 40%;
}

#OpenROFilterForm .categoryFilter {
	min-width: 220px;
	max-width: 40%;
}

.openro-count-age .col:first-child,
.openro-revenue-age .col:first-child,
.openro-wip-hours .col:first-child {
    margin: 0 auto;
    float: none;
	position: relative;
}

.openro-throughput-count {
	padding-top: 15px;
	text-align: right;
	font-size: 12px;
}

.openro-costs-category .col:first-child {
    margin-left: -10%;
    margin-right: -10%;
    width: 120%;
	position: relative;
}

#openro-data-table {
	background-color: #f8f9fc;
	border-top: 1px solid #919497;
	border-bottom: 1px solid #919497;
}

#dataTable1.openro-count-table table tr th,
#dataTable2.openro-value-table table tr th {
	font-size: 12px;
}

#dataTable3.openro-cwi-value-table table tr th,
#dataTable3.openro-cwi-value-table table tr td,
#totalTable3.openro-cwi-value-table table tr td,
#dataTable4.openro-cwi-value-table table tr th,
#dataTable4.openro-cwi-value-table table tr td,
#totalTable4.openro-cwi-value-table table tr td {  
	font-size:11px;
	padding: 5px 0.35em;
}
#dataTable1.openro-count-table table tr th:first-child,
#dataTable1.openro-count-table table tr td:first-child,
#totalTable1.openro-count-table table tr td:first-child,
#dataTable2.openro-value-table table tr th:first-child,
#dataTable2.openro-value-table table tr td:first-child,
#totalTable2.openro-value-table table tr td:first-child {
	/*width: 30%;*/
	padding-right: 0.5rem;
}

#dataTable1.openro-count-table table tr th:first-child,
#dataTable1.openro-count-table table tr td:first-child,
#totalTable1.openro-count-table table tr td:first-child,
#dataTable2.openro-value-table table tr th:first-child,
#dataTable2.openro-value-table table tr td:first-child,
#totalTable2.openro-value-table table tr td:first-child,
#dataTable1.openro-count-table table tr th:nth-child(2),
#dataTable1.openro-count-table table tr td:nth-child(2),
#totalTable1.openro-count-table table tr td:nth-child(2),
#dataTable2.openro-value-table table tr th:nth-child(2),
#dataTable2.openro-value-table table tr td:nth-child(2),
#totalTable2.openro-value-table table tr td:nth-child(2){
	white-space: nowrap!important;
}
#dataTable1.openro-count-table table tr td:last-child,
#dataTable2.openro-value-table table tr td:last-child {
    /*background-color: #d7eaf8;*/
	border-color: #cccccc;
	border-style: solid;
	border-width: 0px 1px ;	
}
#totalTable1.openro-count-table table thead,
#totalTable2.openro-value-table table thead,
#totalTable3.openro-cwi-value-table table thead,
#grandTotalTable3.openro-cwi-value-table table thead,
#totalTable4.openro-cwi-value-table table thead,
#grandTotalTable4.openro-cwi-value-table table thead  {
	display: none;
}
#totalTable1.openro-count-table table tr td,
#totalTable2.openro-value-table table tr td {
    /*background-color: #d7eaf8;*/
	border-color: #cccccc;
	border-style: solid;
	border-width: 1px 0px;
}
#totalTable1.openro-count-table table tr td:last-child,
#totalTable2.openro-value-table table tr td:last-child {
	border-width: 1px;
}
#totalTable1.openro-count-table table tbody tr:nth-child(2) td:not(:first-child):after {
	content: '%';
}

/*#headerTable3.openro-cwi-value-table table tr th:not(first-child),*/
#grandTotalTable3.openro-cwi-value-table table tr td:not(first-child),
/*#headerTable4.openro-cwi-value-table table tr th:not(first-child),*/
#grandTotalTable4.openro-cwi-value-table table tr td:not(first-child) {
	width: 13.5%;/* 3 columns width */
}
/*#headerTable3.openro-cwi-value-table table tr th:last-child,*/
#grandTotalTable3.openro-cwi-value-table table tr td:last-child,
/*#headerTable4.openro-cwi-value-table table tr th:last-child,*/
#grandTotalTable4.openro-cwi-value-table table tr td:last-child {
	width: 18%;/* 3 columns width */
}
#dataTable3.openro-cwi-value-table table tr th:not(first-child),
#dataTable3.openro-cwi-value-table table tr td:not(first-child),
#totalTable3.openro-cwi-value-table table tr td:not(first-child),
#dataTable4.openro-cwi-value-table table tr th:not(first-child),
#dataTable4.openro-cwi-value-table table tr td:not(first-child),
#totalTable4.openro-cwi-value-table table tr td:not(first-child) { 
	/*width: 4.5%;*/
}

#grandTotalTable3.openro-cwi-value-table table tr td:last-child,
#grandTotalTable4.openro-cwi-value-table table tr td:last-child {
	color: white;
}
#grandTotalTable3.openro-cwi-value-table td.google-visualization-table-type-number.grand-total,
#grandTotalTable4.openro-cwi-value-table td.google-visualization-table-type-number.grand-total {
	text-align: center;
}
span#ro-wip-days {
	font-weight: bold;
}

/* Open RO & Wty & Advisor DataTable Selectize */

.dataTable thead tr:nth-child(2) td {
	vertical-align:top;
}

.config-table:not(:#dealer-setup-table) .selectize-input > input {
	width: 100%!important;
}

.dataTable thead tr:nth-child(2) td .selectize-input .item,
.dataTable thead tr:nth-child(2) td .selectize-dropdown .option {
	white-space: nowrap;
}

.selectize-control.multi .selectize-input.has-items {
	/*height: 36px;*/
}

.selectize-control.multi .selectize-input.has-items:hover {
    height: auto;
}

h4.toggle {
    margin: .4rem 0;
}

h5.data-toggle {
	border-bottom: 1px solid #ccc;
	line-height: 30px;
	color: #59a7c0;
	font-weight: 400;
}
.data-toggle:hover {
	cursor: pointer;
}
#all-data-table,
#customer-data-table {
	background-color: #f8f9fc;
	border-top: 1px solid #919497;
	border-bottom: 1px solid #919497;
}
table.dataTable {
	border-collapse: collapse;
}
table.dataTable thead th, 
table.dataTable thead td {
	padding-left: 0;
}
table.dataTable thead td select {
	font-size: 10px;
    font-weight: bold;
    padding: 5px 0;
}
table.dataTable thead th, 
table.dataTable tbody td {
    font-size: 12px;
}
table.dataTable tbody th, 
table.dataTable tbody td {
	border-bottom: 1px solid #ccc;
} 
table.dataTable tbody tr.odd td {
	background-color: #fafafa;
}
table.dataTable td.details-control {
	padding: 0 10px;
	cursor: pointer;
}
table.dataTable td.details-control:before {
	content: '\f044';
	font-family: FontAwesome;
	font-size: 22px;
	color: #55a4be;
}
table.dataTable tr.shown td.details-control:before {
	content: '\f00d';
	color: black;
}

table.dataTable tr td {
	height: 32px;
}

table.dataTable td.nowrap {
	white-space: nowrap;
}

table.dataTable tr.shown ~ tr {
	-webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
	/*transform-origin: left top;*/
	/*transform: scaleY(1);*/
}

table.dataTable td table.sub-data-table {
	margin: 2rem;
	padding-left: 2rem;
}

table.dataTable td table.sub-data-table tr th {
	text-align: left;
}

table.dataTable td table.sub-data-table tr th:last-child {
	padding-left: 2rem;
}

table.dataTable td table.sub-data-table tr td {
	vertical-align: top;
	padding: 5px;
}

table.dataTable tbody td.numeric {
	text-align: right;
	padding-left: 8px;
}
tr.update-date-required td {
    background-color: #abd3af!important;
	background-color: #abd3af7a!important;
}

tr.update-date-required td {
    background-color: #abd3af!important;
	background-color: #abd3af7a!important;
}

tr.updated-old td, .updated-old {
	background-color: #6ac4e8!important;
	background-color: #6ac4e869!important;
}

tr.updated-recent td, .updated-recent {
    background-color: #f9bf6a!important;
	background-color: #f9bf6a6b!important;
}

tr.updated-current td, .updated-current {
    background-color: #9feca7!important;
	background-color: #9feca77a!important;
}

tr.updated-overdue td, .updated-overdue {
    background-color: #ff0000!important;
	background-color: #ff000066!important;
}

button.dt-button, 
div.dt-button, 
a.dt-button {
	padding: 0.1em 0.5em;
	line-height: 1.2;
}



/*= Open RO Notes formatting
*********************************************/

#ro_notes table,
#pending_notes table { 
	box-shadow: 0px 0px 9px #AAA;
	padding-left: 0;
}

table.openro-notes,
table.pending-notes {
	width: 50%;
	max-width: 900px;
	padding: 5px 2px;
	margin-bottom: 1rem;
}

.openro-notes thead tr,
.pending-notes thead tr {
	background-color: #e4e9f4;
	font-weight: bold;
	text-align: center;
}

.openro-notes thead tr th,
.pending-notes thead tr th {
	background-color: inherit;
	background-clip: padding-box;
	font-size: 14px!important;
	border: solid #eee;
	border-width: 0 1px 1px 0;
	position: relative;
	background: url("https://ssl.gstatic.com/charts/static/table-title-bg.gif") repeat-x left bottom;
	/*
	background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: linear-gradient(to bottom,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	*/
}

.openro-notes tbody tr.create_note_row td,
.pending-notes tbody tr.create_note_row td {
	background-color: inherit;
	background-clip: padding-box;
	font-size: 14px!important;
	border: solid #eee;
	border-width: 0 1px 1px 0;
	padding: 1rem!important;
	position: relative;
}

.openro-notes tr.create_note_row .create_note,
.pending-notes tr.create_note_row .create_note {
	border-radius: 4px;
	padding: 1rem 1rem 0rem 1rem;
	border: 1px solid lightgrey;
	font-weight: bold;
}

.openro-notes tr.create_note_row .advisor_note,
.pending-notes tr.create_note_row .note {
	width: 100%;
	margin-bottom: 1rem;
	height: 1rem;
	transition: all 0.5s ease;
	border: 0;
	outline-style: none;
}

.openro-notes tr.create_note_row .toolbar,
.pending-notes tr.create_note_row .toolbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-top: 1px solid lightgrey;
	margin-left: -1rem;
	margin-right: -1rem;
}

.openro-notes tr.create_note_row .toolbar .notification,
.pending-notes tr.create_note_row .toolbar .notification {
	float: left;
	padding: 1rem;
	color: red;
	font-size: 90%;
}

.openro-notes tr.create_note_row .expected_close_wrapper,
.pending-notes tr.create_note_row .expected_close_wrapper {
	position: relative;
}

.openro-notes tr.create_note_row .expected_close_wrapper .fa-calendar,
.pending-notes tr.create_note_row .expected_close_wrapper .fa-calendar {
	position: absolute;
	top: 16px;
	left: 14px;
}

.openro-notes tr.create_note_row .expected_close_wrapper .expected_close,
.pending-notes tr.create_note_row .expected_close_wrapper .expected_close {
	border: 1px #e5e5e5 solid;
	margin: 0.8rem 0.5rem;
	padding: 0.2rem 0.2rem 0.2rem 1.8rem;
	font-size: 13px;
	width: 100px;
}

.openro-notes tr.create_note_row .category {
	border: 1px #e5e5e5 solid;
	margin: 0.8rem 0.5rem;
	padding: 0.2rem 0.2rem 0.2rem 0.2rem;
	font-size: 13px;
}

.openro-notes tr.create_note_row .savebtn,
.pending-notes tr.create_note_row .savebtn {
	margin: 0.5rem;
	cursor: pointer;
}

.openro-notes tr.saved_note.hidden,
.pending-notes tr.saved_note.hidden {
	display: none;
}

.openro-notes tr.saved_note td:before,
.pending-notes tr.saved_note td:before {
	content: '\f017';
	font-family: 'FontAwesome';
	font-size: 1.5rem;
	position: absolute;
	left: 1rem;
	top: 10px;
	color: var(--light_blue);
}

.openro-notes tr.saved_note td,
.pending-notes tr.saved_note td {
	font-size: 90%;
	box-sizing: content-box;
	background-color: inherit;
	background-clip: padding-box;
	font-size: 14px!important;
	border: solid #eee;
	border-width: 0 1px 1px 0;
	padding: 1rem!important;
	position: relative;
}

.openro-notes tr.saved_note .create_date,
.pending-notes tr.saved_note .create_date {
	color: #a3a4a5;
	font-size: 90%;
	margin-left: 2rem;
}

.openro-notes tr.saved_note .note,
.pending-notes tr.saved_note .note {
	padding: 16px 0;
	padding: 1rem 0;
	line-height: 1.4;
	font-weight: 300;
	margin-left: 2rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #eee;
}

.openro-notes tr.saved_note .comment-meta,
.pending-notes tr.saved_note .comment-meta {
	color: #616e88;
	font-size: 90%;
	margin-left: 2rem;
}

.openro-notes tr.saved_note .comment-meta .fa,
.pending-notes tr.saved_note .comment-meta .fa {
    margin-right: 4px;
}

.openro-notes tr.saved_note .separator,
.pending-notes tr.saved_note .separator {
	margin: 0 0.25rem;
}


/*= Open Wty Google Charts/Tables formatting
*********************************************/

#OpenWtyFilterForm {
	display: flex;
	justify-content: center;
}

#OpenWtyFilterForm .selectize-control {
	text-align: left;
	margin-right: .5rem;
}

#OpenWtyFilterForm .archiveReportFilter {
	min-width: 200px;
}

#OpenWtyFilterForm .makeFilter,
#OpenWtyFilterForm .categoryFilter {
	min-width: 200px;
	max-width: 35%;
}

.selectize-input a.remove-single {
    margin-left: 8px;
}

/*TABLE 1*/
#wty_claim_count tr th {
	font-size: 11px;
}

#wty_claim_count tr th,
#wty_claim_count tr td{
	width: 13%;
	padding: 5px .35em;
}

#wty_claim_count tr th:first-child,
#wty_claim_count tr td:first-child {
	width: 22%;
}

#wty_claim_count tr td:last-child	{
	border-left: 1px solid #333;
}

#wty_claim_count tr:last-child td {
	border-bottom: none;
}


/*TABLE 2*/
#wty_claim_status tr th {
	font-size: 11px;
}

#wty_claim_status tr th,
#wty_claim_status tr td {
	width: 13%;
	padding: 5px .35em;
}

#wty_claim_status tr th:first-child,
#wty_claim_status tr td:first-child {
	width: 22%;
}

#wty_claim_status tr td:last-child {
	border-left: 1px solid #333;
}

#wty_claim_status tr:last-child td {
	border-bottom: none;
}

/*TABLE 3*/
#wty_dept_status tr th {
	font-size: 11px;
}

#wty_dept_status tr th,
#wty_dept_status tr td {
	width: 13%;
	padding: 5px .35em;
}

#wty_dept_status tr th:first-child,
#wty_dept_status tr td:first-child {
	width: 22%;
}

#wty_dept_status tr td:last-child	{
	border-left: 1px solid #333;
}

#wty_dept_status tr:last-child td {
	border-bottom: none;
}


/*= Aftersales Formatting
*********************************************/
.aftersales .trend_table table th {
	white-space: normal;
}

.aftersales .trend_table table td {
	padding: 4px 5px;
}
.copy_col:before {
    content: '\f178';
    font-family: FontAwesome;
    position: absolute;
    font-size: 0.5625rem;
    padding: 2px 0 0 3px;
	color: rgb(58, 108, 165);
}
.copy_col {
	cursor: pointer;
}

/*= 05-05-2021: Default Table Styling
*************************************************/

.report_table {
	width: 100%;
}
.total_left {
	text-align: left;
}

/*= 05-05-2021: Parts Dept Performance 
*************************************************/

#pageFilterForm {
	display: flex;
	justify-content: center;
}

#pageFilterForm #saleCatFilter,
#pageFilterForm #saleTypeFilter,
#pageFilterForm #makeFilter {
	display:none;
}

#pageFilterForm .selectize-control {
	margin-right: 0.5rem;
	min-width: 180px;
	max-width: 25%;
	text-align: left;
	z-index: 1;
}

#pageFilterForm .saleCatFilter {
	margin-left: 0.5rem;
}

.parts_dept_perf_filters.page_filters {
	text-align: center;
}

.table-formatting.parts_daily_tracker tr td:nth-child(3) {
	
}

.department_performance_tab_panel .report_table table tr td:nth-child(1) {
    width: 20%;
}

.source_sales_table.report_table {

}

/*= 28-05-2021: Parts Franchise Performance 
*************************************************/

.parts_franchise_perf_filters.page_filters {
	text-align: center;
}

.source_sales_tab_panel .report_table table tr td:nth-child(1) {
    width: 20%;
}

/*= 08-06-2021: Parts Customer Sales
*************************************************/

.cust_sales_perf_filters.page_filters {
	text-align: center;
}

#customer-data-table table.dataTable thead th, 
#customer-data-table table.dataTable tbody td {
	font-size: 12px;
}

#customer-data-table tr.shown ~ tr {
	background-color: #fafafa;
}

td.customer_details {
	padding: 0 0 0 10px;
	cursor: pointer;
}

td.customer_details:before {
	content: '\f06e';
	font-family: FontAwesome;
	font-size: 20px;
	font-size: 1.25rem;
	color: #55a4be;
	padding: 5px 5px 5px 0;
	padding: 0.3rem 0.3rem 0.3rem 0;
}

tr.shown td.customer_details:before {
	content: '\f070';
	color: black;
}

#customer_record {
	margin: 2rem 1rem;
	width: calc( 100% - 2rem );    
	
}

.slideDown {
	display: none;
	
	-webkit-transition: max-height 2.5s ease-in-out;
	-moz-transition: max-height 2.5s ease-in-out;
	-o-transition: max-height 2.5s ease-in-out;
	transition: max-height 2.5s ease-in-out;   
}

.table.customer_display {
	width: 100%;
	margin-bottom: 1rem;
}

.table.customer_display th,
.table.customer_display td {
	padding: 2px .35em;
	background-color: inherit;
	background-clip: padding-box;
	font-size:14px!important;
}

.table.customer_display thead tr {
	background-color: #e4e9f4;
	font-weight: bold;
	text-align: center;	
}

.table.customer_display thead tr th {
	border: solid #eee;
	border-width: 0 1px 1px 0;
	padding: 2px .35em;
	position: relative;
	z-index: 10;
	background-image: url(//ssl.gstatic.com/charts/static/table-title-bg.gif) repeat-x left bottom;
	background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: linear-gradient(to bottom,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
}

.table.customer_display tbody td {
    border: solid #eee;
    border-width: 0 1px 1px 0;
    padding: 2px .35em;
}

.table.second.customer_display {
	width: 50%;
}

.table.third.customer_display {
	width: 70%;
}

.table.fourth.customer_display {
	width: 100%;
}

.table.fourth.customer_display td {width: 5%;}
.table.fourth.cols2.customer_display td {width: 50%;}
.table.fourth.cols3.customer_display td {width: 33.33%;}
.table.fourth.cols4.customer_display td {width: 25%;}
.table.fourth.cols5.customer_display td {width: 20%;}
.table.fourth.cols6.customer_display td {width: 16.67%;}
.table.fourth.cols7.customer_display td {width: 14.29%;}
.table.fourth.cols8.customer_display td {width: 12.5%;}
.table.fourth.cols9.customer_display td {width: 11.11%;}
.table.fourth.cols10.customer_display td {width: 10%;}
.table.fourth.cols11.customer_display td {width: 9.09%;}
.table.fourth.cols12.customer_display td {width: 8.33%;}
.table.fourth.cols13.customer_display td {width: 7.69%;}
.table.fourth.cols14.customer_display td {width: 7.14%;}
.table.fourth.cols15.customer_display td {width: 6.67%;}
.table.fourth.cols16.customer_display td {width: 6.25%;}

/* Customer Notes */
.table.fifth {
	width: 700px;
}

.table.fifth tbody tr.followup_row {
	background-color: cornsilk;
}

.table.fifth tbody td {
	padding: 1rem;
    position: relative;
}

.table.fifth tbody td .note:before {
    content: '\f2be';
    font-family: 'FontAwesome';
    font-size: 2rem;
    position: absolute;
    left: 1rem;
    color: var(--light_blue);
}

.table.fifth tbody td .note {
	margin-bottom: 16px;
	line-height: 1.4;
	font-weight: 100;
	transition: all 0.5s ease;
	margin-left: 3rem;
}

.table.fifth tbody td .note.more {
    overflow: hidden;
	text-overflow: ellipsis;
    white-space: nowrap;
    width: 600px;
}

.table.fifth tbody td .note .more_link {
	display: none;
}

.table.fifth tbody td .note.more .more_link {
	position: absolute;
	display: block;
    right: 1.2rem;
    top: 1.2rem;
	color: #338cf0;
    font-size: 80%;
	cursor: pointer;
}

.table.fifth tbody td .note.more .more_link:hover {
	
}

.table.fifth tbody td .comment-meta {
	color: #616e88;
	font-size:90%;
	margin-left: 3rem;
}

.table.fifth tbody td .comment-meta .followup_date,
.table.fifth tbody td .comment-meta .completed_date {
	cursor: pointer;
}

.table.fifth tbody td .comment-meta .completed_date time {
	text-decoration: line-through;
}

.table.fifth tbody td .create_note {
	border-radius: 4px;
	padding: 1rem 1rem 0rem 1rem;
	border: 1px solid lightgrey;
}

.table.fifth tbody td .create_note textarea {
	width: 100% ;
    margin-bottom: 1rem;
    height: 1rem;
	transition: all 0.5s ease;
	border: 0;
	outline-style: none;
}
.table.fifth tbody td .create_note textarea:focus {
	
}

.table.fifth tbody td .more_notes {
    display: inline-block;
	color: #338cf0;
    font-size: 80%;
	cursor: pointer;
}

.table.fifth tbody td .create_note .toolbar {
	text-align: right;
	border-top: 1px solid lightgrey;
    margin-left: -1rem;
    margin-right: -1rem;
}

.table.fifth tbody td .create_note .toolbar .note_error {
	float: left;
	padding: 1rem;
	color: red;
	font-size: 90%;
}

.table.fifth tbody td .create_note .toolbar .fa-flag {
	position: absolute;
    margin: 1rem 0 0 0.625rem;
}

.table.fifth tbody td .create_note .toolbar .followup_datepick {
	border: 1px #e5e5e5 solid;
	margin: 0.8rem 0;
	padding: 0.2rem 0.2rem 0.2rem 1.8rem;
	font-size: 13px;
	vertical-align: top;
	width: 100px;
}

.table.fifth tbody td .create_note .toolbar .actionbtn {
	margin: 0.5rem;
}

/*= 27-04-2022: Parts Inventory Analaysis
*************************************************/

.parts_inventory_filters.page_filters {
	text-align: center;
}

.parts_inventory_filters.page_filters .negQOHFilterLabel {
	line-height: 3;
	margin-right: 0.5rem;
	 font-size:90%;
}

/*= Parts Web Store Internet Invetory formatting
*********************************************/

.internet-inventory-container-table td.pub_internet_td {
	display: flex;
}

.internet-inventory-container-table td.pub_internet {
    cursor: pointer;
	padding-left: 10px;
}

#webstore_data table { 
	padding-left: 0;
	width: 100%;
}

table.internet-inventory {
	width: 50%;
	max-width: 900px;
	padding: 5px 2px;
	margin-bottom: 1rem;
}

table.internet-inventory thead tr {
	font-weight: bold;
	text-align: center;
}

table.internet-inventory thead tr th {
	background-color: inherit;
	background-clip: padding-box;
	font-size: 14px;
	border: solid #eee;
	border-width: 0 1px 1px 0;
	position: relative;
	background: url("https://ssl.gstatic.com/charts/static/table-title-bg.gif") repeat-x left bottom;
	padding: 5px!important;
	/*
	background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: linear-gradient(to bottom,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	*/
}

table.internet-inventory tbody tr td {
	vertical-align:initial;
	font-size: 14px;
	height: auto;
	line-height:1.5;
}

table.internet-inventory tbody tr td:first-child {
	font-weight: bold;
	width: 25%;
}

table.internet-inventory tbody tr td input,
table.internet-inventory tbody tr td textarea,
table.internet-inventory tbody tr td select {
	width: 100%; 
	box-sizing: border-box;
	padding: 5px;
	font-size: medium;
	border: 1px solid #d0d0d0;
}

table.internet-inventory tbody tr td input#pub_internet {
	width: auto;
	margin-right: 1rem;
}

table.internet-inventory tbody tr td .selectize-control.single {
	width: 120px;
}

table.internet-inventory tbody tr td .selectize-control.single .selectize-input {
	padding: 5px;
}

#internet_model~.selectize-control.single {
	width: 100%!important;
}

#internet_model~.selectize-control.single .selectize-input {
	
}

#internet_model~.selectize-control.single .selectize-input:after {
	display:none;
}

#internet_model~.selectize-control.plugin-remove_button .selectize-input>span {
    background: #f2f2f2;
    color: #303030;
    border: 0 solid #cacaca;
    margin: 0 3px 3px 0;
    padding: 2px 6px;
}

#internet_model~.selectize-control.plugin-remove_button .selectize-input>span a.remove-single {
	border-left: 1px solid #d0d0d0;
	padding: 2px 0px 2px 6px;
}

tr.status-published td, .status-published {
    background-color: #9feca7!important;
	background-color: #9feca71a!important;
}

tr.status-draft td, .status-draft {
    background-color: #f9bf6a!important;
	background-color: #f9bf6a2b!important;
}

tr.status-pending td, .status-pending {
	background-color: #6ac4e8!important;
	background-color: #6ac4e829!important;
}

tr.status-private td, .status-private {
    background-color: #ff0000!important;
	background-color: #ff000026!important;
}

td.ebay_status.ebay-published {
	color: darkgreen;
}

td.ebay_status.ebay-prepared {
    color: orange;
}

td.ebay_status.ebay-verified {
    color: #21759B;
}


/*= Home Page
*********************************************/
div#date-range {
	text-align: center;
}
.splash {
	margin: 0 auto;
	max-width: 860px;
	text-align: center;
	color: rgb(255, 255, 255);
}

.index.logged-in .splash { 
	margin-top: 5%;
}

.splash h2 {
	font-weight: 300;
    font-size: 42px;
}
.splash h3 {
	font-weight: 400;
    font-size: 20px;
	letter-spacing: 2px;
}
.splash #reporting-demo {
	float: right;
	max-width: 100%;
}
.splash a.nav-link,
.book-demo-btn {
	background-color: #E85C41;

	/* Rounded Corners */
	-webkit-border-radius: 6px 6px 6px 6px;
	   -moz-border-radius: 6px 6px 6px 6px;
			border-radius: 6px 6px 6px 6px;

	white-space: nowrap;
	text-decoration: none !important;
	cursor: pointer;
	color: rgb(255, 255, 255) !important;
	display: inline-block;
	position: relative;
	border: none;
	font-size: 11px;
	line-height: 1.6875;
	font-weight: bold;
	text-align: center;
	letter-spacing: .04em;
	text-decoration: none;
	padding: 0.57143em 1.42857em;
	max-width: 100%;
	-webkit-font-smoothing: antialiased;

	margin-top: 40px;
	
}

.notification {
  background: rgba(255,255,255,.1);
  padding: 1rem;
}

.notification .col p,
.notification .col h3,
.notification .col b,
.notification .col strong {
	display: block!important;
	margin-top:0;
	text-align: left;
	line-height: 1.4rem!important;
}

.notification .col li {
	text-align: left;
	list-style-type: disc;
}

#admin-options {
	text-align: left;
}



/*= Message Highlight Boxes
*********************************************/
.clocked-on-message,
.advisor-deleted-notice,
.messagebox-red {
	white-space: nowrap;
	border: 1px solid rgb(238, 238, 238);
	width: auto;
	display: inline-block;
	padding: 10px;
	background-color: red !important;
	color: white !important;
}
.messagebox-orange {
	white-space: nowrap;
	border: 1px solid rgb(238, 238, 238);
	width: auto;
	display: inline-block;
	padding: 10px;
	background-color: #FF9800 !important;
	color: white !important;
}
.advisor-deleted-cell {
	white-space: nowrap;
	background-color: #FF9800 !important;
	color: white !important;
}

/*= Technician Performance Page
*********************************************/
#filterForm .selectize-control {
    margin-right: 0.5rem;
    min-width: 180px;
    max-width: 25%;
    text-align: left;
    z-index: 1;
}

#tech-perf-charts .report-charts .col {
	text-align: center;
}

#tech-perf-charts .report-charts .grid_12_of_12 {
	margin-left: 0;
}

#weighted-results_form {
	padding-top: 1.2rem;
	font-style: italic;
}

.btn.clear-avail-hrs {
	margin: 0 15px;
	font-size: 0.75em;
	float: right;
}

.tech-perf-table-options .col.grid_8_of_12,
.tech-perf-table-options .col.grid_4_of_12.isGroup {
    padding: 10px 0;
}

.tech-perf-table-options label:not(:last-child) {
	margin-right: 1.2rem;
}

.tech-perf-table {
	/*margin-left: calc(-95vw / 2 + 1320px / 2)!important;
	margin-right: calc(-95vw / 2 + 1320px / 2)!important;*/
}

.tech-perf-table .google-visualization-table>div {
    overflow: visible!important;
}

.tech-perf-table table thead th {
	white-space: normal;
}

.tech-perf-table table tr td:last-child {
	white-space: nowrap !important;
	position: relative;
}

.tech-perf-table table tr td:nth-child(2) {
	white-space: nowrap !important;
	text-align: left;
}

.tech-perf-table table tbody tr td:nth-child(3) {
    white-space: nowrap;
}

#table INPUT.avail-hr-adjust-input {
	width: 45px;
	border: 1px solid rgb(189, 199, 216);
	padding: 3px;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;
	font-size: 11px;
	vertical-align: text-bottom;
	text-align: right;
}

.tech-perf-table tbody tr td.action_btn {
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position: center;
    cursor: pointer;
    display: inline-block;
	width: 26px;
	height: 26px;
}

.tech-perf-table tbody tr td.save_btn {
	background-image: url('/images/save.png');
}

.tech-perf-table tbody tr td.delete_btn {
	background-image: url('/images/cross.png');
}

.tech-perf-table tbody tr td.loading {
	background-image: url('/images/loading.gif');
}

.tech-perf-table tbody tr td i.avail-hr-del {
	cursor: pointer;
	margin-left: 5px;
}

.tech-perf-table tbody tr td.save_spinner i.avail-hr-del {
	display: none;
}

.tech-perf-table tbody tr td.save_spinner {
	position:relative;
	padding-right: 30px;
}

.tech-perf-table tbody tr td.save_spinner:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	margin: auto;
	margin-left:5px;
	border: 4px solid transparent;
	border-top-color: var(--green);
	border-radius: 50%;
	animation: button-loading-spinner 1s ease infinite;
}

.tech-perf-table tbody tr td.prepare_save {
	position:relative;
	padding-right: 30px;
}

.tech-perf-table tbody tr td.prepare_save:after {
	content: url(/images/save.png);
	font-family: FontAwesome;
	position: absolute;
	margin: 2px;
	margin-left: 7px;
	color: var(--light_blue);
	cursor: pointer;
	font-size: 18px;
	font-size: 1.125rem;
}

.tech-perf-table tbody tr td.prepare_save i {
	display:none;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

TABLE .actionbtn,
.actionbtn {
	height: 16px;
	width: 16px;
	display: inline-block;
	margin: 1px;
	padding: 0;
	cursor: pointer;
	z-index: 1;
	background-size: contain;
    background-repeat: no-repeat;
}
TABLE .actionbtn.large,
.actionbtn.large {
	height: 32px;
	width: 32px;	

}
TABLE .emailbtn.input,
.emailbtn.input {
	position:absolute;
	top: 0;
	right: 0;
}
TABLE .actionbtn.right,
.actionbtn.right {
	align-self: flex-end;
}
TABLE .savebtn,
.savebtn {
	background-image: url("../images/save.png");
}
TABLE .savebtn.large,
.savebtn.large {
	background-image: url("../images/save-32x32.png");
}
TABLE .tickbtn,
.tickbtn {
	background-image: url("../images/tick.png");
}
TABLE .tickbtn.large,
.tickbtn.large {
	background-image: url("../images/tick-32x32.png");
}
TABLE .plusbtn,
.plusbtn {
	background-image: url("../images/plus.png");
}
TABLE .plusbtn.large,
.plusbtn.large {
	background-image: url("../images/plus-32x32.png");
}
TABLE .deletebtn,
.deletebtn {
	background-image: url("../images/cross.png");
}
TABLE .deletebtn.large,
.deletebtn.large {
	background-image: url("../images/cross-32x32.png");
}
TABLE .emailbtn,
.emailbtn {
	background-image: url("../images/email.png");
}
TABLE .emailbtn.large,
.emailbtn.large {
	background-image: url("../images/email-32x32.png");
}
TABLE .loading_btn,
.loading_btn {
	background-image: url(../images/loading.gif);
}
TABLE .loading_btn.large,
.loading_btn.large {
	background-image: url(../images/loading.gif);
} 
TABLE .saved_btn,
.saved_btn {
	background-image: url(../images/tick.png);
}
TABLE .saved_btn.large,
.saved_btn.large {
	background-image: url(../images/tick-32x32.png);
}
TABLE .copybtn,
.copybtn {
	background-image: url("../images/copy.png");
}
TABLE .copybtn.large,
.copybtn.large {
	background-image: url("../images/copy-32x32.png");
}
TABLE .duplicatebtn,
.duplicatebtn {
	background-image: url("../images/copy-settings.png");
}
TABLE .duplicatebtn.large,
.duplicatebtn.large {
	background-image: url("../images/copy-settings-32x32.png");
}
TABLE .refreshbtn,
.refreshbtn {
	background-image: url("../images/refresh.png");
}
TABLE .refreshbtn.large,
.refreshbtn.large {
	background-image: url("../images/refresh-32x32.png");
}
TABLE .hidebtn,
.hidebtn {
	display: none;
}

.savebtn.loading_btn,
.savebtn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.6;
}

#canvasLoader {
	padding: 0;
	margin: 0;
}
TD.clocked-on {
	background-color: red !important;
	color: white !important;
}
td.tech-deleted-td {
    background-color: #ed9621;
    color: white;
}




/*= Dealer Config Page
*********************************************/
/* Tabs */
#tabs {
	border: none;
	margin-bottom: 2rem;
}

#tabs .tabs {
	list-style-type: none;
}

#tabs .ui-widget-header { 
	background: transparent;
	border: none; 
	border-radius: 0;
}
#tabs > div {
	border: 1px solid #c5c5c5;
	    background-color: white;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, 
.ui-state-active, .ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active {
	border: 1px solid #4f9dd9;
	background: #4f9dd9;
}
.ui-widget {
    font-family: Roboto,Helvetica,sans-serif;
}
/* Tab 1 - 3619 Config */
H2.config-h2 {
	font-size: 14px;
	color: #555;
	margin: 20px 0 10px 0;
}

.tech-data-table div,
.tech-data-table table {
	width: 100%;
}

a#re-sort-categories {
	float: right;
	font-size: 11px;
	box-shadow: 1px 3px 5px rgb(204, 204, 204);
	margin: 10px 10px 0 0;
}
TABLE TD.st-rate-cell,
TABLE TD.tech-allocation-cell {
	text-align: right;
	padding-right: 5px;
	position: relative;
	padding-right: 16px;
}
TABLE TD.st-category-cell,
TABLE TD.tech-classification-cell {
	text-align: center;
}
SELECT.classification,
SELECT.category {
	
	/*Rounded Corners*/
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
INPUT.allocation,
INPUT.rate {
	width: 50px;
	text-align: right;
	margin-right: 5px !important;

	/*Rounded Corners*/
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}


/* Tab 2 - Open Wty Config */
#open-wty-config-table tbody tr td:nth-child(3) {
	display: flex;
}
#open-wty-config-table tbody tr td input.sub_days {
	width: 35px;
	padding: 1px 3px;
	margin-right: 3px;
}

/* Tab 3 - Advisor Sales Config */

.advisor_csi {
	text-align:right;
}
.daily_sales_target .advisor_csi,
.gp_adjustments .advisor_csi,
.daily_labour_target .advisor_csi,
.daily_targets .advisor_csi {
	text-align:left;
}

.daily_sales_target_separator,
.daily_targets_separator {
	background-color: #3a6da5;
}

.budget_config_table tbody tr.daily_targets_separator td {
	padding: 1px;
}

.budget_config_table tbody tr td {
    padding: 6px 4px;
}

.daily_targets td,
.gp_adjustments td {
    height: 24px;
}

#advisor-csi .table thead th.toprow {
	text-align: right;
	padding: 0 0 1rem 0;
}

#advisor-csi .table thead th.toprow a {
	font-weight: 500;
	font-size: 12px;
	color: rgba(7, 157, 217);
}

#advisor-csi .table thead th {
	vertical-align: top;
}

#advisor-csi .table tfoot td {
	text-align: right; 
}

#advisor-misc-sales .table thead th {
	text-align: left;
}
#advisor-misc-sales .table tbody td {
	padding: 1px 3px;
}

#advisor-misc-sales .table tfoot td {
	text-align: right; 
}

/* Daily Email Config */
.daily_reports .config-table {
    width: 100%;
	table-layout: fixed;
}

.daily_reports .config-table tr td:first-child {
	font-weight: bold;
	padding-right: 25px;
	width: 20%;
	white-space: nowrap;
}

/*= 04-06-2019: Dealer Profile Page
*************************************************/
.config-table {
    width: 100%;
	table-layout: fixed;
}

.config-table tr td:first-child {
	font-weight: bold;
	padding-right: 25px;
	width: 25%;
}

.config-table tr.input_text_format td {
    padding-bottom: 1rem;
}

.config-table .parent_cell {
	position: relative;
}

.config-table .parent_cell a:after {
	content: '\f148';
	font-family: FontAwesome;
	position:absolute;
	top: 5px;
	right: 2px;
	font-size: 1.5rem;
	color: var(--light_blue);
	font-weight: 100;

	/* Flip the icon horizontally */
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.dealer-details .dateinput,
.dealer-details input[type="text"],
.dealer-details input[type="number"],
.dealer-details input[type="password"],
.dealer-details select,
.dealer-details textarea,
.add-new-dealer-container .dateinput,
.add-new-dealer-container input[type="text"],
.add-new-dealer-container input[type="number"],
.add-new-dealer-container input[type="hidden"],
.add-new-dealer-container select,
.add-new-dealer-container textarea {
    border: 1px solid #d0d0d0;
	padding: 8px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	color: #5b5b5b;
}

.config-table #email_recipients ~ div input[type="text"] {
	min-width: 200px;
}

/* simple styling add new dealer button */
.toggle-dealer-btn {
	display: inline-block;
	float: right;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding: 0.5em 1em;
	font-size: 1rem;
	cursor: pointer;
	background-color: var(--light_blue);
	color: white;
	border-radius: 4px;
	border:none;
}
.toggle-dealer-btn:hover {
	background-color: var(--dark_blue);
}


/* simple styling ftp enable toggle */
.ftp_toggle_btn {
	display: inline-block;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding: 0.5em 1em;
	font-size: 1rem;
	cursor: pointer;
	background-color: var(--light_blue);
	color: white;
	border-radius: 4px;
	border:none;
}
.ftp_toggle_btn:hover {
	background-color: var(--dark_blue);
}

#ftp-settings {
	
}

table#add-new-dealer-table {
	width: 100%;
	background-color: #f7f7f7;
	border: 1px solid #efefef;
	border-radius: 4px;
	padding: 1rem;
}

A#add_user {
	float: right;
	font-size: 11px;
}
TD.alignmiddle {
	text-align: center;
}
table.dataTable td.edit-user {
	cursor: pointer;
}

table.dataTable td.edit-user:before {
	content: '\f044';
	font-family: FontAwesome;
	font-size: 22px;
	color: #55a4be;
}

table.dataTable tr.shown td.edit-user:before {
	content: '\f00d';
	color: black;
}

.inactive_user td {
    color: #d0d0d0;
    text-decoration: line-through;
}

#user_record {
    margin: 0 1rem 1rem 1rem;
}

table.user-data-table tr td input, 
table.user-data-table tr td select {
	padding: 5px;
	font-size: 12px;
}

table.access_control_table tr td {
	border-bottom: none;
	vertical-align: top;
}

input.toggle-acl {
    vertical-align: sub;
}

.access_control_table .user_checkbox {
    vertical-align: middle;
}

/* Active/Inactive Toggle */
.active_toggle:before {
	width: 28px;
	height: 25px;
	padding: 0;
	margin: 0 5px 0 0;
	font-size: 2rem;
	font-size: 32px;
	font-family: FontAwesome;
	cursor: pointer;
}

.active_toggle.on:before {
	content: '\f205';
	color: var(--green);
}

.active_toggle.off:before {
	content: '\f204';
	color: var(--red);
}

/*= Dealer Profile: 2FA Settings
*********************************************/

table.table-2fa tbody td {
    position: relative;
}

.table-2fa h2,
.table-2fa h3 {
	margin-bottom: 0rem;
}

table.table-2fa tbody td p {
	font-size: 13px;
}

#qrcode-text {
	font-family: monospace;
	background-color: #f0f0f1;
	text-align:center;
}

/*= 04-02-2020: Aftersales Config
*************************************************/
#aftersales-service-kpi-form input.aftersales_kpi {
    text-align: right;
}

/*= Parts Config Page
*********************************************/

.row.page_filters {
	margin-bottom: 1rem;
}

.parts_config_table td,
.parts_config_table th,
.budget_config_table td, 
.budget_config_table th{
	padding: 2px .35em;
	background-color: inherit;
	background-clip: padding-box;
}

.parts_config_table thead tr,
.budget_config_table thead tr {
	background-color: #e4e9f4;
	font-weight: bold;
	text-align: center;	
}

.parts_config_table thead tr th,
.budget_config_table thead tr th {
	border: solid #eee;
	border-width: 0 1px 1px 0;
	padding: 2px .35em;
	position: relative;
	z-index: 10;
	background-image: url(//ssl.gstatic.com/charts/static/table-title-bg.gif) repeat-x left bottom;
	background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: linear-gradient(to bottom,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
}

.parts_config_table tbody td,
.budget_config_table tbody td {
    border: solid #eee;
    border-width: 0 1px 1px 0;
    padding: 2px .35em;
}

.budget_config_table tbody td.input_cell {
	position: relative;
}

.budget_config_table tbody td.input_cell:before {
    content: '$';
    position: absolute;
    top: calc( 50% - 0.5rem );
    left: 0.5rem;
}

.budget_config_table tbody td.input_cell input {
	text-align: right;
}

.parts_config_table tbody tr.parts_config_table_odd,
.budget_config_table tbody tr.parts_config_table_odd {
    background-color: #fafafa;
}

.parts_config_table tbody td select,
.budget_config_table tbody td select {
	padding: 2px 3px;
}

.budget_config_table td.save {
	position: relative;
	width: 32px;
	width: 2rem;
	height: 32px;
	height: 2rem;
}

.vertical-table-formatting {
	border: 1px solid #e4e9f4;
}

.vertical-table-formatting th, 
.vertical-table-formatting td {
    border-bottom: 1px solid #e4e9f4;
	padding: 3px .5rem;
	font-size: 12px;
}

.vertical-table-formatting th {
    background-color: #e4e9f4;
	background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,255,255,0.8)),color-stop(30%,rgba(255,255,255,0.7)),color-stop(60%,rgba(255,255,255,0.5)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -o-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: linear-gradient(to bottom,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccffffff',endColorstr='#00ffffff',GradientType=0);
    border: solid #eee;
    border-width: 0 1px 1px 0;
	text-align: left;
}

.vertical-table-formatting tbody tr td:not(:first-child) {
	text-align: right;
}

.parts_config_table .text_input {
	
}

.parts_config_table .number_input {
	text-align: right;
}

.parts_config_table .numeric.percent .number_input {
	padding-right: 12px;
}

.parts_config_table .numeric.percent:after {
	margin-left: -12px;
}

.parts_config_table .numeric.dollar:before {
	position: absolute;
	line-height: 1.6;
	margin-left: 1px;
}

.parts_config_table .numeric.dollar .number_input {
	width: calc(100% - 8px);
}

.parts_config_table td:last-child {
    text-align: center;
}

.parts_config_table td .actionbtn {
	margin: auto;
}

.parts_config_table .add_row td {
	border-top: 1px solid var(--dark_blue);
}

#age_calculation_config_form.submitting #parts_age_calc {
	background-image: url(../images/loading.gif);
    background-size: 16px 16px;
    background-position: right;
    background-repeat: no-repeat;
	animation: 2s saving;
}

.web_store_config_table tbody td {
	font-size: 100%;
	text-align: left!important;
}

.web_store_config_table tbody td.config {
	font-weight: bold;
}

.web_store_config_table tbody td.setting {
	padding: 10px 16px;
}

.web_store_config_table tbody td.setting.status {
	font-weight: bold;
}

.web_store_config_table tfoot td {
	padding: 16px 0;
}

.web_store_config_table tfoot td a.activate {
	
}

.web_store_category_table {
	margin-bottom: 2rem;
	width: 100%;
}

.web_store_category_table tbody tr td {
    padding: 10px 16px;
    font-size: 14px;
    text-align: left !important;
}

.web_store_category_table.table1 tbody tr td:first-child {
    padding-left: 0;
}

.web_store_category_table td select, 
.web_store_category_table td input {
	padding: 5px!important;
    width: 200px;
    font-size: 15px;
	-ms-box-sizing:content-box;
	-moz-box-sizing:content-box;
	-webkit-box-sizing:content-box; 
	box-sizing:content-box;
}

.web_store_category_table td select {
	margin-top: 5px;
}

.web_store_category_table tfoot td {
    padding: 16px 0;
}

.web_store_tag_table tbody tr td {
    padding: 10px 16px;
    font-size: 14px;
    text-align: left !important;
}

.web_store_tag_table tfoot td {
    padding: 16px 0;
}

#resultModal table {
	width: 100%;
	border-collapse: collapse;
}
#resultModal table, #resultModal th, #resultModal td {
	border: 1px solid black;
}
#resultModal th, #resultModal td {
	padding: 8px;
	text-align: left;
}
#resultModal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 600px;
	padding: 20px;
	background-color: white;
	border: 1px solid #ccc;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	z-index: 11;
	max-height: 80%;
	overflow-y: auto;
}
#resultModal h2 span {
	font-size: 12px;
	font-weight: 400;
}
#resultModal table {
	width: 100%;
}
#closeModal {
	cursor: pointer;
	color: red;
	float: right;
}


/*= 28-03-2019: DataTables: Format columns
*************************************************/
td.numeric.dollar:before {
    content: '$';
}
td.numeric.percent:after {
	content: '%';
}

/*= Admin Config Page
*********************************************/

.admin_config_table td,
.admin_config_table th {
	padding: 2px .35em;
	background-color: inherit;
	background-clip: padding-box;
}

.admin_config_table thead tr {
	background-color: #e4e9f4;
	font-weight: bold;
	text-align: center;	
}

.admin_config_table thead tr th {
	border: solid #eee;
	border-width: 0 1px 1px 0;
	padding: 2px .35em;
	position: relative;
	z-index: 10;
	background-image: url(//ssl.gstatic.com/charts/static/table-title-bg.gif) repeat-x left bottom;
	background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
	background-image: linear-gradient(to bottom,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
}

.admin_config_table tbody td {
    border: solid #eee;
    border-width: 0 1px 1px 0;
    padding: 2px .35em;
}

.admin_config_table tbody tr td:first-child {
	width: 25%;
	vertical-align: top;
}

.admin_config_table td.save {
	position:relative;
	height: 40px;
	width: 40px;
}

/*= Add User/Edit User Pages
*************************************************/

.user-details .dateinput, 
.user-details input[type="text"], 
.user-details input[type="password"], 
.user-details select, 
.user-details textarea {
	border: 1px solid #d0d0d0;
	padding: 8px;
	display: inline-block;
	width: 100%;
	min-width: 250px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 10%);
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 10%);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #5b5b5b;
	
}

.user-details .button-cell {

}

/* DataTable Header & Footer
**************************/
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info {
	font-size: 11px;
}
.dataTables_wrapper .dataTables_length {
	margin: 10px 0 0 10px;
}
.dataTables_wrapper .dataTables_filter {
	margin: 10px 10px 0 0;
}
.dataTables_wrapper .dataTables_info {
	padding: 10px;
}
.dataTables_wrapper .dataTables_paginate {
	padding: 10px;
}
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter select {
	font-size: 11px;
	font-weight: bold;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
	padding: 0.1em 0.3em;
	font-size: 11px;
}
table.dataTable thead th, table.dataTable thead td {
    padding: 5px 15px 5px 0;
	font-size: 10px;
}
table.dataTable tbody th, table.dataTable tbody td {
    padding: 5px 2px;
	font-size: 10px;
}
table.dataTable thead td select {
	font-size: 10px;
	/*width: 100%;*/
	/*min-width: 40px;*/
}

/* Advisor Reports CSS
**************************/
/* Filters */
#dateFilter {
	padding: 0 5px;
	border: 1px solid #ccc;
	height: 32px;
	width: 190px;
	cursor: pointer;
	box-shadow: 0px 1px 2px 0px #ccc;
	background-color: #efefef;
}

#advisorFilterForm {
	display: flex;
	justify-content: center;
}

#advisorFilterForm #deptFilter,
#advisorFilterForm #saleCatFilter,
#advisorFilterForm #makeFilter {
	display:none;
}

#advisorFilterForm .selectize-control {
	margin-right: 0.5rem;
	min-width: 180px;
	max-width: 25%;
	text-align: left;
}

#advisorFilterForm .deptFilter {
	margin-left: 0.5rem;
}

.fa-calendar.dateFilterCal {
    margin: 8px 5px 0 -18px;
}

/* Table */
.google-visualization-table-table {
	border-collapse: collapse;
}
.table-formatting {
	border: 1px solid #e4e9f4;
}
.table-formatting th, .table-formatting td {
    border-bottom: 1px solid #e4e9f4;
	padding: 3px .5rem;
	font-size: 12px;
}
.table-formatting th {
    background-color: #e4e9f4;
	background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,255,255,0.8)),color-stop(30%,rgba(255,255,255,0.7)),color-stop(60%,rgba(255,255,255,0.5)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -o-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: linear-gradient(to bottom,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccffffff',endColorstr='#00ffffff',GradientType=0);
    border: solid #eee;
    border-width: 0 1px 1px 0;
}
.table-formatting tbody tr:nth-child(even):not(.hols) {
	background-color: #efefef;
}
.hols {
	background-color: #ebebeb70;
	color: #CCC;
}
.table-formatting tbody tr td:not(:first-child) {
	text-align: right;
}
.table-formatting tbody tr td:not(:first-child):before {
	content: '$';
	float: left;
	margin-right: 5px;
}

/* Totals Table */
.table-formatting-totals {
	border: 1px solid #e4e9f4;
}

.table-formatting-totals tr td {
	border-bottom: 1px solid #e4e9f4;
    padding: 3px .5rem;
	font-size: 12px;
}
.table-formatting-totals tr:last-child td {
	border: none;
}
.table-formatting-totals tr td.bold {
	font-weight: bold;
}
.table-formatting-totals tr td:first-child {
    background-color: #e4e9f4;
	background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,255,255,0.8)),color-stop(30%,rgba(255,255,255,0.7)),color-stop(60%,rgba(255,255,255,0.5)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -o-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    background-image: linear-gradient(to bottom,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.7) 30%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccffffff',endColorstr='#00ffffff',GradientType=0);
    border: solid #eee;
    border-width: 0 1px 1px 0;
	font-weight: bold;
}

.table-formatting-totals tr td.empty_cell:first-child {
	background: none;
	border-right: none;
}

.table-formatting-totals tr td:last-child {
	text-align: right; 
}

.table-formatting-totals tr td.dollar:last-child:before {
	content: '$';
	float: left;
	margin-right: 5px;
}

.table-formatting-totals tr td.percent:last-child:before {
	content: ' %';
	float: right;
}

/* + Green or - Red  */
td.red {
	background-color: red;
	color: white;
} 
td.green {
	background-color: green;
	color: white;
}

.show_hide_details {
	position: absolute;
	left: -20px;
	top: 45px;
	cursor: pointer;
	font-size:1rem;
}
.show_hide_details:before {
	font-family: 'FontAwesome';
	content: '\f06e';
	margin-right: .5rem;
}
.show_hide_details.plus:before {
	content: '\f196'; 
}
.show_hide_details.hidden:before {
	content: '\f070';
}
.show_hide_details.plus.hidden:before {
	content: '\f147';
}

/*Google Chart Tables*/
.dept_sales_perf_cat tr td:nth-child(1)  {width: 16%;}

.dept_sales_perf_type tr td:nth-child(1)  {width: 8%;}
.dept_sales_perf_type tr td:nth-child(2)  {width: 8%;}

.dept_sales_perf_cat tr td:first-child 	{ white-space: nowrap; }
.dept_sales_perf_type tr td:first-child { white-space: nowrap; }
.adv_sales_perf tr td:first-child  		{ white-space: nowrap; overflow: visible;}
.adv_sales_perf_dtl tr td:first-child	{ white-space: nowrap; }
.adv_sales_perf_csi tr td:first-child	{ white-space: nowrap; }
.on_time_perf tr td:first-child			{ white-space: nowrap; }
.misc_sales tr td:nth-child(2)			{ white-space: nowrap; }

.tech-perf-table table tfoot tr,
#dept_sales_perf_cat tfoot tr,
#dept_sales_perf_type tfoot tr,
#adv_sales_perf tfoot tr,
#adv_sales_perf_dtl_a tfoot tr,
#adv_sales_perf_dtl_b tfoot tr,
#adv_sales_perf_csi tfoot tr,
#on_time_perf tfoot tr,
#misc_sales tfoot tr,
table.google-visualization-table-table tfoot tr {
	background-color: #f4f6fa;
}

.tech-perf-table table tfoot th,
#dept_sales_perf_cat tfoot th,
#dept_sales_perf_type tfoot th,
#adv_sales_perf tfoot th,
#adv_sales_perf_dtl_a tfoot th,
#adv_sales_perf_dtl_b tfoot th,
#adv_sales_perf_csi tfoot th,
#on_time_perf tfoot th,
#misc_sales tfoot th,
table.google-visualization-table-table tfoot th {
	font-weight: bold;
	font-size: 12px;
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
}
table.google-visualization-table-table tfoot th {
	height: 1.5rem;
}
table.google-visualization-table-table tfoot th.right {
	text-align: right;
}
table.google-visualization-table-table tfoot th:first-child {
	text-align: right;
}
.tech-perf-table table tfoot tr:first-child th
#dept_sales_perf_cat tfoot tr:first-child th,
#dept_sales_perf_type tfoot tr:first-child th,
#adv_sales_perf tfoot tr:first-child th,
#adv_sales_perf_dtl_a tfoot tr:first-child th,
#adv_sales_perf_dtl_b tfoot tr:first-child th,
#adv_sales_perf_csi tfoot tr:first-child th,
#on_time_perf tfoot tr:first-child th,
#misc_sales tfoot tr:first-child th,
table.google-visualization-table-table tfoot tr:first-child th {
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}
#dept_sales_perf_cat tfoot th:first-child,
#dept_sales_perf_type tfoot th:first-child,
#adv_sales_perf tfoot th:first-child,
#adv_sales_perf_dtl_a tfoot th:first-child,
#adv_sales_perf_dtl_b tfoot th:first-child,
#adv_sales_perf_csi tfoot th:first-child,
#on_time_perf tfoot th:first-child,
#misc_sales tfoot th:nth-child(3) {
	text-align: left;
}

#misc_sales tbody tr td:nth-child(3):empty,
#adv_sales_perf_csi tbody tr td:nth-child(2):empty {
	background-color: red;
}

.show-advisor-message {
	
}
.other-advisors {
	display: none;
	position: absolute;
	z-index: 999;
	background-color: #FFF;
	border: 3px solid #ededed;
	padding: 5px;
	line-height: 1.4;
	text-align: center;
}
.blue-col {
	background-color: rgb(226, 235, 248)!important; 
	background-color: #072f8a2b!important; 
}

@media screen and (min-width: 1320px) {
	#dept_sales_perf_tab_panel,
	#adv_sales_perf_tab_panel,
	#on_time_perf_tab_panel,
	#misc_sales_analysis_tab_panel {
		margin-left: calc(-98vw / 2 + 1320px / 2);
		margin-right: calc(-98vw / 2 + 1320px / 2);
	}
}

/*= Page: Payment Gateway Config
*********************************************/
#payment-gateway-form .row .col {
	position:relative;
}
#payment-gateway-form div.ajax-file-upload-container {
	margin-bottom: 0;
}
#payment-gateway-form div.ajax-file-upload-statusbar {
	padding-left:5px;
	margin: 0;
	border-color: #ececec;
}
#payment-gateway-form div.ajax-file-upload-statusbar img.ajax-file-upload-preview {
    margin: 1rem 0;
	max-width: 100%;
	display: block;
}
#payment-gateway-form div.ajax-file-upload-statusbar div.ajax-file-upload-filename {
    display: inline-block;
    font-size: smaller;
    line-height: 2;
	width: auto;
}
#payment-gateway-form div.ajax-file-upload-statusbar {
	width: auto;
}
#payment-gateway-form div.ajax-file-upload-statusbar > div:last-child {
    float: right;
    margin: 0;
}
#payment-gateway-form label {
	line-height: 24px;
}
#payment-gateway-form .input_field {
	width: 100%;
	font-size: 18px;
}

#payment-gateway-form .novatti .input_field,
#payment-gateway-form .securepay .input_field {
	font-size: 14px;
	padding: 5px;
}

#payment-gateway-form .novatti.surcharge .input_field {
	width: calc(100% - 10px);
}

#payment-gateway-form .novatti.surcharge i.fa.fa-percent {
    position: absolute;
    right: 0;
    top: 60%;
    color: #a7a7a7;
}

#payment-gateway-form textarea.input_field {
	width: calc(100% - 6px);
}
#payment-gateway-form .accepted_cards {
    margin-right: 1rem;
    height: 48px;
    width: 48px;
	cursor: pointer;
}
#payment-gateway-form .accepted_cards.off {
    box-shadow: 0px 0px 2px 2px #F44336;
	filter: grayscale(1);
    opacity: .6;
}
#payment-gateway-form .accepted_cards.off:hover {
    filter: grayscale(0);
}
#payment-gateway-form .accepted_cards.on {
    box-shadow: 0px 0px 2px 2px #4CAF50;
}

#payment-gateway-form .novatti_link {
	box-shadow: 0px 0px 1px 0px grey;
	display: inline-block;
	padding: 0.375rem;
	margin-bottom: 1rem;
}

#payment-gateway-form .payment_admin .col {
	margin-bottom: .5rem;
}
#payment-gateway-form .col.first {
	clear:both;
	margin-left:0;
}

#payment-gateway-form .pw i.fa {
    position: absolute;
    right: 0;
    top: 0;
	cursor: pointer;
}

#payment-gateway-form .pw i.fa.fa-eye {
    color: var(--light_blue);
}

#payment-gateway-form .pw i.fa.fa-eye-slash {
    color: var(--light_blue);
}


#payment-gateway-form .col .savebtn.large.actionbtn {
    top: auto;
	bottom: 0px;
}

table#payments_log_table.dataTable thead th, 
table#payments_log_table.dataTable tbody td {
	font-size: 1rem;
}

.payments_log_table_wrapper .dataTables_wrapper .dataTables_length, 
.payments_log_table_wrapper .dataTables_wrapper .dataTables_filter, 
.payments_log_table_wrapper .dataTables_wrapper .dataTables_info,
.payments_log_table_wrapper .dataTables_wrapper .dataTables_length select, 
.payments_log_table_wrapper .dataTables_wrapper .dataTables_filter select {
    font-size: 1rem;
}

#payments_log_table td.view_invoice {
	cursor: pointer;
}
#payments_log_table td.view_invoice:before {
    content: '\f06e';
    font-family: FontAwesome;
    font-size: 22px;
    color: limegreen;
}
#payments_log_table tr.shown td.view_invoice:before {
    content: '\f070';
    color: #333333;
}

table#payments_log_table.dataTable tbody td.invoice,
table#payments_log_table.dataTable tbody td.name,
table#payments_log_table.dataTable tbody td.sent,
table#payments_log_table.dataTable tbody td.viewed,
table#payments_log_table.dataTable tbody td.paid {
	text-align:center;
}
table#payments_log_table.dataTable tbody td.amount {
	text-align:right;
}

table#payments_log_table.dataTable div#invoice {
	padding: 2rem;
	background-color: #fafafa;
}
table#payments_log_table.dataTable table.invoice_display {
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
}
table#payments_log_table.dataTable table.invoice_display tr.heading_row th {
    padding: .5rem;
    background-color: #4f9dd9;
    color: white;
	font-size: 1rem;
	text-align: left;
}
table#payments_log_table.dataTable table.invoice_display tr td:first-child {
	font-weight: bold;
}
table#payments_log_table.dataTable table.invoice_display tr td ol {
	margin: 0;
	padding-left: 0;
	list-style-position: inside;
}
table#payments_log_table.dataTable table.invoice_display tr td a.pay_link,
table#payments_log_table.dataTable table.invoice_display tr td a.attachment_link {
	color: blue;
	text-decoration: underline;
}
table#payments_log_table.dataTable table.invoice_display tr td a.pay_link:after,
table#payments_log_table.dataTable table.invoice_display tr td a.attachment_link:after {
	content: '\f14c';
	font-family: FontAwesome;
	margin-left: 10px;
	color: #6b6b6b;
}
table#payments_log_table.dataTable table.invoice_display tr td span.payment_confirmed {
    font-weight: bold;
    color: limegreen;
}
table#payments_log_table.dataTable table.invoice_display tr td span.payment_unconfirmed {
    font-weight: bold;
    color: red;
}

.time_popup {
	display: none;
	position: absolute;
	background-color: white;
	padding: 10px;
	border: 1px solid lightgrey;
}


/*= Invoice Tab: payment-gateway-tab
*********************************************/
div#invoice-tab {
	background-color: #f9f9f9;
	border-left: 2px solid rgb(58, 108, 165);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index:2;
}
#open-invoice-tab {
	position: absolute;
	left: -58px;
	background-color: #f9f9f9;
	border-left: 2px solid rgb(58, 108, 165);
	border-bottom: 2px solid rgb(58, 108, 165);
	padding: 20px 8px;
    border-bottom-left-radius: 10px;
	cursor:pointer;
}
div#invoice-tab>iframe {
	background-color: #f9f9f9;
	display: none;
	border: 0;
	height:100%;
	width: 340px;
}

#invoice-form {
	padding: 35px 10px 0px 20px;
}
#invoice-form h3 {
    border-bottom: 3px solid rgb(7, 157, 217);
    padding-bottom: 10px;
    display: initial;
}
#invoice-form .invoice_field {
	width: 100%;
	font-size: medium;
	padding:3px;
}
#invoice-form input.invoice_field.loading_bg {
	background-image: url(../images/loading.gif);
	background-size: 24px 24px;
	background-repeat: no-repeat;
	background-position: right;
}
#invoice-form .invoice_field.left_border {
	border-width: 1px;
	border-left: 2px solid rgb(7, 157, 217);
}
div#invoice_lookup_message {
    color: red;
	font-size: 10px;
    line-height: 1.5;
}
#invoice-form .ajax-upload-dragdrop {
    text-align: center;
	padding: 20px 0;
}
#invoice-form .ajax-upload-dragdrop > span {
    display: block;
}
#invoice-form .ajax-file-upload-container {
    margin: 20px 0px 0px 0px;
}
#invoice-form .ajax-file-upload-statusbar {
	margin: 0 0 5px 0;
}
#invoice-form .ajax-file-upload-filename {
	font-size: 10px;
	width: 100%;
}
#invoice-form span.ajax-file-upload-error {
    color: red;
    font-size: 12px;
}

#invoice-form .invoice_button_container {
	display: flex;
	justify-content: space-between;
}
#invoice-form .invoice_button_container a.btn.save_invoice {
    white-space: nowrap;
    margin: 0;
}
#invoice-form p a.send {
	margin: 0;
}

/*= Overlay
 ***************************/
.overlay {
	display:none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    padding: 50% 1rem 1rem 1rem;
}

.overlay i.fa-times {
	position: fixed;
    top: 10px;
    right: 15px;
    color: palegreen;
	cursor: pointer;
}

/* Link Messages */
.overlay #link_result_message {
    display: flex;
    justify-content: space-evenly;
    border: 1px solid rgb(0, 224, 116);
    background-color: white;
	padding: 5px 0;
	margin-bottom: 10px;
	position: relative;
}

.overlay #link_result_message.error_message {
    border-color: red;
    padding: 10px;
}

.overlay #link_result_message input {
	width: 90%;
	font-size: 80%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;    
    border: none;
}

.overlay #link_result_message i.fa {
	justify-content: right;
	cursor: pointer;
}

.overlay #link_result_message i.fa:active {
    opacity: .5;
	font-weight: bold;
	zoom: 0.8;
}

/* Email Messages */
.overlay #invoice_result_message {
    display:none;
	text-align: center;
    border: 1px solid rgb(0, 224, 116);
    background-color: white;
	padding: 10px 5px;
	margin-bottom: 10px;
}


/*= Admin Config
*********************************************/
.admin_config_table {
	width: 100%;
}

.admin_config_table .input_cell textarea {
	width: 100%; 
}

.admin_config_table .input_cell small {
	display: block;
	margin: 0.5rem 0;
}

.admin_config_table .input_cell small a {
	font-weight: bold;
}

.config-admin #commission {
	width:50px;
}

.payment_gateway_revenue_table tr.google-visualization-table-tr-odd td {
    border-bottom: 1px solid grey;
}

.payment_gateway_revenue_table tr td:last-child {
	background-color: #f4f6fa;
	border-left: 1px solid grey;
}

/*= Admin Config - Alerts & Notifications
*********************************************/

.alert {
	position: relative;
	padding: 0.75rem 1.25rem;
	margin-bottom: 2rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 600;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.alert>.start-icon {
	margin-right: 0;
	min-width: 20px;
	text-align: center;
}

.alert>.start-icon {
	margin-right: 5px;
}

.greencross
{
	font-size:18px;
	color: #25ff0b;
	text-shadow: none;
}

.alert-simple.alert-success
{
	border: 1px solid rgba(36, 241, 6, 0.46);
	background-color: rgba(7, 149, 66, 0.12156862745098039);
	box-shadow: 0px 0px 2px #259c08;
	color: #0ad406;
	transition:0.5s;
	cursor:pointer;
}
.alert-success:hover{
	background-color: rgba(7, 149, 66, 0.35);
	transition:0.5s;
}
.alert-simple.alert-info
{
	border: 1px solid rgba(6, 44, 241, 0.46);
	background-color: rgba(7, 73, 149, 0.12156862745098039);
	box-shadow: 0px 0px 2px #0396ff;
	color: #0396ff;
	transition:0.5s;
	cursor:pointer;
}

.alert-info:hover
{
	background-color: rgba(7, 73, 149, 0.2);
	transition:0.5s;
}

.blue-cross
{
	font-size: 18px;
	color: #0bd2ff;
	text-shadow: none;
}

.alert-simple.alert-warning
{
	border: 1px solid rgba(241, 142, 6, 0.35);
	background-color: rgba(220, 128, 1, 0.1);
	box-shadow: 0px 0px 2px #ffb103;
	color: #ffb103;
	transition:0.5s;
	cursor:pointer;
}

.alert-warning:hover{
	background-color: rgba(220, 128, 1, 0.2);
	transition:0.5s;
}

.warning
{
	font-size: 18px;
	color: #ffb40b;
	text-shadow: none;
}

.alert-simple.alert-danger
{
	border: 1px solid rgba(241, 6, 6, 0.81);
	background-color: rgba(220, 17, 1, 0.16);
	box-shadow: 0px 0px 2px #ff0303;
	color: #ff0303;
	transition:0.5s;
	cursor:pointer;
}

.alert-danger:hover
{
	background-color: rgba(220, 17, 1, 0.33);
	transition:0.5s;
}

.danger
{
    font-size: 18px;
    color: #ff0303;
    text-shadow: none;
}

.alert-simple.alert-primary
{
	border: 1px solid rgba(6, 241, 226, 0.81);
	background-color: rgba(1, 204, 220, 0.16);
	box-shadow: 0px 0px 2px #03fff5;
	color: #03d0ff;
	transition:0.5s;
	cursor:pointer;
}

.alert-primary:hover{
	background-color: rgba(1, 204, 220, 0.25);
	transition:0.5s;
}

.alertprimary
{
    font-size: 18px;
    color: #03d0ff;
    text-shadow: none;
}

.alert:before {
    content: '';
    position: absolute;
    width: 0;
    height: calc(100% - 44px);
    border-left: 1px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
    height: 20px;
}

/*= Footer 
*********************************************/
#footer {
	margin: 0 auto;
	position: fixed;
	width: 100%;
	bottom: 0;
	line-height: 2;
	font-size: 12px;
	text-align: center;
	text-transform: uppercase;
	background-color: rgb(233, 233, 233);
	color: rgb(99,99,99);
	z-index: 1;
}
#footer.scroller {
	position: relative;
}
#footer a img {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 0;
}
#footer ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: inline-block;
}
#footer ul li {
	display: inline-block;
	padding: 0 10px;
	line-height: 1;
	vertical-align: middle;
}
#footer ul li:not(:last-child) {
	border-right: 1px solid rgb(99,99,99);
}
.logged-in #footer ul li:first-child:before {

}
.logged-in #footer ul li:first-child {
	
}
#footer ul li a {
	color: rgb(99,99,99);
	font-size: 14px;
}
#debugging-toggle {
	background: url(../images/toggle-buttons.png) right 0 no-repeat;
	width: 185px;
	height: 35px;
	cursor: pointer;
	position: absolute;
	top: 15px;

}
.offButton {
	background-position: right -35px !important;
}
hr#debugging-separator {
	margin-bottom: 10px;
}

/* ==========================================================================
   Column & Row Setup
   ========================================================================== */

.col {
	display: block;
	float:left;
	margin: 0 0 0 1.6%;
}

/* Remove the margin on the first column. Works on all browsers incl. IE7+ */
.col:first-child { margin-left: 0; }

.row {
	clear: both;
	margin: 0 auto;
	*zoom: 1;
	position: relative;
}

.row:before,
.row:after {
	content: "";
	display: table;
}

.row:after { clear: both; }

/* ==========================================================================
   Twelve Column Grid
   ========================================================================== */

.grid_12_of_12 { width: 100%; }
.grid_11_of_12 { width: 91.53%; }
.grid_10_of_12 { width: 83.06%; }
.grid_9_of_12  { width: 74.6%; }
.grid_8_of_12  { width: 66.13%; }
.grid_7_of_12  { width: 57.66%; }
.grid_6_of_12  { width: 49.2%; }
.grid_5_of_12  { width: 40.73%; }
.grid_4_of_12  { width: 32.26%; }
.grid_3_of_12  { width: 23.8%; }
.grid_2_of_12  { width: 15.33%; }
.grid_1_of_12  { width: 6.866%; }

.wrapper-80 { padding: 0 10%; }
.wrapper-60 { padding: 0 20%; }
.wrapper-50 { padding: 0 25%; }

@media screen and (min-width: 1320px) {
	#all-data-table,
	.full-width-div	{
		margin-left: calc(-98vw / 2 + 1320px / 2);
		margin-right: calc(-98vw / 2 + 1320px / 2);
	}
	#all-data-table.vw90 {
		margin-left: calc(-90vw / 2 + 1320px / 2);
		margin-right: calc(-90vw / 2 + 1320px / 2);
	}
}


/*= Responsive < 1200 
*********************************************/
@media screen and (max-width: 1368px) {

	div#content { margin: 0 1rem; }
}

/*= Responsive < 1200 
*********************************************/
@media screen and (max-width: 1200px) {	
	.google-visualization-table-table {
		font-size: 8pt !important;
	}
	#customer-list {
		font-size: 13px;
	}
}

@media screen and (max-width: 1040px) {

	#customer-list {
		font-size: 12px;
	}
	.nav a {
		padding: 0;
	}
	#site-header .navigation .action-nav .nav-link > a {
		padding: 15px 10px;
	}

	#site-header .navigation #settings-icon {
		display: none!important;
	}
}

/*= Responsive < 1000 
*********************************************/
@media screen and (max-width: 1000px) {
	
	.nav li {padding: 0 18px 5px 18px;}
	.google-visualization-table-table {font-size: 8pt !important;}
	
	/* technician-performance.php */
	.tech-perf-table table tfoot th { font-size: 10px;}
	.tech-perf-table .avail-hr-adjust-input { margin: 0;font-size: 10px;}
}

/*= Responsive < 960 
*********************************************/
@media screen and (max-width: 960px) {
	#footer #footer-left,
	#footer #footer-right {
		font-size: 80%!important;
	}
}

@media screen and (min-width: 920px) {
	.nav a span:before {
		content: '\A';
		white-space: pre;
	}
}
@media screen and (max-width: 920px) {
	.nav {
		position: relative;
		min-height: 40px;
		margin: 10px 0!important;
	}	
	.nav ul {
		width: 200px;
		background: #fff;
		display: block;
	}
	.nav ul li.current:before {
		content: '\f0c9';
		position: absolute;
		color: black;
		font-family: FontAwesome;
		top: 8px;
		left: 8px;
	}
	.nav li {
		display: none; /* hide all <li> items */
		margin: 0;
		max-width: 100%;
		padding: 0;
	}
	.nav .current {
		display: block; /* show only current <li> item */
	}
	.nav a {
		display: block;
		padding: 5px 5px 5px 25px;
		text-align: left;
		line-height: 180%!important;
		font-size: 12px;
	}
	.nav .current a {
		background: none;
		color: #666;
	}
	.nav a:hover {
		color: rgb(148, 200, 230);
	}
	.nav a {
		color: #666;
	}
	.nav ul:hover li {
		display: block;
	}
	.nav ul:hover .current {
		background: url(images/icon-check.png) no-repeat 10px 7px;
	}

	/* right nav */
	.nav.right ul {
		left: auto;
		right: 0;
	}

	/* center nav */
	.nav.center ul {
		left: 50%;
		margin-left: -90px;
	}
	#site-header .navigation {
		width: auto;
		margin-left: 10px;
	}
	.action-nav #config-desktop {
		display: none!important;
	}
	
}

/*= Responsive < 860
*********************************************/
@media screen and (max-width: 860px) {

	.grid_1_of_12,
	.grid_2_of_12,
	.grid_3_of_12,
	.grid_4_of_12,
	.grid_5_of_12,
	.grid_6_of_12,
	.grid_7_of_12,
	.grid_8_of_12,
	.grid_9_of_12,
	.grid_10_of_12,
	.grid_11_of_12,
	.grid_12_of_12 {
		width: 100%;
	}
	.col {
		margin: 0;
	}
	
	/* header.php */
	header#site-header { padding: 1rem; width: calc(100% - 32px); }
	ul.user-nav { margin-right: 2rem; }
	
	/* technician-performance.php */
	.report-options .col.grid_2_of_12 { width: 15.33%;  }
	.report-options .col.grid_10_of_12 { width: 83.06%;margin-left: 1.6%; }

}

/*= Responsive < 768 
*********************************************/
@media screen and (max-width: 768px) {
	#debugging-toggle {
		width: 70px;
	}

}
/*= Responsive < 640 
*********************************************/
@media screen and (max-width: 710px) {

	#site-header #logo {
		width: 100%;
		float: none;
	}
	#loginform {
		float: none;
		width: 350px;
		margin: 0 auto;
	}
}

/*= Responsive < 640 
*********************************************/
@media screen and (max-width: 640px) {
	.btn {
		font-size: 10px;
	}
	.splash {
		margin: 0 20px;
	}
	#footer #footer-left,
	#footer #footer-right {
		font-size: 80%!important;
	}

}


/*= Responsive = Printing
*********************************************/
@media print {

	body { zoom: 0.75; padding-top: 5%; }
	img#settings-icon {
		float: left!important;
		margin-right: 100px!important;
		content:url("../images/absee-logo.png");
	}		
	#site-header, nav.nav, li.nav-link.logout, ul.user-nav, ul.user-nav img, a.help, select#archived-reports, div.report-options, .no-print, 
	.tp-availhrsadj-column input, .tp-availhrsadj-column div, div#footer { 
		display: none!important; 
	}
	/* Just make sure no tables extend past window */
	.tech-perf-table table,
	.non-prod-table table,
	.dept-perf-table table {
		font-size:10px;
	}

	#footer img {
		display: block; 
		text-align: center;
		position: running(footer);
	}

}