@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,600&display=swap');


/* CSS Document */
/* line 2, ../sass/cops_style.scss */
/* html, body {
  overflow-x: hidden;
  overflow-y: auto;
} */

body {
	margin: 0;
	padding: 0;
	background-color: #e4e9ed;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

/* line 9, ../sass/cops_style.scss */
img {
  border: medium none;
  padding: 0;
  margin: 0;
}

/* line 13, ../sass/cops_style.scss */
/* p {
  margin: 0;
  padding: 0;
  line-height: 16pt;
} */

/* line 17, ../sass/cops_style.scss */
header {
	background-color: #1c222a;
	border-radius: 0 0 0 20px;
	background-image: linear-gradient(to right, #1c222a , #2c323a);
}

header, section, footer, aside, nav, article, figure {
  display: block;
}

header .dp-container {
  position: relative;
}
.dp-container  .dropdown-toggle {
  top: 30%;
}
.dp-container .dp-dropdown {
	position: relative;
  padding-left: 50px;
}

.dp-container .dp {
	position: absolute;
	left: 0;
	width: 40px;
	height: 40px;
	border-radius: 2.5px 5px 5px 10px !important;
	background-color: #3dbc91;
	top: 50%;
	transform: translateY(-55%);
}


.dp-container .dropdown-toggle:hover .dp {
	background-color: #1d9c71;
}


.ui-notifier  .dropdown-toggle:hover .notification {
  background-color: rgb(255, 255, 255, 0.1);
}


.dp-container .dp > span,
.ui-notifier .notification > span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.ui-notifier .notification {
	position: absolute;
	left: 0;
	width: 40px;
	height: 40px;
	border-radius: 2.5px 5px 5px 10px !important;
	background-color: #3dbc91;
	top: 50%;
  border-radius: 0 !important;
	background-color: transparent;
  border: 1px solid;
}


.ui-notifier .btn:focus {
 box-shadow: none;
}
.ui-notifier .dropdown-menu {
  max-height: 350px;
  overflow-y: auto;
  min-width: auto;   /* let it shrink */
  width: max-content; /* grow just enough to fit contents */
  max-width: 100vw;   /* prevent overflowing screen */
}

@media (max-width: 768px) { /* tablets and down */
  .ui-notifier .dropdown-menu {
    width: 250px;
  }
}

@media (max-width: 576px) { /* phones */
  .ui-notifier .dropdown-menu {
    position: fixed !important;
    top: 80px;    /* height of your navbar */
    left: 0;
    right: 0;
    width: 100% !important;
    max-height: calc(100vh - 60px);
    border-radius: 0;
  }
}

.ui-notifier .dropdown-menu .dropdown-item {
  white-space: normal;    /* allow wrapping */
  word-wrap: break-word;  /* break long words if needed */
}

.ui-notifier .dropdown-menu .dropdown-item span {
  display: block;         /* ensure each span is on its own line */
  white-space: normal;    /* wrap text */
}

.ui-notifier .dropdown-menu .dropdown-item span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

header #mainMenuNav li {
	white-space: nowrap;
}

header #mainMenuNav .nav-link {
	display: inline-block;
  font-weight: 600;
}

header #mainMenuNav li .badge {
	margin-right: 7.5px;
	position: relative;
	top: -2px;
}

/* line 20, ../sass/cops_style.scss */
a:not(.btn):not(.nav-link):not(.badge):not(.dropdown-item):not(.ui-tabs-anchor):not(.a-reset) {
  color: #0d8c61;
  /* text-decoration: underline; */
}

a:not(.btn):not(.nav-link):not(.badge):not(.dropdown-item):not(.ui-tabs-anchor):not(.a-reset):hover {
  color: #006c41;
}

/* line 24, ../sass/cops_style.scss */
/* hr {
  border: none;
  border-top: 1px solid #6f6f6f;
} */

/* line 29, ../sass/cops_style.scss */
select[multiple] {
	background: #fff;
	min-height: 100px;
}

/* Used within FF chrome to target CSS to specific URLs: being FF-specific,
it is also useful for targeting FF-only code */
@-moz-document url-prefix(http://) {
  /* line 36, ../sass/cops_style.scss */
  button::-moz-focus-inner,
  input[type="button"]::-moz-focus-inner,
  input[type="submit"]::-moz-focus-inner,
  input[type="reset"]::-moz-focus-inner {
    padding: 0 !important;
    border: 0 none !important;
  }
}
/* line 45, ../sass/cops_style.scss */
/* .flt_left {
  float: left;
} */

/* line 48, ../sass/cops_style.scss */
/* .flt_right {
  float: right;
} */

/* line 51, ../sass/cops_style.scss */
/* .flt_none {
  float: none;
} */

/* line 54, ../sass/cops_style.scss */
#main_wrapper {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.5s ease 1s, transform  0.5s ease 1s;
}

body[is-ready="false"] #main_wrapper {
  transition: opacity 0.2s ease 0s, transform  0.2s ease 0s;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* line 58, ../sass/cops_style.scss */
/* #main_container {
  min-height: 785px;
  min-width: 1190px;
  margin: 0 30px;
  padding: 0;
  background-color: #000;
  background-position: center 160px;
} */

/* Header */
/* line 66, ../sass/cops_style.scss */
/* #logo {
	width: 170px;
	height: 30px;
	background-image: url(../images/daily-logo.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-bottom: 20px;
} */

.hide {
  display: none;
}

#logo img {
	height: 35px;
	width: auto;
	image-rendering: crisp-edges;
	margin-top: -5px;
}

/* line 71, ../sass/cops_style.scss */
.search_block {
  display: block;
  height: 45px;
  overflow: hidden;
}

/* line 76, ../sass/cops_style.scss */
.search_block #search {
  float: right;
}

/* line 79, ../sass/cops_style.scss */
.logger_block {
  display: block;
  height: 77px;
}

/* line 83, ../sass/cops_style.scss */
.logger_block #logger {
  margin: 40px 20px 0 0;
  float: left;
}

/* line 87, ../sass/cops_style.scss */
.logger_block #logout {
  margin: 34px 0 0 0;
  float: left;
}

/* Login Style */
/* line 95, ../sass/cops_style.scss */
#form-wrapper {
  width: 100%;
  max-width: 350px;
}

/* line 102, ../sass/cops_style.scss */
#form-wrapper h2 {
  margin: 0 0 10px 0;
}

/* line 110, ../sass/cops_style.scss */
.login-cell input.input-fld {
  padding: 6px;
  /* width: 286px; */
}

/* line 114, ../sass/cops_style.scss */
.login-cell input.submit-btn {
  margin: 7px 0px 7px 124px;
}

/* line 117, ../sass/cops_style.scss */
.login-cell input.submit-btn:hover {
  background: #2d8e6b;
}

/* line 119, ../sass/cops_style.scss */
#nav_sub_container {
  padding-left: 30px;
  min-width: 825px;
}

/* Navigation Styles*/
/* line 125, ../sass/cops_style.scss */
.nav_block {
  display: block;
}

/* line 128, ../sass/cops_style.scss */
.nav_block #main_nav {
  float: right;
}

/* line 131, ../sass/cops_style.scss */
.nav_block #main_nav ul {
  list-style: none;
  text-align: right;
  margin-top: 9px;
  height: 15px;
  min-width: 550px;
  padding: 0;
}

/* line 139, ../sass/cops_style.scss */
.nav_block #main_nav ul li {
  display: inline;
  text-transform: uppercase;
  margin: 0px -1px;
}

/* line 144, ../sass/cops_style.scss */
.nav_block #main_nav ul li a {
  padding: 10px 20px;
  text-decoration: none;
  color: #FFF;
}

/* line 149, ../sass/cops_style.scss */
.nav_block #main_nav ul li a:hover, .nav_block #main_nav ul li a.active {
  padding: 10px 20px 19px 20px;
  background: #1d1d1d url(../images/nav_arrow.png) no-repeat;
  background-position: center 39px;
}

/* Footer */
/* line 155, ../sass/cops_style.scss */
/* #footer {
  height: 38px;
  min-width: 1190px;
} */

/* line 156, ../sass/cops_style.scss */
/* #footer p {
  font-size: 10px;
  color: #363636;
  padding: 15px 0 0 20px;
} */

footer {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.5s ease 1s, transform  0.5s ease 1s;
}

body[is-ready="false"] footer {
  transition: opacity 0.2s ease 0s, transform  0.2s ease 0s;
  opacity: 0;
  transform: translateY(10px);
}

/* Body */
/* line 164, ../sass/cops_style.scss */
/* #main_content {
  float: left;
  width: 100%;
} */

/* line 169, ../sass/cops_style.scss */
/* .left_column {
  width: 238px;
  margin-right: 30px;
} */
.left_column.flt_left {
	margin-bottom: 30px;
}

/* line 173, ../sass/cops_style.scss */
/* .right_column {
  min-height: 620px;
  min-width: 825px;
} */

/* line 177, ../sass/cops_style.scss */
#breadcrumbs {
	color: #333;
	font-size: 12px;
	margin-bottom: 20px;
  font-weight: bold;
}

/* line 183, ../sass/cops_style.scss */
#breadcrumbs a {
  color: #333;
  opacity: 0.5;
}

#breadcrumbs a:hover {
  opacity: 1;
  color: #0d8c61;
}

/* line 184, ../sass/cops_style.scss */
/* #sidepanel {
  width: 238px;
} */

/* line 188, ../sass/cops_style.scss */
/* #sidepanel .side_h3 {
  height: 35px;
} */

/* line 189, ../sass/cops_style.scss */
#sidepanel .side_h3:not(:first-child) {
	margin-top: 10px;
	border-top: 1px solid #dfdfdf;
	padding-top: 15px;
}

#sidepanel h3 {
	/* padding: 7px 0 0 11px; */
	margin-bottom: 5px;
	font-size: 0.75em;
	/* text-shadow: 1px 1px 0px #000000; */
	/* filter: dropshadow(color=#000000, offx=1, offy=1); */
	/* float: left; */
	font-weight: 600;
}

/* line 199, ../sass/cops_style.scss */
#sidepanel .pstation {
  /* max-height: 32px; */
  display: block;
}

/* line 202, ../sass/cops_style.scss */
#sidepanel .fullpanel,
#sidepanel .pstation {
  /* background: #090909;
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d; */
  /* margin-top: -1px; */
  overflow: hidden;
}

/* line 211, ../sass/cops_style.scss */
#sidepanel .fullpanel.selected a,
#sidepanel .pstation.selected a {
	color: #10b5bf;
	border-radius: 2px;
}

/* line 216, ../sass/cops_style.scss */
#sidepanel .fullpanel:not(.selected) a:not(.badge):not(.pstation-reset):hover,
#sidepanel .pstation:not(.selected) a:not(.badge):not(.pstation-reset):hover {
	color: #10b5bf;
}

/* line 221, ../sass/cops_style.scss */
#sidepanel .pstation img.psedit-btn,
#sidepanel .pstation .pstation_th,
#sidepanel .fullpanel img.psedit-btn,
#sidepanel .fullpanel .pstation_th {
  border-right: 1px solid #1d1d1d;
}

/* line 227, ../sass/cops_style.scss */
#sidepanel .pstation .pstation_th,
#sidepanel .fullpanel .pstation_th {
  background: #121212;
  height: 23px;
  width: 61px;
  color: #c8c8c8;
  font-size: 11px;
  padding: 9px 0 0 12px;
}

/* line 236, ../sass/cops_style.scss */
/* #sidepanel .pstation .alert_no,
#sidepanel .fullpanel .alert_no {
  width: 34px;
  height: 32px;
  background: #931715;
  color: #FFF;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  padding-top: 8px;
} */

/* line 247, ../sass/cops_style.scss */
/* #sidepanel .fullpanel .page_info {
  font-size: 12px;
  margin: 8px 0 8px 8px;
} */

/* line 252, ../sass/cops_style.scss */
#sidepanel .pstation .pstation_info,
#sidepanel .fullpanel .pstation_info {
  font-size: 12px;
  font-weight: bold;
}

/* line 259, ../sass/cops_style.scss */
#sidepanel .pstation .selectable-wrap,
#sidepanel .fullpanel .selectable-wrap {
  margin: 2px 0 0 34px;
}

#sidepanel .pstation .pstation_info .badge,
#sidepanel .fullpanel .pstation_info .badge {
  min-width: 20px;
  text-align: center;
}

/* line 264, ../sass/cops_style.scss */
#sidepanel a.selectable {
	color: #333;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	/* padding: 8px; */
	display: block;
	padding: 5px 0 5px 0;
}

/* line 275, ../sass/cops_style.scss */
#dashboard .side_h3 {
  /* height: 37px; */
}
/* line 276, ../sass/cops_style.scss */
#dashboard h3 {
  /* padding: 8px 0 0 45px; */
  margin: 0;
  color: #c6c6c6;
  font-size: 14px;
  text-shadow: 1px 1px 0px #000000;
  filter: dropshadow(color=#000000, offx=1, offy=1);
  float: left;
  font-weight: normal;
}
/* line 286, ../sass/cops_style.scss */
#dashboard ul {
  list-style: none;
  margin: 0 0 40px -17px;
  padding: 0;
  overflow: hidden;
}
/* line 292, ../sass/cops_style.scss */
#dashboard ul li {
  width: 153px;
  height: 153px;
  background: transparent url(../images/icon_box.png) top center no-repeat;
  margin: 0 20px;
  padding: 0;
  float: left;
}
/* line 298, ../sass/cops_style.scss */
#dashboard ul li img {
  margin: 0;
  padding: 0;
}
/* line 299, ../sass/cops_style.scss */
#dashboard ul li p {
  /*width:153px;*/
  height: 38px;
  vertical-align: text-bottom;
  margin: 10px;
}
/* line 305, ../sass/cops_style.scss */
#dashboard ul li p span.alert_count {
  float: right;
}
/* line 308, ../sass/cops_style.scss */
#dashboard ul li p span.alert_count label {
  color: #F7941E;
}
/* line 315, ../sass/cops_style.scss */
#dashboard ul li.highlight {
  background: transparent url(../images/icon_box_highlight.png) top center no-repeat;
}
/* line 317, ../sass/cops_style.scss */
#dashboard ul li.highlight div.circle {
  width: 20px;
  height: 20px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #931715;
  text-align: center;
}
/* line 326, ../sass/cops_style.scss */
#dashboard ul li.highlight div.circle label {
  color: #fff;
  line-height: 14.5pt;
}
/* line 333, ../sass/cops_style.scss */
#dashboard ul li:hover {
  background-position: bottom center;
}
/* line 335, ../sass/cops_style.scss */
#dashboard ul a {
  color: #e0e0e0;
  font-size: 13px;
}

/* line 345, ../sass/cops_style.scss */
#dashboard_home .side_h3 {
  height: 37px;
}
/* line 346, ../sass/cops_style.scss */
#dashboard_home h3 {
  color: #c6c6c6;
  font-size: 16px;
  text-shadow: 1px 1px 0px #000000;
  filter: dropshadow(color=#000000, offx=1, offy=1);
  float: left;
  font-weight: normal;
}
/* line 356, ../sass/cops_style.scss */
#dashboard_home ul {
  list-style: none;
  margin: 0 0 40px -17px;
  padding: 0;
  overflow: hidden;
}
/* line 363, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel {
  width: 180px;
  height: 234px;
  background: -moz-radial-gradient(center, ellipse cover, #333333 0%, rgba(12, 12, 12, 0.73) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #333333), color-stop(100%, rgba(12, 12, 12, 0.73)));
  /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(center, ellipse cover, #333333 0%, rgba(12, 12, 12, 0.73) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(center, ellipse cover, #333333 0%, rgba(12, 12, 12, 0.73) 100%);
  /* Opera 12+ */
  background: -ms-radial-gradient(center, ellipse cover, #333333 0%, rgba(12, 12, 12, 0.73) 100%);
  /* IE10+ */
  background: radial-gradient(ellipse at center, #333333 0%, rgba(12, 12, 12, 0.73) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#676767', endColorstr='#ba0c0c0c',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  margin: 0 20px;
  padding: 0;
  float: left;
  border: 1px solid rgba(126, 126, 126, 0.2);
}
/* line 380, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel img {
  margin: 0;
  padding: 0;
}
/* line 381, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel p {
  /*width:153px;*/
  height: 38px;
  vertical-align: text-bottom;
  margin: 10px;
}
/* line 387, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel p span.alert_count {
  float: right;
}
/* line 390, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel p span.alert_count label {
  color: #F7941E;
}
/* line 395, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel .disp-site {
  padding: 7px 0 0 11px;
  margin: 0;
  color: #F7941E;
  font-size: 16px;
  text-shadow: 1px 1px 0px #000000;
  filter: dropshadow(color=#000000, offx=1, offy=1);
  font-weight: normal;
}
/* line 406, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel .disp-location {
  margin: 4px 10px 0 10px;
}
/* line 409, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel .disp-location a {
  font-size: 13px;
  font-weight: bold;
  display: block;
  padding: 4px;
}
/* line 416, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel .selectable {
  height: 100%;
  width: 100%;
  display: block;
  text-align: center;
}
/* line 421, ../sass/cops_style.scss */
#dashboard_home ul li .icon-panel .selectable span {
  display: inline-block;
  margin: 50% 0;
}
/* line 429, ../sass/cops_style.scss */
#dashboard_home ul li .disp-location a:hover,
#dashboard_home ul li .selectable:hover {
  background: #CD9327;
  cursor: pointer;
}
/* line 433, ../sass/cops_style.scss */
#dashboard_home ul a {
  color: #e0e0e0;
  font-size: 13px;
}

/* line 442, ../sass/cops_style.scss */
.side_buttons {
	/* width: 94px; */
	/* min-height: 875px; */
	border-radius: 2.5px 5px 5px 10px !important;
	overflow: hidden;
}

.side_buttons.flt_left {
	float: left;
}

/* line 446, ../sass/cops_style.scss */
.side_buttons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 450, ../sass/cops_style.scss */
.side_buttons ul li {
  width: 94px;
  height: 93px;
  margin: 0;
  padding: 0;
}
/* line 455, ../sass/cops_style.scss */
.side_buttons ul li.side_btn:hover,
.side_buttons ul li.active {
  background-position: top right !important;
}
/* line 461, ../sass/cops_style.scss */
.side_buttons ul li.back2dash {
  height: 37px;
  background: #7f2e01 url(../images/back_btn.png) top left no-repeat;
}
/* line 462, ../sass/cops_style.scss */
.side_buttons ul li.back2dash:hover {
  background-position: top right;
}
/* line 463, ../sass/cops_style.scss */
.side_buttons ul li.daily_log_btn {
  background: #121212 url(../images/daily_log_btn.svg) top left no-repeat;
}
/* line 464, ../sass/cops_style.scss */
.side_buttons ul li.undef_service_logs_btn {
  background: #121212 url(../images/eng_svc_log_btn.svg) top left no-repeat;
}
/* line 465, ../sass/cops_style.scss */
.side_buttons ul li.monthly_summary_btn {
  background: #121212 url(../images/monthly_sum_btn.svg) top left no-repeat;
}
/* line 466, ../sass/cops_style.scss */
.side_buttons ul li.daily_readings_btn {
  background: #121212 url(../images/daily_meter_btn.svg) top left no-repeat;
}
/* line 467, ../sass/cops_style.scss */
.side_buttons ul li.maintenance_schedule_forecast_btn {
  background: #121212 url(../images/maintenance_sched_btn.svg) top left no-repeat;
}
/* line 468, ../sass/cops_style.scss */
.side_buttons ul li.monthly_reports_btn {
  background: #121212 url(../images/eom_btn.svg) top left no-repeat;
}
/* line 469, ../sass/cops_style.scss */
.side_buttons ul li.hand_over_btn {
  background: #121212 url(../images/handover_btn.svg) top left no-repeat;
}
/* line 470, ../sass/cops_style.scss */
.side_buttons ul li.supevisor_hand_over_btn {
  background: #121212 url(../images/supervisor_handover_btn.svg) top left no-repeat;
}
/* line 471, ../sass/cops_style.scss */
.side_buttons ul li.ohse_swi_btn {
  background: #121212 url(../images/doc_lib_btn.svg) top left no-repeat;
}
/* line 472, ../sass/cops_style.scss */
.side_buttons ul li.raise_po_btn {
  background: #121212 url(../images/raise_po_btn.svg) top left no-repeat;
}
/* line 473, ../sass/cops_style.scss */
.side_buttons ul li.power_outage_btn {
  background: #121212 url(../images/power_outage_btn.svg) top left no-repeat;
}
/* line 474, ../sass/cops_style.scss */
.side_buttons ul li.memo_btn {
  background: #121212 url(/images/memo_btn.svg) top left no-repeat;
}
/* line 475, ../sass/cops_style.scss */
.side_buttons ul li.inventory_btn {
  background: #121212 url(/images/inventory_btn.svg) top left no-repeat;
}
/* line 476, ../sass/cops_style.scss */
.side_buttons ul li.virtual_tank_btn {
  background: #121212 url(/images/virtual_tank_btn.svg) top left no-repeat;
}
.tank-holder svg {
	width: 100%;
	height: auto;
	max-width: 500px;
}
/* line 477, ../sass/cops_style.scss */
.side_buttons ul li.tricompartment_btn {
  background: #121212 url(/images/tricompartment_btn.svg) top left no-repeat;
}
/* line 478, ../sass/cops_style.scss */
.side_buttons ul li.feeder_incident_report_btn {
  background: #121212 url(/images/feeder_incident_report_btn.svg) top left no-repeat;
}
/* line 479, ../sass/cops_style.scss */
.side_buttons ul li.weekly_fuel_price_btn {
  background: #121212 url(/images/weekly_fuel_price_btn.svg) top left no-repeat;
}
/* line 480, ../sass/cops_style.scss */
.side_buttons ul li.eom_invoice_btn {
  background: #121212 url(/images/eom_invoice_btn.svg) top left no-repeat;
}
/* line 481, ../sass/cops_style.scss */
.side_buttons ul li.fuel_usage_btn {
  background: #121212 url(/images/fuel_usage_btn.svg) top left no-repeat;
}
/* line 482, ../sass/cops_style.scss */
.side_buttons ul li.tritank_fuel_btn {
  background: #121212 url(/images/tritank_fuel_btn.svg) top left no-repeat;
}

/* line 489, ../sass/cops_style.scss */
.right_column > .stage.flt_left {
  width: 100%;
	/* width: calc(100% - 95px); */
	float: left;
	padding-left: 15px;
}

/* .stage .side_h3 {
  height: 37px;
} */
/* line 492, ../sass/cops_style.scss */
/* .stage .side_h3 h3, .stage .side_h3 h4 {
  padding: 8px 0 0 10px;
  margin: 0;
  color: #c6c6c6;
  font-size: 14px;
  text-shadow: 1px 1px 0px #000000;
  filter: dropshadow(color=#000000, offx=1, offy=1);
  float: left;
} */
/* line 502, ../sass/cops_style.scss */
/* .stage .side_h3 h4 {
	font-weight: normal;
	line-height: 1.2em;
	font-size: 1.25rem;
	color: #333;
	text-shadow: none;
  float: none !important;
} */

/* line 510, ../sass/cops_style.scss */
.side_sub_header {
	padding-top: 5px;
	border-top: 1px solid #dfdfdf;
	margin-top: 15px;
}

.side_sub_header h4 {
  font-weight: bold;
  font-size: 14px;
  margin: 10px 0;
}

/* line 519, ../sass/cops_style.scss */
/* .stage .contents {
  min-height: 837px;
} */

/* line 522, ../sass/cops_style.scss */
.stage .contents,
.stage .contents_dyn_height {
  /* background: #e9e9e9; */
  /* min-width: 750px; */
  position: relative;
}

/* Services */
/* line 529, ../sass/cops_style.scss */
.main-table,
.main-div-table {
  /* color: #121212; */
  font-size: 12px;
}

/* line 536, ../sass/cops_style.scss */
.main-div-table {
  display: table;
}

/*.main-table tr { border:1px solid #000; }
.main-table tr td { border:1px solid #000; width:50px; }*/
/* line 547, ../sass/cops_style.scss */
.main-div-table .d-row {
  display: table-row;
}

/* line 551, ../sass/cops_style.scss */
/* .main-table tr td {
  width: 50px;
} */

/* line 554, ../sass/cops_style.scss */
.main-table.auto-w tr td {
  width: auto;
}

/* line 557, ../sass/cops_style.scss */
.main-div-table .d-row .d-col,
.main-div-table .d-row .d-head {
  display: table-cell;
  vertical-align: middle;
}

/* line 564, ../sass/cops_style.scss */
.main-div-table .d-caption {
  caption-side: bottom;
  display: table-caption;
  text-align: center;
}

/* line 567, ../sass/cops_style.scss */
div.colspan > div.col_child1 {
  width: 1px;
}

/* line 572, ../sass/cops_style.scss */
div.colspan > div.col_child1 > div.col_child2 {
  position: relative;
  width: 99px;
}

/* line 579, ../sass/cops_style.scss */
/* .main-div-table .d-row .d-col span,
.main-div-table .d-row .d-head span {
  padding: 0 5px;
} */

/* line 584, ../sass/cops_style.scss */
.main-div-table .d-row .d-head {
  font-weight: bold;
}

/* line 587, ../sass/cops_style.scss */
.main-table tr.table-headers,
.main-table thead,
.main-table tr.table-log-headers,
.main-div-table .d-row.table-log-headers {
  background-color: #d4edda;
  color: #333;
  height: 30px;
  /* border: 1px solid #cbcbcb; */
}
/* line 596, ../sass/cops_style.scss */
.main-table tr.table-headers a,
.main-table thead a,
.main-table tr.table-log-headers a,
.main-div-table .d-row.table-log-headers a {
  color: #333;
}

/* line 601, ../sass/cops_style.scss */
.main-table tr.log-record,
.main-div-table .d-row.log-record {
  text-align: center;
  height: 50px;
  background-color: #f2f2f2;
}

/* line 605, ../sass/cops_style.scss */
/* .main-table tr.table-log-headers th,
.main-table tr.table-headers th,
.main-table thead th,
.main-table tr.sm_gensets_table td {
  width: 101px;
} */

/* line 610, ../sass/cops_style.scss */
.main-table.reset-header-width tr.table-log-headers th,
.main-table.reset-header-width tr.table-headers th,
.main-table.reset-header-width thead th,
.main-table.reset-header-width tr.sm_gensets_table td {
  width: auto;
}

/* line 616, ../sass/cops_style.scss */
.main-table tr.sm_gensets_table {
  background: #f2f2f2;
  border: 1px solid #cbcbcb;
  text-align: center;
}

/* line 621, ../sass/cops_style.scss */
.main-table tr.sm_gensets_table a {
  display: inline-block;
}

/* line 624, ../sass/cops_style.scss */
.main-table tr.sm_gensets_table td img:not([alt="Actions"]) {
	background: #202020;
	margin: 0 -1px -3px -1px;
	border-radius: 5px;
	width: 27px;
	height: 27px;
	margin: 1px 0 !important;
}

/* line 627, ../sass/cops_style.scss */
.main-table tr.sm_gensets_table td img:not([alt="Actions"]):hover,
.main-table tr.sm_gensets_table td img:not([alt="Actions"]).active {
  background: #1b7d5a;
}

/* line 630, ../sass/cops_style.scss */
label {
	font-size: 14px;
	font-weight: normal;
}

table label {
	font-size: 12px;
	/* white-space: nowrap; */
}

label[for="drag-drop-check"] {
  padding: 10px;
}

/* line 635, ../sass/cops_style.scss */
label.black {
  color: black;
}

/* line 638, ../sass/cops_style.scss */
label.assign-lookup {
  display: inline-block;
  font-size: 12px;
  background: #c7c7c7;
  border: 1px solid #707070;
  padding: 5px;
  margin: 2px;
  float: left;
}

/* line 648, ../sass/cops_style.scss */
.assign-lookup span {
  border: solid 1px #707070;
  padding: 0 3px;
  margin-left: 2px;
}

/* line 654, ../sass/cops_style.scss */
select,
input[type="text"],
input[type="password"],
textarea {
  border: 1px solid #ced4da;
  background: #fff;
  width: 175px;
  outline: none;
  padding: .375rem .75rem;
  width: 100%;
  color: #495057;
  line-height: 1.5;
  border-radius: .25rem;
}

select,
input[type="text"],
input[type="password"] {
  height: calc(1.5em + .75rem + 2px);
}

input[disabled="disabled"],
input:disabled,
textarea:disabled {
   background-color: #f5f5f5 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    border: 1px solid #ccc !important;
    appearance: none !important;
}

input:read-only,
textarea:read-only {
    background-color: #fafafa;
    color: #666;
    border: 1px solid #ccc;
    cursor: default;
    opacity: 0.85;
}

/* line 664, ../sass/cops_style.scss */
input[type="text"]:focus,
textarea:focus {
  background: #FFFFFF;
}

/* line 669, ../sass/cops_style.scss */
::-webkit-input-placeholder {
  color: #dfdfdf !important;
}

/* line 670, ../sass/cops_style.scss */
:-moz-placeholder {
  color: #dfdfdf !important;
}

/* Firefox 18- */
/* line 671, ../sass/cops_style.scss */
::-moz-placeholder {
  color: #dfdfdf !important;
}

/* Firefox 19+ */
/* line 672, ../sass/cops_style.scss */
:-ms-input-placeholder {
  color: #dfdfdf !important;
}

/* line 674, ../sass/cops_style.scss */
select.select-field,
.main-table tr td select.select-fld,
.main-div-table .d-row .d-col select.select-fld {
  /* width: 260px;
  min-height: 30px; */
  /* padding: 4px; */
}

/* line 679, ../sass/cops_style.scss */
input.input-field:not([type="file"]),
.main-table tr td input.input-fld:not([type="file"]),
.main-div-table .d-row .d-col input.input-fld:not([type="file"]) {
  padding: 6px;
}

/* line 684, ../sass/cops_style.scss */
textarea.text-field,
.main-table tr td textarea.text-fld,
.main-div-table .d-row .d-col textarea.text-fld {
  /* width: 303px;
  height: 80px; */
  resize: none;
}

/* line 689, ../sass/cops_style.scss */
.main-table tr td.instructions p,
.main-div-table .d-row .d-col.instructions p {
  font-size: 14px;
  font-style: italic;
  margin: 10px 0;
}

/* line 693, ../sass/cops_style.scss */
input.checkbox-field,
.main-table tr td .checkbox input,
.main-div-table .d-row .d-col .checkbox input {
  width: 13px;
  float: left;
}

/* line 698, ../sass/cops_style.scss */
.main-table tr td .check_item p,
.main-div-table .d-row .d-col .check_item p {
  font-size: 12px;
  margin: 0 10px;
  line-height: 20px;
}

/* line 706, ../sass/cops_style.scss */
.main-table .left-align-header {
  text-align: left;
  width: 163px;
}

/* line 711, ../sass/cops_style.scss */
.main-table .left-align-header-subform {
  text-align: left;
  width: 163px;
}

/* line 716, ../sass/cops_style.scss */
.main-table .inline-block-elmt {
  display: inline-block;
}

/* line 720, ../sass/cops_style.scss */
/* .submit-btn, .cancel-btn, .postdailylog-btn btn btn-dark, .major-action-btn, .resolve-btn {
  background: #1c7d5a;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 8px;
  min-width: 170px;
  margin: 7px 6px;
  border: none;
  line-height: 16px;
  vertical-align: middle;
} */

/* line 735, ../sass/cops_style.scss */
/* .submit-btn {
  text-align: center;
} */

/* line 736, ../sass/cops_style.scss */
/* .cancel-btn {
  background: #202020;
  text-align: center;
} */

/* line 737, ../sass/cops_style.scss */
/* .postdailylog-btn btn btn-dark {
  background: #cc9227 url(../images/post_daily_log_btn.png) repeat-y right;
  text-align: center;
  padding-right: 32px;
} */

/* line 742, ../sass/cops_style.scss */
/* .major-action-btn {
  background: #7f2e01;
  text-align: center;
} */

/* line 747, ../sass/cops_style.scss */
.resolve-btn {
  background: #941715;
  min-width: 148px;
  text-align: center;
}

/* line 753, ../sass/cops_style.scss */
.add-mini-btn, .add-mini-btn2 {
  background: #202020 url(../images/add_mini-btn.png) top center no-repeat;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
}

/* line 763, ../sass/cops_style.scss */
.add-mini-btn2 {
  width: 24px;
  height: 24px;
  background-position-y: -4px;
  background-position-x: -4px;
  vertical-align: text-bottom;
}

/* line 772, ../sass/cops_style.scss */
/* .thin-grey_btn, a.thin-grey_btn, a.thin-grey_btn:hover, a.thin-grey_btn:visited {
  background: #202020;
  padding: 2px 8px;
  color: #fff;
  text-decoration: none;
} */

/* line 778, ../sass/cops_style.scss */
/* button.thin-grey_btn {
  border: 0;
  margin: 0;
  cursor: pointer;
} */

/* line 784, ../sass/cops_style.scss */
/* a.thin-grey_btn:hover,
button.thin-grey_btn:hover {
  background: #1c7d5a;
} */

/* line 787, ../sass/cops_style.scss */
.activity-box-date > *,
.gensets-header > * {
	font-size: 12px;
	font-weight: normal;
	color: #333333;
	border-top: 1px solid #dedede;
	padding-top: 20px;
	margin-top: 25px;
	margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

.activity-header:first-child .activity-box-date > *,
.activity-header:first-child .gensets-header > * {
	border-top: none !important;
	padding-top: 0 !important;
}

/* line 793, ../sass/cops_style.scss */
.activity-wrapper .activity-box {
  border: solid 1px #cbcbcb;
  background: #f2f2f2;
  margin-bottom: 10px;
	border-radius: 5px 10px 10px 20px !important;
}

/*-----------------------------------------*/
/* line 799, ../sass/cops_style.scss */
/* .user-profile-column {
  width: 100px;
  color: #121212;
} */

/* line 805, ../sass/cops_style.scss */
.user-profile-column .user-name {
  font-weight: bold;
  font-size: 12px;
  margin-left: 5px;
}

/* line 811, ../sass/cops_style.scss */
.user-profile-column .profile-details {
  margin: 6px;
}

/* .profile-details > img {
	border-radius: 2.5px 5px 5px 10px !important;
} */

/* line 815, ../sass/cops_style.scss */
.user-profile-column .created-at {
  font-size: 12px;
  margin-left: 5px;
  margin-bottom: 10px;
}

/* line 821, ../sass/cops_style.scss */
.text-content {
  max-width: 735px;
  display: inline-block;
}

/* line 825, ../sass/cops_style.scss */
.log_text {
  color: #121212;
  font-size: 12px;
}

/* line 830, ../sass/cops_style.scss */
.log_text p {
  line-height: normal;
  margin: 10px 0;
}

/* line 834, ../sass/cops_style.scss */
.log_btns,
.action_btns {
  white-space: nowrap;
  text-align: right;
}

tr.processed > td.log_btns {
  text-align: left;
}

.log_btns.is-multiple {
  min-width: 120px;
}

/* line 841, ../sass/cops_style.scss */
.log_btns a:not(.dropdown-item),
.time-delete a:not(.dropdown-item),
.action_btns:not(.dropdown-item) {
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	margin: 0 2px;
  background-color: #1c222a;
	border-radius: 2.5px 5px 5px 10px !important;
}

.log_btns.is-multiple a:not(.dropdown-item) {
	float: left !important;
}

tr.processed > td.log_btns.is-multiple a:not(.dropdown-item) {
	float: left !important;
}

.log_btns a:not(.dropdown-item):not(.active):hover {
  background-color: #3dbc91;
}

/* line 842, ../sass/cops_style.scss */
.log_btns a.active img {
  background-color: #3dbc91;
}
/* line 844, ../sass/cops_style.scss */
.log_btns button {
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  border: 0;
}
/* line 845, ../sass/cops_style.scss */
.log_btns button.active img {
  background: #B24926;
}
/* line 847, ../sass/cops_style.scss */
/* .log_btns img {
  background: #202020;
} */

/* line 854, ../sass/cops_style.scss */
.log_btns.transparent img {
  background: transparent;
}
/* line 858, ../sass/cops_style.scss */
.log_btns.transparent img:hover {
  background: transparent;
  border-bottom: 1px solid #fff;
}
/* line 859, ../sass/cops_style.scss */
.log_btns.transparent a img:hover {
  background: transparent;
  border-bottom: 1px solid #fff;
}
/* line 860, ../sass/cops_style.scss */
.log_btns.transparent button img:hover {
  background: transparent;
  border-bottom: 1px solid #fff;
}

/* line 864, ../sass/cops_style.scss */
.log-entry-clickable:hover .activity-box {
  background: #CBCBCB;
  cursor: pointer;
  cursor: hand;
}

/* line 873, ../sass/cops_style.scss */
table.table-row-based tr th {
  padding: 15px 0 5px;
  text-align: left;
}

/* line 880, ../sass/cops_style.scss */
.simple_border,
.simple_form_container {
  border: solid 1px #cbcbcb;
}

/* line 885, ../sass/cops_style.scss */
.simple_form_container {
  margin-bottom: 20px;
  padding: 5px;
}

/* line 890, ../sass/cops_style.scss */
.w-xs {
  width: 25px;
}

/* line 894, ../sass/cops_style.scss */
.w-s {
  width: 50px;
}

/* line 898, ../sass/cops_style.scss */
.w-m {
  width: 100px;
}

/* line 902, ../sass/cops_style.scss */
.w-l {
  width: 150px;
}

/* line 906, ../sass/cops_style.scss */
.w-xl {
  width: 200px;
}

/* line 910, ../sass/cops_style.scss */
.w-xxl {
  width: 250px;
}

/**Ajax Table Sorter**/
/* line 916, ../sass/cops_style.scss */
.a-sort .headers:after {
  font-size: 10px;
  text-decoration: none;
  letter-spacing: -2px;
  opacity: 0.5;
}
/* line 921, ../sass/cops_style.scss */
.a-sort .headers.up:after {
  content: " \25B2";
}
/* line 924, ../sass/cops_style.scss */
.a-sort .headers.down:after {
  content: " \25BC";
}
/* line 927, ../sass/cops_style.scss */
.a-sort .headers.none:after {
  content: " \25B2\25BC";
}

/* line 932, ../sass/cops_style.scss */
.ui-tooltip {
  padding: 10px 20px;
  border-radius: 20px;
  font: 13px "Helvetica Neue", Sans-Serif;
  pointer-events: auto !important;
  z-index: 9999;
  cursor: default;
}

/* line 940, ../sass/cops_style.scss */
.ui-tooltip,
.tooltip-arrow:after {
  background: white;
  border: 2px solid white;
}

/* line 946, ../sass/cops_style.scss */
.tooltip-arrow {
  width: 70px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: -16px;
  pointer-events: none !important;
}

/* line 955, ../sass/cops_style.scss */
.tooltip-arrow.top {
  top: -16px;
  bottom: auto;
}

/* line 959, ../sass/cops_style.scss */
.tooltip-arrow.left {
  left: 50%;
}

/* line 962, ../sass/cops_style.scss */
.tooltip-arrow:after {
  content: "";
  position: absolute;
  left: 20px;
  top: -20px;
  width: 25px;
  height: 25px;
  box-shadow: 6px 5px 9px -9px black;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  tranform: rotate(45deg);
}

/* line 976, ../sass/cops_style.scss */
.tooltip-arrow.top:after {
  bottom: -20px;
  top: auto;
}

/* line 982, ../sass/cops_style.scss */
.colorpicker input[type="text"] {
  width: auto !important;
}

/* line 987, ../sass/cops_style.scss */
select.ui-timepicker-select {
	width: 100%;
	margin-bottom: 5px;
}

/* line 993, ../sass/cops_style.scss */
.ui-cops .ui-accordion-content.ui-widget-content {
  background-color: #f2f2f2 !important;
  background-image: none !important;
  color: black;
}

.ui-datepicker {
	width: auto !important;
	font-size: 0.75em !important;
  padding: 10px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #3dbc91 !important;
	background: #3dbc91 !important;
	color: #fff !important;
}

/* line 998, ../sass/cops_style.scss */
.ui-cops .ui-corner-top,
.ui-cops .ui-corner-bottom,
.ui-cops .ui-corner-left,
.ui-cops .ui-corner-right {
  border-radius: 0px !important;
}
/* line 1005, ../sass/cops_style.scss */
.ui-cops .ui-corner-all {
  border-radius: 0px !important;
}
/* line 1009, ../sass/cops_style.scss */
.ui-cops .jq-tabs {
  background-color: #f2f2f2 !important;
  background-image: none !important;
}
/* line 1012, ../sass/cops_style.scss */
.ui-cops .jq-tabs .ui-widget-content {
  background-color: #f2f2f2 !important;
  background-image: none !important;
  color: black;
}
/* line 1016, ../sass/cops_style.scss */
.ui-cops .jq-tabs .ui-widget-content a {
  color: #444;
}

.ui-cops .jq-tabs .ui-widget-content a:hover {
  color: #fff;
}

/* line 1023, ../sass/cops_style.scss */
.tooltip-no-bg {
  background: transparent !important;
  background-image: none !important;
  width: 100% !important;
  padding: 0;
  box-shadow: none;
  border: 0;
}

/* line 1033, ../sass/cops_style.scss */
.loader,
.loader:after {
  border-radius: 50%;
  width: 0.1em;
  height: 0.1em;
}

/* line 1039, ../sass/cops_style.scss */
.loader {
  margin: 0px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 1076, ../sass/cops_style.scss */
.cops-action {
  width: 27px;
  height: 27px;
  display: inline-block;
  background: #000000;
  position: relative;
}

/* line 1083, ../sass/cops_style.scss */
.cops-action:before,
.cops-action:after {
  content: '';
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 1094, ../sass/cops_style.scss */
.cops-action:before {
  width: 22px;
  height: 22px;
  background-color: #fff;
}

/* line 1100, ../sass/cops_style.scss */
.cops-action:after {
  width: 20px;
  height: 20px;
  background-color: #000;
}

/* line 1106, ../sass/cops_style.scss */
.cops-action > * {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*-----------------------------------------*/


/* Block Design */
.grid-block {
	position: relative;
	margin-bottom: 30px;
	box-shadow: 5px 5px 20px -15px rgba(0, 0, 0, 0.5);
  transform: scale(1);
  transition: transform 0.5s ease;
}

.grid-block:hover {
  transform: scale(1.1);
	box-shadow: 5px 5px 20px -15px #3dbc91;
  border-color: #1d9c71;
  background-color: #3dbc91;
  background-image: url(/images/mining-card-bg.jpg);
  background-size: cover;
}

[data-get="minesites"] .grid-block,
[data-get="minesite-sub"] .grid-block,
[data-get="regions"] .grid-block,
[data-get="region-sub"] .grid-block  {
	height: 120px;
}

[data-get="minesite-level-functions"] .grid-block {
	height: 150px;
}

.grid-block > span,
.grid-block > p {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 5px;
  color: #333;
  margin: 0;
}

[data-get="minesite-level-functions"] .grid-block > p {
	font-size: 0.8em;
}

.grid-block:hover > span.text-dark,
.grid-block:hover > p {
  color: #1d9c71 !important;
}

.grid-block > img {
	position: absolute;
	height: 50px;
	padding: 10px;
	background-color: #000;
	width: 50px;
	object-fit: cover;
	border-radius: 2.5px 5px 5px 10px !important;
	top: -10px;
	left: 20px;
	box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.5);
}


/* Page Preloader */
[role=progressbar][aria-busy=true] {
  position: fixed;
  bottom: 0;
  left: 0;
  padding-top: 8px;
  width: 100%;
  background-color: #3dbc91;
  -webkit-animation: preloader-background linear 3.5s infinite;
          animation: preloader-background linear 3.5s infinite;
  pointer-events: none;
  transition: opacity 0.5s ease-out 1s;
  opacity: 1;
}

[role=progressbar][aria-busy=true]::before,
[role=progressbar][aria-busy=true]::after {
  display: block;
  position: fixed;
  bottom: 0;
  z-index: 2;
  width: 0;
  height: 8px;
  background: #5ddcb1;
  -webkit-animation: preloader-front linear 3.5s infinite;
          animation: preloader-front linear 3.5s infinite;
  content: "";
}

[role=progressbar][aria-busy=true]::before {
  right: 50%;
}

[role=progressbar][aria-busy=true]::after {
  left: 50%;
}

body[is-ready="true"] [role=progressbar] {
  opacity: 0;
}

@-webkit-keyframes preloader-background {
  0%, 24.9% {
    background-color: #3dbc91;
  }
  25%, 49.9% {
    background-color: #30d5df;
  }
  50%, 74.9% {
    background-color:  #10b5bf;
  }
  75%, 100% {
    background-color: #accfa7;
  }
}

@keyframes preloader-background {
  0%, 24.9% {
    background-color: #3dbc91;
  }
  25%, 49.9% {
    background-color: #30d5df;
  }
  50%, 74.9% {
    background-color:  #10b5bf;
  }
  75%, 100% {
    background-color: #accfa7;
  }
}
@-webkit-keyframes preloader-front {
  0% {
    width: 0;
    background-color: #30d5df;
  }
  24.9% {
    width: 50%;
    background-color: #30d5df;
  }
  25% {
    width: 0;
    background-color:  #10b5bf;
  }
  49.9% {
    width: 50%;
    background-color:  #10b5bf;
  }
  50% {
    width: 0;
    background-color: #accfa7;
  }
  74.9% {
    width: 50%;
    background-color: #accfa7;
  }
  75% {
    width: 0%;
    background-color: #3dbc91;
  }
  100% {
    width: 50%;
    background-color: #3dbc91;
  }
}

@keyframes preloader-front {
  0% {
    width: 0;
    background-color: #30d5df;
  }
  24.9% {
    width: 50%;
    background-color: #30d5df;
  }
  25% {
    width: 0;
    background-color:  #10b5bf;
  }
  49.9% {
    width: 50%;
    background-color:  #10b5bf;
  }
  50% {
    width: 0;
    background-color: #accfa7;
  }
  74.9% {
    width: 50%;
    background-color: #accfa7;
  }
  75% {
    width: 0%;
    background-color: #3dbc91;
  }
  100% {
    width: 50%;
    background-color: #3dbc91;
  }
}

/* Tinymce */
.tox .tox-promotion,
.tox-statusbar__branding {
	display: none;
	opacity: 0;
	pointer-events: none;
}


/* Purchase Order */
#purchase_items_button_container {
	pointer-events: none;
}

#purchase_items_button_container > * {
	pointer-events: all;
}


/* Table Scroller */
#scrollButton {
	position: fixed;
	bottom: 115px;
	right: 0;
	padding: 10px;
	background-color: #10b5bf;
	color: #fff;
	cursor: pointer;
	z-index: 980;
	border-radius: 2.5px 0 0 10px;
	text-decoration: none;
	font-size: 0.75em;
	box-shadow: 5px 5px 30px -10px rgba(0, 0, 0, 0.5);
  display: none !important;
}

#scrollButton:hover {
	background-color: #00959f;
}

#scrollButton > img {
	display: block;
	height: 7.5px;
	margin-bottom: 5px;
	margin-top: 3px;
}

#scrollButton.scrolled > img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}


/* App Switcher */
.hub-apps a {
  color: #fff !important;
}


/* Cog dropdown / Table Actions */
.dropdown img.dropdown-toggle,
.dropdown img.dropdown-toggle:hover {
	border-radius: 2.5px 5px 5px 10px !important;
}


/* Colla */

.header-content {
  position: relative; /* Position headers relative to place the pseudo-element */
  padding-left: 30px; /* Space for the image */
}

/* Adding the arrow image using ::before */
.header-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px; /* Adjust as needed */
  width: 20px;
  height: 20px;
  background-image: url('/images/arrow.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%); /* Center the image vertically */
  transition: transform 0.3s ease; /* Smooth transition for rotation */
}

/* Rotate the arrow when the collapse is open */
.collapsible-container[aria-expanded="true"].header-content::before {
  transform: translateY(-50%) rotate(90deg); /* Rotate the arrow when the collapse is open */
}

.btn-pallet-close {
  border: 1px solid;
}

.btn-pallet-close::before {
  content: 'X';
}

.btn-pallet-close:hover {
  text-decoration: underline;
  text-decoration-color: rgb(13, 140, 97);
  color:  rgb(13, 140, 97);
}


/* Workorder problem code tooltip styles */

.problem-code-tooltip-content {
  display: table;
  margin: 0px;
  padding: 0px;
}

/* Service Part lookup modal */
.modal.service-parts-lookup table td select.location-input {
  width: 150px;
}

.modal.service-parts-lookup .selected-parts-container .quantity-input,
.modal.service-parts-lookup .parts-list-container .quantity-input {
  max-width: 100px;
}

.modal.service-parts-lookup .selected-parts-list-container {
  max-height: 120px;
  overflow-y: auto;
  display: block;
}



.service-parts-lookup .modal-header {
  padding: 0.5rem 1rem;
  display: none;
}

.service-parts-lookup .modal-footer {
  padding: 0rem 0.5rem;
}

/* Ensure the modal and its content are restricted to the viewport */
.service-parts-lookup .modal-dialog {
  display: flex;
  flex-direction: column;
}

.service-parts-lookup .modal-content {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.service-parts-lookup .modal-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0.2rem;
}

/* Make the parts list container grow and scroll */
.service-parts-lookup .parts-list-container {
  flex-grow: 1;
  overflow-y: auto;
  min-height: 100px;
}

/* Ensure table header remains visible while the body scrolls */
.service-parts-lookup .parts-list-container table,
.service-parts-lookup .selected-parts-container table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Ensures columns respect percentage widths */
}

.service-parts-lookup .parts-list-container thead,
.service-parts-lookup .selected-parts-container thead {
  position: sticky;
  top: 0;
  background-color: white; /* Ensure header has a background */
  z-index: 10;
}


/* Ensure columns have static widths based on percentage */
.service-parts-lookup .parts-list-container th,
.service-parts-lookup .parts-list-container td,

.service-parts-lookup .selected-parts-container th,
.service-parts-lookup .selected-parts-container td {
  white-space: normal; /* Allow text to wrap */
  overflow: hidden;
  /*text-overflow: ellipsis*/; /* Add "..." when text is too long */
  position: relative;
}

/* Add a tooltip or expand the text on hover */
.service-parts-lookup .parts-list-container td:hover,
.service-parts-lookup .selected-parts-container td:hover {
  overflow: visible; /* Show overflowed content */
  white-space: normal; /* Allow wrapping to show full text */
  background-color: #f8f9fa; /* Optional: Highlight text on hover */
}

.service-parts-lookup .parts-list-container td {
  max-width: 100%; /* Allow content to span the column width */
}



/* Adjust column widths using percentages */
.service-parts-lookup .parts-list-container th:nth-child(1),
.service-parts-lookup .parts-list-container td:nth-child(1) { width: 7%; } /* Add */

.service-parts-lookup .parts-list-container th:nth-child(2),
.service-parts-lookup .parts-list-container td:nth-child(2) { width: 8%; } /* Quantity */

.service-parts-lookup .parts-list-container th:nth-child(3),
.service-parts-lookup .parts-list-container td:nth-child(3) { width: 16%; } /* Location */

.service-parts-lookup .parts-list-container th:nth-child(4),
.service-parts-lookup .parts-list-container td:nth-child(4) { width: 43%; } /* Part */

.service-parts-lookup .parts-list-container th:nth-child(5),
.service-parts-lookup .parts-list-container td:nth-child(5) { width: 11%; } /* Code */

.service-parts-lookup .parts-list-container th:nth-child(6),
.service-parts-lookup .parts-list-container td:nth-child(6) { width: 15%; } /* Quantity On Hand */


/* Adjust column widths using percentages */
/* Set specific percentage widths for each column */
.selected-parts-container th:nth-child(1),
.selected-parts-container td:nth-child(1) { width: 8%; }  /* Remove */

.selected-parts-container th:nth-child(2),
.selected-parts-container td:nth-child(2) { width: 10%; } /* Quantity */

.selected-parts-container th:nth-child(3),
.selected-parts-container td:nth-child(3) { width: 20%; } /* GT Issue Info */

.selected-parts-container th:nth-child(4),
.selected-parts-container td:nth-child(4) { width: 10%; } /* Location */

.selected-parts-container th:nth-child(5),
.selected-parts-container td:nth-child(5) { width: 25%; } /* Part */

.selected-parts-container th:nth-child(6),
.selected-parts-container td:nth-child(6) { width: 12%; } /* Code */

.selected-parts-container th:nth-child(7),
.selected-parts-container td:nth-child(7) { width: 15%; } /* Quantity On Hand */


.loading-bar-control {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: 5px;
  visibility: hidden; /* Initially hidden */
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: #007bff;
  position: absolute;
  animation: loadingAnimation 1s infinite linear;
}

@keyframes loadingAnimation {
  0% { left: 0; width: 25%; }
  25% { left: 25%; width: 50%; }
  50% { left: 50%; width: 75%; }
  75% { left: 75%; width: 100%; }
  100% { left: 100%; width: 0%; }
}


.select2-selection--multiple {
  min-height: 38px; /* or match your input height */
  padding-bottom: 2px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding-bottom: 2px !important;
}
