/*-----------------------------------------------*/
/*  /css/leaflet.css */

/* required styles */

.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	-webkit-user-drag: none;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
	max-width: none !important;
	}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
	max-width: 15000px !important;
	}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-tile-pane    { z-index: 2; }
.leaflet-objects-pane { z-index: 3; }
.leaflet-overlay-pane { z-index: 4; }
.leaflet-shadow-pane  { z-index: 5; }
.leaflet-marker-pane  { z-index: 6; }
.leaflet-popup-pane   { z-index: 7; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 7;
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-clickable {
	cursor: pointer;
	}
.leaflet-container {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}


/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}


/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-control-zoom-out {
	font-size: 20px;
	}

.leaflet-touch .leaflet-control-zoom-in {
	font-size: 22px;
	}
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 24px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/img//layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/img//layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: content-box;
	     box-sizing: content-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	margin: 0 auto;
	width: 40px;
	height: 20px;
	position: relative;
	overflow: hidden;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;

	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}

{}
/*-----------------------------------------------*/
/*  /css/app.css */

/* HTML / BODY */
html,
body{
	min-height: 100%;
	_height: 100%;
}

body{
	background: #444d54; /* Old browsers */
	background: -moz-linear-gradient(top, #444d54 0%, #ffffff 80%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444d54), color-stop(80%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #444d54 0%,#ffffff 80%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #444d54 0%,#ffffff 80%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #444d54 0%,#ffffff 80%); /* IE10+ */
	background: linear-gradient(to bottom, #444d54 0%,#ffffff 80%); /* W3C */
	background-attachment: fixed;
	background-repeat: repeat-x;
	min-width: 320px;
	overflow-x: hidden;
	overflow-y: hidden;
	height: 100vh;
}

.btn,
button,
input,
select,
textarea,
label.radio,
.SumoSelect,
.SelectBox {
	transform: translate3d(0, 0, 0);
	transform-style: flat;
	z-index: 1;
}

.SumoSelect.open{
	z-index: 10;
}

.content{
	display: block;
	min-height: calc(100vh - 240px);	
}

a:hover,
a:focus {
  text-decoration: none !important;
}
.warning-note{
	background: rgba(255, 0, 0, 0.06);
    margin: -24px -13px;
    margin-bottom: 24px;
    padding: 10px 12px 0 12px;
    border: 1px dotted rgba(204, 0, 0, 0.41);
    border-radius: 3px;
    color: #d9534f;
    text-shadow: 0 1px 1px rgba(255,255,255,1);
}

.pure-table{
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 0px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.07);
}
.pure-table thead {
    background-color: #ffffff
}
.pure-table td, .pure-table th {
    border-left: 1px solid #e6e6e6;
}

.pure-table .btn{
  margin-left: 0;
    margin-right: 2px;
}


.photos{
    display: flex;
    flex-grow: 1;
    align-items: stretch;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.photos > a{
    margin-bottom: 10px;
    display: block;

}

.photos img{
    max-width: 100%;
    max-height: 200px;    
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border-radius: 2px;
}

article > .results{
	border-radius: 2px;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.07);
    overflow-x: auto;
}

.warning-note ul{
    margin-top: -8px;
}

.gorow{
    padding: 5px;
    background: #FFF;
    border-radius: 40px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin: -2px;
    color: #AAA !important;
    vertical-align: top;
    line-height: 100%;
}
.gorow:hover{
    color: #AAA !important;

}

#layout{
    position: absolute;
    overflow: hidden;
    top: 0;
    padding-bottom: 80px;
}

#main{
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	height: 100vh;
}

#footer{
	position: absolute;
	bottom: 0;
	right: 0;
 	left: 0;
 	padding: 10px;
 	z-index: -1;
}

#footer p{
  padding-left: 48px;
  padding-top: 24px;
  margin-bottom: 10px;
  margin-right: 10px;
  text-align: right;
}

#footer img{
	width:100%;
	max-width: 140px;
	margin-left: 24px;
	margin-right: 20px;
}

#footer table{
	width: 100%;
}

.labelform .well ul{
    list-style-position: outside;
    padding: 0 0 0 20px;
    font-weight: 200;
    max-width: 90%;
    margin: 0 0 24px 0;
}

.labelform .well ul li{
	padding: 0;
	margin: 0 0 14px 0;
}

.reference {
	float: right;
}

.reference{
	
}

p{
	font-weight: 200;
}

table{
	font-size: 90%;
}

body > .container{
	margin-bottom: 100px;
}

.glyphicon-calendar{
	  pointer-events: none;
}

.testmode{
  position: absolute;
  left: 19px;
  z-index: 9999999;
  bottom: 6px;
  font-size: 17px;
  background-color: red;
  padding: 14px;
  color: #FFF;
  text-shadow: 0 2px 3px rgba(0,0,0,0.4);
  border-radius: 4px;
  box-shadow: 0px 0px 7px rgba(255,0,0,1);
}

.testinfo{
	font-size: 70%;
	position: fixed;
	bottom: 4px;
	right: 8px;
	text-align:right; 
	color: rgba(255,255,255,0.2)	
}

.abn{
	position: relative;
}

.abn .label{
 position: absolute;
  right: 5px;
  top: 31px;
  font-size: 94%;
  display: none;
}

.pika-single.is-bound {
   background: #FFF;
	z-index: 9999;
  position: absolute !important;
/*  top: 30px !important;*/
	right: 0px !important
}

.row.buttons{
	margin-left: -8px;
	margin-right: -8px;
}

.btn-rnd{
	padding:3px 5px 3px 6px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-cancel{
	float: left;
	margin-left: -14px;
	margin-bottom: 14px;
	margin-right: 18px;
	opacity: 0.3;

}

.btn-cancel:hover{
	opacity: 1;
	color: #FFF;	
	background-color: rgb(200, 7, 7);
	border-color: rgb(173, 11, 11);	
}

.btn-other{
    background-color: #ea7388;
    box-shadow: 0 1px 3px rgba(162, 72, 72, 0.38);
    border-color: #e45c73;
    color: #FFF !important;	
}

.btn-concern{
    color: #fff !important;
    background-color: #ec7e48;
    border-color: #f37800;
    box-shadow: 0 1px 3px rgba(162, 72, 72, 0.38);
}

.btn-yellow{
    color: #fff !important;
    background-color: #f3cc0c;
    border-color: #dac232;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.53);
    box-shadow: 0 1px 3px rgba(162, 72, 72, 0.38);
}


.btn-puce{
    color: #fff !important;
    background-color: #CC8899;
    border-color: #cc7c8f;
    box-shadow: 0 1px 3px rgba(162, 72, 72, 0.38);
}

.btn-neutral{
    background-color: #848484;
    border-color: #868686;
    box-shadow: 0 1px 3px rgba(173, 173, 173, 0.38);
    border-color: #868686;
    color: #FFF !important;
}

.areasofservice .area{
    border-top: 1px dotted #CCC;
    padding-top: 5px;
    margin-bottom: 5px;
}

.areasofservice .area small{
	font-size: 70%;
    color: #AAA;
}


/* Consignment List */


.list tbody tr{
	cursor: pointer;
}

.list tbody tr:hover td{
	background: #647684 !important;
	color: #FFF !important;
}

.list tbody tr:hover td span{
	color: #FFF !important;
}
.list tbody tr:hover td .gorow{
	color: #444 !important;
}


#login_form{
	max-width: 480px;
	margin: auto !important;
}

.modal #login_form{
	max-width: 100%;
}


#login_form .remember{
  display: block;
  float: right;
  margin-bottom: -10px;
  text-transform: none !important;
}
#login_form .remember label{
  text-transform: none !important;

}
.testing label{
	text-transform: none;
	opacity: 0.2;
	padding-left: 4px;
	cursor: pointer;
}
.testing input{
	display: none;
}
.testing input:checked + label,
.testing:hover label{
	opacity: 1
}
.testing:hover input,
.testing input:checked{
	display: inline-block
}

a.lostpassword{
  margin-top: 4px;
  float: left;
  margin-left: 12px;
}


#locationsearch{
	position: absolute;
	top: 64px;
	right: 20px;
	z-index: 99;
	padding: 8px;
	margin-bottom: 20px;
	background-color: rgba(245, 245, 245, 0.72);

}

/* Detail view */

form .status{
	font-weight: lighter;
}

.transportapi .detail .status {
	    margin-right: 2px;
}


.detail .status{
  font-weight: lighter;
  float: right;
}

.consignment.detail small{
	color: #CCC;
}

.delivered > a{
	text-decoration: none;
    border: 1px dotted #CCC;
    background-color: #FFF;
    color: #999;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-right: 4px;
    margin-bottom: 4px;
}

#amtac_ticket_form .status{
	margin-top:0;
}
.detail .qr2id{
	float: right;
	margin: 0 0 18px;
	text-align: center;
}
.detail .qr2id img{
	display: block;
}

.detail .subwell label{
  font-size: 80%;
  color: #B0B0B0;
  min-width: 35%;
  white-space: nowrap;
  vertical-align: top;
}

.detail .subwell p > span,
.detail .subwell > span{
	display: inline-block;
    display: inline-block;
    max-width: 60%;
}

.detail table.waste {
	margin-bottom: 10px;
	width: 100%;
 	font-size: 80%;
 	font-weight: 200;
}

.detail table.waste th{
	font-weight: normal;
}

.detail table.waste td.qty{
    width: 15px;
    border-left: 1px dotted #CCC;
    padding-left: 8px;
}
.detail table.waste th{
	text-align: center;
	border-bottom: 1px dotted #CCC;
	padding-bottom: 3px;
}

.detail table.waste td{
	text-align: right;
	padding-right: 10px;
}

.detail table.waste th:first-child,
.detail table.waste td:first-child{
	text-align: left;
	width: 40%;
}


.detail table.waste tfoot td{
	_border: none !important;
	border-top:1px dotted #CCC !important;
	font-weight: bold;
}




.detail .repeat{
	  font-weight: 200;
  font-size: 70%;
  padding: 3px 5px 3px 4px;
  border-radius: 11px;
  margin-top: -4px;
  vertical-align: top;
  line-height: 16px;
  margin-right: -6px;
}

#repeat_schedule p{
  display: block;
  background-color: #FFF;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px dotted #CCC;
}


.checkboxes{
  padding-bottom: 8px !important;
  padding-top: 8px !important;
}

.privilegegroup label,
.checkboxes label{
	text-transform: none;
}

.privilegegroup{
  width: 45%;
  float: left;
  margin-bottom: 14px;
  border-bottom: 1px dotted #CCC;
  padding-bottom: 14px;
  margin-right: 20px;
}

.privilegegroup label{
	display: block;
}

.order .status{
	margin-top:0;
}

.vehicle_registration{
  width: 148px;
  margin-top: 0;
  background-color: rgb(89, 89, 89);
  padding: 2px 8px 5px 8px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.3);
  border-radius: 3px;
  margin-bottom: -32px;
  z-index: 1;
  margin-left: -14px;
}

.vehicle_registration label{
  margin-bottom: -2px;
  font-size: 80%;
  color: #B0B0B0;
  min-width: 40%;
  white-space: nowrap;
  vertical-align: top;
}

.vehicle_registration input{
	margin: 0 0 3px 0;
}

.vehicle_registration .typeahead{
	width: 131px !important;
}

/* Search Boxes */
.searchbox{
	width: 45%;
	min-width: 220px;
	min-height: 10px;
	margin-top: -3px;
	max-height: 40px;
	position: absolute;
	right: 14px;
	-webkit-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;

	overflow: hidden;
}

.datefriendly{
	cursor: pointer;
}

.datefriendly .date{
	display: none;
}

.installed_date_picker{
	position: relative;
}

.installed_date_picker:before {
    content: "\e109";
    display:block;
    position: absolute;
    right: 10px;
    top: 10px;
    color: #999;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    pointer-events: none;
}
.form-group.installed_date_picker:before{	
	right: 22px;
    bottom: 25px;
}

td > .datefriendly{
	display: block;
	margin: -3px -6px;
	padding: 3px 6px;
}

.datemode .datefriendly .date{
	display: inline;
} 
.datemode .datefriendly .friendly{
	display: none;
} 


ul.tabs{
	list-style: none;
	display: block;
	border-bottom: 1px solid #E3E2E2;
	width: 100%;
	float: left;
	vertical-align: top;
	padding: 0;
}
ul.tabs li{
	list-style: none;
	display: inline-block;
	float: left;
	padding: 0;
	margin: 0 4px 3px 0px;
	border:1px dotted #CCC;
	border-radius: 3px;
}

ul.tabs li:hover{
  background-color: #F5F5F5;
  border-color: #AAA;
}

ul.tabs li:hover a{
  color: #666;

}

ul.tabs li a{
  text-decoration: none;
  color: #B4B4B4;
  text-shadow: none;
  font-weight: 200;
  padding: 4px 8px;
  display: block;
  line-height: 19px;
}

ul.tabs li:active,
ul.tabs li.active{
	border: 1px solid #CCC;
	border-bottom: none;
	background: #FFF;
	background-image:none;
	border-radius: 4px 4px 0 0;
	margin:0 4px -4px 0;
	border-bottom: 1px solid #FFF;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	_padding: 4px 8px;
	color: #B4B4B4 !important;
	
}

ul.tabs li.active a{
	color: #B4B4B4 !important;
  line-height: 23px;
}

.tabcontent{
	float: left;
	width: 100%;
	z-index: 0;
	background-color: white;
	margin-top: -10px;
	margin-bottom: 9px;
    z-index: 0;
}

.tabcontent table{
	font-size: 80%;
}

.tabcontent button.btn-primary{
	display:none;

}

.tabcontent article{
  border-left: 1px solid #CCC;
  z-index: 0;
  background: none;
  margin-top: -1px;
}

.tabcontent h3{
    font-size: 22px;
    font-weight: 200;
    letter-spacing: 0;
}

__ul.tabs:after,
__.tabcontent:after{
	content: ' ';
	display: block;
	height: 1px;
	overflow: hidden;
	clear: both; 
}


.searchbox.active{
	background: white;
	padding: 10px;
	z-index: 1;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	width: 94% !important;
	min-height: 300px;
	border-radius: 2px;
	border: 1px solid #CCC;
	margin-right: -3px;
	max-height: 507px;
	overflow: hidden;
}

.searchbox .search-icon{
  right: 10px;
  pointer-events: none;
  float: right;
  margin-left: -300px;
  top: 10px;
}

.searchbox .results{
	margin-top: 10px;
	max-height: 420px;
	overflow-x: hidden;
	width:100%;


}

.searchbox .results > div{
  border-top: 1px dotted #CCC;
  font-size: 100%;
  padding: 8px 18px;
  margin: 0 -8px;
  cursor: pointer;
  clear: both;
}
.searchbox .results > div small{
	float: right;
	font-size: 70%;
	    margin-bottom: 5px;
}
.searchbox .results > div:hover{
  background: #EDEDED;
}

input[type=search]{
	background: #FCFCFC;
	border-radius: 20px;
	border-style: dotted;

}

.appfilter > .pull-right {  margin-bottom: 10px;}

.appfilter th[data-sort]{
	cursor:pointer;
}
.appfilter th[data-sort]:before{
	float: right;
	font-size: 9px;
}
.appfilter th[data-sort].ascending:before{
	content: '▲';
}

.appfilter th[data-sort].descending:before{
	content: '▼';
}

.appfilter input[type=search],
.searchbox.active input[type=search]{
	border-style: solid;
} 
.appfilter .cal{
    position: absolute;
    right: 10px;
    top: 9px;
    color: #999;
}
.appfilter .pika-single.is-bound{
	left:14px;
	top: 34px !important;
	right:auto !important;
}

.appfilter .installed_date_picker:before{
	right: 8px;
    bottom: 10px;
}

.appfilter .countnumber{
    background: #b6b6b6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    position: absolute;
}

.appfilter .form-group{
	position: relative;
}

.appfilter .typeahead{
    border-radius: 10px 11px 4px 4px;
    overflow: hidden;
}

.appfilter .clearfilters{
	background: #dddddd;
    text-align: center;
    border-radius: 3px;
    padding: 5px 6px;
    color: #FFF;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    display: inline-block;
    float: right;
    margin-right: 10px;
    font-size: 13px;
    line-height: 15px; 
    margin-top: 4px;
    font-weight: 400;
}

.searchoptions{display: none;}
.searchoptionexpanded{display:none}
.searchoptioncollapsed{display:inline-block}
body.showsearchoptions .searchoptions{display: block;}
body.showsearchoptions .searchoptionexpanded{display:inline-block}
body.showsearchoptions .searchoptioncollapsed{display: none;}

.tabcontent .searchoptionsbutton{
    margin-right: 0 !important;
    display: block;
    margin-bottom: 0;
    margin-top: -1px;
}

.appfilter .searchbox{
	position: relative;
    margin: 0;
    right: 0;
    width: 100%;
}

#locationsearch input[type=text]{
	margin:0;
	margin-right: 14px;
}



.reportinfo{
	border: 1px dotted #CCC;
    margin: 14px 14px 0 14px;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    padding: 0 18px 0 17px;
}

.reportinfo h4{
    font-weight: 200;
    text-align: left;
}


.popover h3{
	display:  none;
}

.zopim{
	z-index: 500 !important;
}

/* MAPS */
.mapmodel{
	display: none;
	width: 100%;
	height: 100%;
	top: 0px;
	position: absolute;
	z-index: 1000;
}
.mapmodel .buttons{
	position: absolute;
	bottom: 28px;
	right:14px;
	z-index: 1001;
}

.mapmodel .buttons button{
	margin-left:14px;
}

.buttons{
	padding-top: 24px !important;
	_margin-bottom: 14px;
    padding-bottom: 24px;
	_padding-right: 0;
    clear: both;
}

.buttons button:last-child{
	margin-bottom: 0;
}

.col-sm-12.buttons{
	padding: 12px !important;
}

.googlemap,
#markermap{
	width: 100%;
	height: 100%;
}

.gmnoprint img { max-width: none; }
#markermap img { max-width: none; }
#signsmap img { max-width: none; }

#pickupmap{
	border-radius: 4px 4px 0 0;
}

.clientsigns{
	width: 100%;
	height: 80%;
	margin-top: -20px;
}


.divider{
	border-top: 1px dotted #CCC;
	padding-top: 14px;
}
#main h1{
	font-size: 28px;
	text-align: center;
	font-weight: lighter;
	vertical-align: top;
	color: rgba(255, 255, 255, 0.71); 
	/*color: rgba(0, 68, 109, 0.61);*/
	margin-top: 20px;
	margin-bottom: 20px;
}

#main h1 img{
	display: inline-block;
	 margin-top: -8px;
	height: 28px;
}

.alert{
  background: rgba(255, 255, 255, 0.81);
  padding: 10px 10px 10px 14px;
  border-radius: 2px;
  color: rgb(140, 140, 140);
}

.alert h4{
	font-weight: lighter;
	margin: 0;
	font-size: 22px;
}

.
.alert button.close{
  font-size: 34px;
  margin: -8px 0;
  font-weight: normal;
}

.alert-error{
  background: rgba(255, 222, 222, 1);
  color: red;
}

article{
	margin: 12px 0 10px 0;
	padding: 10px 16px 16px 16px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	border-radius: 2px;
	background: #FCFCFC;
	  position: relative;


}

article h2,
article h3,
article h4{
  font-weight: lighter;
  letter-spacing: 1px;
  margin-top: 8px;
}


h4.warning{
	    background: #FFF;
    padding: 8px;
    border-radius: 4px;
    border: 1px dotted #A62C2C;
    box-shadow: 0 2px 3px rgba(100,0,0,0.1);
    color: #D64A4A;
}

article.feedback{
  margin: 10px 0 10px 0;
  padding: 16px 32px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 2px;
  background: #FCFCFC;
  background: rgba(255,255,255,0.85);
  border-radius: 3px;
}

article > .results {
	overflow-x: auto;
	width:100%;
}

article > .results .glyphicon-repeat{
  background-color:#5bc0de;
  color: #FFF;
  padding: 3px;
  border-radius: 9px;
  margin-right: -3px;
  margin-left: 3px;
}

article > p:last-child{
	margin-bottom: 0;
}

/* fake horizontal scrollbar */
article > .faux-results{
    width: 100%;
    height: 20px;
    overflow-x: scroll;
    overflow-y: hidden;    
}

.faux-table{
    height: 20px;
}

/* FORM TWEAKS */
legend{
	border-bottom: 1px dashed #E2E2E2;
	padding-bottom: 6px;
	font-weight: lighter;
	text-indent: 14px;
	font-size: 24px;
	margin-bottom: 18px;
}


.modal > fieldset,
.content > fieldset,
form > fieldset{
	margin: 10px 0 10px 0;
	padding: 16px 32px  0;
	padding-top: 12px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	border-radius: 2px;
	background: #FCFCFC;
	position: relative;
}

.modal > form > fieldset,
.modal > fieldset{
	padding: 12px 24px 0 24px !important;
}
.modal > .appfilter{
    padding: 12px 16px 0 16px !important;
}


fieldset h2{
	margin-top: 0;
	font-weight: lighter;
}


.modal article,
.modal fieldset{
	margin: 0
}



fieldset h3 label{
	font-weight: lighter;
}

fieldset label{
	display: inline-block;
	margin-bottom: 2px;
	text-transform: uppercase;
	font-weight: normal;
	color: #777;
	font-size: 90%;
}
fieldset label small{
	text-transform: none;
}



form.previewed fieldset label{
	color:#999;
	display: block;
}
form.previewed fieldset span.preview{
	color:#333;
	display: inline-block;
}

form.previewed .addtype{
	display: none;
}

form.previewed .searchbox{
	opacity: 0;
}
form.previewed fieldset .well{  
	background-image: none;
    background-color: #FFFFFF;
    margin-bottom: 10px;
    border-color: #D1D1D1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
form.previewed .waste_type_tyres{
	border-top: 1px dotted #DDD;
    padding-top: 17px;
    padding-bottom: 0;
}

fieldset button{
	margin-left:14px;
}

fieldset button.pull-right{
	margin-bottom: 14px;
}

fieldset .well{
  padding-bottom: 4px;
  padding-top: 14px;
  border: 1px dotted #CCC;
  margin-bottom: 20px;
  border-radius: 3px;    

  background-color: #F5F5F5;
}

fieldset .subwell{
  border: 1px dotted #CCC;
  margin-bottom: 20px;
  border-radius: 3px;    
  background-color: #F5F5F5;
   margin: 0 0 20px -14px;
  padding: 10px 14px 4px 14px;
}

.row.subwells{
	margin-right: -28px;
}

.typeinfo{
	display:none;
}

.pure-table th{
	text-transform: uppercase;
  font-weight: normal;
  color: #919191;
}
.pure-table td, .pure-table th{
  overflow: visible;
  padding: 0.3em 0.5em;
  vertical-align: top;
  white-space: pre-wrap;
  text-overflow: ellipsis;
  max-width: 170px;
  white-space: nowrap;
  overflow: hidden;
}

.pure-table-striped tr.clicked td{
	background-color: #c6d7d8;
	border-color: #c6d1d2;
}

.faq td,
.faq th{
	min-width: 220px;
	max-width: none;
	text-overflow: pre-wrap;
	white-space: pre-wrap;
}

article h3,
fieldset h3{
	margin-top: 0;
	margin-bottom: 14px;
	font-weight: lighter;
	font-size: 26px;
	letter-spacing: 1px;
}


fieldset h4{
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: lighter;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 21px;
  padding-top: 2px;
}

button{
	outline: none !important;
}


.togglechange{
	display: none;
}

.addresslookup{
	background: rgba(143, 143, 143, 0.21);
	display: block;
	display: none;
	color: #8E8E8E;
	font-size: 90%;
	padding: 4px 6px;
	border-radius: 0 0 4px 4px;
	margin-bottom: -20px;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.waste_login,
.mobile_login{
	display: none;
}

.waste_type_tyres > div{
	padding-right: 0;
}

.waste_type_tyres label{
	white-space: nowrap;
}

.waste_type_asbestos .form-inline input[type=number],
.waste_type_asbestos .form-inline input[type=text],
.waste_type_asbestos .form-inline select{
	display: inline-block;
}
.waste_type_asbestos .form-inline input[type=number],
.waste_type_asbestos .form-inline input[type=text]{
	width: 45%
}
.waste_type_asbestos .form-inline select{
	width: 40%
}

.mobilecontent{
	margin-top:28px;
}
.mobile_login h2,
.viewcode > h2{
	margin-top:0;
}
.viewcode > h2{
	margin-top:0;
	margin-bottom: 0
}
.viewcode > h2 span{
	white-space: nowrap;
	margin-bottom: 14px;
	display: inline-block;

}

.viewcode > h2 span.status{
	float: right;
	margin-top: 1px;
	margin-right: 2px;
	font-size: 52%;
	font-weight: normal;
	border-radius: 3px;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	margin-bottom: 14px;
	padding-top: 3px;
	clear: right;
}
.boxx_,
.viewcode > p{
	background: #FFF;
	border-radius: 3px;
	padding: 14px;
	border: 1px dotted #CCC;
	margin-bottom: 20px;
}

.boxx input[type=text]{
	background: #FAFAFA;
}

#pickup_location p,
#transporter_location p,
#destination_location p{
	border-top: 1px dotted #CCC;
	padding-top: 10px;
	margin-top: 4px;
}


/*.collection{
  border-top: 1px dotted #CCC;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: default;
}
*/
.collection{
    border-top: 1px dotted #CCC;
    padding-top: 8px;
    padding-bottom: 2px;
    cursor: default;
}
.collection strong,
.collection .label{
  cursor: pointer;
}

.collection > div {
	padding-left: 0;
}

.collection input[type=checkbox]{
	font-size: 1em;
  transform: scale(2);
  -webkit-transform: scale(2);
  margin-top: 13px;
  margin-right: 14px;
  margin-left: 22px;
  margin-bottom: 14px;
}

.collection .tags{
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-right: -16px;
    overflow: hidden;
    display: block;
    padding-bottom: 4px;
    margin-bottom: 0;
    max-width: 104%;
}

.collection .tags > span{
	_border: 1px dotted #CCC;
    border-radius: 3px;
    padding: 0 4px;
    font-size: 80%;
    color: #BBB;
    white-space: nowrap;
    max-width: 33%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
        margin-bottom: -10px;
    margin-top: 2px;
}


.exporter .buttons select,
.exporter .buttons button{
	margin-left:14px;
}

tr .glyphicon-ok-sign{
    color: #399E39;
}

tr .glyphicon-remove-sign{
	color:#C52E2E;
	color:rgba(197, 46, 46, 0.35);
}

#alerts tr td{
	    border-bottom: 1px dotted #E4E4E4
}

tr.Cleared td,
tr.Dismissed td,
tr.Dismissed td a{
	color: rgba(0,0,0,0.2) !important;
}

tr.Resolved td,
tr.Acknowledged td{
    background-color: #F0FFF0 !important;
    border-bottom: 1px dotted #9BEB9A !important;
}

tr.Dismissed:hover td{
	color: #FFF !important;
}

#alerts td:last-child{
    max-width: 260px !important;
    min-width: 260px !important;
}

#alerts td:last-child a{
    margin-left: 6px;
}

#alerts a.view{
	background-color: #F9F9F9;
    border-radius: 4px;
    border: 1px dotted #CCC;
    margin-left: -4px;
    text-decoration: none;
    color: #666 !important;
    margin-top: -1px;
    display: inline-block;
    margin-bottom: -1px;
    padding: 0 6px;
}

#alerts tr:hover a.view{
    color: #666 !important;
}





#history,
#changes{
	font-size: 80% !important;
}

#history td,
#changes td{
  padding: 0.1em 0.4em;
  white-space: pre-wrap;
  vertical-align: top;
  text-overflow: ellipsis;
  overflow: hidden;
}
#changes td{
	max-width: 140px;
}

.collection .label{
	  font-size: 100%;
  background-color: #CCC;
  margin-top: 10px;
  padding: 5px 11px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  margin-left:8px;
 }

 .collection .col-xs-1{
	padding: 0
 }


#orderplates_paypal_form .desc{
    text-align: right;
    margin-left: -80px;
    border-bottom: 1px dotted #CCC;
    padding-bottom: 5px;
    margin-top: -2px;
    margin-bottom: 4px;
    display: inline-block;
    float: right;
    font-size: 95%;
    clear: both;
    min-width: 100%;
    white-space: nowrap;

}


#orderitems .addqr2idcode{
	right: 0px;
	margin-top:5px;
	margin-right:24px;
	position: absolute;
	width:120px;
	float: right;
}

#orderitems .qr2idcode{
	display: block;
    float: left;
    width: 30%;
    margin-top: 7px;
    margin-right: 1.5%;
    margin-left: 1.5%;
    margin-bottom: 7px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px 7px;
    min-width: 162px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

#orderitems .editlocation,
#orderitems .replacelocation{
	float: right;
	margin: 5px;
	margin-top: 7px;
	margin-right: 7px;
}
#orderitems .editlocation{
	margin-right:130px;
}

#orderitems .qr2idcode .remove{
	float: right;
	padding: 6px;
	margin:-6px;
	color:#DB4949;
	cursor: pointer;
}

.typeahead{
    border: 1px dotted rgb(204, 204, 204);
    border-radius: 0px 0px 4px 4px;
    margin: 0px !important;
    padding: 0 !important;
    list-style: none;
    width: 100%;
    position: absolute;
    background-color: white;
    z-index: 2;

}

.typeahead li{
	margin: 0 !important;
}
.typeahead a{
	display: block;
	padding: 4px 10px;
	text-decoration: none;
	color:#444;
}



.typeahead .active{
	background: #EEE;
}


/*///////////////////////////////////////////////////
//
//	DASHBOARD
//
///////////////////////////////////////////////////*/

.dashboard{
    background: #F7F7F7;
	transform: translate3d(0,0,0);
}

.dashboard h1{
	margin: 14px;
	color:#666 !important;
}

.dashboard h6{
	font-size: 10px;
    text-transform: uppercase;
}
.dashboard .panel{
	 border: 1px dotted #DDD;
	 background: #FFF;
}

.dashboard .panel-footer{
	background: #EEE;
    border-top: 1px dotted #CCC;
    font-size: 70%;
    padding: 10px;
    color: #999;
}

.dashboard-button{
	float: right;
	margin-left:6px;
    border-radius: 3px;
    border: 1px solid #CCC;
    background: #FBFBFB;
    position: relative;
    margin-top: -1px;
}

.dashboard .charts button{
    margin: 6px 6px 0 0;

}
.dashboard .charts select{
	width: 100px;
    margin: 6px 6px 0 0;
}

.dashboard button.active{
box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
    border-color: #FFFFFF;
    background: #CCC;
    padding-top: 3px;
    padding-bottom: 1px;
    margin-bottom: 0;
}

.dashboard button .label{
    position: absolute;
    left: 0;
    top: -5px;
    margin-left: -10px;
    padding: 2px 4px;
        box-shadow: 2px 2px 4px rgba(0,0,0,0.15);

}

.dashboard .form-group {
    margin-bottom: 7px;
}

.dashboard .charts{
	margin:0;
	padding: 0;
	margin-bottom: -14px;
    background: #EEE;
    border: 1px dotted #E3E3E3;
    border-bottom: 0;
    margin-top: 14px;
    z-index: 1;
    margin-bottom: -14px;
    display: block;
    list-style: none;
	font-size: 16px;
    


}
.dashboard .charts:after{
	content: '';
	clear: both;
	display: block;
	height: 1px;

}



.dashboard .charts li{
	float: left;
    border-bottom: none;
    padding: 10px 14px;
    font-weight: 200;
    margin:-1px;
    cursor: pointer;
	border-right: 1px dotted rgba(207, 207, 207, 0.55);
}


.dashboard .charts li:hover{
	background: #F5F5F5;
}
.dashboard .charts li.active{
    background: #FFF !important;
    border: 1px solid #EEEDED;
    margin: -1px;
    border-bottom: none;

}

.dashboard .chart{
	background: #FFF;
	border: 1px dotted #DDD;
	border: 1px dotted #DDD;
	padding: 0 14px 0 14px;
	overflow: hidden;
	margin: 14px 0;	 
	position: relative;
}

.dashboard .chart:first-child{
	border-top: 0;
}

.dashboard .chart div{
	height:200px;
	margin:14px;
	position: relative;
	box-sizing: content-box;
}

.dashboard .panel {
    margin-bottom: 5px;
    position: relative;
}

.dashboard .panel.warning {
    background-color: rgb(240, 173, 78);
}

.dashboard .row:last-child{
	margin-bottom: -5px;
}

.bar-legend,
.line-legend{
	position: absolute;
    top: 10px;
    right: 14px;
    list-style: none;
    font-size: 11px;
    background: rgba255,255,255,0.7;
    max-width: 60%;
    display: inline-block;
}

.bar-legend li,
.line-legend li{
	padding: 0;
	margin-right:10px;
	    display: inline-block;
}

.bar-legend li span,
.line-legend li span {
	width: 15px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    border-radius: 3px;
    margin-top: -2px;
}



@media (max-width: 628px){
	.dashboard .charts {
		font-size: 12px;
	
	}
	.dashboard .charts li{
    	padding: 5px 11px;
	}

	.dashboard .charts button{
		padding: 0 4px;
		margin:3px;
	}

	.dashboard .charts select{
	    width: 20px;
	    margin: 3px 4px 0 0;
	    height: 24px;
	    margin-left: -40px;		
	}
}

@media (max-width: 768px){

	.dashboard h1{
		display: inline-block;
		min-width: 62px;
		text-align: right !important;
		margin: 0 !important;
		padding: 0;
		font-size: 22px !important;
	}

	.dashboard h6{
		display: inline;
	}
	.dashboard .panel{
		margin-bottom: 5px;
		position: relative;
	}

	.dashboard .panel-body{
		text-align: left;
	}

	.dashboard  .panel-footer{
	    padding: 0;
	    position: absolute;
	    z-index: 1;
		top: 2px;
		right: 6px;
	    background: none;
	    border: none;
	}

	.buttons{	
	    padding-bottom: 24px;

	}

	.buttons:after{
		content: '';
		display: block;
		overflow: hidden;
		height: 1px;
		clear: both;

	}

	.subwell .btn{
	  transform: translate3d(0,0,0);
	}

	.buttons .btn{
	    font-size: 120%;
    	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	    width: 97%;
    	margin: 1px 4px 13px 2px;
	    box-sizing: border-box;
	    transform: translate3d(0,0,0);
	}

	.buttons .btn-cancel {
    	float: right;
	}

	.dashboard h6{
		font-size: 10px;
	    text-transform: uppercase;
	    line-height: 30px;
	    padding-left: 10px;
	}
	.dashboard .panel{
		 border: 1px dotted #DDD;
		 background: #FFF;
	}

	.bar-legend,
	.line-legend{
	    position: relative;
	    margin-bottom: 24px;
	}

}

/*///////////////////////////////////////////////////
//
//	OFFLINE
//
///////////////////////////////////////////////////*/

iframe.prep{
	opacity: 0.1;
    border: 0;
    height: 17px;
    display: inline-block;
    width: 95px;
    padding: 0;
    margin-top: 4px;
    margin-bottom: -3px;
    margin-right: 10px;
}

._offlinestatus{
    margin-right: 14px;
    margin-top: -2px;
    margin-left: -200px;
    font-size: 24px;
    float: right;
}

.offlinestatus{
    _margin-top: -2px;
    margin-top: 8px;
    margin-left: -200px;
    font-size: 24px;
    position: absolute;
    margin-right: 0;
    max-width: 170px;
    right: 12px;
    text-align: right;
    top: 0;
}

.qr2idapp .offlinestatus{
    right: 88px;
}

.offlinestatus > span,
.offlinestatus > a{
    background: rgba(70, 239, 239, 0.5);
    font-weight: lighter;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    float: right;
}

.offlinestatus .glyphicon{
	top:3px;
}

.offlinestatus .offline{
	background: rgba(239, 0, 0, 0.84);
}

.offlinestatus .online{
	background:rgba(0, 180, 15, 0.75) !important;
}

.offline,
.online,
.syncing,
.queued,
.synced{
display: none;
}


/*///////////////////////////////////////////////////
//
//	APP Controls
//
///////////////////////////////////////////////////*/


.QR2id_close
{
	display: none;
}

.appcontrols{
	display: none;
    position: absolute;
	top: 0;
    right: 0;
    text-align: right;
	padding: 0 6px 10px 0px;
	width: auto;
	z-index: 1;
}

.qr2idapp .appcontrols,
.qr2idapp .QR2id_close{
	display: block;
    z-index: 1;
}

.qr2idapp #layout{
	_padding-top: 80px;
}

.appcontrol {
	display: none;
}

.qr2idapp .appcontrol{
	display: block;
}

.appcontrols a {
	display: inline-block;
	background-color: #4375ab;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
	padding: 10px 14px;
	margin: 10px 5px 0 5px;
    cursor: pointer;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
    text-decoration: none;
}

.appcontrols a.QR2id_close {
    background-color: #C1C1C1;
}

.qr2idapp-only{
  display: none !important;
}
.qr2idapp .qr2idapp-only{
  display: block !important;
}
.qr2idapp .qr2idapp-hidden{
  display: none !important;
}

#notes td img{
	display: block;
	max-width: 100%;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.3);
	margin-bottom: 8px;
}


/*///////////////////////////////////////////////////
//
//	FILE UPLOADS
//
///////////////////////////////////////////////////*/

.file_uploaded{
	width: 100%;
	clear: both;
	float: left;
}

.file_upload_button{
	position: relative;
	cursor: pointer;
	text-transform: none;
	
}

.file_upload_button input{
    border: none;
    border-radius: 2px;
    display: inline-block;
    text-indent: 3px;
    position: absolute;
    width: 373px;
    padding: 8px;
    margin: 0;
    vertical-align: top;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
}

.file_upload {
	border-radius: 3px;
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 20px;
    white-space: nowrap;
    z-index: 0;
    float: left;
    border-bottom: 1px dotted #CCC;
    margin-bottom: 8px;
    padding: 0 4px 8px 4px;
    width: 100%;
}
.file_upload  a{
	padding: 0 5px;
padding: 0 5px;
    margin-left: 3px;
    float: right;
    color: #FFF;
    background: #CCC
}

.file_upload .progress .bar{
	    background: #5CB85C;
    font-size: 80%;
    color: #FFF;
    text-indent: 4px;
}
.file_upload img{
    max-width: 100%;
    max-height: 200px;    
    margin-bottom: 10px;
    display: block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border-radius: 4px;
}

.file_upload .progress {
	right: 73px;
	margin-top: 2px;
	margin-bottom: 5px;
	display: inline-block;
	min-width: 149px;
	margin-right: 3px;
	z-index: 99999;
	position: absolute;
}

.file_upload {
 	overflow: visible; 
}
.file_upload .filetype{
	display: none;
}
.file_upload .filetype,
.file_upload .filesize{
	font-size: 11px;
	color: #AAA;
}

.file_upload .filename{
	max-width: 240px;
	overflow-x: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	overflow-y: hidden;
	margin-top: 0px;
	margin-bottom: -6px;
}

.file_upload input {
    position: absolute;
    left: 0px;
    padding-top: 0px;
    display: none;
}

.rego{
    background: white;
    padding: 3px 6px;
    border-radius: 3px;
    color: #555;
    border: solid 1px rgba(154, 154, 154, 0.3);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
    font-size: 90%;
    text-decoration: none !important;
    cursor: pointer;
}

.rego:after{
    content: "\E224";
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Regular';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    left: 2px;
    font-size: 90%;
    color: #CCC;
}

/*///////////////////////////////////////////////////
//
//	SELECT TABLE
//
///////////////////////////////////////////////////*/

select-table table{
    font-size: 100%  !important;
    border-radius: 4px;
    border: none;
    display: table;
    width: 100%;
}

.select-table{
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	transform: translatez(0);
}

.results.select-table {
    overflow-x: auto;
    display: block;
    margin: 0 -16px 0 -16px;
    margin-right: -16px;
    width: auto;
}

.results.select-table table td .label{
    display: inline-block !important;
    margin-top: 3px;
    vertical-align: top;
}
.results.select-table table td{
      padding: 10px 15px  !important;
    border-top: 1px dotted #CCC !important;
     font-size: 13px;

}

.results.select-table table td small{
    display: block;
    color: #999;
        white-space: pre-wrap;
    font-size: 80%;
}


.appfilter.endoflist:after,
.appfilter.loading:after{
	  content: 'Loading...';
    display: block;
    text-transform: uppercase;
    color: #A9A9A9;
    font-size: 11px;
    padding: 4px 8px;
    background: #E0E0E0;
    border-radius: 0 0 3px 3px;
    box-shadow: inset 0 2px 2px rgba(0,0,0,0.07);
    margin-top: -1px;
    border: 1px solid #CCC;
    border-top: none;
    text-align: center;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1)
}

.appfilter.endoflist:after{
	content: 'End of results';
}

.appfilter.noresults:after{
	content: 'No matching results';
	color: #9E9E9E;
  background: #D4D4D4;
}

/*///////////////////////////////////////////////////
//
//	ANIM
//
///////////////////////////////////////////////////*/

.glyphspin{
-webkit-animation: spin 2s infinite linear;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
	transform-origin:  50% 50%;
	-ms-transform-origin:  50% 50%;
	-webkit-transform-origin: 50% 50%;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    m
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}




@-ms-keyframes "pulse1" {
 0% {
   color: rgba(165, 25, 25, 1);
 }
 90% {
   color: rgba(255,0,0,0.0);
 }
 100% {
   color: rgba(255,0,0,1.0);
 }

}

.pulse2 {
	-webkit-animation: pulse2 1s linear infinite;
	-moz-animation: pulse2 1s linear infinite;
	-ms-animation: pulse2 1s linear infinite;
	animation: pulse2 1s linear infinite;
}

@keyframes "pulse2" {
 0% {
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-o-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
 }
 50% {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-o-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
 }
 100% {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
 }

}

@-moz-keyframes pulse2 {
 0% {
   -moz-transform: scale(1.03);
   transform: scale(1.03);
 }
 50% {
   -moz-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -moz-transform: scale(1);
   transform: scale(1);
 }

}

@-webkit-keyframes "pulse2" {
 0% {
   -webkit-transform: scale(1.03);
   transform: scale(1.03);
 }
 50% {
   -webkit-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -webkit-transform: scale(1);
   transform: scale(1);
 }

}

@-ms-keyframes "pulse2" {
 0% {
   -ms-transform: scale(1.03);
   transform: scale(1.03);
 }
 50% {
   -ms-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -ms-transform: scale(1);
   transform: scale(1);
 }

}


@media (max-width: 628px){
	.dashboard .charts {
		font-size: 12px;

	}
	.dashboard .charts li{
    	padding: 5px 11px;
	}

	.dashboard .charts button{
		padding: 0 4px;
		margin:3px;
	}

	.dashboard .charts select{
	    width: 20px;
	    margin: 3px 4px 0 0;
	    height: 24px;
	    margin-left: -40px;
	}
}

@media (max-width: 768px){

	.dashboard h1{
		display: inline-block;
	    min-width: 30px;
		text-align: right !important;
		margin: 0 !important;
	    padding: 0 6px 0 0;
	    font-size: 16px !important;
	    margin-right: 10px;
	    line-height: 30px;
	    float: right;
	}

	.dashboard h6{
		display: inline;
	}
	.dashboard .panel{
		margin-bottom: 5px;
		position: relative;
	}

	.dashboard .panel-body{
		text-align: left;
	}

	.dashboard  .panel-footer{
	    padding: 0;
	    position: absolute;
	    z-index: 1;
		top: 2px;
		right: 6px;
	    background: none;
	    border: none;
	}

	.buttons{
	    padding-bottom: 24px;

	}

	.buttons:after{
		content: '';
		display: block;
		overflow: hidden;
		height: 1px;
		clear: both;

	}

	.buttons .btn{
	    font-size: 120%;
	    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	    width: 97%;
	    margin: 1px 4px 13px 2px;
	    box-sizing: border-box;
	    transform: translate3d(0,0,0);
	}

	.buttons .btn-cancel {
    	float: right;
	}

	.dashboard h6{
		font-size: 10px;
	    text-transform: uppercase;
	}
	.dashboard .panel{
		 border: 1px dotted #DDD;
		 background: #FFF;
	}

	.bar-legend,
	.line-legend{
	    position: relative;
	    margin-bottom: 24px;
	}

}

/*///////////////////////////////////////////////////
//
//	OFFLINE
//
///////////////////////////////////////////////////*/

iframe.prep{
	opacity: 0.1;
    border: 0;
    height: 17px;
    display: inline-block;
    width: 95px;
    padding: 0;
    margin-top: 4px;
    margin-bottom: -3px;
    margin-right: 10px;
}

._offlinestatus{
    margin-right: 14px;
    margin-top: -2px;
    margin-left: -200px;
    font-size: 24px;
    float: right;
}

.offlinestatus{
    _margin-top: -2px;
    margin-top: 12px;
    margin-left: -200px;
    font-size: 24px;
    position: absolute;
    margin-right: 0;
    max-width: 170px;
    right: 14px;
    text-align: right;
    top: 0;
}

.offlinestatus > span,
.offlinestatus > a{
    background: rgba(70, 239, 239, 0.5);
    font-weight: lighter;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    float: right;
}

.offlinestatus .glyphicon{
	top:3px;
}

.offlinestatus .offline{
	background: rgba(239, 0, 0, 0.84);
}

.offlinestatus .online{
	background:rgba(0, 180, 15, 0.75) !important;
}

.offline,
.online,
.syncing,
.queued,
.synced{
	display: none;
}



/* Desktop */
//@media only screen and (min-width : 1024px) {
//	.content{
//		 max-width: 1024px;
//	}
//}

/* Tablet portrait + desktops */
@media only screen and (min-width : 1280px) {
	/*.content > form,*/
	.content > .view,
	.content > fieldset,
	.content > article{
		margin-left: -60px !important;
		margin-right:-60px !important;
	}
}

/* Tablet portrait + desktops */
@media only screen and (min-width : 1500px) {
	/*.content > form,*/
	.content > .view,
	.content > fieldset,	
	.content > article{
		margin-left: -160px !important;
		margin-right:-160px !important;		

	}
}



/* Custom, iPhone Retina */
@media only screen and (min-height: 769px) {

}

/* Tablet portrait + desktops */
@media only screen and (min-width : 1000px) {

	table.waste{
		font-size: 100% !important;
	}

}




/* Tablet portrait + desktops */
@media only screen and (max-width : 1000px) {
	.notmd{
		display: none !important;
	}

	table.waste{
		font-size: 95% !important;
	}


}



/* Extra Small Devices, Phones */
@media only screen and (max-width : 1200px) {
	.viewcode > h2{
		font-size: 160%;
		line-height: 95%;
		margin-bottom: 19px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 960px) {
	table{
		font-size: 70% !important;
	}

	table.waste{
		font-size: 90% !important;
	}

	.pure-table td, .pure-table th {
		  max-width: 140px !important;
	}

	p,
	form .status,
	.detail .status,
	.detail .repeat,
	ul.tabs li a,
	article h3, fieldset h3,
	.reportinfo h4,
	.detail table.waste {
		font-weight: 200 !important;
	}

	.detail table.waste th{
		font-weight: normal;
	}


}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

.buttons{
	padding-top: 24px !important; 
	_margin-bottom: 14px;
    padding-bottom: 24px;
	_padding-right: 0;
}

	.privilegegroup{
		width: 100% !important;
		margin-right: 0  !important;
	}

	body > .container {
		max-width: 95%;
	}

	table{
		font-size: 70% !important;
	}

	table.waste{
		font-size: 70% !important;
	}

	p,
	a
	li,
	article h3, fieldset h3,
	h4
	label,
	.detail table.waste {
		font-weight: 400 !important;
	}

	.gorow{
	    margin: 0 !important;
	}


	.content > fieldset,
	form > fieldset {
   		 margin: 10px 0 10px 0;
   		 padding: 10px 24px 0 !important;
	}

	.reference{
	    font-size: 60% !important;
	}

	.modal > form > fieldset,
	.modal > fieldset{
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	fieldset .well{  margin-bottom: 10px !important}
	fieldset .subwell{
		min-height: 0 !important;
    	margin-bottom: 8px !important;
	}
	fieldset button.pull-right {
 	   margin-bottom: 10px !important;
	}

	.notsm{
		display: none !important;
	}

	.fluff{
		display: none;
	}
}


/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.searchbox{
		width: 25% !important;
		min-width: 90px !important;
	}

	.searchbox input::-webkit-input-placeholder {
	   color: rgba(0,0,0,0)
	}

	.searchbox input:-moz-placeholder {
	   color: rgba(0,0,0,0)
	}

	.searchbox input::-moz-placeholder {
	   color: rgba(0,0,0,0)
	}

	.searchbox input:-ms-input-placeholder {
	   color: rgba(0,0,0,0)
	}

	.notxs{
		display: none !important;
	}

	.consignment img.sqr{
		width:36px !important;
		height:36px !important;
	    margin-right: 0 !important;
    	margin-left: 8px;
	}
	.consignment .status{
		margin-bottom: 10px;
	}

	.consignment .qr2id{
		margin: 0 !important;
	}

	.pure-table td, .pure-table th {
		max-width: 95px !important;
	}

	.appfilter .countnumber {
	    left: 16px;
	    top: 40px;
	    z-index: 3;
	}

}

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	.tabcontent{
		margin-top:0;
    background: #e9e9e9;
    padding: 10px;
    margin: -9px;
    width: auto;
    min-width: 100%;
    float: none;

	}

    .tabcontent > *:first-child{
      background: #FFF
    }

	ul.tabs{
		list-style: none;
		display: block;
		border-bottom: 1px solid #E3E2E2;
		width: 100%;
		float: left;
		vertical-align: top;
		padding: 0;
		margin-bottom: 10px;

    background: #e9e9e9;
    padding: 10px;
    margin: 0 -9px -10px -9px;
    width: auto;
    float: none;
    border-top: 1px dotted #CCC; 

	}

	ul.tabs li{
  	list-style: none;
	    display: block;
	    float: none;
	    padding: 0;
	    margin: 0 0px;
	    border: 1px solid #CCC;
	    border-radius: 3px;
	    width: 100%;
	    padding: 6px;
	    border-bottom: 0;
	    border-radius: 0;
      border: none;
	    border-top: 1px dotted #CCC;
	}

	ul.tabs li:first-child{
	    /*border-top: 1px solid #CCC;*/
	    border-top-left-radius: 3px;
	    border-top-right-radius: 3px;

	}

	ul.tabs li:last-child{
	    border-bottom: 1px solid #CCC;
	    border-bottom-left-radius: 3px;
	    border-bottom-right-radius: 3px;

	}

	ul.tabs li:active, 
	ul.tabs li.active{
	    border: 1px solid #CCC;
	    border-bottom: none;
	    background: #FFF;
	    background-image: none;
	    border-radius: inherit;
	    margin: initial;
	    border-bottom: inherit;
	    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	    _padding: 4px 8px;
	    color: #B4B4B4 !important;
      border-radius: 2px;
      border: none;
	}


	ul.tabs li:hover{
	  background-color: #F5F5F5;
	  border-color: #AAA;
	}

	ul.tabs li:hover a{
	  color: #666;

	}

	ul.tabs li a{
	  text-decoration: none;
	  color: #B4B4B4;
	  text-shadow: none;
	  padding: 4px 8px;
	  display: block;
	  line-height: 19px;
    font-weight: 400 !important
	}

	ul.tabs li.active a {
	    color: #666 !important;
	     line-height: 19px; 
	}

	.tabcontent article{
	  border-left: none;
	 }

}
/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 768px
*/
@media 
only screen and (max-width: 767px){

	/* Force table to not be like tables anymore */
	table.list-dynamic, .list-dynamic thead, .list-dynamic tbody, .list-dynamic .list-dynamic th, .list-dynamic td, .list-dynamic tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.list-dynamic thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	table.list-dynamic {
	    font-size: 90% !important;
        border: 1px dotted rgba(134, 134, 134, 0.44)
	}


	/*.list tr { border: 1px solid #ccc; }*/
	
	.list-dynamic .datefriendly{
		pointer-events: none;
	}
	.list-dynamic td { 
	    border: none;
	    /* border-bottom: 1px solid #eee; */
    	position: relative; 
	    padding-left: 37% !important;
	    max-width: none !important;
	    padding-top: 0;
	    padding-bottom: 0;
	    box-sizing: border-box;
	    white-space: normal;
}

	.list-dynamic td:first-child:before,
	.list-dynamic td:first-child{
    	padding-top: 7px;
	}
	.list-dynamic td:last-child{
		border-bottom: 1px dotted #CCC;
    	padding-bottom: 7px;
    	padding-bottom: 3px;    	
    }
	
	.list-dynamic td:before { 
	    position: absolute;
	    top: 0px;
	    left: 12px;
	    width: 35%;
	   	text-indent: 0px;
	    padding-right: 5px;
	    white-space: normal;
	    color: #777;
	    text-transform: uppercase;
	    font-size: 80%;
	    text-overflow: ellipsis;
    	overflow: hidden;
	    /* background: red; */

	    text-transform: uppercase;
	    font-weight: normal;
	    color: #919191;

	}
	
}

.fancybox-image-wrap img{
    -moz-transition: all 0.75s ease-in;
    -o-transition: all 0.75s ease-in;
    -webkit-transition: all 0.75s ease-in;
    transition: all 0.75s ease-in;
}

/*///////////////////////////////////////////////////
//
//	PRINT
//
///////////////////////////////////////////////////*/

@media print {
	/* restore printability of booking or other pages */ 
	#layout {
		overflow: visible;
	}

	#main {
		overflow: visible;
	}
}

{}
/*-----------------------------------------------*/
/*  /css/form-builder.css */

form.builder .well p {
	color:#777;
}

form.builder label.radio input[type="radio"] {
	margin-left: 0;
	opacity: 0;
}

form-input .input-radio {
    display: flex;
	flex-flow: row;
	flex-grow: 1;
	margin-bottom: 16px;
}

form-input .form-group {
	position: relative;
}

form-input .input_selected-name {
    margin-right: 100px;
	display: inline-block;
}

form-input {
    display: block;
	position: relative;
    border-top: 1px dotted #DDD;
    padding-top: 8px; 
}

.inputgroup div:first-child > form-input {
    border-top: 0;
    padding-top: 0;
}

form-input .buttons {
	position: relative;
	margin-left: 6px;
	margin-top: 0;
	margin-bottom: 24px;
}

form-input .selectbtn {
	position: absolute;
	right: 6px;
	/*bottom: 6px;*/
	top: 0;
}

form-input .changebtn {
	position: absolute;
	right: 6px;
	bottom: 6px;
}

form-input .form-group.installed_date_picker:before {
    right: 10px;
    bottom: 14px;
}

form-input .form-control {
	padding: 20px 10px;
}

form-input textarea.form-control {
    padding-top: 6px;
}

form-input select.form-control {
    height: 42px;
	padding: 0 10px;
}

label.checkboxes {
	text-transform: none;
	padding: 10px 10px 10px 10px;
	border-radius: 5px;
	margin-right: 24px;
	font-size: 100%;
	width: 100%;
	background: #EEE;
	border: 1px solid #e0e0e0;
}

label.checkboxes > input {
    transform: scale(1.5);
    margin-right: 8px;
    margin-left: 5px;
}

label.radio {
	display: block;
    background: white;
    border: 1px solid #CCC;
    border-radius: 0;
    max-width: 50%;
    display: inline-block;
    box-sizing: border-box;
    border-right: none;
    /*overflow: hidden;*/
	text-transform: uppercase;
    margin-bottom: 0px;
    margin-top: 0;
}

.input-locked {
    background: white;
    padding: 10px 15px;
    margin: 0;
    border-radius: 5px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

form-input input[type=number] {
	height: auto;
	padding: 10px;
}

form-input input {
    padding-top: 8px; 
}	

form-input > p {
	color: #777;
	  	font-size: 110%;
	  	_margin-bottom: 0;
	  	_margin-right: -20px;
}

form-input > p >  small {
	display: block;
}

form-input > small {
	  	color: #777;
	  	display: block;
	  	margin-bottom: 10px;

}

form-input > p.warning {
    background: white;
    padding: 4px 8px;
    border: 1px solid rgba(204, 0, 0, 0.45);
    color: #c52d2d;
    box-shadow: 0 2px 3px rgba(115, 0, 0, 0.2);
    border-radius: 3px;
}

form-input input[name=vin],
form-input input[name=identifier],
form-input input[name=registration_number],
.fake-upper
{
	text-transform: uppercase;
}

form-input .pure-table-large td {
	vertical-align: middle; 		
	padding: 14px;
}

.form-input__barcode {
    border-top: 1px dotted #CCC;
    padding: 18px 0;
}

.form-input__btn-rnd {
	float: right;
	background: #EEE;
	border-radius: 50px;
	display: inline-block;
	overflow: hidden;
	width: 28px;
	height: 28px;
	line-height: 30px;
	text-align: center;
	border: none;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	color: #999;
	font-size: 16px;
	padding: 0px 0 0 1px;
	margin: -5px 3px -6px 0;		
}

.form-input__label {
    position: absolute;
    right: 40px;
    top: 10px;
    opacity: 0.5;
}

label.radio:first-child {
    border-radius: 5px 0 0 5px;
}

label.radio:last-child {
    border-radius: 0 5px 5px 0;
    border-right: 1px solid #CCC;
}

label.radio input[type="radio"] {
	_visibility: hidden;		
}

label.radio span {
	 padding: 10px 16px;
	 display:inline-block;
}

form-input label.radio {
	margin-top: 0 !important;
}

label.radio input[type="radio"]:checked ~ span {
	background-color:#f68026; 
	color:#FFF;
	box-shadow: inset 0px 3px 4px rgba(0,0,0,0.13);
	text-shadow: 0px 2px 3px rgba(0,0,0,0.2);
	z-index: 1;
	
}

label.radio:first-child input[type="radio"]:checked ~ span {
	background-color:#5bc0de; /* blue */
}

label.radio.very_low input[type="radio"]:checked ~ span {
	background-color:#5bc0de; /* green */
}		

label.radio.low input[type="radio"]:checked ~ span {
	background-color:#5cb85c;
}	

label.radio.moderate input[type="radio"]:checked ~ span {
	background-color:#f0ad4e;
}	

label.radio.very_high input[type="radio"]:checked ~ span {
	background-color:#d9534f;
}	

label.radio.vert {
	border-radius: 0;
	display: block;
	max-width: 100%;
	border-top: none;
	border: 1px solid #CCC;
  	border-bottom: none;
}

label.radio.vert:first-child {
	border-radius: 5px 5px 0 0;	
}	

label.radio.vert:last-child {
	border-radius: 0 0 5px 5px;	
	border-bottom: 1px solid #CCC;
}	

label.radio.vert span {
	display: block;
}


.input-radio-vert-forced{
	flex-flow: column !important;
}

.input-radio-vert-forced label.radio{
	border-radius: 0;
	display: block;
	max-width: 100%;
	border-top: none;
	border: 1px solid #CCC;
  	border-bottom: none;
}

.input-radio-vert-forced label.radio:first-child{
	border-radius: 5px 5px 0 0;	
}	

.input-radio-vert-forced label.radio:last-child{
	border-radius: 0 0 5px 5px;	
	border-bottom: 1px solid #CCC;
}	

.input-radio-vert-forced label.radio span{
	display: block;
}

label.colour-swatch {
	min-width: 9em;
	margin-left: 10px;
	margin-bottom: 0.33em;
}

span.colour-swatch {
	display: inline-block;
	width: 1.6em;
	border: 1px solid #555;
	border-radius: 50%;
	background-color: #666;
}

canvas.signature {
	border: 1px solid black;
	position: relative;
}

@media (max-width: 768px) {

	form-input .buttons {
		position: relative;
		margin-left: 6px;
		margin-top: 0;
	    margin-top: -10px;
	}

 	form-input .pure-table-large td {
    	vertical-align: middle; 		
    	padding: inherit;
 	}

	form-input .input-radio-vert {
   		 flex-flow: column;
	}

	.input-radio-vert label.radio {
		border-radius: 0;
		display: block;
		max-width: 100%;
		border-top: none;
		border: 1px solid #CCC;
	  	border-bottom: none;
	}

	.input-radio-vert label.radio:first-child {
		border-radius: 5px 5px 0 0;	
	}	

	.input-radio-vert label.radio:last-child {
		border-radius: 0 0 5px 5px;	
		border-bottom: 1px solid #CCC;
	}	

	.input-radio-vert label.radio span {
		display: block;
	}
}

{}
