.test {
	background: linear-gradient(90deg, red 30px, black 0px, black);
	border-color: #ddd;
}
.due-for-truck {
	color: #800 !important;
	border-color:#a00 !important;
}
.golden {
	color: gold !important;
	border-color:gold !important;
}
.trim-no-wrap {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.info-box-text-no-uppercase {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}
.tooltip {
	min-width:150px;
	max-width:250px;
}
.minimal-padding {
  padding: 5px !important;
}
.bg-red-cut,
.bg-blue-cut,
.bg-light-blue-cut,
.bg-green-cut,
.bg-purple-cut,
.bg-black-cut {
  color: #fff !important;
}
.btn-default-cut{
	background: repeating-linear-gradient(
	  45deg,
	  #f4f4f4,
	  #f4f4f4 20px,
	  #dbdbdb 20px,
	  #dbdbdb 40px
	);
	background-color: #f4f4f4;
	color: #444;
	border-color: #ddd;
}
.btn-default:hover,
.btn-default:active,
.btn-default.hover {
  background-color: #e7e7e7;
}
.bg-red-cut {
	background: repeating-linear-gradient(
	  45deg,
	  #dd4b39,
	  #dd4b39 20px,
	  #c23321 20px,
	  #c23321 40px
	);
}
.bg-red-cut:hover,
.bg-red-cut:active,
.bg-red-cut.hover {
  background-color: #e7e7e7;
}
.bg-green-cut {
	background: repeating-linear-gradient(
	  45deg,
	  #00a65a,
	  #00a65a 20px,
	  #008d4c 20px,
	  #008d4c 40px
	);
}
.bg-purple-cut {
  background: repeating-linear-gradient(
	  45deg,
	  #605ca8,
	  #605ca8 20px,
	  #4c4988 20px,
	  #4c4988 40px
	);
}
.bg-light-blue-cut {
	background: repeating-linear-gradient(
	  45deg,
	  #3c8dbc,
	  #3c8dbc 20px,
	  #307095 20px,
	  #307095 40px
	);
}
.btn-warning-cut {
  background-color: #f39c12;
  background: repeating-linear-gradient(
	  45deg,
	  #f39c12,
	  #f39c12 20px,
	  #e08e0b 20px,
	  #e08e0b 40px
	);
  border-color: #e08e0b;
}
.cell-with-padding {
	padding-right:20px;
	white-space: nowrap;
}
.bg-dark-gray {
	color: #fff !important;
	background-color: #1e282c !important;
}
.bg-dark-gray:hover {
	color:#fff !important;;
}
.toggle-visible {
	display:none;
}
.info-box-large {
	display: block;
	min-height: 90px;
	background: #fff;
	width: 100%;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	border-radius: 2px;
	margin-bottom: 15px;
}
.info-box-large .progress {
  background: rgba(0, 0, 0, 0.2);
  margin: 5px -10px 5px -10px;
  height: 3px;
}
.info-box-large .progress,
.info-box-large .progress .progress-bar {
  border-radius: 0;
}
.info-box-large .progress .progress-bar {
  background: #fff;
}
.info-box-content-large {
    padding: 5px 10px;
    margin-left: 90px;
}
.info-box-icon-large {
	border-top-left-radius: 2px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 2px;
	display: block;
	float: left;
	height: 90px;
	width: 90px;
	text-align: center;
	font-size: 45px;
	line-height: 90px;
	background: rgba(0,0,0,0.2);
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}
 
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  width: 60px;
  height: 60px;
  margin-top: 13px;
  margin-left: 13px; 
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner .6s linear infinite;
}

.uparrow {
	display: none;
}

.downarrow {
	display: none;
}

.pointer {
		cursor: pointer;
}

.hover-lightgray:hover{
	background-color: #d2d6de;
}