.input-group-addon {
  background-color: transparent;
}
.cc-number .identified {
  background-position-x: 99%;
  background-position-y: 3px;
  background-repeat: no-repeat;
}

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
	max-width: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.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: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	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 {
	will-change: opacity;
	}
.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-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.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 {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* 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;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* 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(416d91365b44e4b4f477.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(8f2c4d11474275fbc161.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-scrollbar {
	overflow-y: scroll;
	padding-right: 5px;
	}
.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;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(2b3e1faf89f94a483539.png);
	}


/* 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: border-box;
	     box-sizing: border-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;
	margin-bottom: 20px;
	}
.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 {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.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;
	color: #333;
	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;
	border: none;
	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;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

 .leaflet-container .leaflet-control-search {
   position: relative;
   float: left;
   background: #fff;
   color: #1978cf;
   border: 2px solid rgba(0, 0, 0, 0.2);
   background-clip: padding-box;
   -moz-border-radius: 4px;
   -webkit-border-radius: 4px;
   border-radius: 4px;
   background-color: rgba(255, 255, 255, 0.8);
   z-index: 1000;
   margin-left: 10px;
   margin-top: 10px;
 }

 .leaflet-control-search.search-exp {
   /*expanded*/
   background: #fff;
   border: 2px solid rgba(0, 0, 0, 0.2);
   background-clip: padding-box;
 }

 .leaflet-control-search .search-input {
   display: block;
   float: left;
   background: #fff;
   border: 1px solid #666;
   border-radius: 2px;
   height: 22px;
   padding: 0 20px 0 2px;
   margin: 4px 0 4px 4px;
 }

 .leaflet-control-search.search-load .search-input {
   background: url(42e88a566f5f3c20f556.gif) no-repeat center right #fff;
 }

 .leaflet-control-search.search-load .search-cancel {
   visibility: hidden;
 }

 .leaflet-control-search .search-cancel {
   display: block;
   width: 22px;
   height: 22px;
   position: absolute;
   right: 28px;
   margin: 6px 0;
   background: url(b110a6248f50f33e02d1.png) no-repeat 0 -46px;
   text-decoration: none;
   filter: alpha(opacity=80);
   opacity: 0.8;
 }

 .leaflet-control-search .search-cancel:hover {
   filter: alpha(opacity=100);
   opacity: 1;
 }

 .leaflet-control-search .search-cancel span {
   display: none;
   /* comment for cancel button imageless */
   font-size: 18px;
   line-height: 20px;
   color: #ccc;
   font-weight: bold;
 }

 .leaflet-control-search .search-cancel:hover span {
   color: #aaa;
 }

 .leaflet-control-search .search-button {
   display: block;
   float: left;
   width: 30px;
   height: 30px;
   background: url(b110a6248f50f33e02d1.png) no-repeat 4px 4px #fff;
   border-radius: 4px;
 }

 .leaflet-control-search .search-button:hover {
   background: url(b110a6248f50f33e02d1.png) no-repeat 4px -20px #fafafa;
 }

 .leaflet-control-search .search-tooltip {
   position: absolute;
   top: 100%;
   left: 0;
   float: left;
   list-style: none;
   padding-left: 0;
   min-width: 120px;
   max-height: 122px;
   box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
   background-color: rgba(0, 0, 0, 0.25);
   z-index: 1010;
   overflow-y: auto;
   overflow-x: hidden;
   cursor: pointer;
 }

 .leaflet-control-search .search-tip {
   margin: 2px;
   padding: 2px 4px;
   display: block;
   color: black;
   background: #eee;
   border-radius: .25em;
   text-decoration: none;
   white-space: nowrap;
   vertical-align: center;
 }

 .leaflet-control-search .search-button:hover {
   background-color: #f4f4f4;
 }

 .leaflet-control-search .search-tip-select,
 .leaflet-control-search .search-tip:hover {
   background-color: #fff;
 }

 .leaflet-control-search .search-alert {
   cursor: pointer;
   clear: both;
   font-size: .75em;
   margin-bottom: 5px;
   padding: 0 .25em;
   color: #e00;
   font-weight: bold;
   border-radius: .25em;
 }

 .leaflet-control-search .search-tooltip {
   top: initial;
   bottom: 20px;
 }

 /* This was added by John Rice to hide the last list result which is always 'Undefined' due to a bug */

 /* This is only for the json search though :| */

 .search-tooltip :last-child {
   /* display: none; */
 }
/*
Author: L. Voogdt
License: MIT
Version: 1.0
*/

/* Marker setup */

.awesome-marker {
  background: url(e52214306ad12a5c837e.png) no-repeat 0 0;
  width: 35px;
  height: 46px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  text-align: center;
}

.awesome-marker-shadow {
  background: url(151b708954e10ff9b542.png) no-repeat 0 0;
  width: 36px;
  height: 16px;
  /* to see the shadow... background-color: aliceblue; */
}

/* Retina displays */

/* +JLR Removed for needing testing */

/*
@media (min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-device-pixel-ratio: 1.5),
(min-resolution: 1.5dppx) {
  .awesome-marker {
    background-image: url('images/markers-soft@2x.png');
    background-size: 720px 92px;
  }
  .awesome-marker-shadow {
    background-image: url('images/markers-shadow@2x.png');
    background-size: 35px 16px;
  }
}
*/

/* -JLR Removed for needing testing */

/* +JLR Customize a little smaller */

.awesome-marker {
  background: url(be2bb1270decfa8855e1.png) no-repeat 0 0;
  width: 30px !important;
  height: 46px !important;
  margin-left: -14px !important;
}

.awesome-marker-shadow {
  background: url(151b708954e10ff9b542.png) no-repeat 0 0;
  width: 36px;
  height: 16px;
}

/* -JLR Customize a little smaller */

.awesome-marker i {
  color: #333;
  margin-top: 10px;
  display: inline-block;
  font-size: 14px;
}

.awesome-marker .icon-white {
  color: #fff;
}

/* Colors */

.awesome-marker-icon-red {
  background-position: 0 0;
}

.awesome-marker-icon-darkred {
  background-position: -180px 0;
}

.awesome-marker-icon-lightred {
  background-position: -360px 0;
}

.awesome-marker-icon-orange {
  background-position: -36px 0;
}

.awesome-marker-icon-beige {
  background-position: -396px 0;
}

.awesome-marker-icon-green {
  background-position: -72px 0;
}

.awesome-marker-icon-darkgreen {
  background-position: -252px 0;
}

.awesome-marker-icon-lightgreen {
  background-position: -432px 0;
}

.awesome-marker-icon-blue {
  background-position: -108px 0;
}

.awesome-marker-icon-darkblue {
  background-position: -216px 0;
}

.awesome-marker-icon-lightblue {
  background-position: -468px 0;
}

.awesome-marker-icon-purple {
  background-position: -144px 0;
}

.awesome-marker-icon-darkpurple {
  background-position: -288px 0;
}

.awesome-marker-icon-pink {
  background-position: -504px 0;
}

.awesome-marker-icon-cadetblue {
  background-position: -324px 0;
}

.awesome-marker-icon-white {
  background-position: -574px 0;
}

.awesome-marker-icon-gray {
  background-position: -648px 0;
}

.awesome-marker-icon-lightgray {
  background-position: -612px 0;
}

.awesome-marker-icon-black {
  background-position: -682px 0;
}

.awesome-marker-square {
  background-position-y: -46px;
}

/* +JLR custom icon sizing */

.awesome-marker i {
  font-size: 15px;
  margin-left: 0px !important;
  /*margin-left: 2px; */
  /*margin-top: 8px;*/
}

/* -JLR custom icon sizing */

/* + JLR Customize sizing so change shift in image */

.awesome-marker-icon-red {
  background-position-x: 0;
}

.awesome-marker-icon-darkred {
  background-position-x: -154px;
}

.awesome-marker-icon-lightred {
  background-position-x: -308px;
}

.awesome-marker-icon-orange {
  background-position-x: -31px;
}

.awesome-marker-icon-beige {
  background-position-x: -339px;
}

.awesome-marker-icon-green {
  background-position-x: -62px;
}

.awesome-marker-icon-darkgreen {
  background-position-x: -216px;
}

.awesome-marker-icon-lightgreen {
  background-position-x: -370px;
}

.awesome-marker-icon-blue {
  background-position-x: -93px;
}

.awesome-marker-icon-darkblue {
  background-position-x: -186px;
}

.awesome-marker-icon-lightblue {
  background-position-x: -401px;
}

.awesome-marker-icon-purple {
  background-position-x: -123px;
}

.awesome-marker-icon-darkpurple {
  background-position-x: -247px;
}

.awesome-marker-icon-pink {
  background-position-x: -432px;
}

.awesome-marker-icon-cadetblue {
  background-position-x: -278px;
}

.awesome-marker-icon-white {
  background-position-x: -492px;
}

.awesome-marker-icon-gray {
  background-position-x: -555px;
}

.awesome-marker-icon-lightgray {
  background-position-x: -525px;
}

.awesome-marker-icon-black {
  background-position-x: -585px;
}

/* + JLR Customize sizing so change shift in image */
.background-spinner {
  display: flex;
  display: -webkit-flex;
  -ms-flexbox-display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  min-height: 100%;
  min-width: 100%;
  z-index: 10000;
}

tr.has-danger {
  background-color: #fdf7f7;
  border: 1px solid #d9534f !important;
}

.navbar {
  clear: both;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99000;
}

.branding-top-border {
  background-color: white;
  border-top: 39px black solid;
  clear: both;
  height: 108px;
}

.branding-top-border>.branding {
  margin-left: 10px;
  margin-top: -30px;
}

.branding-top-border>.branding>.logo {
  float: left;
}

.branding-top-border>.branding>.organization>a {
  margin-left: 10px;
  color: white;
}

.branding-top-border>.branding>.site>h2>a,
.branding-top-border>.branding>.site>span>h2>a {
  color: black;
  font-family: Arial, "Helvetica Neue", Helvetica, Geneva, sans-serif;
  font-stretch: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-weight: bold;
  margin-left: 10px;
}

.branding-top-border>.branding>.site>h2,
.branding-top-border>.branding>.site>span>h2 {
  margin-top: 10px;
  white-space: nowrap;
}

.branding-top-border>.branding>.site>.tagline,
.branding-top-border>.branding>.site>span>.tagline {
  margin-left: 90px;
  margin-top: -10px;
}

.branding-top-border>.branding>.site>.tagline>span,
.branding-top-border>.branding>.site>span>.tagline>span {
  color: rgb(125, 125, 125);
  display: block;
  font-size: 86% 0.85714em;
  font-style: normal;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 100;
  font-style: italic;
  white-space: nowrap;
}

.singlepage-form>* {
  margin-top: 10px;
}

.cms-page-body .container {
  padding-top: 0px;
  background-color: white;
  /*MAKES OVERFLOWN OBJECTS HAVE INERTIA SCROLLING*/
  transform: translateZ(0px);
  -webkit-transform: translateZ(0px);
  -webkit-overflow-scrolling: touch !important;
  overflow: auto !important;
  /*HELPS THE ABOVE WORK IN IOS5*/
}

.cms-block-body {
  padding-top: 0px;
  background-color: white;
  /*MAKES OVERFLOWN OBJECTS HAVE INERTIA SCROLLING*/
  transform: translateZ(0px);
  -webkit-transform: translateZ(0px);
  -webkit-overflow-scrolling: touch !important;
}

.cms-page-body {
  /*min-height: calc(100vh - 233px);*/
  overflow: none;
  position: absolute;
  top: 108px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  /*min-height: calc(100vh - 233px);*/
}

.vertically-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 25px;
  /*REMOVING VERTICALLY CENTERED AND JUST GOING WITH "NEAR THE TOP"
    //min-height: calc(100vh - 235px);
    /*
@media(max-width: 768px) {
    min-height: calc(100vh - 250px);
}
*/
  /*
    overflow: auto;
    position: absolute;
    top: 100px;
    bottom: 100px;
    left: 0px;
    right: 0px;
*/
}

body footer {
  background-color: white !important;
}

body footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
  min-height: 70px;
}

body footer {
  padding-bottom: 7px;
}

body footer .copyright {
  text-align: center;
  padding-top: 0px !important;
}

body footer .copyright a {
  color: #000;
  font-size: 0.9em;
}

body footer .footer-links {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  height: 35px;
}

body footer .footer-links ul li {
  padding-left: 10px;
  padding-right: 10px;
}

body footer ul {
  margin: 5px 0 0 10px !important;
  white-space: nowrap;
  -webkit-padding-start: 10px;
}

body footer ul li {
  display: inline-block;
}

body footer ul li a {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-style: italic;
  font-weight: 100;
  font-size: 86%;
  font-size: 0.85714em;
  line-height: 134%;
}

/* TODO Figure out why dev and prod have different font-sizes in the nav bar. */

/* This at least fixes the gap under the nav bar in dev */

.navbar {
  min-height: 56px;
}

body footer .powered-by {
  margin-top: 0 !important;
  display: inline-block;
  right: 10px;
  /* top: 10px; */
  bottom: 10px;
  position: absolute;
}

body footer {
  clear: both;
}

navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: underline;
}

.navbar-brand,
body .navbar ul li a {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: normal;
  line-height: 134%;
  display: inline-block;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-right: 1rem;
  font-size: 1rem;
  line-height: 24px;
  white-space: nowrap;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.navbar-brand {
  font-size: 1.25rem;
}

div.loginsection {
  position: fixed;
  right: 10px;
  top: 0px;
}

#navcollapseddropdown:hover,
#navcollapseddropdown>a:hover .navcollapseddropdown:hover,
.navcollapseddropdown>a:hover {
  margin-right: 0px !important;
}

#navcollapseddropdown,
#navcollapseddropdown>a .navcollapseddropdown,
.navcollapseddropdown>a {
  margin-right: 0px !important;
}

.navbar-fixed-top {
  min-height: 55px;
}

abp-datetime-picker {
  width: 100%;
}

abp-datetime-picker>*>.datetimepicker {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.suffix-select {
  width: 100%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.state-select {
  width: 100%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.top-subnav {
  display: flex;
  flex-direction: row;
  /*
      height: 400px;
    */
  overflow: auto;
  padding: 0px;
}

.top-subnav>.navbar {
  position: relative;
  width: 100%;
}

ux-dialog-overlay.active {
  background-color: black !important;
  opacity: 0.5 !important;
}

html,
body {
  -webkit-overflow-scrolling: touch !important;
  overflow: auto !important;
  height: 100% !important;
  padding: 0px !important;
}

.card-compact .card-block {
  margin-top: 5px;
  padding: 5px;
  padding-left: 10px;
}

.card-compact .card-header {
  padding-left: 10px;
}

.card-compact .card-block .card-text,
.card-compact .card-text {
  padding: 5px;
  margin-bottom: 0px;
}

.overflow-auto {
  overflow: auto;
}

/*+ For feedback control from atlassian*/

#atlwdg-container {
  height: 702px;
  width: 100%;
  overflow-x: auto;
  max-width: 600px;
}

#atlwdg-frame {
  width: 600px;
}

/*- For feedback control from atlassian*/

@media (max-width: 991px) {
  body footer {
    display: none;
  }
}

.body-content {
  clear: both;
  /*
    height: calc(100vh - 125px);
    min-height: calc(100vh - 125px);
  */
  position: absolute;
  top: 55px;
  left: 0px;
  right: 0px;
  overflow: auto;
}

@media (max-width: 576px) {

  /* This fixes size of suffix addon... */
  .mb-2 {
    margin-bottom: 0px !important;
  }
}

@media (min-width: 992px) {
  .body-content {
    bottom: 70px;
  }
}

@media (max-width: 991px) {
  .body-content {
    bottom: 0px;
  }

  .navbar-toggler-right-offset {
    margin-right: 60px;
  }
}

@media (min-width: 767px) {
  .hide-badge-m {
    display: none;
    visibility: hidden;
  }
}

@media (min-width: 992px) {
  .cms-page-body .container {
    min-height: calc(100vh - 233px);
  }
}

@media (max-width: 991px) {
  .cms-page-body .container {
    min-height: calc(100vh - 163px);
  }
}

@media (max-width: 991px) {
  .body-content {
    bottom: 0px;
  }
}

@media (max-width: 991px) and (min-width: 601px) {

  .branding-top-border>.branding>.site>h2,
  .branding-top-border>.branding>.site>span>h2 {
    font-size: x-large;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {

  .branding-top-border>.branding>.site>h2,
  .branding-top-border>.branding>.site>span>h2 {
    font-size: medium;
    white-space: nowrap;
  }
}

.navSpinner {
  z-index: 2000;
  padding-top: 4px;
  min-width: 35px;
  float: left;
}

.dropdown-menu-relative {
  position: absolute;
  z-index: 1000;
  display: none;
  float: inherit;
  max-height: 200px;
  overflow-y: auto;
  left: initial;
}

.menudropdown,
.menudropdown:active,
.menudropdown:hover {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: initial !important;
}

.btn-group {
  flex-wrap: wrap;
}

.table-compact td,
.table-compact th {
  padding: 0.25rem !important;
}

@media (max-width: 576px) {
  .container-full {
    padding: 0px;
  }

  .container-full>.row {
    padding: 0px;
    margin: 0px;
  }

  .container-full>.row>.col {
    padding: 0px;
    margin: 0px;
  }
}

.file-upload-circle {
  background-color: gray;
  border: 2px solid white;
  height: 40px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  width: 40px;
}

.file-upload-delete {
  float: right;
  cursor: pointer;
  position: absolute;
  z-index: 50000;
  padding-top: 10px;
  right: 20px;
  top: 5px;
}

.file-upload-image {
  width: 100%;
  border-radius: 25px;
  border-color: black;
  border-width: 2px;
  border-style: solid;
  height: 150px;
  object-fit: contain;
}

.game-upload-image {
  max-width: 50px;
  width: 100%;
  border-color: black;
  border-width: 2px;
  border-style: solid;
}

.map-marker {
  cursor: pointer;
  position: absolute;
  height: 41px;
  width: 25px;
}

.selected-map-marker-icon {
  background-image: url(4178548fcb8615daede3.png);
}

.opaque {
  opacity: 1 !important;
}

/*.leaflet-container a, */

.maptranslucent {
  opacity: 0.5;
}

/* .form-control-feedback.shift-up {
  margin-top: -15px;
} */

.compressed>* {
  margin-top: 0px;
}

.form-group {
  margin-bottom: 0px;
}

.form-control-feedback {
  margin-top: 0px !important;
  font-size: 10pt;
}

.reserve-space {
  margin-top: 0px;
  min-height: 23px;
}

/* When an addon has a button in it the padding on the margin is huge, this fixes it. */

span.input-group-addon>button {
  margin: -8px;
}

.popover {
  max-width: 400px !important;
}

/* for IE size these better */
input[type="checkbox"] {
  min-width: 15px !important;
  min-height: 15px !important;
  content: "✓";
}

input[type="radio"] {
  min-width: 15px !important;
  min-height: 15px !important;
}

/* IE10+ */
::-ms-clear {
  display: none;
  width: 0px;
  height: 0px;
}

div.hoverdim:hover {
  background-color: rgba(0, 0, 0, 0.12);
}

table.table-compact-submit-order {
  min-width: 500px;
}

table.table-compact-submit-order td {
  padding: 8px;
}

.feedback-trigger {
  position: fixed;
  background: #205081;
  padding: 5px;
  border: 2px solid white;
  border-top: none;
  font-weight: bold;
  color: white !important;
  display: block;
  white-space: nowrap;
  text-decoration: none !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 0 0 5px 5px;
}

.feedback-trigger.feedback-RIGHT {
  left: 100%;
  top: 50%;
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: top left;
  -moz-transform: rotate(90deg);
  -moz-transform-origin: top left;
  -ms-transform: rotate(90deg);
  -ms-transform-origin: top left;
  transform: rotate(90deg);
  transform-origin: top left;
  z-index: 10000;
}

div.feedbackForm {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100000;
}


.product-group-wrapper {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  z-index: 0;
  border: none;
}

.product-group {
  position: fixed;
  left: 20px;
  right: 20px;
  top: 70px;
  bottom: 80px;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 0px;
  overflow: hidden;
  border: 3px solid black;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .product-group {
    bottom: 10px;
    left: 5px;
    right: 5px;
  }
}

@media print {
  cms-header-nav-bar.au-target {
    display: none;
  }

  site-header.au-target {
    display: none;
  }

  .body-content {
    top: 0px !important;
  }

  /* @page {
    size: 8.5in 11in portrait;
  } */
  .navbar,
  body footer,
  .feedback-trigger {
    display: none !important;
  }

  .body-content {
    clear: both !important;
    bottom: auto !important;
    overflow: visible !important;
    top: 30px !important;
  }

  .cms-page-body .container {
    width: 100% !important;
    background-color: white !important;
    border-left: none !important;
    border-right: none !important;
  }

  .branding-top-border {
    border-top: 0px !important;
  }

  body {
    height: unset !important;
    background-color: white !important;
  }

  .cms-page-body {
    position: static !important;
  }

  .container {
    min-height: unset !important;
  }
}

/* @media print
{
    html
    {
        zoom: 75% !important;
    }
} */
/*
@media print {
  .container {
      max-width: none!important;
      width: 100%!important;
      padding-left: 0;
      padding-right: 0;
  }
  .row {
      margin-left: -1%;
      margin-left: -1%;
  }
  [class*="col-"] {
      float: left;
      padding-left: 1%;
      padding-right: 1%;
  }
  .col-sm-12,
  .col-md-12,
  .col-lg-12 {
      width: 100%
  }
  .col-sm-11,
  .col-md-11,
  .col-lg-11 {
      width: 91.66666667%
  }
  .col-sm-10,
  .col-md-10,
  .col-lg-10 {
      width: 83.33333333%
  }
  .col-sm-9,
  .col-md-9,
  .col-lg-9 {
      width: 75%
  }
  .col-sm-8,
  .col-md-8,
  .col-lg-8 {
      width: 66.66666667%
  }
  .col-sm-7,
  .col-md-7,
  .col-lg-7 {
      width: 58.33333333%
  }
  .col-sm-6,
  .col-md-6,
  .col-lg-6 {
      width: 50%
  }
  .col-sm-5,
  .col-md-5,
  .col-lg-5 {
      width: 41.66666667%
  }
  .col-sm-4,
  .col-md-4,
  .col-lg-4 {
      width: 33.33333333%
  }
  .col-sm-3,
  .col-md-3,
  .col-lg-3 {
      width: 25%
  }
  .col-sm-2,
  .col-md-2,
  .col-lg-2 {
      width: 16.66666667%
  }
  .col-sm-1,
  .col-md-1,
  .col-lg-1 {
      width: 8.33333333%
  }
}
@media print {
  body {
    margin: 0;
    padding: 0 !important;
    min-width: 768px;
  }
  .container {
    width: auto;
    min-width: 750px;
  }
} */

@media (max-width: 400px) {
  .hide-on-small {
    display: none;
  }
}

@media (max-width: 400px) {
  .workflow-header-lg {
    display: none !important;
  }
}

@media (min-width: 400px) {
  .workflow-header-sm {
    display: none !important;
  }
}



/* Work on bavbar spacing/sizing on resize. */
.navbar-brand-home {
  line-height: 26px;
}

.display-nav-tiny {
  display: none;
}

@media (max-width: 300px) {
  .display-nav-tiny {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-toggleable-md {
    display: block !important;
    /* max-height: 34px; */
  }

  .navbar-brand.navbar-brand-home {
    display: inline-block !important;
  }

  .navbar-brand.navbar-brand-home div.hidden-sm-down.navbar-brand-home {
    text-overflow: ellipsis;
    display: inline-block !important;
    overflow: hidden;
  }

  /* .navbar-brand.navbar-brand-home span.hidden-sm-down.navbar-brand-home {
    overflow-x: clip;
    text-overflow: ellipsis;
  } */
}

@media (min-width: 300px) and (max-width: 991px) {
  .navbar-brand.navbar-brand-home span.hidden-sm-down.navbar-brand-home {
    display: inline-block !important;
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .navbar-brand.navbar-brand-home div.hidden-sm-down.navbar-brand-home {
    max-width: 420px !important;
  }

  /* .navbar-brand.navbar-brand-home span.hidden-sm-down.navbar-brand-home {
    max-width: 420px !important;
  } */
}

@media (min-width: 500px) and (max-width: 599px) {
  .navbar-brand.navbar-brand-home div.hidden-sm-down.navbar-brand-home {
    max-width: 320px !important;
  }

  /* .navbar-brand.navbar-brand-home span.hidden-sm-down.navbar-brand-home {
    max-width: 320px !important;
  } */
}

@media (min-width: 400px) and (max-width: 499px) {
  .navbar-brand.navbar-brand-home div.hidden-sm-down.navbar-brand-home {
    max-width: 220px !important;
  }

  /* .navbar-brand.navbar-brand-home span.hidden-sm-down.navbar-brand-home {
    max-width: 220px !important;
  } */
}

@media (max-width: 400px) {
  .navbar-brand.navbar-brand-home div.hidden-sm-down.navbar-brand-home {
    max-width: 120px !important;
  }

  /* .navbar-brand.navbar-brand-home span.hidden-sm-down.navbar-brand-home {
    max-width: 120px !important;
  } */
}

@media (min-width: 300px) {
  .navbar-brand-home-in-dropdown {
    display: none !important;
  }
}


/* slight positioning fix */
@media (max-width: 991px) {
  a.navbar-brand.navbar-brand-home {
    margin-top: 1px;
    margin-bottom: -1px;
    padding-top: 6px;
  }
}

@media (min-width: 992px) {
  div.navbar-collapse.collapse {
    margin-top: 1px;
    margin-bottom: -1px;
    padding-top: 0px;
  }
}

.test-banner {
  position: fixed;
  right: -45px;
  top: 45px;
  background: rgb(255 17 0);
  width: 220px;
  text-align: center;
  color: rgb(255 255 255);
  font-weight: 600;
  opacity: 0.9;
  transform: rotate(45deg);
  z-index: 100000;
}

@media (max-width: 767px) {
  .navbar {
    /* max-height: 100%;
    overflow-y: auto; */
  }
  .nav-item {
    width: min-content;
  }
}

@media (max-width: 991px) {
  .navbar-collapse.collapse {
    transition: height 500ms ease-in-out;
    /* max-height: 0px; */
    height: 0px;
    /* overflow-y: clip; */
    display: block !important;
    overflow-y: hidden;
  }
  .navbar-collapse.collapse.slideopen {
    /* max-height: 1000px; */
    height: calc(100vh - 60px);
    /* overflow-y: unset; */
  }
}
/* @media (min-width: 992px) {
  .navbar-collapse {
    max-height: 0px !important;
  }
} */

/* fix more menu not showing */
@media (min-width: 992px) {
  .navbar-collapse.collapse {
    overflow: visible;
  }
}
@media (max-width: 991px) {
  .navbar-collapse.collapse {
    overflow: auto;
  }
}

