/* 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 */
@media (min-width: 992px) {
  .leaflet-container {
    min-height: calc(100vh - 56px);
  }
}

@media (max-width: 991px) {
  .leaflet-container {
    min-height: calc(100vh - 56px);
  }
}

@media (max-height: 500px) {
  .lat-lon-readout {
    display: none;
  }
}

/* .leaflet-control-locate {
  a {
    color: #444;
    cursor: pointer;
    font-size: 1.4em;
  }
  &.active {
    a {
      color: #2074B6;
    }
    &.following a {
      color: #FC8428;
    }
  }
}
.leaflet-control-locate {
  a {
    color: #444;
    cursor: pointer;
    font-size: 1.4em;
  }
  &.active {
    a {
      color: #2074B6;
    }
    &.following a {
      color: #FC8428;
    }
  }
} */

.leafet-control-locate-location circle {
  animation: leaflet-control-locate-throb 4s ease infinite;
}

@keyframes leaflet-control-locate-throb {
  0% {
    r: 9;
    stroke-width: 1;
  }
  50% {
    r: 7;
    stroke-width: 3;
  }
  100% {
    r: 9;
    stroke-width: 1;
  }
}

.leaflet-legend {
  width: 100px !important;
}

.legend-style {
  padding: 0px;
  text-align: center;
  color: black;
  border: 1px solid black;
  margin-top: 3px;
}

.legend-green {
  background: rgb(0, 128, 0);
  background: rgba(0, 128, 0, 0.5);
  border-color: green;
}

.legend-blue {
  background: rgb(65, 105, 225);
  background: rgba(65, 105, 225, 0.5);
  border-color: rgb(65, 105, 225);
}

.legend-yellow {
  background-color: rgb(255, 255, 0);
  background-color: rgba(255, 255, 0, 0.7);
  border-color: yellow;
}

.legend-orange {
  background-color: rgb(255, 165, 0);
  background-color: rgba(255, 165, 0, 0.7);
  border-color: orange;
}

.legend-red {
  background-color: rgb(255, 0, 0);
  background-color: rgba(255, 0, 0, 0.5);
  border-color: red;
}

.legend-gray {
  background-color: rgb(128, 128, 128);
  background-color: rgba(128, 128, 128, 0.5);
  border-color: black;
}

/*
.legend-blue {
  background-color: rgb(135, 175, 255);
  background-color: rgba(135, 175, 255, 0.5);
  border-color: blue;
}
*/

.legend-header {
  padding: 0px;
  text-align: center;
  color: black;
}

.leaflet-control-layers-base {
  margin-top: 10px;
}

.leaflet-popup-content>div>div {
  max-height: 200px;
  overflow: auto;
}

.mapdate {
  left: 60px;
  position: absolute;
  top: 10px;
  width: 150px;
  z-index: 9999;
}

.lat-lon-readout {
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  font-size: small;
  left: 60px;
  top: 50px;
  padding-left: 5px;
  position: absolute;
  width: 200px;
  z-index: 9998;
}

.map-date-select {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-right: 1rem;
  width: 100%;
}

.darkMode .leaflet-control-layers-expanded {
  background-color: #C0C0C0 !important;
}

.leaflet-control-attribution {
  display: none !important;
}

.page-content {
  margin-top: 56px !important;
}


/*Make  map buttons show under side nav when it is popover*/
.leaflet-top, .leaflet-bottom {
  z-index: 999 !important;
} 

/* 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 */
@media (min-width: 992px) {
  .leaflet-container {
    min-height: calc(100vh - 56px);
  }
}

@media (max-width: 991px) {
  .leaflet-container {
    min-height: calc(100vh - 56px);
  }
}

@media (max-height: 500px) {
  .lat-lon-readout {
    display: none;
  }
}

/* .leaflet-control-locate {
  a {
    color: #444;
    cursor: pointer;
    font-size: 1.4em;
  }
  &.active {
    a {
      color: #2074B6;
    }
    &.following a {
      color: #FC8428;
    }
  }
}
.leaflet-control-locate {
  a {
    color: #444;
    cursor: pointer;
    font-size: 1.4em;
  }
  &.active {
    a {
      color: #2074B6;
    }
    &.following a {
      color: #FC8428;
    }
  }
} */

.leafet-control-locate-location circle {
  animation: leaflet-control-locate-throb 4s ease infinite;
}

@keyframes leaflet-control-locate-throb {
  0% {
    r: 9;
    stroke-width: 1;
  }
  50% {
    r: 7;
    stroke-width: 3;
  }
  100% {
    r: 9;
    stroke-width: 1;
  }
}

.leaflet-legend {
  width: 100px !important;
}

.legend-style {
  padding: 0px;
  text-align: center;
  color: black;
  border: 1px solid black;
  margin-top: 3px;
}

.legend-green {
  background: rgb(0, 128, 0);
  background: rgba(0, 128, 0, 0.5);
  border-color: green;
}

.legend-blue {
  background: rgb(65, 105, 225);
  background: rgba(65, 105, 225, 0.5);
  border-color: rgb(65, 105, 225);
}

.legend-yellow {
  background-color: rgb(255, 255, 0);
  background-color: rgba(255, 255, 0, 0.7);
  border-color: yellow;
}

.legend-orange {
  background-color: rgb(255, 165, 0);
  background-color: rgba(255, 165, 0, 0.7);
  border-color: orange;
}

.legend-red {
  background-color: rgb(255, 0, 0);
  background-color: rgba(255, 0, 0, 0.5);
  border-color: red;
}

.legend-gray {
  background-color: rgb(128, 128, 128);
  background-color: rgba(128, 128, 128, 0.5);
  border-color: black;
}

/*
.legend-blue {
  background-color: rgb(135, 175, 255);
  background-color: rgba(135, 175, 255, 0.5);
  border-color: blue;
}
*/

.legend-header {
  padding: 0px;
  text-align: center;
  color: black;
}

.leaflet-control-layers-base {
  margin-top: 10px;
}

.leaflet-popup-content>div>div {
  max-height: 200px;
  overflow: auto;
}

.mapdate {
  left: 60px;
  position: absolute;
  top: 10px;
  width: 150px;
  z-index: 9999;
}

.lat-lon-readout {
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  font-size: small;
  left: 60px;
  top: 50px;
  padding-left: 5px;
  position: absolute;
  width: 200px;
  z-index: 9998;
}

.map-date-select {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-right: 1rem;
  width: 100%;
}

.darkMode .leaflet-control-layers-expanded {
  background-color: #C0C0C0 !important;
}

.leaflet-control-attribution {
  display: none !important;
}

.page-content {
  margin-top: 56px !important;
}


/*Make  map buttons show under side nav when it is popover*/
.leaflet-top, .leaflet-bottom {
  z-index: 999 !important;
} 

.passwordForm .alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.passwordForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .5rem;
}

.passwordForm .alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.passwordForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid red;
  border-radius: .5rem;
}

.passwordcard {
  max-width: 800px;
}

.mfafield {
  text-align: center !important;
  width: 25px !important;  
  border: 2px solid #a94442 !important;
  border-radius: 10px !important;
  font-size: x-large;
  font-weight: bold;
  -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera */
input.mfafield::-webkit-outer-spin-button,
input.mfafield::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mfafieldlong {
  width: 150px !important;
}

.mfafield:focus {
  border: 2px solid green !important;
}
.mfafield.success {
  border: 2px solid green !important;
}

.darkMode .mfafield {
  color: black;
}

.errorcard > .card > .card-content {
  border-radius: 24px;
}
.errorcard > .card {
  border-radius: 24px;
  margin: 0.5rem 0.5rem 0.5rem 0.5rem;
  padding: 00px;
}

.errorForm .alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.errorForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .5rem;
}

.errorForm .alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.errorForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid red;
  border-radius: .5rem;
}

.errorcard {
  max-width: 800px;
}

.k-list .k-item.k-state-selected, .k-list-optionlabel.k-state-selected {
  color: #000;
  background-color: #f5f5f5;
}

/*+ JLR Fixups for new kendo to match styles */
input.k-input::-webkit-input-placeholder {
  /* color: orange !important; */
  opacity: 0.5 !important;
}

span.k-dropdown-wrap > input.k-input {
  margin: 0px;
  background-color: #f5f5f5;
  height: initial;
  /* color: #9e9e9e; */
}
span.k-dropdown-wrap > input.k-input.md-invalid-text {
  border-bottom: 1px solid #F44336 !important;
  box-shadow: 0 1px 0 0 #F44336 !important;
}

span.k-picker-wrap > input.k-input {
  margin: 0px;
  background-color: #f5f5f5;
  height: initial;
  /* color: #9e9e9e; */
}
span.k-picker-wrap > input.k-input.md-invalid-text {
  border-bottom: 1px solid #F44336 !important;
  box-shadow: 0 1px 0 0 #F44336 !important;
}

span.k-autocomplete > input.k-input {
  margin: 0px;
  background-color: #f5f5f5;
  height: initial;
  /* color: #9e9e9e; */
}
span.k-autocomplete > input.k-input.md-invalid-text {
  border-bottom: 1px solid #F44336 !important;
  box-shadow: 0 1px 0 0 #F44336 !important;
}
/*- JLR Fixups for new kendo to match styles */

.input-field > textarea + label {
  transform: translateY(0px);
  /* left: .75rem; */
}

@media only screen and (min-width: 601px) {
  nav,
  nav .nav-wrapper i,
  nav a.button-collapse,
  nav a.button-collapse i {
    /*
        height: 64px;
        line-height: 64px;
      */
    height: 56px !important;
    line-height: 56px !important;
  }
}

.login-brand {
  color: #003344;
  column-rule: -webkit-linear-gradient(top left, #003344 0%, #005566 48%, #007788 100%);
  column-rule: -o-linear-gradient(top left, #003344 0%, #004455 48%, #007788 100%);
  column-rule: linear-gradient(to bottom right, #003344 0%, #004455 48%, #007788 100%);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: -o-linear-gradient(top left, #003344 0%, #005566 48%, #007788 100%);
  color: linear-gradient(to bottom right, #003344 0%, #005566 48%, #007788 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9800', endColorstr='#007788', GradientType=1);
  padding-right: 10px;
  font-weight: 900;
}

h5.login-brand {
  font-size: 1.5rem;
}

.login-brand.darken {
  color: #001122;
}

/* Top Navigation */

.fixed-nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-brand {
  /*
  margin-left: 30px;
  margin-bottom: 10px;
*/
  margin: 0px;
  text-align: center;
  width: 200px;
  color: red;
  font-weight: bolder;
}

.user-nav-item {
  width: auto;
}

.user .user-card {
  color: #000;
  padding: 10px;
  /* margin-top: 47px;
  margin-right: 0px; */
  margin-top: 39px;
  margin-right: -8px;
  display: none;
  z-index: 15000;
  position: absolute;
  right: 0px;
}

.user:hover .user-card {
  display: block;
}

/* Left Side Navigation */

.nav-i {
  margin-top: 20px;
}

.child-routes {
  display: none;
}

.fixed-nav .child-routes a {
  padding-left: 5px;
}

li.active .child-routes {
  display: block;
  background-color: #fff;
}

/* Fixed Tabs */

.tabs {
  width: auto !important;
  position: fixed !important;
  top: 64px;
  left: 0px;
  right: 0px;
  overflow: hidden !important;
}

.nav-margin section {
  margin-top: 125px;
}

.tab-margin section {
  margin-top: 60px;
}

/*
.detail-pad {
  padding-top: 15px;
}
*/

/* Modal */

.active-modal {
  display: block !important;
  top: 20% !important;
  z-index: 1050 !important;
}

/* General */

section {
  /*  margin: 0px 20px; */
  margin: 0px 0px;
}

.page-content {
  margin-top: 36px;
  margin-left: 0px;
}

.cell-pop input {
  z-index: 5000;
}

/* Media Queries */

@media (min-width: 993px) {
  .sideNavPinned .page-content {
    margin-left: 256px;
  }
  .tabs {
    margin-left: 256px !important;
  }
  /* This is With Pinnable Nav */
  md-navbar.pinnable #fixed-section {
    left: 256px !important;
  }
  /* Always show burger if not pinned */
  md-navbar:not(.pinnable) #burger {
    display: none;
  }
  /*- */
  .brand-logo {
    margin-left: 100px;
  }
}

@media (max-width: 600px) {
  /* Fixed Layout */
  #fixed-section {
    left: 0px;
  }
}

/* Fixed Layout */
#fixed-section {
  position: fixed;
  top: 60px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin-left: 0px;
  /* Changed to 0 on the right so scrollbar isn't floating. */
  margin-right: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  overflow: auto;
  padding-right: 5px;
  padding-left: 5px;
}

/* Added for When Side Nav is Pinned! */
.fixed-nav>.sidenav {
  width: 256px;
  overflow-x: hidden;
}
/* But don't apply to when mobile! */
@media (min-width: 601px) {
  .sideNavPinned #fixed-section {
    left: 256px;
  }
}
/* - */

.fixed-grid, .new-fixed-grid, .test-fixed-grid {
  height: calc(100% - 155px);
  width: calc(100% - 10px); 
  position: absolute;
  border: 2px solid #ccc;
  border-radius: 3px;
  -moz-transition: height .1s;
  -webkit-transition: height .1s;
  -ms-transition: height .1s;
  -o-transition: height .1s;
  transition: height .1s;
}

@media (min-width: 701px) {
  .fixed-grid.new-vpa-grid, .new-fixed-grid.new-vpa-grid, .test-fixed-grid.new-vpa-grid {
    height: calc(100% - 85px);
  }
}
@media (max-width: 700px) {
  .fixed-grid.new-vpa-grid, .new-fixed-grid.new-vpa-grid, .test-fixed-grid.new-vpa-grid {
    height: calc(100% - 75px);
  }
}

.fixed-grid.new-vpa-grid.new-mobile-grid, .new-fixed-grid.new-vpa-grid.new-mobile-grid, .test-fixed-grid.new-vpa-grid.new-mobile-grid {
  height: calc(100% - 40px);
}

.grid-options {
  overflow: hidden;
  /* display: block !important; */
}

.grid-options > * > div > div {
  background-color: #eee;
  padding: 5px !important;
  margin: 0px;
  max-height: calc(75vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}

.grid-options > * > div > div > div {
  text-align: center;
}

.grid-options > * > div {
  background-color: black;
  padding: 1px;
  margin: 0px;
}

.new-fixed-grid {
  height: calc(100% - 90px);
  width: calc(100% - 10px); 
}

.test-fixed-grid {
  height: calc(100% - 115px);
  width: calc(100% - 20px); 
}

@media (min-width: 993px) {
  .new-fixed-grid {
    width: calc(100% - 10px); 
  }
  .test-fixed-grid {
    width: calc(100% - 275px); 
  }
}

#fixed-footer.detail-grid-margin {
  height: 50px;
}

/* Grid */

.grid-spinner {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 36%;
  text-align: center;
  z-index: 1500;
}

.new-grid-spinner {
  top: 35%;
  right: 0px;
  left: 0px;
  bottom: 0px;
  margin: auto;
  position: absolute;
  text-align: center;
  z-index: 1500;
}

.new-grid-spinner-background {
  top: 0%;
  right: 0px;
  left: 0px;
  bottom: 0px;
  position: absolute;
  z-index: 1500;
  background-color: rgba(0, 0, 0, .5);
}

.ag-row {
  border-bottom: 1px solid #d3d3d3 !important;
}

/* .headerfooterbackgound {
  background-color: rgb(54, 61, 71) !important;
} */

.ag-theme-material > div > div > div > .ag-header {
  background: #f5f3f3;
}

.no-x-scroll .ag-body-viewport {
  overflow-x: hidden;
}

/* Modal */

#modal-wrapper.active-modal .lean-overlay {
  display: block;
  opacity: .5;
}

#modal-wrapper.active-modal .modal {
  display: block;
  z-index: 1000;
}

.top-mod {
  width: 40% !important;
  z-index: 2100 !important;
}

/* Modal Grid */

.modal-grid .ag-body-viewport {
  min-height: 200px;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Modal Grid */

.modal-grid .ag-body {
  min-height: 300px;
  max-height: 600px;
}

/* End of Custom Styles */

/** If Aurelia Animation Enabled **/

/* animate page transitions */

section.au-enter-active {
  -webkit-animation: fadeInRight 1s;
  animation: fadeInRight 1s;
}

div.au-stagger {
  /* 50ms will be applied between each successive enter operation */
  -webkit-animation-delay: 50ms;
  animation-delay: 50ms;
}

/* animation definitions */

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html, body {
  font-family: "Roboto", sans-serif !important;
}

.usercardactivator > .material-icons {
  font-size: 2rem;
}
/* Ugh hide a copy of the title that gets doubled for the activator */

/* This only happened with reveal so now we need to use reveal on all cards.  */

/*
.card-title {
    display: none;
}
*/

/* this is more specific so it doesn't break other cards, just cleans up when there are two titles. */

.card-content>.card-title:nth-child(2) {
  display: none;
}

.card-title.activator {
  display: block;
}

/* Give a grey bar and make the reveal size match it... */

.card .card-title.activator {
  background-color: rgba(0, 0, 0, 0.10);
}

.card .card-reveal .card-title {
  line-height: 48px;
}

/* Materialize read-only is too dim */

input:not([type]):disabled,
input:not([type])[readonly="readonly"],
input[type=text]:disabled,
input[type=text][readonly="readonly"],
input[type=password]:disabled,
input[type=password][readonly="readonly"],
input[type=email]:disabled,
input[type=email][readonly="readonly"],
input[type=url]:disabled,
input[type=url][readonly="readonly"],
input[type=time]:disabled,
input[type=time][readonly="readonly"],
input[type=date]:disabled,
input[type=date][readonly="readonly"],
input[type=datetime]:disabled,
input[type=datetime][readonly="readonly"],
input[type=datetime-local]:disabled,
input[type=datetime-local][readonly="readonly"],
input[type=tel]:disabled,
input[type=tel][readonly="readonly"],
input[type=number]:disabled,
input[type=number][readonly="readonly"],
input[type=search]:disabled,
input[type=search][readonly="readonly"],
textarea.materialize-textarea:disabled,
textarea.materialize-textarea[readonly="readonly"] {
  color: rgba(0, 0, 0, 0.56) !important;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.256);
}

/* Why is this not in CI: input[type=text]:focus:not([readonly]), */

input:not([type]):focus:not([readonly]),
:not(.md-invalid-text) input[type=text]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=date]:focus:not([readonly]),
input[type=datetime]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=search]:focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom: 1px solid #003344 !important;
  box-shadow: 0 1px 0 0 #003344 !important;
}

/*+ Show warning invalid even when in focus */
/* Whithout this it shows only the blue focus color */
.md-invalid-text input:not([type]):focus:not([readonly]),
.md-invalid-text input[type=text]:focus:not([readonly]),
.md-invalid-text input[type=password]:focus:not([readonly]),
.md-invalid-text input[type=email]:focus:not([readonly]),
.md-invalid-text input[type=url]:focus:not([readonly]),
.md-invalid-text input[type=time]:focus:not([readonly]),
.md-invalid-text input[type=date]:focus:not([readonly]),
.md-invalid-text input[type=datetime]:focus:not([readonly]),
.md-invalid-text input[type=datetime-local]:focus:not([readonly]),
.md-invalid-text input[type=tel]:focus:not([readonly]),
.md-invalid-text input[type=number]:focus:not([readonly]),
.md-invalid-text input[type=search]:focus:not([readonly]),
.md-invalid-text textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom: 1px solid #ff0000 !important;
  box-shadow: 0 1px 0 0 #ff0000 !important;
}
/*- Show warning invalid even when in focus */

.md-invalid-text input[type=text]:not(:focus):not([readonly]) {
  border-bottom: 1px solid #ff0000 !important;
  box-shadow: 0 1px 0 0 #ff0000 !important;
}


input:not([type]):focus:not([readonly])+label,
input[type=text]:focus:not([readonly])+label,
input[type=password]:focus:not([readonly])+label,
input[type=email]:focus:not([readonly])+label,
input[type=url]:focus:not([readonly])+label,
input[type=time]:focus:not([readonly])+label,
input[type=date]:focus:not([readonly])+label,
input[type=datetime]:focus:not([readonly])+label,
input[type=datetime-local]:focus:not([readonly])+label,
input[type=tel]:focus:not([readonly])+label,
input[type=number]:focus:not([readonly])+label,
input[type=search]:focus:not([readonly])+label,
textarea.materialize-textarea:focus:not([readonly])+label {
  color: #003344 !important;
}

input:not([type]):disabled+label,
input:not([type])[readonly="readonly"]+label,
input[type=text]:disabled+label,
input[type=text][readonly="readonly"]+label,
input[type=password]:disabled+label,
input[type=password][readonly="readonly"]+label,
input[type=email]:disabled+label,
input[type=email][readonly="readonly"]+label,
input[type=url]:disabled+label,
input[type=url][readonly="readonly"]+label,
input[type=time]:disabled+label,
input[type=time][readonly="readonly"]+label,
input[type=date]:disabled+label,
input[type=date][readonly="readonly"]+label,
input[type=datetime]:disabled+label,
input[type=datetime][readonly="readonly"]+label,
input[type=datetime-local]:disabled+label,
input[type=datetime-local][readonly="readonly"]+label,
input[type=tel]:disabled+label,
input[type=tel][readonly="readonly"]+label,
input[type=number]:disabled+label,
input[type=number][readonly="readonly"]+label,
input[type=search]:disabled+label,
input[type=search][readonly="readonly"]+label,
textarea.materialize-textarea:disabled+label,
textarea.materialize-textarea[readonly="readonly"]+label {
  color: rgba(0, 0, 0, 0.56) !important;
}

.chip {
  cursor: pointer;
}

/* Override to not constrain the dropdowns to the parent */

/*
.au-target .card, .dropdown-content .active, .dropdown-content:active, .Ticket-Status-dropdown, Ticket-Status-dropdown {
  overflow: auto;
  z-index: 10000;
}
*/

.date-picker+i.material-icons {
  margin-left: -24px;
  line-height: 1;
  margin-top: 12px;
  cursor: pointer;
}

.md-switch-inline {
  display: initial;
}

.dim {
  opacity: 0.5;
  /* Firefox, Chrome, Safari, Opera, IE >= 9 (preview) */
  filter: alpha(opacity=50);
  /* for <= IE 8 */
}

.undim {
  opacity: 1.0;
  /* Firefox, Chrome, Safari, Opera, IE >= 9 (preview) */
  filter: alpha(opacity=100);
  /* for <= IE 8 */
}

@media print {
  .sidenav {
    display: none;
  }
}

.btn {
  padding: 5px 5px;
  margin: 5px 5px;
}

.col>.btn.maxwidth {
  width: 100%;
}

span.badge.total:after {
  content: " total";
}

span.badge.total {
  font-weight: 300;
  font-size: 0.8rem;
  color: #fff;
  background-color: #003344;
  border-radius: 2px;
}

.sidenav {
  height: calc(100% - 60px) !important;
}

.fixed-nav .sidenav a {
  white-space: nowrap;
  text-overflow: ellipsis;
  /* Doesn;t look like these are needed */
  /* padding: 0 10px !important;
  height: 48px !important;
  line-height: 48px !important; */
  height: 48px;
  line-height: 48px;
}

.fixed-nav .sidenav li {
  line-height: 48px;
}

/* .parent.active {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-left-radius: 5px;
  border-top-color: #245d90;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #245d90;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-left-radius: 5px;
  border-bottom-color: #245d90;
} */

.fixed-nav li.active .child-routes {
  margin-left: 10px;
}

/* li.active .child-routes {
  border-top-width: 3px;
  border-top-style: solid;
  border-top-left-radius: 5px;
  border-top-color: #245d90;
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: #245d90;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-left-radius: 5px;
  border-bottom-color: #245d90;
} */

/* .sidenav li.active {
  background-color: rgba(0, 0, 0, 0.15) !important;
} */

/* .sidenav a:hover {
  background-color: rgba(0, 0, 0, 0.25) !important;
} */

.sidenav li.underbar {
  width: 100%;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  /* border-bottom-color: #245d90; */
  border-bottom-color: #c5c6c7;
}

li.active .child-routes li {
  width: 100%;
  border-top-width: 1px;
  border-top-style: dotted;
  border-top-color: #dadada;
}

.fixed-nav .sidenav li.active {
  background-color: rgba(0, 0, 0, 0.12) !important;
}

.fixed-nav .sidenav li.active.parent {
  background-color: rgba(0, 0, 0, 0.04) !important;
}

/* .sidenav a:hover {
  background-color: rgba(0, 0, 0, 0.20) !important;
} */

/* May want this to be an actual color instead of alpha, but will leave it for now. */
.sidenav.sidenav-fixed .parent:hover {
  background-color: rgba(0, 0, 0, 0.20) !important;
}

/* This is too much....
.sidenav > ul > li > div:hover {
  background-color: rgba(0, 0, 0, 0.20) !important;
}
*/

.sidenav {
  top: 56px !important;
}
.sidenav.sidenav-fixed {
  width: 256px !important;
}
.sidenav.right-aligned {
  width: 350px !important;
  padding: 15px;
}

span.badge {
  z-index: 2;
}

/* This lets me put the edit buttons in the grids. */

.ag-cell button {
  /* margin-top: -4px; */
  /* margin-top: 7px; */
  /* AUTO-HEIGHT: Back to 4 when trying to handle auto-height */
  /* margin-top: 4px; */
}

.ag-row .ag-cell {
  display: flex;
  flex: 1;
  /* justify-content: center; //align horizontal */
  align-items: center;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* .ag-cell button > .material-icons.with-text {
  padding-right: 0px;
} */

.btn-small {
  height: 24px !important;
  line-height: 24px !important;
}

.ag-material .ag-cell-not-inline-editing {
  padding-top: 8px !important;
}

/* Shrink up the materialize spacing! */

.row {
  margin-bottom: 0px !important;
}

.input-field {
  margin-top: 0px !important;
  min-height: 60px;
}

.k-state-hover,
.k-state-focused {
  background-color: rgba(0, 0, 0, .4);
}

label.active {
  /*color: #26a69a; */
  color: #003344;
}

.combo.col {
  min-height: 70px;
}

.combolistheader {
  border-bottom-width: 2px;
  border-bottom-color: #666;
  border-bottom-style: solid;
  width: 100%;
  font-weight: bolder;
}

/* Notes: combo fields
k-list-container k-popup k-group k-reset <-- dropdown list
k-group-header <-- group row
k-list-scroller <-- list window
k-item k-state-selected k-state-focused <-- list items
*/

.colhidden {
  display: none;
}

.card .card-content .card-title {
  margin-bottom: 20px;
}

.dashboard.short>div.collection {
  max-height: 300px;
  overflow: auto;
}

h5+span.total {
  margin-top: -35px;
}

/* .btn,
.btn-large {
  background-color: #245d90 !important;
} */
/* I actually don't want to hijack this any more I think... */
/* .btn,
.btn-large {
  background-color: #245d90;
} */

[type=radio]:checked+span:after, [type=radio].with-gap:checked+span:after {
  background-color: #245d90 !important;
}
[type=radio]:checked+span:after, [type=radio].with-gap:checked+span:before, [type=radio].with-gap:checked+span:after {
  border: 2px solid #245d90 !important;
}

.switch label {
  color: black;
  font-weight: bold;
}
.switch label .lever {
  background-color: rgba(0,0,0,.38);
  border: 1px black solid;
}
.switch label .lever:after {
  margin-top: -1px;
  background-color: #245d90 !important;
}
.switch label input[type=checkbox]:checked+.lever {
  background-color: #A4BDF0 !important;
  border: 1px black solid;
}
.switch label input[type=checkbox]:checked+.lever:after {
  margin-top: -1px;
  background-color: #245d90 !important;
}

.appsiteheader > div {
  padding: 0;
  padding-left: 10px;
  font-size: 2em !important;
  vertical-align: middle;
}

@media (min-width: 971px) {
  div.appleftlogo {
    margin-top: 2px;
    width: 50px;
    height: 50px;
    background: url(47942a52ee2a8e4f1e35.png);
    background-size: 50px;
    background-repeat: no-repeat;
    display: inline-table;
  }
}
@media (min-width: 312px) and (max-width: 970px) {
  div.appleftlogo {
    margin-top: 2px;
    width: 40px;
    height: 40px;
    background: url(47942a52ee2a8e4f1e35.png);
    background-size: 40px;
    background-repeat: no-repeat;
    display: inline-table;
  }
}
@media (max-width: 311px) {
  div.appleftlogo {
    display: none;
  }
}

@media (max-width: 389px) {
  .appsitenamesmall {
    display: none;
  }
}

@media (min-width: 701px) {
  .appsitenamesmall {
    display: none;
  }
  .appsitename {
    display: inline-block;
  }
}
@media (max-width: 700px){
  .appsitename {
    display: none;
  }
}

@media (min-width: 390px) and (max-width: 700px) {
  .appsitenamesmall {
    display: inline-block;
  }
}

@media (max-width: 500px) {
  .logoimage {
    display: none !important;
  }
}
@media (min-width: 500px) {
  .smalllogoimage {
    display: none !important;
  }
}

@media (max-height: 400px) {
  .unfixsmallmobile {
    position: inherit !important;
  }
}

/* Fix calendar centering */

a.k-link {
  text-align: center !important;
}

span.dropdown.md-invalid-text {
  display: block;
  border-top: 2px solid #F44336 !important;
  /* box-shadow: 0 1px 0 0 #F44336 !important; */
}

/* Handle setting style on invalid text fields using css on the md-input! */

md-input.md-invalid-text>div>input {
  border-bottom: 1px solid #F44336 !important;
  box-shadow: 0 1px 0 0 #F44336 !important;
}

md-input.md-invalid-text>div>input {
  border-bottom: 1px solid #F44336 !important;
  box-shadow: 0 1px 0 0 #F44336 !important;
}

/* Handle setting style on invalid text fields using css on the md-input! */

input.md-invalid-text {
  border-bottom: 1px solid #F44336 !important;
  box-shadow: 0 1px 0 0 #F44336 !important;
}

/* Handle setting style on invalid text fields using css on the md-input! */

md-radio.md-invalid-text>label {
  border-bottom: 2px solid #F44336 !important;
  /* box-shadow: 0 1px 0 0 #F44336 !important; */
}

md-checkbox.md-invalid-text [type=checkbox]+span:not(.lever):before, md-checkbox.md-invalid-text [type=checkbox]:not(.filled-in)+span:not(.lever):after {
  border-color: red;
}


/* 
.time-card md-checkbox [type=checkbox]+span:not(.lever):before,
.pilot-card md-checkbox [type=checkbox]+span:not(.lever):before {
  border-color: 2px solid #245d90 !important;
  border-left: none
}
*/

.time-card [type=checkbox]:not(:checked):disabled+span:not(.lever):before,
.pilot-card [type=checkbox]:not(:checked):disabled+span:not(.lever):before {
  border: 2px solid #245d90;
  background-color: lightgray;
}

.time-card md-checkbox.md-invalid-text [type=checkbox]:not(:checked):disabled+span:not(.lever):before, 
.time-card md-checkbox.md-invalid-text [type=checkbox]:not(:checked):disabled:not(.filled-in)+span:not(.lever):after,
.pilot-card md-checkbox.md-invalid-text [type=checkbox]:not(:checked):disabled+span:not(.lever):before, 
.pilot-card md-checkbox.md-invalid-text [type=checkbox]:not(:checked):disabled:not(.filled-in)+span:not(.lever):after {
  border: 2px solid red !important;
  background-color: transparent !important;
}

/* Handle setting style on invalid text fields using css on the md-input! */

/* Couldn't get this to work. 
ak-combobox.md-invalid-text::before > span+input {
  border-bottom: 1px solid #F44336 !important;
	box-shadow: 0 1px 0 0 #F44336 !important;
}
ak-combobox.md-invalid-text:parent > span > input {
  border-bottom: 1px solid #F44336 !important;
	box-shadow: 0 1px 0 0 #F44336 !important;
}
*/

/* div.md-invalid-text>span>span>input, div.md-invalid-text>span>span>input {
  border-bottom: 1px solid #F44336 !important;
  box-shadow: 0 1px 0 0 #F44336 !important;
} */

textarea.materialize-textarea {
  overflow: auto !important;
}

/* Dashboard Icon Collection */

md-collection-item.DashboardCollection {
  padding: 5px 5px 5px 5px !important;
}

.DashboardIconBackground {
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: 10px 10px;
}

h4.DashboardIconText {
  /* height: 60px; */
  margin-right: 15px;
  margin-top: 15px;
  float: right;
  z-index: 500;
  /*
    outline-style: solid;
    outline-color: #ffffff;
    outline-width: 5px;
  */
  text-shadow: 3px 3px 6px white;
}

h6.DashboardIconText {
  z-index: 1000;
  min-height: 50px !important;
  margin-top: 10px;
}

.MenuIcon-vma {
  background-image: url(14f76e0572e2403a3e18.png);
}
.MenuIcon-amp {
  background-image: url(5ff17350844e2a7660c7.png);
}
.MenuIcon-military {
  background-image: url(62a127f54772fafafa50.png);
}

/* .active .MenuIcon {
  filter:progid:DXImageTransform.Microsoft.Glow(Color=white,Strength=5);
} */

/* Menu Icons */
.ParentMenuIcon, .MenuIcon {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  float: left;
  margin-top: 12px;
}

.MenuIcon {
  margin-left: -5px;
  margin-right: 5px;
}

.fixed-nav li:not(.child) {
  padding-left: 5px;
}

.ParentMenuFontIcon, .MenuFontIcon {
  width: 25px;
  height: 49px;
  background-size: contain;
  background-repeat: no-repeat;
  float: left;
  margin-top: -1px;
  padding-left: 1px;
  background-color: transparent;
}

.ParentMenuFontIcon span.fa {
  font-size: larger;
  font-weight: bolder;
  /* 
  background-color: red;
  height: 100%;
  width: 100%;
  */
  text-align: center;
  vertical-align: middle;
}

/* img.MenuIcon {
  margin-left: -33px;
}

img.ParentMenuIcon {
  margin-left: -8px;
  margin-right: 5px;
}

img.OrphanMenuIcon,
img.MenuIcon,
img.ParentMenuIcon {
  margin-top: 12px;
  height: 20px;
  float: left;
} */

label.radio {
  float: left;
  margin-top: -25px;
}

div.combo {
  margin-top: 15px;
}

div.kautocomplete {
  margin-top: -10px;
}

@media (min-width: 600px) {
  div.radio {
    margin-top: 15px;
  }
}

@media (max-width: 599px) {
  div.radio {
    margin-top: 45px;
  }
}

div.date {
  margin-top: -22px;
}

div.date>label {
  top: 5px !important;
  position: relative;
}

/* Prevent materialize from hiding the popup! */

select.ag-cell-edit-input {
  display: inherit !important;
}

.editable-cell-off {
  border-bottom: 1px solid #003344 !important;
  box-shadow: 0 1px 0 0 #003344 !important;
  transition: all 0.3s;
}

.editable-cell-error {
  border-bottom: 1px solid red !important;
  box-shadow: 0 1px 0 0 red !important;
  transition: all 0.3s;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 1rem;
  margin: 0 0 15px 0;
  padding: 0;
  box-sizing: content-box;
}

.ag-cell-no-focus.editable-cell {
  border-top: 1px solid #003344 !important;
  border-bottom: 1px solid #003344 !important;
  border-left: 1px solid #003344 !important;
  border-right: 1px solid #003344 !important;
  padding-bottom: -5px;
}

/* Added for dropdown in menu */

.k-list-filter>.k-textbox {
  width: 88% !important;
  margin-bottom: 0px !important;
}

.btn.md-invalid-text,
.drop-select.md-invalid-text,
label.md-invalid-text {
  border-bottom: 2px solid red !important;
}

.md-invalid-text>div>textarea {
  border-bottom: 2px solid red !important;
}

.material-icons.with-text {
  float: left;
  padding-right: 10px;
}

.grid-btn {
  padding: 0px 20px 0px 15px !important;
}

.btn,
.btn-large,
.btn-flat {
  padding: 0 1rem !important;
}

/* Undo the large horizontal padding on small buttons */

.btn-small {
  padding: 0 0.2rem !important;
}

.nobackgroundcolor {
  background-color: inherit !important;
}

/* Move broadsearch input box down so label doesn't overlay whatever is above it */

md-input.broadsearch .input-field {
  top: 15px;
}

md-input.broadsearch>div>input {
  margin-top: -15px !important;
}

/* Override elipsis on header column text overflow */

.ag-header-cell-label {
  -o-text-overflow: clip !important;
  text-overflow: clip !important;
  overflow: hidden;
}

/*For login screen scaling overide */
#fixed-section.with-subnav {
  top: 116px;
}

.indexnav {
  width: 100%;
  height: 60px;
  background-color: #0c263d;
  position: fixed;
  z-index: 10;
}

/* trying to remove this */
/* .au-target.btn.accent,
.au-target.disabled.btn.accent {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} */

.ag-cell-right {
  text-align: right;
}

/*My grids were showing double scrollbars, this solves it.  Something off by a pixel or two... */

.no-aggrid-overflow #borderLayout_eRootPanel {
  overflow: hidden !important;
}

hr.dashboard {
  display: block;
  height: 3px;
  border: 0;
  border-top: 3px solid rgb(35, 95, 144);
  padding: 0;
  width: 95%;
}

table.blueTable {
  border: 1px solid #1C6EA4;
  background-color: #EEEEEE;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

table.blueTable td,
table.blueTable th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}

table.blueTable tbody td {
  font-size: 13px;
}

table.blueTable tr:nth-child(even) {
  background: #D0E4F5;
}

table.blueTable thead {
  background: #1C6EA4;
  background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  border-bottom: 2px solid #444444;
}

table.blueTable thead th {
  font-size: 15px;
  font-weight: bold;
  /* color: #FFFFFF; */
  color: black;
  border-left: 2px solid #D0E4F5;
}

table.blueTable thead th:first-child {
  border-left: none;
}

table.blueTable tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  background: #D0E4F5;
  background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  border-top: 2px solid #444444;
}

table.blueTable tfoot td {
  font-size: 14px;
}

table.blueTable tfoot .links {
  text-align: right;
}

table.blueTable tfoot .links a {
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}

table.blueTable input[type=text] {
  margin: 0px;
  height: initial;
  margin-top: 5px !important;
  color: black;
  border-bottom-color: black !important;
}

table.blueTable ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  font-style: italic;
  font-weight: lighter;
}

.card-content ul {
  list-style-type: unset;
  padding: 20px;
  padding-left: 40px;
}

.card-content ul li {
  list-style-type: inherit;
  padding-bottom: 10px;
}

textarea.materialize-textarea {
  /* prevents scroll bar flash */
  padding: 0.3rem 0 !important;
  margin-left: -2px !important;
  margin-right: -2px !important;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0.03) !important;
}

label.md-invalid-text+span>span>input {
  border-bottom: 1px solid #F44336 !important;
  box-shadow: 0 1px 0 0 #F44336 !important;
}

label.no-invalid-text {
  border-bottom: 0px solid #F44336 !important;
  box-shadow: 0 0px 0 0 #F44336 !important;
}

/* VPA DOesn't have .sidenav.sidenav-fixed */
/*
.sidenav.sidenav-fixed a {
  color: black;
  font-size: 1rem;
}
*/
/* This is for VPA */
.fixed-nav .sidenav a {
  font-size: 1rem;
  color: #363d47;
}
/* .darkMode .fixed-nav .sidenav a:not(.roledropdown) {
  color: black;
} */ */
/* - */


.dropdown-content {
  max-height: calc(75%);
}

.sidenavopener {
  background-color: rgba(0, 0, 0, 0.12);
  /* border-left: 1px solid black; */
  border-left: 1px solid rgba(0, 0, 0, 0.24);
  width: 5px;
  position: fixed;
  top: 0px; bottom: 0px; right: 0px;
  z-index: 999;
}

/* Need left nav fixed z-index to be below the right nav dismiss window */
.sidenav.sidenav-fixed {
  z-index: 998;
}

.collection-header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.sidenav {
  padding-bottom: 0px !important;
}

/* #fixed-secion > .input-field {
  margin-bottom: 0px;
} */

.broadsearch.compressed {
  padding-bottom: 0px;
  max-height: 30px;
}

h4.compressed {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

h5.compressed {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.broadsearch > * > * > .input-field > input {
  height: 1.5rem !important;
}

.grid-refresh {
  position: absolute;
  z-index: 900;
  left: 10px;
  margin-top: 3px;
  margin-left: -2px;
  /* color: #000; */
  cursor: pointer;
}
.grid-reset {
  position: absolute;
  z-index: 900;
  right: 7px;
  margin-top: 3px;
  margin-left: -2px;
  /* color: #000; */
  cursor: pointer;
  /* border-radius: 25px;
  outline: auto;
  outline-style: round; */
  /* background-color: rgba(0, 0, 0, .5); */
}

/* .ag-theme-material .ag-row {
  height: 48px !important;
 } */

 .pointer {
   cursor: pointer;
 }

 .ag-theme-alpine-dark.grid-refresh, .ag-theme-alpine-dark.grid-reset {
  color: rgb(255, 255, 255);
  background-color: rgb(34, 38, 40);
}

.ag-theme-material.grid-refresh, .ag-theme-material.grid-reset {
  color: rgba(0, 0, 0, 0.54);
  background-color: rgb(245, 243, 243);
}

.ag-theme-alpine.grid-refresh, .ag-theme-alpine.grid-reset {
  color: #181d1f;
  background-color: rgb(248, 248, 248);
}

.ag-theme-balham.grid-refresh, .ag-theme-balham.grid-reset {
  color: rgba(0, 0, 0, 0.54);
  background-color: rgb(245, 247, 247);
}

.ag-theme-balham-dark.grid-refresh, .ag-theme-balham-dark.grid-reset {
  color: rgb(245, 245, 245);
  background-color: rgb(28, 28, 28);
}

.ag-theme-blue.grid-refresh, .ag-theme-blue.grid-reset {
  color: rgb(34, 34, 34);
  background-color: rgb(94, 156, 211);
}

.ag-theme-bootstrap.grid-refresh, .ag-theme-bootstrap.grid-reset {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255, 255);
}

.ag-theme-dark.grid-refresh, .ag-theme-dark.grid-reset {
  color: rgb(204, 204, 204);
  background-color: rgb(98, 98, 98);
}

.ag-theme-fresh.grid-refresh, .ag-theme-fresh.grid-reset {
  color: rgb(0, 0, 0);
  background-image: linear-gradient(white, lightgrey);
  background-color: rgba(0, 0, 0, 0);
}

/* .ag-header-row > .ag-header-cell {
  padding-left: 25px !important;
} */

.collapsible-body {
  padding: initial !important;
}

/* I think I need this for the bundler to pick up the image */
.backgroundimage {
  background-image: url(c4384a5d931e68876e73.jpg);
}

/* .ag-theme-dark .ag-cell, .ag-theme-dark .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  line-height: 33px;
}

.ag-theme-material .ag-cell, .ag-theme-material .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  line-height: 35px;
} */

#region-dropdown {
  width: 220px !important;
  top: 110px !important;
  background-color: #f8f8f8;
  border: gray 1px solid;
}

#program-dropdown {
  top: 44px !important;
  background-color: #f8f8f8;
  border: gray 1px solid;
}

#sponsor-dropdown {
  margin-top: 44px;
  background-color: #f8f8f8;
  border: gray 1px solid;
}

.dropdown-content li>a, .dropdown-content li>span {
  font-size: 16px !important;
  color: black !important;
  line-height: 22px !important;
  padding: 7px 8px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 40px !important;
}

/* //TODO: Squirrely */
.dropdown-content li {
  min-height: 41px !important;
  height: 40px !important;
}

.dropdown-search > div {
  width: 100%;
  text-align: center;
}
.dropdown-search > div > input {
  padding-left: 15px !important; 
  /* width: 150px;  */
  height: 40px !important;
  width: 90% !important;
}

.ReadOnlyHeader {
  font-weight: bold;
  font-size: 17px;
  display: inline-block;
  min-width: 150px;
}

.ReadOnlyValue {
  font-size: 16px;
  display: inline-block;
}

.ReadOnlySeparator {
  max-width: 50%;
  height:2px; border-width:0; 
  color:#f0f0f0;
  background-color:#f0f0f0;
  margin-left: 25px;
}

.collapsible-accordion > ul > li.tintonactive.active > div.collapsible-header {
  background-color: #f0f0f0;
}

.tintonactive > div:nth-of-type(2) {
  border: 1px solid black;
}

.collapsible-accordion > ul > li.tintonactive.active > div.collapsible-header.error {
  background-color: red;
}



/* Restyle tiles on dashboard */
.collection.with-header .collection-item
{
  background-color: #F0F0F0;
}

.collection.with-header .collection-header {
  background-color: #E0E0E0 !important;
  border-bottom: 1px solid #000 !important;
  padding: 0px 15px !important;
}
.darkMode .collection.with-header .collection-header {
  background-color: #A0A0A0 !important;
}

.collection {
   border: 1PX solid #000 !important;
}

/* .darkMode, .darkMode > * > section > *, .darkMode > * > section > * > *, .darkMode > * > section > * > * > *, .darkMode > * > section > * > * > * > * {
  background-color: #c0c0c0;
} */
.darkMode, .darkMode section {
  background-color: #c0c0c0;
}
.darkMode .sidenav {
  background-color: rgb(150, 150, 150) !important;
}
.darkMode .child-routes {
  background-color: rgb(180, 180, 180) !important;
}
.darkMode .card-content, .darkMode md-collection-item {
  background-color: rgb(200, 200, 200) !important;
}
.darkMode .card-header {
  background-color: rgb(200, 200, 200);
}
.darkMode #fixed-header {
  background-color: #c0c0c0 !important;
}
.darkMode .collapsible-header:not(.accordionerror) {
  background-color: #b0b0b0 !important;
}
.darkMode .collapsible-header.accordionerror {
  /* background-color: rgb(175,0,0) !important; */
  border: 2px solid red;
  background-color: #b0b0b0 !important;
}
.darkMode label, .darkMode .input-field * {
  color: #000 !important;
}
.darkMode input:not([type]), .darkMode input[type=text]:not(.browser-default), .darkMode input[type=password]:not(.browser-default), .darkMode input[type=email]:not(.browser-default), 
.darkMode input[type=url]:not(.browser-default), .darkMode input[type=time]:not(.browser-default), .darkMode input[type=date]:not(.browser-default), .darkMode input[type=datetime]:not(.browser-default),
.darkMode  input[type=datetime-local]:not(.browser-default), .darkMode input[type=tel]:not(.browser-default), .darkMode input[type=number]:not(.browser-default), 
.darkMode input[type=search]:not(.browser-default), .darkMode textarea.materialize-textarea {
  background-color: transparent;
  border-bottom: 1px solid #000;
  box-shadow: none;
  box-sizing: content-box;
  transition: box-shadow .3s,border .3s;
}
.darkMode .k-select {
  background-color: rgba(0, 0, 0, 0.0) !important;
}
.darkMode .k-dropdown-wrap, .darkMode .k-picker-wrap, .darkMode .k-autocomplete {
  background-color: rgba(255,255,255,0) !important;
  border-color: rgba(0, 0, 0, 1) !important;
}
.darkMode .k-popup {
  background-color: #c0c0c0 !important;
  border-color: rgba(0, 0, 0, 1) !important;
}
.darkMode hr {
  background-color: #808080 !important;
}
.darkMode .dropdown-content {
  background-color: #c0c0c0 !important;
  border-color: rgba(0, 0, 0, 1) !important;
}
.darkMode .dropdown-content > *:hover {
  background-color: #808080 !important;
  border-color: rgba(0, 0, 0, 1) !important;
}
.darkMode .k-item {
  background-color: #c0c0c0 !important;
}
.darkMode .k-state-selected {
  background-color: #a0a0a0 !important;
}
.darkMode .k-item:hover {
  background-color: #d0d0d0 !important;
}
.darkMode .k-item:hover, .darkMode .k-state-selected:hover {
  background-color: #e0e0e0 !important;
  color: #000 !important;
}
.darkMode ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #707070;
  opacity: 1; /* Firefox */
}
.darkMode :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #707070;
}
.darkMode ::-ms-input-placeholder { /* Microsoft Edge */
  color: #707070;
}
.darkMode input:not([type]):disabled, .darkMode input:not([type])[readonly="readonly"], .darkMode input[type=text]:disabled, .darkMode input[type=text][readonly="readonly"], .darkMode input[type=password]:disabled, 
.darkMode input[type=password][readonly="readonly"], .darkMode input[type=email]:disabled, .darkMode input[type=email][readonly="readonly"], .darkMode input[type=url]:disabled, .darkMode input[type=url][readonly="readonly"], 
.darkMode input[type=time]:disabled, .darkMode input[type=time][readonly="readonly"], .darkMode input[type=date]:disabled, .darkMode input[type=date][readonly="readonly"], .darkMode input[type=datetime]:disabled, 
.darkMode input[type=datetime][readonly="readonly"], .darkMode input[type=datetime-local]:disabled, .darkMode input[type=datetime-local][readonly="readonly"], .darkMode input[type=tel]:disabled, 
.darkMode input[type=tel][readonly="readonly"], .darkMode input[type=number]:disabled, .darkMode input[type=number][readonly="readonly"], .darkMode input[type=search]:disabled, .darkMode input[type=search][readonly="readonly"], 
.darkMode textarea.materialize-textarea:disabled, .darkMode textarea.materialize-textarea[readonly="readonly"] {
  color: rgba(0, 0, 0, 1) !important;
}
.darkMode [type=radio]:disabled+span {
  color: rgba(0,0,0,1);
}
.darkMode .k-dropdown .k-dropdown-wrap, .k-dropdowntree .k-dropdown-wrap {
  color: #000 !important;
  background-image: initial !important;
}

/* make user card scrollable on small screens */
.user-card {
  overflow: auto;
  max-height: calc(100vh - 75px) !important;
}

/* allow centering grid cell? */
.ag-center-aligned-cell * {
  text-align: center !important;
  justify-content: center !important;
}

.collapsible-header > h5, .collapsible-header > h6 {
  width: 100%;
}
.collapsible-header:not(.accordionerror) > h5 > i.accordion-icon, .collapsible-header:not(.accordionerror) > h6 > i.accordion-icon {
  display: none;
}
.collapsible-header > h5 > i.accordion-icon, .collapsible-header > h6 > i.accordion-icon {
  float: right;
}
.accordionerror {
  /* background-color: red !important; */
  border: 2px solid red !important;
  border-bottom: 2px solid red !important;
}
:not(.darkMode) .collapsible-header:not(.accordionerror) {
  /* background-color: red !important; */
  border: 2px solid transparent !important;
  border-bottom: 2px solid #ddd !important;
}

.accordionerror .accordion-icon {
  color: red;
}


.k-combobox .k-select {
  background-color: initial !important;
}
.k-dateinput .k-select, .k-datepicker .k-select, .k-datetimepicker .k-select, .k-timepicker .k-select {
  background-color: initial;
}

div.md-invalid-text > span > span.k-dropdown-wrap, div.md-invalid-text > * > span.k-autocomplete, div.md-invalid-text > span.k-datepicker > span.k-picker-wrap {
  border-bottom: 2px red solid !important;
}




/* Make regular text on read only darker */
input:not([type]):disabled, input:not([type])[readonly="readonly"], input[type=text]:disabled, input[type=text][readonly="readonly"], input[type=password]:disabled, input[type=password][readonly="readonly"], input[type=email]:disabled, input[type=email][readonly="readonly"], input[type=url]:disabled, input[type=url][readonly="readonly"], input[type=time]:disabled, input[type=time][readonly="readonly"], input[type=date]:disabled, input[type=date][readonly="readonly"], input[type=datetime]:disabled, input[type=datetime][readonly="readonly"], input[type=datetime-local]:disabled, input[type=datetime-local][readonly="readonly"], input[type=tel]:disabled, input[type=tel][readonly="readonly"], input[type=number]:disabled, input[type=number][readonly="readonly"], input[type=search]:disabled, input[type=search][readonly="readonly"], textarea.materialize-textarea:disabled, textarea.materialize-textarea[readonly="readonly"] {
  color: rgba(0, 0, 0, 1) !important;
}
[type=radio]:disabled+span {
  color: rgba(0,0,0,0.6) !important;
}
.k-dropdown .k-dropdown-wrap, .k-dropdowntree .k-dropdown-wrap {
  color: #000;
}




/* Dark mode calendar background */
.darkMode .k-calendar {
  background-color: rgb(192, 192, 192);
}
.darkMode .k-calendar .k-header {
  background-color: rgb(192, 192, 192);
  border-bottom: 1px solid black;
}
.darkMode .k-calendar .k-nav-today {
  color: blue;
}
.darkMode .k-calendar .k-calendar-view .k-today {
  color: blue;
}


textarea.materialize-textarea.invalid
/* , textarea.materialize-textarea:focus.invalid */
{
  box-shadow: initial !important;
}

.nooverflow {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

/* Darken link colors in dark mode */
.darkMode .ReadOnlyValue a, .darkMode .ReadOnlyValue a {
  color: #4b6f83;
}



/* Allow messages to have a smaller card */
.compressed-card .card .card-content {
  padding: 4px;
  padding-bottom: 12px;
}


/* Dialog light customization */
ux-dialog-overlay.active {
  background-color: black;
  opacity: .5 !important;
}

.darkMode ux-dialog {
  background-color: rgba(200, 200, 200, 1);
}

@media (max-width: 325px) {
  ux-dialog-container {
    overflow-x: auto !important;
  }
  ux-dialog-container div {
    padding: 0px !important;
  }
}

/* dashboard cms content protect overflow */
.card-content .ck-content {
  padding-left: 10px;
  padding-right: 10px;
  overflow: auto;
}

/* Checkbox was red! */
[type=checkbox]:checked+span:not(.lever):before {
  border-right: 2px solid #245D90 !important;
  border-bottom: 2px solid #245D90 !important;
}

/* JSON Syntax Highlighting */
pre.json { outline: 1px solid #ccc; padding: 5px; margin: 5px; overflow-y: auto; max-height: 250px; }
.string { color: green; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; }

/* VPA Row Highlighting */
/* THIS BREAKS AUTO-SIZING ROWS!
.ag-cell-wrapper {
  height: 34px;
}
*/
.ag-cell-wrapper {
  vertical-align: middle;
  height: auto;
  width: 100%;
}

.ag-cell-value {
  vertical-align: middle;
  height: auto;
  width: 100%;
}
.rag-cell-centered {
  text-align: center !important;
}

.rag-row-highlight1 {
  background-color: rgb(255, 255, 0) !important;
}
.darkMode .rag-row-highlight1 {
  color: black !important;
  font-weight: bold;
}

.rag-row-highlight2 {
  background-color: rgb(0, 255, 255) !important;
}
.darkMode .rag-row-highlight2 {
  color: black !important;
  font-weight: bold;
}

.darkMode .rag-cell-highlight1, .rag-cell-highlight1 {
  color: red !important;
  font-weight: bolder !important;
  font-size: larger;
}
.darkMode .rag-cell-highlight2, .rag-cell-highlight2 {
  color: rgb(192, 37, 37) !important;
  font-weight: bolder !important;
  font-size: larger;
}





/* AG GRID REDUCE SPACE FOR ALL HEADERS*/
.rag-narrow-cell {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
/* Style to allow reducing padding on cells */
.rag-col-smallbutton {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

div.websidenav {
  bottom: 0px;
  position: absolute;
  top: 15px;
  left: 10px;
  right: 10px;
}



/* TODO: why?  fixednav was doubling in height and covering things. */
/* Covered the buttons on top of page in dark mode and covered the button to close the side data window. */
/* I think it happened when I moved the site name to the left side instead of float right */
/* Should be fixed, not tested. */
.fixed-nav {
  max-height: 55px;
}


/* Maybe not needed, added for VPA */
/*
.darkMode > md-sidenav a {
  color: black;
}
*/


/*
materialize sidenav.js locks this at 992px :(
  
  _isCurrentlyFixed() {
    return this.isFixed && window.innerWidth > 992;
  }
*/
/* can't change because the overlay is shown at 992...
could override it but the overlay is not distinguished between left and right sidenav

@media only screen and (max-width: 992px)
{
  .sidenav.sidenav-fixed {
    transform: translateX(0%);
  }
}
@media only screen and (max-width: 600px)
{
  .sidenav.sidenav-fixed {
    transform: translateX(-105%);
  }
}
*/

/* Hide the lock when the sidenav isn't lockable */
@media only screen and (max-width: 992px)
{
  .sidenavlock {
    display: none;
  }
}

/* Make sure sidenav isn't too wide on really narrow screens */
side-data-view > md-sidenav > div.sidenav {
  max-width: 100%;
}

@media (max-width: 500px)
{
  .sidenavopener {
    display: none !important;
  }
}


/* Materialize creates a div that is not resizing on window resize .... and is based on the
  size of the screen when the first form is created.  Weird! 

  This causes scrollbars that don't go away so set max-width to 100%;
*/
.hiddendiv.common {
  max-width: 100%;
}

.usercard > .card {
  border-radius: 24px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border: black solid 1px;
  border-top: none;
  padding: 0px;
}

.usercard > .card > .card-content {
  border-radius: 24px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.link-card .card .card-content {
  padding-top: 5px;
  padding-bottom: 5px;
}
.link-card .card .card-content h5 {
  margin-top: 0px;
  margin-top: px;
}

@media print {
  /* body * {
    visibility: hidden !important;
  } */
  /* .new-fixed-grid, .new-fixed-grid *, .hideonsmall {
    visibility: visible !important;
  }
  .new-fixed-grid, .hideonsmall {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: initial !important;
    height: initial !important;
  }
  .ag-cell {
    white-space: initial !important;
  }
  .ag-theme-material .ag-cell, .ag-theme-material .ag-full-width-row .ag-cell-wrapper.ag-row-group {
    line-height: initial !important;
  }
  .ag-theme-material .ag-cell, .ag-theme-material .ag-full-width-row .ag-cell-wrapper.ag-row-group {
    padding: 2px;
  } */
  /* body {
    transform: scale(.7);
    transform-origin: left top;
  }
  table {page-break-inside: avoid;} */
  body {
    height: auto !important;
  }
  .printWideTable {
    max-width: 100%;
    zoom: 70%;
    /* This prints blank pages!
    transform: scale(0.7);
    transform-origin: left top; */
  }
  #fixed-section {
    position: static !important;
    width: 100% !important;
  }
}

@media  print {
  /* @page {
    size: landscape;
  } */
  /* @page {
    size: A3;
  } */

  .navbar, body footer, .feedback-trigger, .menu-trigger, .sidenavopener, .fixed-nav
  {
    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;
  }
  .no-print {
    display: none;
  }
}


.broadsearchShort .input-field, .broadsearch .input-field {
  min-height: fit-content;
  margin-bottom: auto;
}

.reload {
  color: black;
}

/* Box in the cards */
.allborders .card, .allborders .card-content {
  border-left: 1px solid #bdc3c7;
  border-right: 1px solid #bdc3c7;
  border-radius: 15px !important;
}

/* Box in the cards */
.darkMode .allborders .card {
  border-left: 1px solid #494a4b !important;
  border-right: 1px solid #494a4b !important;
  border-radius: 15px !important;
}

/* make file box smaller */
.file-card .card-content {
  padding: 10px !important;
}

.ck-content, .ck-source-editing-area {
  min-height: 500px;
}


.time-card-edit tr, .time-card-edit th, .time-card-edit td,
.pilot-card-edit tr, .pilot-card-edit th, .pilot-card-edit td {
  padding: 5px;
}
.time-card-edit tr,
.pilot-card-edit tr {
  border: 0px solid rgba(0,0,0,.05);
}
.time-card-edit .input-field, .time-card-edit .input-field > input,
.pilot-card-edit .input-field, .pilot-card-edit .input-field > input {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  min-height: unset !important;
  height: unset !important;
}

.blur {
  filter: blur(3px);
  -webkit-filter: blur(3px);
}

.printTabContent table {
  width: 100%;
  background-color: white;
  font-family: 'helvetica,verdana,arial';
}

.printTabContent th {
  text-align: left;
  font-family: 'helvetica,verdana,arial';
}

.printTabContent td {
  text-align: left;
  font-family: 'helvetica,verdana,arial';
}

.slim {
  padding-left: 6px;
  padding-right: 6px;
}


/* Working on data entry styling */

.errorMessage {
  color: red;
  font-size: 16px;
}
.errorMessage.md-invalid-text {
  color: red;
  /* shrink this up */
  /* font-size: small; */
  font-size: 10px;
}


.errorMessage.withCounter {
  /* shrink this up */
  /* margin-top: -25px; */
  margin-top: -30px;
  font-size: 14px;
}

.k-dropdown-wrap>.k-clear-value {
  right: 15px;
}

.memoTooltip {
  margin: 5px;
  padding: 5px;
  /* white-space: nowrap; */
  word-wrap: normal;
  position: absolute;
  max-width: 300px;
  pointer-events: none;
  transition: opacity 1s;
  background-color: white;
  border: 2px solid black;
}

.darkMode .memoTooltip {
  background-color: black;
}

.memoTooltip.ag-tooltip-hiding {
  opacity: 0;
}

.memoTooltip div {
  font-size: larger;
}
.memoTooltip div:first-of-type {
  font-weight: bold;
  font-size: large;
}

/* .cell-wrap-text {
  white-space: normal !important;
}
.ag-cell {
  padding-top: 10px;
  padding-bottom: 10px;
} */

.input-field>label:not(.label-icon).active {
  transform: translateY(-4px) scale(0.8) !important;

}



/* shrink column spacing on mobile mode */
.gridCellPadding0 .ag-cell, .gridCellPadding0 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.gridCellPadding0 .ag-header-cell {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.gridCellPadding5 .ag-cell, .gridCellPadding5 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.gridCellPadding5 .ag-header-cell {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.gridCellPadding10 .ag-cell, .gridCellPadding10 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.gridCellPadding10 .ag-header-cell {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.gridCellPadding15 .ag-cell, .gridCellPadding15 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.gridCellPadding15 .ag-header-cell {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.gridCellPadding20 .ag-cell, .gridCellPadding20 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.gridCellPadding20 .ag-header-cell {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.gridCellPadding25 .ag-cell, .gridCellPadding25 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.gridCellPadding25 .ag-header-cell {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.gridCellPadding30 .ag-cell, .gridCellPadding30 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.gridCellPadding30 .ag-header-cell {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.gridCellPadding35 .ag-cell, .gridCellPadding35 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.gridCellPadding35 .ag-header-cell {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.gridCellPadding40 .ag-cell, .gridCellPadding40 .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.gridCellPadding40 .ag-header-cell {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.mobile .ag-cell, .mobile .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.mobile .ag-header-cell {
  padding-left: 5px !important;
  padding-right: 0px !important;
}


/* redo grid options to not use hover */
.grid-options-container .grid-options-card {
  color: #000;
  padding: 0px;
  margin-top: 3px;
  margin-right: 3px;
  display: none;
  z-index: 15000;
  position: absolute;
  right: 0px;
}

.grid-options-card.active {
  display: block;
}

.grid-options-card {
  margin-top: -15px;
  width: 250px;
}

.grid-options-card div button.secondary {
  width: initial;
}
.grid-options-card div button.primary {
  width: 200px;
}
.grid-options-card div button.right {
  width: initial;
  margin-top: -42px;
  margin-right: -2px;
}

.grid-btn {
  margin: 0px;
  padding: 0px;
}

.gridCellPadding0 .ag-cell.rag-col-smallbutton,
.gridCellPadding5 .ag-cell.rag-col-smallbutton,
.gridCellPadding10 .ag-cell.rag-col-smallbutton,
.gridCellPadding15 .ag-cell.rag-col-smallbutton,
.gridCellPadding20 .ag-cell.rag-col-smallbutton,
.gridCellPadding25 .ag-cell.rag-col-smallbutton,
.gridCellPadding30 .ag-cell.rag-col-smallbutton,
.gridCellPadding35 .ag-cell.rag-col-smallbutton,
.gridCellPadding40 .ag-cell.rag-col-smallbutton
{
  padding: 0px !important;
}


.ag-theme-balham-dark .ag-row.rag-row-highlight1.ag-row-no-focus,
.ag-theme-alpine-dark .ag-row.rag-row-highlight1.ag-row-no-focus,
.ag-theme-dark .ag-row.rag-row-highlight1.ag-row-no-focus
{
  color: blue;
}
.ag-theme-balham-dark .ag-row.rag-row-highlight1:hover {
  color: white;
}
.ag-theme-alpine-dark .ag-row.rag-row-highlight1:hover,
.ag-theme-dark .ag-row.rag-row-highlight1:hover 
{
  color: black;
}
.ag-theme-dark .ag-row:hover 
{
  color: white;
}
.ag-theme-bootstrap .ag-row:hover,
.ag-theme-fresh .ag-row:hover 
{
  filter: grayscale(.2) opacity(0.8);
  background-color: lightgoldenrodyellow;
}

.broadsearch .input-field {
  min-height: initial;
}

.ag-theme-alpine .ag-row {
  font-size: unset;
}

.detached-grid-options-card {
  color: #000;
  padding: 0px;
  margin-top: 3px;
  margin-right: 3px;
  display: none;
  z-index: 15000;
  position: absolute;
  right: 10px;
}

.detached-grid-options-card.active {
  display: block;
}

.detached-grid-options-card {
  margin-top: -15px;
  width: 250px;
}

.detached-grid-options-card div button {
  width: 200px;
}
.detached-grid-options-card div button.primary {
  width: initial;
}
.detached-grid-options-card div button.right {
  width: initial;
  margin-top: -42px;
  margin-right: -2px;
}

::-webkit-scrollbar {
  width: 20px;
  height: 20px;
  margin-left: -10px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

.darkMode ::-webkit-scrollbar-thumb {
  background-color: #245d90;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

.fixed-nav .parent:hover span.ParentMenuFontIcon span.fa, .fixed-nav .parent .child:hover .MenuFontIcon, .fixed-nav .child:hover .MenuFontIcon,
.fixed-nav .parent:hover .ParentMenuIcon, .fixed-nav .parent:hover .MenuIcon
{
  transform: scale(1.15);
}

.fixed-nav .parent:hover span.nav-menu-title {
  font-weight: bolder;
}

.fixed-nav .parent:hover .child span.nav-menu-title {
  font-weight: inherit;
}

.fixed-nav .parent .child:hover span.nav-menu-title {
  font-weight: bolder;
}

.fixed-nav .parent.active span.ParentMenuFontIcon span.fa, 
.fixed-nav .parent.active .active span.MenuFontIcon span.fa, 
.fixed-nav .child.active span.MenuFontIcon span.fa,
.fixed-nav li.active .parent span.ParentMenuFontIcon span.fa, 
.fixed-nav .active .ParentMenuIcon, .fixed-nav .parent.active .MenuIcon
{
  /* color: yellow !important; */
  /* opacity: 0.8; */
  /* text-shadow: 2px 2px #ffffff; */
  /* filter: blur(1px); */
  /* transform: scale(1.5); */
  filter: drop-shadow(2px 4px 6px black);
}
.fixed-nav .parent.active span.nav-menu-title {
  filter: drop-shadow(2px 4px 6px black);
}

.fixed-nav .parent.active .child span.nav-menu-title {
  filter: inherit;
}

.fixed-nav .parent .child.active span.nav-menu-title {
  filter: drop-shadow(2px 4px 6px black);
}

.nav-menu-title {
  transform: scale(1.15);
  padding-left: 5px;
}


.icon-hover-dark:hover {
  filter: drop-shadow(2px 4px 6px white);
}

ux-dialog>ux-dialog-header {
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}

.lock-icon {
  margin-top: 2px;
  top: 0px;
  position: absolute;
  left: 180px;
  z-index: 10;
  cursor: hand;
}

/* play with sticky lock icon....
.lock-icon {
  margin-top: 4px;
  top: 0px;
  position: sticky;
  left: 215px;
  z-index: 10;
  cursor: hand;
  float: right;
  display: flex;
}
*/

span.badge.email {
  font-weight: 300;
  font-size: .8rem;
  color: #fff;
  background-color: #ff0000;
  border-radius: 2px;
}
.redtext {
  color: red;
}

.sidenav .row .col.compressed a {
  line-height: initial !important;
  height: initial !important;
}

.sidenav .row .col.compressed span.email a, .sidenav .row .col.compressed span.phone a {
  color: blue !important;
  z-index: 5;
  cursor: pointer !important;
}
.sidenav .row .col.compressed span.email a:hover, .sidenav .row .col.compressed span.phone a:hover {
  font-weight: bolder;
  z-index: 5;
  cursor: pointer !important;
}

a {
  cursor: pointer !important;
}

button {
  cursor: pointer !important;
}

ul.admin-dropdown {
  padding-top: 0px;
  color: white;
  padding-bottom: 0px;
  min-width: 304px;
}

body {
  touch-action: pan-y, pan-x;
}

.infolinks, .infolinks span, .infolinks div, .infolinks a, .infolinks span a, .infolinks div a {
  font-size: large;
  padding-right: 20px;
  line-height: 25px;
  font-weight: bold;
}

.infolinks a:hover, .infolinks span a:hover, .infolinks div a:hover {
  font-size: larger;
}


/* Shared everywhere.... maybe move to a component though */
.success-error-box .alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.success-error-box .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .5rem;
}

.success-error-box .alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.success-error-box .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid red;
  border-radius: .5rem;
}

.sidenav li>a.roledropdown {
  transform: none !important;
  width: initial !important;
  text-align: left !important;
}
.sidenav li>a.roledropdown>i.material-icons {
  margin: 0;
}

.ag-tooltip.ag-ltr.ag-popup-child {
  background-color: #0f1014 !important;
  color: #BBBBBB !important;
  border-radius: 2px !important;
  padding: 5px;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: #545454 !important;
}

.new-vpa-grid.ag-theme-material .ag-cell, .new-vpa-grid.ag-theme-material .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  line-height: initial;
  padding-left: 3px;
  padding-right: 3px;
}

.new-vpa-grid.ag-theme-material .ag-header-cell, .new-vpa-grid.ag-theme-material .ag-header-group-cell {
  line-height: initial;
  padding-left: 3px;
  padding-right: 3px;
}

.new-vpa-grid .ag-cell-wrap-text {
  white-space: normal;
  word-break: normal;
}

.new-vpa-grid.ag-theme-fresh .ag-cell, .new-vpa-grid.ag-theme-fresh .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  padding: 3px !important;
  --ag-internal-calculated-line-height: var(--ag-line-height, 15px);
  --ag-internal-padded-row-height: 15px;
}

.new-vpa-grid.ag-theme-fresh .ag-header-cell, .new-vpa-grid.ag-theme-fresh .ag-header-group-cell {
  padding: 3px !important;
}

.new-vpa-grid .ag-cell.ag-cell-wrap-text .ag-cell-wrapper .ag-cell-value {
  text-overflow: clip;
}

.menu-trigger {
  position: fixed;
  background: #205081;
  padding: 5px;
  border: 2px solid white;
  border-top: none;
  font-weight: bold;
  color: white !important;
  display: none;
  white-space: nowrap;
  text-decoration: none !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  -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;
  padding-top: 2px;
}

.menu-trigger.menu-right {
  left: 100%;
  bottom: 72px;
  -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.menu-right {
  position: absolute;
  right: 0px;
  bottom: 5px;
  left: initial !important;
  top: initial !important;
  border: solid black 1px;
  border-radius: 15px;
  min-width: 200px;
  min-height: 100px;
  transform: none;
  /* height: calc(100vh - 65px) !important; */
  height: 200px !important;
  overflow: scroll;
}

/* .ismobile .feedback-trigger {
  display: none;
} */

.ismobile .menu-trigger {
  display: block;
}

.o365-profile {
  margin-top: 8px;
  width: 40px;
  height: 40px;
  border-radius: 25px;
}

.test-banner {
  position: fixed;
  right: -53px;
  bottom: 84px;
  background: rgb(255 17 0);
  width: 262px;
  text-align: center;
  color: rgb(255 255 255);
  font-weight: 600;
  opacity: 0.6;
  transform: rotate(310deg);
  z-index: 100000;
  height: 20px;
}

@media print {
  .test-banner {
    display: none;
  }
}

hr.bold {
  border: none;
  border-top: 3px double #333;
  color: #333;
  overflow: visible;
  text-align: center;
  height: 5px;
}

hr.bold:after {
  background: #fff;
  content: ' - § - ';
  padding: 0 4px;
  position: relative;
  top: -13px;
}

.darkMode hr.bold {
  color: #000;
  background-color: #c0c0c0 !important;
}

.darkMode hr.bold:after {
  background: #c0c0c0;
  content: ' - § - ';
  padding: 0 4px;
  position: relative;
  top: -13px;
}

.logincard .input-field {
  margin-bottom: initial;
}

.card .card-content {
  padding: 10px !important;
}




/* CKEDITOR */

/*
.cke_wysiwyg_div * {
  all: unset;
}
*/

.cke_source,
.cke_wysiwyg_div {
  min-height: 256px;
}

.cke_wysiwyg_div ul,
.card-content ul {
  list-style-type: unset;
  padding: 20px;
  padding-left: 40px;
}

.cke_wysiwyg_div ul li,
.card-content ul li {
  list-style-type: inherit;
  padding-bottom: 10px;
}

/* CKEDITOR DARK MODE */
/*When not selected and in dark mode show the border black.*/
.darkMode .ck-source-editing-area textarea {
  /* border-color: #000 !important; */
  border: 1px solid black;
}

.darkMode .ck.ck-toolbar {
  border: 1px solid black !important;
  border-bottom: none !important;
  background-color: rgba(0, 0, 0, .2) !important;
}

.darkMode .ck.ck-content {
  background-color: transparent !important;
}

.darkMode .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
  border: 1px solid black;
}

.solidleftborder {
  border-left: 10px solid #245d90;
}
.solidleftborder.child a {
  border-left: 10px solid #363d47;
  padding-left: 10px;
}

.darkMode .solidleftborder {
  border-left: 10px solid #363d47;
}
.darkMode .solidleftborder.child a {
  border-left: 10px solid #245d90;
  padding-left: 10px;
}

/* Don't padd the recent in fixed nav */
.fixed-nav .sidenav li.recentnav>a {
  padding: 0px;
}

/* Force the role dropdown to be wider */
.sidenav li>a.btn.roledropdown,
.sidenav li>a.btn-small.roledropdown,
.sidenav li>a.btn-large.roledropdown,
.sidenav li>a.btn-flat.roledropdown,
.sidenav li>a.btn-floating.roledropdown
{
  margin: 5px 2px;
  margin-right: 8px;
}

/* Kendo Pilot Card Updates */
.k-list-container .k-list-filter, .k-list-container .k-list-filter input.k-textbox {
  padding: 0px;
  margin: 0px;
  height: unset;
}





/* Attempt to use materialize color scheme correctly */
/* may need something else for dark mode */
.primary.darken-1, .secondary.darken-1 {
  background-image: linear-gradient(rgb(0 0 0/10%) 0 0);
}
.primary.darken-2, .secondary.darken-2 {
  background-image: linear-gradient(rgb(0 0 0/20%) 0 0);
}
.primary.darken-3, .secondary.darken-3 {
  background-image: linear-gradient(rgb(0 0 0/30%) 0 0);
}
.primary.darken-4, .secondary.darken-4 {
  background-image: linear-gradient(rgb(0 0 0/40%) 0 0);
}

.primary.lighten-1, .secondary.lighten-1 {
  opacity: 90%;
}
.primary.lighten-2, .secondary.lighten-2 {
  opacity: 80%;
}
.primary.lighten-3, .secondary.lighten-3 {
  opacity: 70%;
}
.primary.lighten-4, .secondary.lighten-4 {
  opacity: 60%;
}


/* But with darker primary color I need a better box shadow to show the activwe button */
/* This darker shadow is okay but the background image solution is awesome! */
/* box-shadow: 0 3px 3px 0 rgba(0,0,0,0.50), 0 1px 7px 0 rgba(0,0,0,.50), 0 3px 1px -1px rgba(0,0,0,.5) !important;  */
.darkMode .btn-floating:focus, .btn:focus, .btn-small:focus, .btn-large:focus,
.btn-floating:hover, .btn:hover, .btn-small:hover, .btn-large:hover {
  background-image: linear-gradient(rgb(0 0 0/50%) 0 0);
}


/* Style the md-file input that ignores classes */
/* Might be better to fix the missing accent binding in aurelia-materialize-bridge */
md-file.primary > * > .accent {
  background-color: #245d90; /* primary */
}
md-file.secondary > * > .accent {
  background-color: #363d47; /* primary */
}
.darkMode md-file.primary > * > .accent {
  background-color: #363d47; /* primary */
}
.darkMode md-file.secondary > * > .accent {
  background-color: #245d90; /* primary */
}
md-file.lighten-2 > * > .accent {
  opacity: 80%;
}


/* md-file.secondary > * > .accent > span {
  color: white !important;
} */

.text-right input {
  text-align: right;
}

/* Chrome, Safari, Edge, Opera */
input.hide-spinner::-webkit-outer-spin-button,
input.hide-spinner::-webkit-inner-spin-button,
.hide-spinner input::-webkit-outer-spin-button,
.hide-spinner input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number].hide-spinner,
.hide-spinner input[type=number] {
    -moz-appearance: textfield;
}


.btn-floating.btn-small {
  width: 25px !important;
}

.btn-floating.btn-small i {
  width: 20px;
  height: 20px;
  line-height: 25px !important;
}



.ag-theme-alpine-dark .ag-cell, .ag-theme-alpine-dark .ag-full-width-row .ag-cell-wrapper.ag-row-group {
  --ag-internal-padded-row-height: initial;
 }

 .spin-refresh {
   color: yellowgreen;
   -webkit-animation-name: spin;
   -webkit-animation-duration: 4000ms;
   -webkit-animation-iteration-count: infinite;
   -webkit-animation-timing-function: linear;
   -moz-animation-name: spin;
   -moz-animation-duration: 4000ms;
   -moz-animation-iteration-count: infinite;
   -moz-animation-timing-function: linear;
   -ms-animation-name: spin;
   -ms-animation-duration: 4000ms;
   -ms-animation-iteration-count: infinite;
   -ms-animation-timing-function: linear;
   
   animation-name: spin;
   animation-duration: 4000ms;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
}
@-ms-keyframes spin {
   from { -ms-transform: rotate(0deg); }
   to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
   from { -moz-transform: rotate(0deg); }
   to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
   from { -webkit-transform: rotate(0deg); }
   to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
   from {
       transform:rotate(0deg);
   }
   to {
       transform:rotate(360deg);
   }
}

/* Added to shrink options size */
.usercard [type=checkbox]+span:not(.lever) {
  padding-left: 25px !important;
  font-size: 0.8rem !important;
}

.new-grid-spinner.pilot-card {
  top: 0%;
  width: 100%;
  left: 0px;
  bottom: 0px;
  margin: auto;
  position: fixed;
  text-align: center;
  z-index: 150000;
  padding-top: calc(35vh);
  background-color: rgba(0, 0, 0, .1);
}

.userdropdown { 
  top: 45px;
  right: 0px;
  width: 500px;
  z-index: 1000;
  position: absolute;
  /* height: 600px; */
  max-height: calc(100vh - 55px);
  max-width: 100%;
}

/* z-index to match side-nav background */
.userdropdown > * > .card {
  border-radius: 24px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border: black solid 1px;
  border-top: none;
  padding: 0px;
  margin: 0px;
  z-index: 997;
}

.userdropdown .card-content {
  padding: 10px !important;
  border-radius: 24px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  /* height: 600px; */
  max-height: calc(100vh - 60px);
}

.usercard, .usercard.card {
  padding: 0px;
  margin: 0px;
}

@media only screen and (max-width: 601px) {
  .userdropdown .card-content {
    padding: 0px !important;
  }
}

.userdropdown .usercontent {
  padding: 0px;
  /* height: 515px; */
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 125px);
}
.userdropdown .usercontentrow {
  background-color: whitesmoke;
}
.darkMode .userdropdown .usercontent {
  background-color: lightgray;
}
.darkMode .userdropdown .usercontentrow {
  background-color: lightgray;
}

.userdropdown.slideup {
  -webkit-transition: height 0.15s ease-in-out;
  -moz-transition: height 0.15s ease-in-out;
  -o-transition: height 0.15s ease-in-out;
  transition: height 0.15s ease-in-out;
  overflow-y: hidden;            
  height: 0px;
}
.userdropdown.slidedown {
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  overflow-y: hidden;            
  height: 100%;
}

.maildropdown { 
  top: 45px;
  right: 0px;
  width: 500px;
  z-index: 1000;
  position: absolute;
  /* height: 600px; */
  max-height: calc(100vh - 55px);
  max-width: 100%;
}

/* z-index to match side-nav background */
.maildropdown > * > .card {
  border-radius: 24px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border: black solid 1px;
  border-top: none;
  padding: 0px;
  margin: 0px;
  z-index: 997;
}

.maildropdown .card-content {
  padding: 10px !important;
  border-radius: 24px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  /* height: 600px; */
  max-height: calc(100vh - 60px);
}

.mailcard, .mailcard.card {
  padding: 0px;
  margin: 0px;
}

@media only screen and (max-width: 601px) {
  .maildropdown .card-content {
    padding: 0px !important;
  }
}

.maildropdown .mailcontent {
  padding: 0px;
  /* height: 515px; */
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 125px);
}
.maildropdown .mailcontentrow {
  background-color: whitesmoke;
}
.darkMode .maildropdown .mailcontent {
  background-color: lightgray;
}
.darkMode .maildropdown .mailcontentrow {
  background-color: lightgray;
}

.maildropdown.slideup {
  -webkit-transition: height 0.15s ease-in-out;
  -moz-transition: height 0.15s ease-in-out;
  -o-transition: height 0.15s ease-in-out;
  transition: height 0.15s ease-in-out;
  overflow-y: hidden;            
  height: 0px;
}
.maildropdown.slidedown {
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  overflow-y: hidden;            
  height: 100%;
}

.notificationdropdown { 
  top: 45px;
  right: 0px;
  width: 500px;
  z-index: 1000;
  position: absolute;
  /* height: 600px; */
  max-height: calc(100vh - 55px);
  max-width: 100%;
}

/* z-index to match side-nav background */
.notificationdropdown > * > .card {
  border-radius: 24px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border: black solid 1px;
  border-top: none;
  padding: 0px;
  margin: 0px;
  z-index: 997;
}

.notificationdropdown .card-content {
  padding: 10px !important;
  border-radius: 24px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  /* height: 600px; */
  max-height: calc(100vh - 60px);
}

.notificationcard, .notificationcard.card {
  padding: 0px;
  margin: 0px;
}

@media only screen and (max-width: 601px) {
  .notificationdropdown .card-content {
    padding: 0px !important;
  }
}

.notificationdropdown .notificationcontent {
  padding: 0px;
  /* height: 515px; */
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 125px);
}
.notificationdropdown .notificationcontentrow {
  background-color: whitesmoke;
}
.darkMode .notificationdropdown .notificationcontent {
  background-color: lightgray;
}
.darkMode .notificationdropdown .notificationcontentrow {
  background-color: lightgray;
}

.notificationdropdown.slideup {
  -webkit-transition: height 0.15s ease-in-out;
  -moz-transition: height 0.15s ease-in-out;
  -o-transition: height 0.15s ease-in-out;
  transition: height 0.15s ease-in-out;
  overflow-y: hidden;            
  height: 0px;
}
.notificationdropdown.slidedown {
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  overflow-y: hidden;            
  height: 100%;
}

.idle-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.35);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  min-height: 100%;
  min-width: 100%;
  z-index: 10000;
  color: white;
  backdrop-filter: blur(5px);
}

.darkMode .idle-spinner, .idle-spinner {
  font-size: larger;
  font-weight: bolder;
}

.idle-spinner .nice-box {
  background-color: white;
  border: 2px solid black;
  color: black;
  border-radius: 15px;
}

.loginForm .alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.loginForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .5rem;
}

.loginForm .alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.loginForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid red;
  border-radius: .5rem;
}

.logincard {
  max-width: 800px;
}

.mfafield {
  text-align: center !important;
  width: 25px !important;  
  border: 2px solid #a94442 !important;
  border-radius: 10px !important;
  font-size: x-large;
  font-weight: bold;
  -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera */
input.mfafield::-webkit-outer-spin-button,
input.mfafield::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mfafieldlong {
  width: 150px !important;  
}

.mfafield:focus {
  border: 2px solid green !important;
}
.mfafield.success {
  border: 2px solid green !important;
}

.darkMode .mfafield {
  color: black;
}

.passwordForm .alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.passwordForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .5rem;
}

.passwordForm .alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.passwordForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid red;
  border-radius: .5rem;
}

.passwordcard {
  max-width: 800px;
}

.mfafield {
  text-align: center !important;
  width: 25px !important;  
  border: 2px solid #a94442 !important;
  border-radius: 10px !important;
  font-size: x-large;
  font-weight: bold;
  -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera */
input.mfafield::-webkit-outer-spin-button,
input.mfafield::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mfafieldlong {
  width: 150px !important;  
}

.mfafield:focus {
  border: 2px solid green !important;
}
.mfafield.success {
  border: 2px solid green !important;
}

.darkMode .mfafield {
  color: black;
}

.registrationForm .alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.registrationForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .5rem;
}

.registrationForm .alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.registrationForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid red;
  border-radius: .5rem;
}

.registrationcard {
  max-width: 800px;
}


.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: 14px;
  -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;
  padding-top: 2px;
}

.feedback-trigger.feedback-RIGHT {
  left: 100%;
  bottom: 152px;
  -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;
}

.feedbackForm .alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.feedbackForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .5rem;
}

.feedbackForm .alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.feedbackForm .alert {
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid red;
  border-radius: .5rem;
}

.btn-experience {
  border: 5px solid #dff0d8 !important;
  padding: 5px !important;
  vertical-align: middle !important;
  padding-bottom: 36px !important;
  border-radius: 10px !important;
}
.btn-experience-selected {
  border: 5px solid #41dc44 !important;
  padding: 5px !important;
  vertical-align: middle !important;
  padding-bottom: 36px !important;
  border-radius: 10px !important;
}

