@import url(https://fonts.googleapis.com/css?family=Noto+Sans&display=swap);
@import url(https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined);
/* 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;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* 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 {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.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;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	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-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-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;
	}
svg.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);
	        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;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         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;
	cursor:         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,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	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,
.leaflet-bar a:focus {
	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(../902989b22f7e48dfdf6a.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(../89b8d04e61cee078a342.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;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(../d03f02bedc24c83c5db1.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.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;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.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 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-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;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-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-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-interactive {
	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;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(../6368d08fe744b97c2e85.png);background-image:linear-gradient(transparent,transparent),url(../ab8671f146dd15cd92dd.svg);background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(../b30104e21c1fe701686e.png);background-image:linear-gradient(transparent,transparent),url(../ab8671f146dd15cd92dd.svg)}
.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}
.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#FFF;font:11px/19px "Helvetica Neue",Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}
.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}
.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}
.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}
.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}
.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,0.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px "Helvetica Neue",Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,0.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:"";position:absolute;top:7px;left:-7px}
.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,0.1);border:4px dashed rgba(254,87,161,0.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}
.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-line-spin-fade,
.la-line-spin-fade > div {
    position: relative;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.la-line-spin-fade {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-line-spin-fade.la-dark {
    color: #333;
}

.la-line-spin-fade > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-line-spin-fade {
    width: 32px;
    height: 32px;
}

.la-line-spin-fade > div {
    position: absolute;
    width: 2px;
    height: 10px;
    margin: 2px;
    margin-top: -5px;
    margin-left: -1px;
    border-radius: 0;
    -webkit-animation: line-spin-fade 1s infinite ease-in-out;
       -moz-animation: line-spin-fade 1s infinite ease-in-out;
         -o-animation: line-spin-fade 1s infinite ease-in-out;
            animation: line-spin-fade 1s infinite ease-in-out;
}

.la-line-spin-fade > div:nth-child(1) {
    top: 15%;
    left: 50%;
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-animation-delay: -1.125s;
       -moz-animation-delay: -1.125s;
         -o-animation-delay: -1.125s;
            animation-delay: -1.125s;
}

.la-line-spin-fade > div:nth-child(2) {
    top: 25.2512626585%;
    left: 74.7487373415%;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-animation-delay: -1.25s;
       -moz-animation-delay: -1.25s;
         -o-animation-delay: -1.25s;
            animation-delay: -1.25s;
}

.la-line-spin-fade > div:nth-child(3) {
    top: 50%;
    left: 85%;
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-animation-delay: -1.375s;
       -moz-animation-delay: -1.375s;
         -o-animation-delay: -1.375s;
            animation-delay: -1.375s;
}

.la-line-spin-fade > div:nth-child(4) {
    top: 74.7487373415%;
    left: 74.7487373415%;
    -webkit-transform: rotate(135deg);
       -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
         -o-transform: rotate(135deg);
            transform: rotate(135deg);
    -webkit-animation-delay: -1.5s;
       -moz-animation-delay: -1.5s;
         -o-animation-delay: -1.5s;
            animation-delay: -1.5s;
}

.la-line-spin-fade > div:nth-child(5) {
    top: 84.9999999974%;
    left: 50.0000000004%;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-animation-delay: -1.625s;
       -moz-animation-delay: -1.625s;
         -o-animation-delay: -1.625s;
            animation-delay: -1.625s;
}

.la-line-spin-fade > div:nth-child(6) {
    top: 74.7487369862%;
    left: 25.2512627193%;
    -webkit-transform: rotate(225deg);
       -moz-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
         -o-transform: rotate(225deg);
            transform: rotate(225deg);
    -webkit-animation-delay: -1.75s;
       -moz-animation-delay: -1.75s;
         -o-animation-delay: -1.75s;
            animation-delay: -1.75s;
}

.la-line-spin-fade > div:nth-child(7) {
    top: 49.9999806189%;
    left: 15.0000039834%;
    -webkit-transform: rotate(270deg);
       -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
         -o-transform: rotate(270deg);
            transform: rotate(270deg);
    -webkit-animation-delay: -1.875s;
       -moz-animation-delay: -1.875s;
         -o-animation-delay: -1.875s;
            animation-delay: -1.875s;
}

.la-line-spin-fade > div:nth-child(8) {
    top: 25.2506949798%;
    left: 25.2513989292%;
    -webkit-transform: rotate(315deg);
       -moz-transform: rotate(315deg);
        -ms-transform: rotate(315deg);
         -o-transform: rotate(315deg);
            transform: rotate(315deg);
    -webkit-animation-delay: -2s;
       -moz-animation-delay: -2s;
         -o-animation-delay: -2s;
            animation-delay: -2s;
}

.la-line-spin-fade.la-sm {
    width: 16px;
    height: 16px;
}

.la-line-spin-fade.la-sm > div {
    width: 1px;
    height: 4px;
    margin-top: -2px;
    margin-left: 0;
}

.la-line-spin-fade.la-2x {
    width: 64px;
    height: 64px;
}

.la-line-spin-fade.la-2x > div {
    width: 4px;
    height: 20px;
    margin-top: -10px;
    margin-left: -2px;
}

.la-line-spin-fade.la-3x {
    width: 96px;
    height: 96px;
}

.la-line-spin-fade.la-3x > div {
    width: 6px;
    height: 30px;
    margin-top: -15px;
    margin-left: -3px;
}

/*
 * Animation
 */
@-webkit-keyframes line-spin-fade {
    50% {
        opacity: .2;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes line-spin-fade {
    50% {
        opacity: .2;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes line-spin-fade {
    50% {
        opacity: .2;
    }
    100% {
        opacity: 1;
    }
}
@keyframes line-spin-fade {
    50% {
        opacity: .2;
    }
    100% {
        opacity: 1;
    }
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-line-scale-pulse-out-rapid,
.la-line-scale-pulse-out-rapid > div {
    position: relative;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.la-line-scale-pulse-out-rapid {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-line-scale-pulse-out-rapid.la-dark {
    color: #333;
}

.la-line-scale-pulse-out-rapid > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-line-scale-pulse-out-rapid {
    width: 40px;
    height: 32px;
}

.la-line-scale-pulse-out-rapid > div {
    width: 4px;
    height: 32px;
    margin: 2px;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    -webkit-animation: line-scale-pulse-out-rapid .9s infinite cubic-bezier(.11, .49, .38, .78);
       -moz-animation: line-scale-pulse-out-rapid .9s infinite cubic-bezier(.11, .49, .38, .78);
         -o-animation: line-scale-pulse-out-rapid .9s infinite cubic-bezier(.11, .49, .38, .78);
            animation: line-scale-pulse-out-rapid .9s infinite cubic-bezier(.11, .49, .38, .78);
}

.la-line-scale-pulse-out-rapid > div:nth-child(3) {
    -webkit-animation-delay: -.9s;
       -moz-animation-delay: -.9s;
         -o-animation-delay: -.9s;
            animation-delay: -.9s;
}

.la-line-scale-pulse-out-rapid > div:nth-child(2),
.la-line-scale-pulse-out-rapid > div:nth-child(4) {
    -webkit-animation-delay: -.65s;
       -moz-animation-delay: -.65s;
         -o-animation-delay: -.65s;
            animation-delay: -.65s;
}

.la-line-scale-pulse-out-rapid > div:nth-child(1),
.la-line-scale-pulse-out-rapid > div:nth-child(5) {
    -webkit-animation-delay: -.4s;
       -moz-animation-delay: -.4s;
         -o-animation-delay: -.4s;
            animation-delay: -.4s;
}

.la-line-scale-pulse-out-rapid.la-sm {
    width: 20px;
    height: 16px;
}

.la-line-scale-pulse-out-rapid.la-sm > div {
    width: 2px;
    height: 16px;
    margin: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

.la-line-scale-pulse-out-rapid.la-2x {
    width: 80px;
    height: 64px;
}

.la-line-scale-pulse-out-rapid.la-2x > div {
    width: 8px;
    height: 64px;
    margin: 4px;
    margin-top: 0;
    margin-bottom: 0;
}

.la-line-scale-pulse-out-rapid.la-3x {
    width: 120px;
    height: 96px;
}

.la-line-scale-pulse-out-rapid.la-3x > div {
    width: 12px;
    height: 96px;
    margin: 6px;
    margin-top: 0;
    margin-bottom: 0;
}

/*
 * Animation
 */
@-webkit-keyframes line-scale-pulse-out-rapid {
    0% {
        -webkit-transform: scaley(1);
                transform: scaley(1);
    }
    80% {
        -webkit-transform: scaley(.3);
                transform: scaley(.3);
    }
    90% {
        -webkit-transform: scaley(1);
                transform: scaley(1);
    }
}
@-moz-keyframes line-scale-pulse-out-rapid {
    0% {
        -moz-transform: scaley(1);
             transform: scaley(1);
    }
    80% {
        -moz-transform: scaley(.3);
             transform: scaley(.3);
    }
    90% {
        -moz-transform: scaley(1);
             transform: scaley(1);
    }
}
@-o-keyframes line-scale-pulse-out-rapid {
    0% {
        -o-transform: scaley(1);
           transform: scaley(1);
    }
    80% {
        -o-transform: scaley(.3);
           transform: scaley(.3);
    }
    90% {
        -o-transform: scaley(1);
           transform: scaley(1);
    }
}
@keyframes line-scale-pulse-out-rapid {
    0% {
        -webkit-transform: scaley(1);
           -moz-transform: scaley(1);
             -o-transform: scaley(1);
                transform: scaley(1);
    }
    80% {
        -webkit-transform: scaley(.3);
           -moz-transform: scaley(.3);
             -o-transform: scaley(.3);
                transform: scaley(.3);
    }
    90% {
        -webkit-transform: scaley(1);
           -moz-transform: scaley(1);
             -o-transform: scaley(1);
                transform: scaley(1);
    }
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
/*!
 * Bootstrap Grid v4.6.0 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !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;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* 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 {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.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;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	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-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-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;
	}
svg.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);
	        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;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         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;
	cursor:         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,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	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,
.leaflet-bar a:focus {
	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(../902989b22f7e48dfdf6a.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(../89b8d04e61cee078a342.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;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(../d03f02bedc24c83c5db1.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.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;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.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 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-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;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-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-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-interactive {
	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;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(../6368d08fe744b97c2e85.png);background-image:linear-gradient(transparent,transparent),url(../ab8671f146dd15cd92dd.svg);background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(../b30104e21c1fe701686e.png);background-image:linear-gradient(transparent,transparent),url(../ab8671f146dd15cd92dd.svg)}
.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}
.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#FFF;font:11px/19px "Helvetica Neue",Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}
.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}
.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}
.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}
.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}
.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,0.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px "Helvetica Neue",Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,0.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:"";position:absolute;top:7px;left:-7px}
.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,0.1);border:4px dashed rgba(254,87,161,0.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}
.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}
input[type='range']{-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);width:110px;height:10px;margin:0;border:none;padding:1px 2px;border-radius:30px;background:#f1f0ee;outline:none}input[type='range']::-ms-track{border:inherit;color:transparent;background:transparent}input[type='range']::-ms-fill-lower,input[type='range']::-ms-fill-upper{background:transparent}input[type='range']::-ms-tooltip{display:none}input[type='range']::-ms-thumb{width:15px;height:18px;border-radius:12px;border:0;background-image:linear-gradient(to bottom,#1253a4 0,#1253a4 100%)}.leaflet-control-layers-label{margin:0 0 8px 1px}
/* ────────────────────────────────────────────────────────────────
   leaflet-side-by-side — self-contained styles (specificity-hardened)
   ----------------------------------------------------------------
   • Handle icon embedded as inline SVG (no external png to 404).
   • All .leaflet-sbs-range rules are qualified as
     input[type="range"].leaflet-sbs-range so they OUTSPECIFY any
     global input[type="range"] style in your app (e.g. the one
     styling your opacity slider). Scoped to the class, so your other
     range inputs are NOT affected.

   Load GLOBALLY (angular.json styles[] or @import in styles.scss).
   Component-scoped .scss will NOT match the plugin's injected nodes.
   Restart `ng serve` after editing angular.json.
   ──────────────────────────────────────────────────────────────── */

/* ---- divider line (a div, no global conflict — plain class is fine) ---- */
.leaflet-sbs-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  width: 4px;
  background-color: #fff;
  pointer-events: none;
  z-index: 999;
}

/* ---- range input: invisible full-width track ---- */
input[type='range'].leaflet-sbs-range {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 999;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  vertical-align: middle;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.25);
  min-width: 100px;
  cursor: pointer;
  pointer-events: none;
}
input[type='range'].leaflet-sbs-range::-ms-fill-upper {
  background: transparent;
}
input[type='range'].leaflet-sbs-range::-ms-fill-lower {
  background: rgba(255, 255, 255, 0.25);
}
input[type='range'].leaflet-sbs-range::-moz-range-track {
  opacity: 0;
}
input[type='range'].leaflet-sbs-range::-ms-track {
  opacity: 0;
}
input[type='range'].leaflet-sbs-range::-ms-tooltip {
  display: none;
}

/* ---- draggable handle (icon embedded). Keep each vendor thumb separate ---- */
input[type='range'].leaflet-sbs-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  background: #fff;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  cursor: ew-resize;
  pointer-events: auto;
  border: 1px solid #ddd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 40 40%27%3E%3Cpath d=%27M17 12 L10 20 L17 28%27 fill=%27none%27 stroke=%27%23888%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M23 12 L30 20 L23 28%27 fill=%27none%27 stroke=%27%23888%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}
input[type='range'].leaflet-sbs-range::-ms-thumb {
  margin: 0;
  padding: 0;
  background: #fff;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  cursor: ew-resize;
  pointer-events: auto;
  border: 1px solid #ddd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 40 40%27%3E%3Cpath d=%27M17 12 L10 20 L17 28%27 fill=%27none%27 stroke=%27%23888%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M23 12 L30 20 L23 28%27 fill=%27none%27 stroke=%27%23888%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}
input[type='range'].leaflet-sbs-range::-moz-range-thumb {
  padding: 0;
  background: #fff;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  cursor: ew-resize;
  pointer-events: auto;
  border: 1px solid #ddd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 40 40%27%3E%3Cpath d=%27M17 12 L10 20 L17 28%27 fill=%27none%27 stroke=%27%23888%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M23 12 L30 20 L23 28%27 fill=%27none%27 stroke=%27%23888%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}
input[type='range'].leaflet-sbs-range:disabled::-moz-range-thumb {
  cursor: default;
}
input[type='range'].leaflet-sbs-range:disabled::-ms-thumb {
  cursor: default;
}
input[type='range'].leaflet-sbs-range:disabled::-webkit-slider-thumb {
  cursor: default;
}
input[type='range'].leaflet-sbs-range:disabled {
  cursor: default;
}
input[type='range'].leaflet-sbs-range:focus {
  outline: none !important;
}
input[type='range'].leaflet-sbs-range::-moz-focus-outer {
  border: 0;
}

﻿.skeleton-filter-box{display:flex;width:100% !important;font-family:Noto Sans}.skeleton-filter-box__heading{height:2vh;width:30%;margin:0 2%;animation:skeleton 1.6s infinite linear}.skeleton-filter-box__label{font-size:.875rem;line-height:1.1;letter-spacing:normal;color:#666;font-weight:500;margin-top:1.3125rem}.skeleton-filter-box__pagination{padding-left:3%;margin:10px 0;margin-top:auto}.skeleton-filter-box-label{line-height:3;letter-spacing:normal;color:#666}.skeleton-filter-box__content{display:table-cell;width:25%;font-family:Noto Sans;font-size:.875rem;font-weight:bold;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal;color:#264554;padding-bottom:0px}.table-skeleton{width:100%;margin-top:1.5rem}.table-skeleton__content{height:8.6vh;margin:.25rem 0 0 0;animation:skeleton 1.6s infinite linear}.table-skeleton div:nth-child(1){height:2vh;width:10rem;margin-bottom:1rem}.flex-item-card-skeleton{width:98%;background-color:#fafbfb;padding:1%}.flex-item-card-skeleton__heading{height:40px;margin:10px;animation:skeleton 1.6s infinite linear}.flex-item-card-skeleton__content{height:40vh;margin:10px;animation:skeleton 1.6s infinite linear}.flex-item-card-skeleton__progress-bar__content{height:28vh;margin:10px;animation:skeleton 1.6s infinite linear}.skeleton-header__container{margin:1.8rem auto;background-color:#fff;display:grid;width:100%;grid-template-columns:repeat(auto-fit, minmax(190px, 190px));grid-gap:2rem}.skeleton-header__container>*{font-family:Noto Sans;font-size:20px}.skeleton-header__row{display:grid;grid-template-rows:repeat(2, minmax(24px, min-content))}.skeleton-header__label--main{height:2.5vh;width:90%;background-color:#fafbfb;animation:skeleton 1.6s infinite linear}.skeleton-header__label--sub{font-size:12px}.skeleton-header__value--main{height:2.5vh;margin-top:5%;width:50%;background-color:#fafbfb;animation:skeleton 1.6s infinite linear}.skeleton-header__value--sub{font-family:NotoSans;font-size:11px;font-weight:normal;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;color:#61717d}.skeleton-strip__container{margin:1.8rem auto;background-color:#fff;display:grid;width:100%;grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));grid-gap:2rem}.skeleton-strip__container>*{font-family:Noto Sans;font-size:20px}.skeleton-strip__row{display:grid;grid-template-rows:repeat(1, minmax(20px, min-content))}.skeleton-strip__label--main{height:2.5vh;width:90%;background-color:#fafbfb;animation:skeleton 1.6s infinite linear}.skeleton-strip__label--sub{font-size:12px}.skeleton-strip__value--main{height:2.5vh;margin-top:5%;width:50%;background-color:#fafbfb;animation:skeleton 1.6s infinite linear}.skeleton-strip__value--sub{font-family:NotoSans;font-size:11px;font-weight:normal;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;color:#61717d}.top-header{display:flex;flex-flow:row wrap;justify-content:space-between;width:100%;padding:1% 0 1% 0}.top-header__content{height:2vh;list-style:none;display:flex;flex-flow:row wrap;justify-content:space-between;width:10%;animation:skeleton 1.6s infinite linear}.dropdown__item__skeleton{background-color:#fafbfb;margin:0px 0px 0px 10px;padding:1%;width:48%;height:100%}.dropdown__item__skeleton__line1{height:1.5vh;animation:skeleton 1.6s infinite linear;width:50%;margin:1%}.dropdown__item__skeleton__line2{height:3vh;animation:skeleton 1.6s infinite linear;width:90%;margin:1%}.content-header{margin:0px auto;width:100%;display:grid;grid-template-columns:repeat(auto-fill, minmax(160px, 1fr));grid-gap:30px}.content-header__label{height:2.5vh;width:90%;background-color:#fafbfb;animation:skeleton 1.6s infinite linear}.content-header__value{height:1.5vh;margin-top:5%;width:50%;background-color:#fafbfb;animation:skeleton 1.6s infinite linear}.doughnut__skeleton__content{border-radius:100%;height:9rem;width:9rem;animation:skeleton-doughnut 1.6s infinite linear}.legend{background-color:#fff;width:90%;display:grid;width:100%;grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));grid-row-gap:1.1rem}.legend>*{color:#ddd}.legend__label{height:1.5vh;animation:skeleton 1.6s infinite linear;width:10%;display:inline-block;margin-right:.8rem}.legend__value{height:2vh;animation:skeleton 1.6s infinite linear;width:60%;display:inline-block}.notification-skeleton-container{display:grid;grid-auto-rows:min-content;grid-template-columns:repeat(auto-fill, minmax(60px, 1fr));padding-top:1rem}.notification-skeleton-item{text-align:left;padding:5px}.notification-skeleton-item--1{grid-column:1/2;grid-row:1/3;height:7vh;animation:skeleton 1.6s infinite linear;margin:10%}.notification-skeleton-item--2{grid-column:2/-1;grid-row:1/2;height:2.5vh;margin-top:.4rem;margin-left:.6rem;width:40%;animation:skeleton 1.6s infinite linear}.notification-skeleton-item--3{grid-column:2/-1;grid-row:2/4;height:3.5vh;margin-top:.4rem;margin-left:.6rem;width:90%;animation:skeleton 1.6s infinite linear}@keyframes skeleton-lines{0%{background-position:100%}100%{background-position:-100%}}@keyframes skeleton{0%{background-color:rgba(165,165,165,.1)}50%{background-color:rgba(165,165,165,.4)}100%{background-color:rgba(165,165,165,.1)}}@keyframes skeleton-doughnut{0%{border:.8rem solid rgba(165,165,165,.1)}50%{border:.8rem solid rgba(165,165,165,.3)}100%{border:.8rem solid rgba(165,165,165,.1)}}*,*::after,*::before{margin:0;padding:0;outline-width:0rem}html{font-size:62.5%}body{box-sizing:border-box}.sr-container ::-webkit-scrollbar{width:4px;border-radius:3px;background-color:rgba(97,113,125,.5)}.sr-container ::-webkit-scrollbar-track{background-color:#d1d1d1}.sr-container ::-webkit-scrollbar-thumb{background-color:rgba(97,113,125,.5)}.sr-container ::-webkit-scrollbar-thumb:hover{background-color:#61717d}.sr-container a{color:#533f03;font-weight:bold}.sr-container a:hover{color:#533f03;font-weight:bold;cursor:pointer}.sr-container .browserupgrade{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.sr-container .jh-card{padding:1.5%;margin-top:20px;border:none}.sr-container .error{color:#fff;background-color:red}.sr-container .pad{padding:10px}.sr-container .w-40{width:40% !important}.sr-container .w-60{width:60% !important}.sr-container .break{white-space:normal;word-break:break-all}.sr-container .readonly{background-color:#eee;opacity:1}.sr-container .footer{border-top:1px solid rgba(0,0,0,.125)}.sr-container .hand,.sr-container [jhisortby]{cursor:pointer}.sr-container .alerts .alert{text-overflow:ellipsis}.sr-container .alerts .alert pre{background:none;border:none;font:inherit;color:inherit;padding:0;margin:0}.sr-container .alerts .alert .popover pre{font-size:10px}.sr-container .alerts .toast{position:fixed;width:100%}.sr-container .alerts .toast.left{left:5px}.sr-container .alerts .toast.right{right:5px}.sr-container .alerts .toast.top{top:55px}.sr-container .alerts .toast.bottom{bottom:55px}@media screen and (min-width: 480px){.sr-container .alerts .toast{width:50%}}.sr-container .no-padding-left{padding-left:0 !important}.sr-container .no-padding-right{padding-right:0 !important}.sr-container .no-padding-top{padding-top:0 !important}.sr-container .no-padding-bottom{padding-bottom:0 !important}.sr-container .no-padding{padding:0 !important}.sr-container .width-min{width:1% !important}.sr-container .flex-btn-group-container{display:flex;flex-direction:row;justify-content:flex-end}.sr-container .row.jh-entity-details>dd{margin-bottom:15px}@media screen and (min-width: 768px){.sr-container .row.jh-entity-details>dt{margin-bottom:15px}.sr-container .row.jh-entity-details>dd{border-bottom:1px solid #eee;padding-left:180px;margin-left:0}}.sr-container .nav,.sr-container .pagination,.sr-container .carousel,.sr-container .panel-title a{cursor:pointer}.sr-container .datetime-picker-dropdown>li.date-picker-menu div>table .btn-default,.sr-container .uib-datepicker-popup>li>div.uib-datepicker>table .btn-default{border:0}.sr-container .datetime-picker-dropdown>li.date-picker-menu div>table:focus,.sr-container .uib-datepicker-popup>li>div.uib-datepicker>table:focus{outline:none}.sr-container .thread-dump-modal-lock{max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sr-container .horizontal-line{color:hsla(0,0%,40%,.3);width:100%;opacity:.3}.sr-container .divider{background-color:hsla(0,0%,40%,.5);opacity:.3;width:100%;border:0;border-top:1px solid rgba(0,0,0,.1)}.sr-container .divider--sub{background-color:hsla(0,0%,40%,.5);opacity:.3;width:66.8%;margin-top:0rem;margin-bottom:0rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.sr-container .divider--main{background-color:hsla(0,0%,40%,.5);opacity:.3;width:100%;margin-top:0rem;margin-bottom:0rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.sr-container .divider--hidden{color:rgba(60,60,60,.1);width:100%;opacity:0;margin-bottom:.625rem;margin-top:.625rem}.sr-container .chart-empty--container{display:flex;justify-content:center;align-items:center;height:45vh}.sr-container .chart-empty--content{font-size:1.5625rem;font-weight:600;color:rgba(86,86,86,.8);padding-bottom:10%}.sr-container .table-empty--container{display:flex;justify-content:center;align-items:center;height:35vh;margin:.625rem 0}.sr-container .table-empty--content{font-size:1.5625rem;font-weight:600;color:rgba(86,86,86,.8)}.sr-container .mat-snack-bar-container{max-width:55vw !important}.sr-container .info-snackbar{color:#264554;background-color:#8cc6f5}.sr-container .info-snackbar .mat-button-wrapper{color:#06f}.sr-container .danger-snackbar{color:#264554;background-color:#f9e8e5}.sr-container .danger-snackbar .mat-button-wrapper{color:#c92100}.sr-container .success-snackbar{color:#264554;background-color:#f1f8e9}.sr-container .success-snackbar .mat-button-wrapper{color:#76be28}.sr-container .text-error{color:#c9210b}.sr-container .text-success{color:#76be2b}.sr-container .text-info{color:#737373}.sr-container .text-grey{color:#666}.sr-container .text-primary{color:#264554 !important}.sr-container .text-muted{color:rgba(0,0,0,.38)}.sr-container .text-capitalize{text-transform:capitalize}.sr-container .text-uppercase{text-transform:uppercase}.sr-container .text-lowercase{text-transform:lowercase}.sr-container .text-end{text-align:end}.sr-container .text-center{text-align:center}.sr-container .text-start{text-align:start}.sr-container .touch-link{cursor:pointer}.sr-container .cursor-pointer{cursor:pointer}.sr-container .cursor-default{cursor:default !important}.sr-container .cursor-not-allowed{cursor:not-allowed}.sr-container .font-18{font-size:1.8rem}.sr-container .font-14{font-size:1.4rem}.sr-container .font-weight-normal{font-weight:500}.sr-container .font-weight-high{font-weight:600}.sr-container .font--bold{font-weight:600}.sr-container .font--normal{font-weight:500}.sr-container .not-btn{border:none;background:none;cursor:pointer}.sr-container .not-btn:focus{outline:none}.sr-container .btn-disabled{opacity:.5;cursor:not-allowed}.sr-container .text-with-icon{display:flex;align-items:center;justify-content:flex-end}.sr-container .icon--white{color:#fff}.sr-container .icon--primary{color:#264554}.sr-container .icon--bold{font-weight:600}.sr-container .icon--search{font-size:1.375rem !important}.sr-container .filter__container{margin:1.125rem auto;background-color:#fff;display:grid;width:100%;grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));grid-template-columns:5fr 2fr 1fr .5fr;grid-gap:0rem}.sr-container .filter__container>*{font-family:"Noto Sans";font-weight:normal;font-stretch:normal;font-style:normal;line-height:normal}.sr-container .filter__label--heading{font-size:1.4rem;font-weight:normal;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:.22px;color:#666;display:flex;align-items:center}.sr-container .filter__label--search{color:#61717d;text-align:right}.sr-container .filter__label--form{opacity:.8;font-size:1.2rem}.sr-container .filter__label--pagination{opacity:.8;letter-spacing:normal;color:#264554;text-align:right;display:flex;align-items:center;justify-content:flex-end}.sr-container .filter__label--filter{color:#61717d;text-align:right}.sr-container ::-webkit-scrollbar{width:4px;border-radius:3px;background-color:rgba(97,113,125,.5)}.sr-container ::-webkit-scrollbar-track{background-color:#d1d1d1}.sr-container ::-webkit-scrollbar-thumb{background-color:rgba(97,113,125,.5)}.sr-container ::-webkit-scrollbar-thumb:hover{background-color:#61717d}.sr-container .smart-risk-map-container{height:100%;flex-direction:column;justify-content:center;background-color:#fff;opacity:.9;position:fixed;z-index:1;top:0px;width:100%;margin-top:10;display:grid;grid-template-columns:repeat(5, 1fr);grid-gap:30%;grid-template-areas:". a a ." ". a a ."}.sr-container .smart-risk-map-loader{grid-area:a;align-self:center;justify-self:center;padding:1em}.sr-container .smart-risk-map-img{width:100%;max-width:150px;height:auto}.sr-container .chart-empty--container{display:flex;justify-content:center;align-items:center;height:45vh}.sr-container .chart-empty--content{font-size:1.5625rem;font-weight:600;color:rgba(86,86,86,.8);padding-bottom:10%}.sr-container .data__header--container{display:grid;grid-template-columns:.5fr 3fr;text-align:left}.sr-container .sr-select-style{font-size:1.4rem;width:11.25rem;line-height:1.36}.sr-container .sr-date-range-header{display:grid;grid-template-columns:repeat(2, max-content)}.sr-container .progress__bar--container{display:grid;width:100%;grid-template-columns:repeat(auto-fit, minmax(19rem, 40.4rem));grid-gap:2.5rem;margin:.625rem 0}.sr-container .mat-tooltip.sr-progress-bar-chart-tooltip{background-color:rgba(0,0,0,.75);font-size:.75rem;line-height:1.25;letter-spacing:normal}.sr-container .mat-tooltip.sr-progress-bar-chart-tooltip:first-letter{text-transform:capitalize}.sr-container .mat-tooltip.timeline-tooltip{width:8.75rem;background-color:rgba(0,0,0,.75);font-size:.6875rem;font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.36}.sr-container .leaflet-control-layers-toggle{background-image:url("/content/images/layers.png")}.sr-container .sr-timeline-container{width:100%;height:100%;display:flex;justify-content:center}.sr-container .sr-timeline-container .timeline-years{display:flex;flex-direction:column;justify-content:center;padding-left:.625rem}.sr-container .sr-timeline-container .timeline-years button{color:#fff;line-height:1.36;letter-spacing:.33px;font-weight:bolder;font-size:.6875rem !important;background-color:rgba(0,0,0,.75)}.sr-container .sr-timeline-container .timeline-months{width:90%;display:flex;justify-content:space-evenly;padding:1.25rem 0}.sr-container .sr-timeline-container .timeline-month{font-weight:500;font-stretch:normal;font-style:normal;line-height:1.36;letter-spacing:.33px;text-align:left;height:auto;width:auto;display:flex;font-size:.6875rem !important;font-weight:bolder;color:#fff;background-blend-mode:multiply;background-image:linear-gradient(to bottom, #2c2c2c, rgb(44, 44, 44));border-radius:4px;padding:.1875rem .3125rem;transition:all .7s linear}.sr-container .sr-timeline-container .timeline-month .dropdown-content{z-index:5;width:0;height:0;overflow:hidden;margin-left:-10px;display:flex;justify-content:space-evenly;margin:0rem .3125rem;transition:all .7s linear;cursor:pointer}.sr-container .sr-timeline-container .timeline-month:hover{height:auto;width:auto;display:flex}.sr-container .sr-timeline-container .timeline-month:hover .dropdown-content{height:auto;width:auto}.sr-container .sr-timeline-container .timeline-dates{border-left:.1rem solid #979797;color:#fff;background-blend-mode:multiply;background-image:linear-gradient(to bottom, #2c2c2c, rgb(44, 44, 44));padding:0rem .3125rem}.sr-container .sr-timeline-container .dropdown-button{border-radius:4px;color:#fff;font-size:.46875rem;font-weight:700;background-blend-mode:multiply;background:linear-gradient(to bottom, #2c2c2c, rgb(44, 44, 44));border:none;padding:.3rem .3125rem}.sr-container .sr-timeline-container .dropdown-menu{min-width:3.125rem}.sr-container .sr-timeline-container .dropdown-button__item{font-size:.46875rem;border:none;padding:.1875rem .3125rem;width:100%;background:none}.sr-container .sr-timeline-container .inactive-date{opacity:.3;background:#000;cursor:inherit}.sr-container .sr-timeline-container .active-date{cursor:pointer;background:#fff;color:#000}.sr-container .sr-timeline-container .active-month{height:auto !important;width:auto !important;display:flex !important;justify-content:space-between !important;border:1px solid rgba(255,255,255,.75)}.sr-container .sr-timeline-container .expand-month{height:auto !important;width:auto !important}.sr-container .sr-timeline-container .mouse-click{cursor:pointer;border-radius:.25rem;background:rgba(0,0,0,.75)}.sr-container .group-layer,.sr-container .sub-layer,.sr-container .mat-menu-content{padding:0 !important}.group-layer-menu-item{height:-moz-fit-content !important;height:fit-content !important;line-height:32px !important}.mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto, "Helvetica Neue", sans-serif}.mat-badge-small .mat-badge-content{font-size:9px}.mat-badge-large .mat-badge-content{font-size:24px}.mat-h1,.mat-headline,.mat-typography .mat-h1,.mat-typography .mat-headline,.mat-typography h1{font:400 24px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h2,.mat-title,.mat-typography .mat-h2,.mat-typography .mat-title,.mat-typography h2{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h3,.mat-subheading-2,.mat-typography .mat-h3,.mat-typography .mat-subheading-2,.mat-typography h3{font:400 16px/28px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h4,.mat-subheading-1,.mat-typography .mat-h4,.mat-typography .mat-subheading-1,.mat-typography h4{font:400 15px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h5,.mat-typography .mat-h5,.mat-typography h5{font:400 calc(14px*.83)/20px Roboto, "Helvetica Neue", sans-serif;margin:0 0 12px}.mat-h6,.mat-typography .mat-h6,.mat-typography h6{font:400 calc(14px*.67)/20px Roboto, "Helvetica Neue", sans-serif;margin:0 0 12px}.mat-body-strong,.mat-body-2,.mat-typography .mat-body-strong,.mat-typography .mat-body-2{font:500 14px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-body,.mat-body-1,.mat-typography .mat-body,.mat-typography .mat-body-1,.mat-typography{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-body p,.mat-body-1 p,.mat-typography .mat-body p,.mat-typography .mat-body-1 p,.mat-typography p{margin:0 0 12px}.mat-small,.mat-caption,.mat-typography .mat-small,.mat-typography .mat-caption{font:400 12px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-display-4,.mat-typography .mat-display-4{font:300 112px/112px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.05em;margin:0 0 56px}.mat-display-3,.mat-typography .mat-display-3{font:400 56px/56px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.02em;margin:0 0 64px}.mat-display-2,.mat-typography .mat-display-2{font:400 45px/48px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.005em;margin:0 0 64px}.mat-display-1,.mat-typography .mat-display-1{font:400 34px/40px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 64px}.mat-bottom-sheet-container{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-button,.mat-raised-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button,.mat-fab,.mat-mini-fab{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-button-toggle{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-card{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-card-title{font-size:24px;font-weight:500}.mat-card-header .mat-card-title{font-size:20px}.mat-card-subtitle,.mat-card-content{font-size:14px}.mat-checkbox{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-checkbox-layout .mat-checkbox-label{line-height:24px}.mat-chip{font-size:14px;font-weight:500}.mat-chip .mat-chip-trailing-icon.mat-icon,.mat-chip .mat-chip-remove.mat-icon{font-size:18px}.mat-table{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-header-cell{font-size:12px;font-weight:500}.mat-cell,.mat-footer-cell{font-size:14px}.mat-calendar{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-calendar-body{font-size:13px}.mat-calendar-body-label,.mat-calendar-period-button{font-size:14px;font-weight:500}.mat-calendar-table-header th{font-size:11px;font-weight:400}.mat-dialog-title{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-expansion-panel-header{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:15px;font-weight:400}.mat-expansion-panel-content{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-form-field-wrapper{padding-bottom:1.34375em}.mat-form-field-prefix .mat-icon,.mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}.mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}.mat-form-field-infix{padding:.5em 0;border-top:.84375em solid rgba(0,0,0,0)}.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(0.75);width:133.3333333333%}.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(0.75);width:133.3333433333%}.mat-form-field-label-wrapper{top:-0.84375em;padding-top:.84375em}.mat-form-field-label{top:1.34375em}.mat-form-field-underline{bottom:1.34375em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}.mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);width:133.3333333333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);width:133.3333433333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);width:133.3333533333%}.mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}.mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(0.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(0.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(0.75)}}.mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em 0}.mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-0.5em}.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-0.59375em) scale(0.75);width:133.3333333333%}.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-0.59374em) scale(0.75);width:133.3333433333%}.mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0 1em 0}.mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-0.25em}.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(0.75);width:133.3333333333%}.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(0.75);width:133.3333433333%}.mat-grid-tile-header .mat-line,.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2),.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}.mat-grid-tile-header,.mat-grid-tile-footer{font-size:14px}input.mat-input-element{margin-top:-0.0625em}.mat-menu-item{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:400}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px}.mat-radio-button{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-select{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-select-trigger{height:1.125em}.mat-slide-toggle-content{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-slider-thumb-label-text{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mat-stepper-vertical,.mat-stepper-horizontal{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-step-label{font-size:14px;font-weight:400}.mat-step-sub-label-error{font-weight:normal}.mat-step-label-error{font-size:14px}.mat-step-label-selected{font-size:14px;font-weight:500}.mat-tab-group{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-tab-label,.mat-tab-link{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0}.mat-tooltip{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}.mat-list-item{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-list-option{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-list-base .mat-list-item{font-size:16px}.mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}.mat-list-base .mat-list-option{font-size:16px}.mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}.mat-list-base .mat-subheader{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-list-base[dense] .mat-list-item{font-size:12px}.mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.mat-list-base[dense] .mat-list-option{font-size:12px}.mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}.mat-list-base[dense] .mat-subheader{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mat-option{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:16px}.mat-optgroup-label{font:500 14px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-simple-snackbar{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px}.mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}.mat-tree{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-tree-node,.mat-nested-tree-node{font-weight:400;font-size:14px}.mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0, 0, 0.2, 1);transform:scale3d(0, 0, 0)}.cdk-high-contrast-active .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0 !important;box-sizing:content-box !important;height:auto !important;overflow:hidden !important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0 !important;box-sizing:content-box !important;height:0 !important}@keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.mat-focus-indicator{position:relative}.mat-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus::before{content:""}.cdk-high-contrast-active{--mat-focus-indicator-display: block}.mat-mdc-focus-indicator{position:relative}.mat-mdc-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.mat-mdc-focus-indicator:focus::before{content:""}.cdk-high-contrast-active{--mat-mdc-focus-indicator-display: block}.mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-option{color:#264554}.mat-option.mat-active{color:#264554}.mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#76be28}.mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#76be28}.mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#cc4a25}.mat-optgroup-label{color:#264554}.mat-pseudo-checkbox{color:#264554}.mat-pseudo-checkbox::after{color:#fff}.mat-pseudo-checkbox-disabled{color:#b0b0b0}.mat-primary .mat-pseudo-checkbox-checked,.mat-primary .mat-pseudo-checkbox-indeterminate{background:#76be28}.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-indeterminate,.mat-accent .mat-pseudo-checkbox-checked,.mat-accent .mat-pseudo-checkbox-indeterminate{background:#76be28}.mat-warn .mat-pseudo-checkbox-checked,.mat-warn .mat-pseudo-checkbox-indeterminate{background:#cc4a25}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.mat-app-background{background-color:#fff;color:#264554}.mat-elevation-z0{box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z1{box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z2{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z3{box-shadow:0px 3px 3px -2px rgba(0, 0, 0, 0.2),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 1px 8px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z4{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z5{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 5px 8px 0px rgba(0, 0, 0, 0.14),0px 1px 14px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z6{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z7{box-shadow:0px 4px 5px -2px rgba(0, 0, 0, 0.2),0px 7px 10px 1px rgba(0, 0, 0, 0.14),0px 2px 16px 1px rgba(0, 0, 0, 0.12)}.mat-elevation-z8{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mat-elevation-z9{box-shadow:0px 5px 6px -3px rgba(0, 0, 0, 0.2),0px 9px 12px 1px rgba(0, 0, 0, 0.14),0px 3px 16px 2px rgba(0, 0, 0, 0.12)}.mat-elevation-z10{box-shadow:0px 6px 6px -3px rgba(0, 0, 0, 0.2),0px 10px 14px 1px rgba(0, 0, 0, 0.14),0px 4px 18px 3px rgba(0, 0, 0, 0.12)}.mat-elevation-z11{box-shadow:0px 6px 7px -4px rgba(0, 0, 0, 0.2),0px 11px 15px 1px rgba(0, 0, 0, 0.14),0px 4px 20px 3px rgba(0, 0, 0, 0.12)}.mat-elevation-z12{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z13{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z14{box-shadow:0px 7px 9px -4px rgba(0, 0, 0, 0.2),0px 14px 21px 2px rgba(0, 0, 0, 0.14),0px 5px 26px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z15{box-shadow:0px 8px 9px -5px rgba(0, 0, 0, 0.2),0px 15px 22px 2px rgba(0, 0, 0, 0.14),0px 6px 28px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z16{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z17{box-shadow:0px 8px 11px -5px rgba(0, 0, 0, 0.2),0px 17px 26px 2px rgba(0, 0, 0, 0.14),0px 6px 32px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z18{box-shadow:0px 9px 11px -5px rgba(0, 0, 0, 0.2),0px 18px 28px 2px rgba(0, 0, 0, 0.14),0px 7px 34px 6px rgba(0, 0, 0, 0.12)}.mat-elevation-z19{box-shadow:0px 9px 12px -6px rgba(0, 0, 0, 0.2),0px 19px 29px 2px rgba(0, 0, 0, 0.14),0px 7px 36px 6px rgba(0, 0, 0, 0.12)}.mat-elevation-z20{box-shadow:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 20px 31px 3px rgba(0, 0, 0, 0.14),0px 8px 38px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z21{box-shadow:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 21px 33px 3px rgba(0, 0, 0, 0.14),0px 8px 40px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z22{box-shadow:0px 10px 14px -6px rgba(0, 0, 0, 0.2),0px 22px 35px 3px rgba(0, 0, 0, 0.14),0px 8px 42px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z23{box-shadow:0px 11px 14px -7px rgba(0, 0, 0, 0.2),0px 23px 36px 3px rgba(0, 0, 0, 0.14),0px 9px 44px 8px rgba(0, 0, 0, 0.12)}.mat-elevation-z24{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.mat-theme-loaded-marker{display:none}.mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-autocomplete-panel{background:#fff;color:#264554}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#fff}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#264554}.mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.mat-badge-hidden .mat-badge-content{display:none}.mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.mat-badge-content{color:#fff;background:#76be28}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.mat-badge-accent .mat-badge-content{background:#76be28;color:#fff}.mat-badge-warn .mat-badge-content{color:#fff;background:#cc4a25}.mat-bottom-sheet-container{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);background:#fff;color:#264554}.mat-button,.mat-icon-button,.mat-stroked-button{color:inherit;background:rgba(0,0,0,0)}.mat-button.mat-primary,.mat-icon-button.mat-primary,.mat-stroked-button.mat-primary{color:#76be28}.mat-button.mat-accent,.mat-icon-button.mat-accent,.mat-stroked-button.mat-accent{color:#76be28}.mat-button.mat-warn,.mat-icon-button.mat-warn,.mat-stroked-button.mat-warn{color:#cc4a25}.mat-button.mat-primary .mat-button-focus-overlay,.mat-icon-button.mat-primary .mat-button-focus-overlay,.mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#76be28}.mat-button.mat-accent .mat-button-focus-overlay,.mat-icon-button.mat-accent .mat-button-focus-overlay,.mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#76be28}.mat-button.mat-warn .mat-button-focus-overlay,.mat-icon-button.mat-warn .mat-button-focus-overlay,.mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#cc4a25}.mat-button.mat-button-disabled .mat-button-focus-overlay,.mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:rgba(0,0,0,0)}.mat-button .mat-ripple-element,.mat-icon-button .mat-ripple-element,.mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.mat-button-focus-overlay{background:#fff}.mat-stroked-button:not(.mat-button-disabled){border-color:rgba(103,125,135,.4)}.mat-flat-button,.mat-raised-button,.mat-fab,.mat-mini-fab{color:#264554;background-color:#fff}.mat-flat-button.mat-primary,.mat-raised-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{color:#fff}.mat-flat-button.mat-accent,.mat-raised-button.mat-accent,.mat-fab.mat-accent,.mat-mini-fab.mat-accent{color:#fff}.mat-flat-button.mat-warn,.mat-raised-button.mat-warn,.mat-fab.mat-warn,.mat-mini-fab.mat-warn{color:#fff}.mat-flat-button.mat-primary,.mat-raised-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{background-color:#76be28}.mat-flat-button.mat-accent,.mat-raised-button.mat-accent,.mat-fab.mat-accent,.mat-mini-fab.mat-accent{background-color:#76be28}.mat-flat-button.mat-warn,.mat-raised-button.mat-warn,.mat-fab.mat-warn,.mat-mini-fab.mat-warn{background-color:#cc4a25}.mat-flat-button.mat-primary.mat-button-disabled,.mat-flat-button.mat-accent.mat-button-disabled,.mat-flat-button.mat-warn.mat-button-disabled,.mat-flat-button.mat-button-disabled.mat-button-disabled,.mat-raised-button.mat-primary.mat-button-disabled,.mat-raised-button.mat-accent.mat-button-disabled,.mat-raised-button.mat-warn.mat-button-disabled,.mat-raised-button.mat-button-disabled.mat-button-disabled,.mat-fab.mat-primary.mat-button-disabled,.mat-fab.mat-accent.mat-button-disabled,.mat-fab.mat-warn.mat-button-disabled,.mat-fab.mat-button-disabled.mat-button-disabled,.mat-mini-fab.mat-primary.mat-button-disabled,.mat-mini-fab.mat-accent.mat-button-disabled,.mat-mini-fab.mat-warn.mat-button-disabled,.mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:rgba(118,190,40,.4)}.mat-flat-button.mat-primary .mat-ripple-element,.mat-raised-button.mat-primary .mat-ripple-element,.mat-fab.mat-primary .mat-ripple-element,.mat-mini-fab.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-flat-button.mat-accent .mat-ripple-element,.mat-raised-button.mat-accent .mat-ripple-element,.mat-fab.mat-accent .mat-ripple-element,.mat-mini-fab.mat-accent .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-flat-button.mat-warn .mat-ripple-element,.mat-raised-button.mat-warn .mat-ripple-element,.mat-fab.mat-warn .mat-ripple-element,.mat-mini-fab.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-stroked-button:not([class*=mat-elevation-z]),.mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-fab:not([class*=mat-elevation-z]),.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-button-toggle-standalone:not([class*=mat-elevation-z]),.mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.mat-button-toggle .mat-button-toggle-focus-overlay{background-color:rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard{color:#264554;background:#fff}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px hsl(198.75,11.7647058824%,78.6666666667%)}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px hsl(198.75,11.7647058824%,78.6666666667%)}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px hsl(198.75,11.7647058824%,78.6666666667%)}.mat-button-toggle-checked{background-color:#e0e0e0;color:#264554}.mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#264554}.mat-button-toggle-disabled{background-color:#eee}.mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#fff}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border:solid 1px hsl(198.75,11.7647058824%,78.6666666667%)}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}.mat-card:not([class*=mat-elevation-z]){box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12)}.mat-card{background:#fff;color:#264554}.mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-card-subtitle{color:#264554}.mat-checkbox-frame{border-color:#264554}.mat-checkbox-checkmark{fill:#fff}.mat-checkbox-checkmark-path{stroke:#fff !important}.mat-checkbox-mixedmark{background-color:#fff}.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#76be28}.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#76be28}.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#cc4a25}.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.mat-checkbox-disabled .mat-checkbox-label{color:#264554}.mat-checkbox .mat-ripple-element{background-color:#fff}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#76be28}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#76be28}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#cc4a25}.mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#264554}.mat-chip.mat-standard-chip .mat-chip-remove{color:#264554;opacity:.4}.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0px 3px 3px -2px rgba(0, 0, 0, 0.2),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 1px 8px 0px rgba(0, 0, 0, 0.12)}.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.mat-chip.mat-standard-chip::after{background:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#76be28;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#cc4a25;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#76be28;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-table{background:#fff}.mat-table thead,.mat-table tbody,.mat-table tfoot,mat-header-row,mat-row,mat-footer-row,[mat-header-row],[mat-row],[mat-footer-row],.mat-table-sticky{background:inherit}mat-row,mat-header-row,mat-footer-row,th.mat-header-cell,td.mat-cell,td.mat-footer-cell{border-bottom-color:rgba(103,125,135,.4)}.mat-header-cell{color:#264554}.mat-cell,.mat-footer-cell{color:#264554}.mat-calendar-table-header-divider::after{background:rgba(103,125,135,.4)}.mat-calendar-table-header,.mat-calendar-body-label{color:#264554}.mat-calendar-body-cell-content,.mat-date-range-input-separator{color:#264554;border-color:rgba(0,0,0,0)}.mat-calendar-body-in-preview{color:rgba(103,125,135,.8)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.mat-calendar-body-in-range::before{background:rgba(118,190,40,.2)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(118, 190, 40, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(118, 190, 40, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:hsl(135.6,40.3225806452%,45.6862745098%)}.mat-calendar-body-selected{background-color:#76be28;color:#fff}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(118,190,40,.4)}.mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(118,190,40,.3)}@media(hover: hover){.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(118,190,40,.3)}}.mat-datepicker-content{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12);background-color:#fff;color:#264554}.mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before{background:rgba(118,190,40,.2)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(118, 190, 40, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(118, 190, 40, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:hsl(135.6,40.3225806452%,45.6862745098%)}.mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#76be28;color:#fff}.mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(118,190,40,.4)}.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(118,190,40,.3)}@media(hover: hover){.mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(118,190,40,.3)}}.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before{background:rgba(204,74,37,.2)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(204, 74, 37, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(204, 74, 37, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:hsl(135.6,40.3225806452%,45.6862745098%)}.mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#cc4a25;color:#fff}.mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(204,74,37,.4)}.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(204,74,37,.3)}@media(hover: hover){.mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(204,74,37,.3)}}.mat-datepicker-content-touch{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.mat-datepicker-toggle-active{color:#76be28}.mat-datepicker-toggle-active.mat-accent{color:#76be28}.mat-datepicker-toggle-active.mat-warn{color:#cc4a25}.mat-dialog-container{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12);background:#fff;color:#264554}.mat-divider{border-top-color:rgba(103,125,135,.4)}.mat-divider-vertical{border-right-color:rgba(103,125,135,.4)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-expansion-panel{background:#fff;color:#264554}.mat-action-row{border-top-color:rgba(103,125,135,.4)}@media(hover: none){.mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#fff}}.mat-expansion-panel-header-title{color:#264554}.mat-expansion-panel-header-description,.mat-expansion-indicator::after{color:#264554}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}.mat-form-field-label{color:rgba(38,69,84,.6)}.mat-hint{color:rgba(38,69,84,.6)}.mat-form-field.mat-focused .mat-form-field-label{color:#76be28}.mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#76be28}.mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#cc4a25}.mat-focused .mat-form-field-required-marker{color:#76be28}.mat-form-field-ripple{background-color:rgba(103,125,135,.87)}.mat-form-field.mat-focused .mat-form-field-ripple{background-color:#76be28}.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#76be28}.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#cc4a25}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after{color:#76be28}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after{color:#76be28}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after{color:#cc4a25}.mat-form-field.mat-form-field-invalid .mat-form-field-label{color:#cc4a25}.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#cc4a25}.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#cc4a25}.mat-error{color:#cc4a25}.mat-form-field-appearance-legacy .mat-form-field-label{color:#264554}.mat-form-field-appearance-legacy .mat-hint{color:#264554}.mat-form-field-appearance-legacy .mat-form-field-underline{background-color:rgba(103,125,135,.42)}.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right, rgba(103, 125, 135, 0.42) 0%, rgba(103, 125, 135, 0.42) 33%, transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.mat-form-field-appearance-standard .mat-form-field-underline{background-color:rgba(103,125,135,.42)}.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right, rgba(103, 125, 135, 0.42) 0%, rgba(103, 125, 135, 0.42) 33%, transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.mat-form-field-appearance-fill .mat-form-field-flex{background-color:rgba(255,255,255,.04)}.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:rgba(255,255,255,.02)}.mat-form-field-appearance-fill .mat-form-field-underline::before{background-color:rgba(103,125,135,.42)}.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before{background-color:rgba(0,0,0,0)}.mat-form-field-appearance-outline .mat-form-field-outline{color:rgba(103,125,135,.12)}.mat-form-field-appearance-outline .mat-form-field-outline-thick{color:rgba(103,125,135,.87)}.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#76be28}.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#76be28}.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick{color:#cc4a25}.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#cc4a25}.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:rgba(103,125,135,.06)}.mat-icon.mat-primary{color:#76be28}.mat-icon.mat-accent{color:#76be28}.mat-icon.mat-warn{color:#cc4a25}.mat-form-field-type-mat-native-select .mat-form-field-infix::after{color:#264554}.mat-input-element{caret-color:#76be28}.mat-input-element::-moz-placeholder{color:rgba(38,69,84,.42)}.mat-input-element::placeholder{color:rgba(38,69,84,.42)}.mat-input-element::-moz-placeholder{color:rgba(38,69,84,.42)}.mat-input-element::-webkit-input-placeholder{color:rgba(38,69,84,.42)}.mat-input-element:-ms-input-placeholder{color:rgba(38,69,84,.42)}.mat-form-field.mat-accent .mat-input-element{caret-color:#76be28}.mat-form-field.mat-warn .mat-input-element,.mat-form-field-invalid .mat-input-element{caret-color:#cc4a25}.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after{color:#cc4a25}.mat-list-base .mat-list-item{color:#264554}.mat-list-base .mat-list-option{color:#264554}.mat-list-base .mat-subheader{color:#264554}.mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-menu-panel{background:#fff}.mat-menu-item{background:rgba(0,0,0,0);color:#264554}.mat-menu-item[disabled],.mat-menu-item[disabled] .mat-menu-submenu-icon,.mat-menu-item[disabled] .mat-icon-no-color{color:#264554}.mat-paginator{background:#fff}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{color:#264554}.mat-paginator-decrement,.mat-paginator-increment{border-top:2px solid;border-right:2px solid}.mat-paginator-first,.mat-paginator-last{border-top:2px solid}.mat-icon-button[disabled] .mat-paginator-decrement,.mat-icon-button[disabled] .mat-paginator-increment,.mat-icon-button[disabled] .mat-paginator-first,.mat-icon-button[disabled] .mat-paginator-last{border-color:#264554}.mat-paginator-container{min-height:56px}.mat-progress-bar-background{fill:hsl(88.8,53.5714285714%,86.2745098039%)}.mat-progress-bar-buffer{background-color:hsl(88.8,53.5714285714%,86.2745098039%)}.mat-progress-bar-fill::after{background-color:#76be28}.mat-progress-bar.mat-accent .mat-progress-bar-background{fill:hsl(88.8,53.5714285714%,86.2745098039%)}.mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:hsl(88.8,53.5714285714%,86.2745098039%)}.mat-progress-bar.mat-accent .mat-progress-bar-fill::after{background-color:#76be28}.mat-progress-bar.mat-warn .mat-progress-bar-background{fill:rgb(95%,82.2549019608%,78.6274509804%)}.mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:rgb(95%,82.2549019608%,78.6274509804%)}.mat-progress-bar.mat-warn .mat-progress-bar-fill::after{background-color:#cc4a25}.mat-progress-spinner circle,.mat-spinner circle{stroke:#76be28}.mat-progress-spinner.mat-accent circle,.mat-spinner.mat-accent circle{stroke:#76be28}.mat-progress-spinner.mat-warn circle,.mat-spinner.mat-warn circle{stroke:#cc4a25}.mat-radio-outer-circle{border-color:#264554}.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#76be28}.mat-radio-button.mat-primary .mat-radio-inner-circle,.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#76be28}.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#76be28}.mat-radio-button.mat-accent .mat-radio-inner-circle,.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#76be28}.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#cc4a25}.mat-radio-button.mat-warn .mat-radio-inner-circle,.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#cc4a25}.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#264554}.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#264554}.mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#264554}.mat-radio-button .mat-ripple-element{background-color:#fff}.mat-select-value{color:#264554}.mat-select-placeholder{color:rgba(38,69,84,.42)}.mat-select-arrow{color:#264554}.mat-select-panel{background:#fff}.mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#76be28}.mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#76be28}.mat-form-field.mat-focused.mat-warn .mat-select-arrow{color:#cc4a25}.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#cc4a25}.mat-drawer-container{background-color:#fff;color:#264554}.mat-drawer{background-color:#fff;color:#264554}.mat-drawer.mat-drawer-push{background-color:#fff}.mat-drawer:not(.mat-drawer-side){box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12)}.mat-drawer-side{border-right:solid 1px rgba(103,125,135,.4)}.mat-drawer-side.mat-drawer-end{border-left:solid 1px rgba(103,125,135,.4);border-right:none}[dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(103,125,135,.4);border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(103,125,135,.4)}.mat-drawer-backdrop.mat-drawer-shown{background-color:rgba(0,0,0,.6)}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#76be28}.mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:rgba(118,190,40,.54)}.mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#76be28}.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#76be28}.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:rgba(118,190,40,.54)}.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#76be28}.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#cc4a25}.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:rgba(204,74,37,.54)}.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#cc4a25}.mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.mat-slide-toggle-thumb{box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);background-color:#fafafa}.mat-slide-toggle-bar{background-color:#264554}.mat-slider.mat-primary .mat-slider-track-fill,.mat-slider.mat-primary .mat-slider-thumb,.mat-slider.mat-primary .mat-slider-thumb-label{background-color:#76be28}.mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.mat-slider.mat-primary .mat-slider-focus-ring{background-color:rgba(118,190,40,.2)}.mat-slider.mat-accent .mat-slider-track-fill,.mat-slider.mat-accent .mat-slider-thumb,.mat-slider.mat-accent .mat-slider-thumb-label{background-color:#76be28}.mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.mat-slider.mat-accent .mat-slider-focus-ring{background-color:rgba(118,190,40,.2)}.mat-slider.mat-warn .mat-slider-track-fill,.mat-slider.mat-warn .mat-slider-thumb,.mat-slider.mat-warn .mat-slider-thumb-label{background-color:#cc4a25}.mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.mat-slider.mat-warn .mat-slider-focus-ring{background-color:rgba(204,74,37,.2)}.mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:rgba(255,255,255,.12)}.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{background-color:rgba(0,0,0,0)}.mat-slider-has-ticks .mat-slider-wrapper::after{border-color:rgba(255,255,255,.7)}.mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);background-image:-moz-repeating-linear-gradient(0.0001deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent)}.mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent)}.mat-step-header:hover[aria-disabled=true]{cursor:default}@media(hover: none){.mat-step-header:hover{background:none}}.mat-step-header .mat-step-label,.mat-step-header .mat-step-optional{color:#264554}.mat-step-header .mat-step-icon{background-color:#264554;color:#fff}.mat-step-header .mat-step-icon-selected,.mat-step-header .mat-step-icon-state-done,.mat-step-header .mat-step-icon-state-edit{background-color:#76be28;color:#fff}.mat-step-header.mat-accent .mat-step-icon{color:#fff}.mat-step-header.mat-accent .mat-step-icon-selected,.mat-step-header.mat-accent .mat-step-icon-state-done,.mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#76be28;color:#fff}.mat-step-header.mat-warn .mat-step-icon{color:#fff}.mat-step-header.mat-warn .mat-step-icon-selected,.mat-step-header.mat-warn .mat-step-icon-state-done,.mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#cc4a25;color:#fff}.mat-step-header .mat-step-icon-state-error{background-color:rgba(0,0,0,0);color:#cc4a25}.mat-step-header .mat-step-label.mat-step-label-active{color:#264554}.mat-step-header .mat-step-label.mat-step-label-error{color:#cc4a25}.mat-stepper-horizontal,.mat-stepper-vertical{background-color:#fff}.mat-stepper-vertical-line::before{border-left-color:rgba(103,125,135,.4)}.mat-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after,.mat-stepper-horizontal-line{border-top-color:rgba(103,125,135,.4)}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px 24px}.mat-stepper-vertical-line::before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}.mat-sort-header-arrow{color:#264554}.mat-tab-nav-bar,.mat-tab-header{border-bottom:1px solid rgba(103,125,135,.4)}.mat-tab-group-inverted-header .mat-tab-nav-bar,.mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(103,125,135,.4);border-bottom:none}.mat-tab-label,.mat-tab-link{color:#264554}.mat-tab-header-pagination-chevron{border-color:#264554}.mat-tab-group[class*=mat-background-]>.mat-tab-header,.mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(214,236,191,.3)}.mat-tab-group.mat-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#76be28}.mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(214,236,191,.3)}.mat-tab-group.mat-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#76be28}.mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(240,201,190,.3)}.mat-tab-group.mat-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#cc4a25}.mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(214,236,191,.3)}.mat-tab-group.mat-background-primary>.mat-tab-header,.mat-tab-group.mat-background-primary>.mat-tab-link-container,.mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#76be28}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator::before{border-color:#fff}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(214,236,191,.3)}.mat-tab-group.mat-background-accent>.mat-tab-header,.mat-tab-group.mat-background-accent>.mat-tab-link-container,.mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#76be28}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator::before{border-color:#fff}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(240,201,190,.3)}.mat-tab-group.mat-background-warn>.mat-tab-header,.mat-tab-group.mat-background-warn>.mat-tab-link-container,.mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#cc4a25}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator::before{border-color:#fff}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.mat-toolbar{color:#264554}.mat-toolbar.mat-primary{background:#76be28;color:#fff}.mat-toolbar.mat-accent{background:#76be28;color:#fff}.mat-toolbar.mat-warn{background:#cc4a25;color:#fff}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}.mat-tree{background:#fff}.mat-tree-node,.mat-nested-tree-node{color:#264554}.mat-tree-node{min-height:48px}.mat-snack-bar-container{color:rgba(255,255,255,.7);background:#323232;box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-simple-snackbar-action{color:#76be28}.dactive{border-right:2px solid #76be28;transition:all .2s ease-in-out;color:#76be28 !important;font-weight:500;width:auto !important;background-color:#324e5b}.pactive{color:#76be28 !important}button:focus,button:active:focus,button.active:focus{outline:none !important;outline-style:none !important}.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background:none !important}.mat-form-field-appearance-legacy.mat-form-field-disabled{font-weight:600}.mat-form-field-label{font-weight:500 !important}.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-arrow{border:none}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background-color:rgba(118,190,40,.3)}.mat-drawer[style*="visibility: hidden"]{display:block !important}.ag_form_setting_section{margin:10px 0 20px 35px;border-bottom:1px solid #efefef;padding-bottom:15px}.ag_form_setting_heading{opacity:.8;font-size:12px;letter-spacing:normal;border-bottom:1px solid #efefef;padding-bottom:6px}.ag_toggle{margin-top:10px;font-size:14px}.ag_form_dropdown{width:248px;margin-top:8px}.ag_form_mandtory .mat-checkbox{margin:0 !important}.ag_userconsent_option{height:56px !important}.ag_userconsent_option .mat-option-text{height:100%;margin-top:20px}.ag_userconsent_option .mat-option-text .ag_mat_option_title{line-height:normal;width:74%;float:left;overflow:hidden;text-overflow:ellipsis}.ag_userconsent_option .mat-option-text .ag_mat_option_subtitle{overflow:hidden;text-overflow:ellipsis;margin-top:4px;font-size:10px}.ag_titlle_col{padding-top:12px;height:64px}.ag_textarea_div{width:100%;height:280px;margin:10px 0px;padding:10px;border-radius:4px;border:solid .6px rgba(38,69,84,.8)}.ag_textarea_div .mat-form-field-infix{border:none !important}.ag_text_count{text-align:right}.ag_userconsent_option .ag_mat_option_button{width:25%;padding:0}.ag_section_outer{border:1px solid #e4e4e4;margin:5px}.ag_section_inner{border:1px solid #e4e4e4;margin:5px}.ag_section_summary{background:#f9f9f9;padding:0 5px}.ag_summary_title{border-right:1px solid #e4e4e4}.ag_section_group_level_selection{margin:5px;padding:5px}.group_inner_row{border-top:1px solid;border-color:#e4e4e4}.inner_group_header{background:#f9f9f9;height:40px;border-bottom:1px solid #e4e4e4;display:flex;align-items:center;font-size:12px}.ag_inner_table_attr{border-right:1px solid #e4e4e4}.over-all-summary{border:1px solid #e4e4e4;margin:5px}.ag_section_outer_header{background:#f9f9f9;font-size:12px}.ag_border_bottom{border-bottom:1px solid rgba(192,186,186,.8);font-size:12px;padding-bottom:10px !important}.ag_task_title{font-size:12px;font-weight:600;line-height:1.33;letter-spacing:normal;color:rgba(38,69,84,.8);font-weight:600}.ag_toggle_filled{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#264554;font-weight:100;margin-right:10px}.ag_disabled_drodown_consent{pointer-events:none;cursor:not-allowed}.ag-duplicate-name-error span.mat-form-field-label-wrapper{border-bottom:1px solid #f44336 !important}.ag-duplicate-name-error span.mat-form-field-label-wrapper label.mat-form-field-label{color:#f44336}.ag_disabled_drodown{pointer-events:none;cursor:not-allowed;background:#f3f3f3;padding:0px 14px}.ag_disabled_section{pointer-events:none !important;cursor:not-allowed !important}.ag_disabled_section_opacity{pointer-events:none !important;cursor:not-allowed !important;opacity:.6 !important}.w-100p{width:100%}.ag_section_formula_box{border:3px #7739ec solid;margin:5px;padding:5px}.ag_section_manage_attributes{float:right;margin:5px;padding:5px}.ag_section_main_container{margin:5px;padding:5px}.ag_section_smart_tabs{margin:5px;padding:5px}.viaCheckbox{font-size:12px;font-weight:600}.viaNote{font-size:14px;margin-right:44px;color:#cc4a25}.acr-footer{padding:0 !important;left:14px !important;bottom:4px !important}.acr-footer .drop-down-role{padding:0 !important;left:14px !important}.cancel-save{text-align:end !important;padding-right:0 !important}.customized-scrollbar{overflow-y:auto;overflow-x:hidden}.customized-scrollbar::-webkit-scrollbar{width:4px}.customized-scrollbar::-webkit-scrollbar-track{box-shadow:inset 0 0 5px #e0e0e0;border-radius:10px}.customized-scrollbar::-webkit-scrollbar-thumb{background:#d2d4d6;border-radius:10px}.customized-scrollbar::-webkit-scrollbar-thumb:hover{background:#d2d4d6}.customized-scrollbar-horizontal{overflow-x:auto !important;overflow-y:hidden !important;max-width:100% !important}.customized-scrollbar-horizontal::-webkit-scrollbar{height:2px}.customized-scrollbar-horizontal::-webkit-scrollbar-track{box-shadow:inset 0 0 5px #e0e0e0;border-radius:10px}.customized-scrollbar-horizontal::-webkit-scrollbar-thumb{background:#d2d4d6;border-radius:10px}.customized-scrollbar-horizontal::-webkit-scrollbar-thumb:hover{background:#d2d4d6}.ag_section_summary .syncronize-horizontal-scroll::-webkit-scrollbar{height:0px}.syncronize-horizontal-scroll{overflow:auto}.syncronize-horizontal-scroll::-webkit-scrollbar{width:2px;height:2px}.syncronize-horizontal-scroll::-webkit-scrollbar-track{border-radius:10px}.syncronize-horizontal-scroll::-webkit-scrollbar-thumb{background:#d3d3d3;border-radius:10px}.syncronize-horizontal-scroll::-webkit-scrollbar-thumb:hover{background:#ce1b1b}.content-height{height:calc(100vh - 56px)}*{font-family:Noto Sans;margin:0;padding:0;box-sizing:border-box}html{height:100%;width:100%;margin:0;padding:0;font-family:Noto Sans;font-size:16px;background-color:rgba(38,69,84,.2)}.dark-loading-circle .mat-progress-spinner circle,.dark-loading-circle .mat-spinner circle{stroke:#264554 !important}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.8}.cdk-overlay-dark-backdrop{opacity:.8;background-color:rgba(38,69,84,.2) !important;background-blend-mode:multiply;background-image:linear-gradient(to bottom, #264554, #264554) !important;background:none}.content-full{margin-left:224px !important;transition:.3s ease-in-out}html,body{height:auto;margin:0;padding:0;font-family:Noto Sans;font-size:1rem;overflow:hidden;background-color:rgba(38,69,84,.2);color:#264554}.main-content{background-color:#fff;min-height:28.56rem;height:auto}.main-content-row{position:absolute;bottom:0;top:0;left:1%;right:1.5%}body,h1,h2,h3,h4{font-weight:300}a,a:hover{color:inherit;font-weight:bold}.browserupgrade{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.jh-card{min-height:100%;height:auto;margin-bottom:2%;border:none;box-shadow:none}.jh-card-holder{padding-right:0px;padding-left:0px;box-shadow:0 37px 22px 0 rgba(69,65,78,.1)}.border-box{box-sizing:border-box}.side-panel{padding-left:0px;padding-right:0px}.panel-separation{display:flex;flex-direction:row}.mat-simple-snackbar span{margin:auto;text-align:center}.cu_heading{border-top:1px solid #e9e9e9 !important;padding-top:20px !important}.cu-kebab-btn{top:3px}.error{color:#fff;background-color:#cc4a25}.success{color:#fff;background-color:#76be28}.white-space-pre{white-space:pre-wrap}.realm-error{color:#fff;background-color:#cc4a25;min-width:300px !important}.pad{padding:10px}.pad-right-10{padding-right:10px}.pad-right-20{padding-right:20px}.pad-left-20{padding-left:20px !important}.pad-left-24{padding-left:24px !important}.mleft-2{margin-left:2px !important}.mleft-12{margin-left:12px !important}.mright-12{margin-right:12px !important}.mright-8{margin-right:8px !important}.mleft-10{margin-left:10px !important}.mleft-8{margin-left:8px !important}.mleft-4{margin-left:4px !important}.pad-left-30{padding-left:30px}.mleft-5{margin-left:5px}.mleft-1{margin-left:1px !important}.mleft-auto{margin-left:auto}.mright-30{margin-right:30px}.pleft-6{padding-left:.6rem !important}.mbottom-plot{margin-bottom:1.75rem}.w-20{width:20% !important}.w-25{width:25%}.w-40{width:40% !important}.w-45{width:45%}.w-60{width:60% !important}.w-65{width:65% !important}.h-90{height:90px}.break{white-space:normal;word-break:break-all}.readonly{background-color:#eee;opacity:1}.footer{border-top:1px solid rgba(0,0,0,.125)}.justify-content-center{justify-content:center !important}.justify-content-end{justify-content:end}.file-upload-image{padding-top:8px;padding-right:1rem}.hand,[jhisortby]{cursor:pointer}.plpx-14{padding-left:14px}.display-inline{display:inline}.alerts .alert{text-overflow:ellipsis}.alerts .alert pre{background:none;border:none;font:inherit;color:inherit;padding:0;margin:0}.alerts .alert .popover pre{font-size:10px}.alerts .toast{position:fixed;width:100%}.alerts .toast.left{left:5px}.alerts .toast.right{right:5px}.alerts .toast.top{top:55px}.alerts .toast.bottom{bottom:55px}@media screen and (min-width: 480px){.alerts .toast{width:50%}}.no-padding-left{padding-left:0 !important}.no-padding-right{padding-right:0 !important}.no-padding-top{padding-top:0 !important}.no-padding-bottom{padding-bottom:0 !important}.no-padding{padding:0 !important}.width-min{width:1% !important}.flex-btn-group-container{display:flex;flex-direction:row;justify-content:flex-end}.row.jh-entity-details>dd{margin-bottom:15px}@media(max-width: 768px){farm-home mat-card{right:0%;left:0% !important;margin:0px;width:auto !important;height:auto !important;position:absolute;bottom:0% !important}}@media screen and (min-width: 768px){.row.jh-entity-details>dt{margin-bottom:15px}.row.jh-entity-details>dd{border-bottom:1px solid #eee;padding-left:180px;margin-left:0}}@media screen and (max-width: 768px){.farm-tab-container mat-tab-header{width:auto !important}.w-75,.w-50{width:100% !important}.card-img{height:100% !important}.left-title-container{flex-wrap:wrap}.img-container{height:auto !important;width:100% !important;float:none}.img-container>div{display:flex;justify-content:center}.right-button-container{justify-content:end !important;padding:12px !important}.btn-menu-pad{padding:0rem .5rem}}.nav,.pagination,.carousel,.panel-title a{cursor:pointer}.datetime-picker-dropdown>li.date-picker-menu div>table .btn-default,.uib-datepicker-popup>li>div.uib-datepicker>table .btn-default{border:0}.datetime-picker-dropdown>li.date-picker-menu div>table:focus,.uib-datepicker-popup>li>div.uib-datepicker>table:focus{outline:none}.thread-dump-modal-lock{max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tooltip-list-preview{white-space:pre;background-color:#fafafa;color:#264554 !important;font-size:12px;font-weight:500;padding:1rem !important}input:focus,select:focus,textarea,select,textarea:focus,input[type=text],input[type=number],input[type=email]{box-shadow:none !important}textarea{overflow:hidden !important}.container-bg{background-color:#fff;font-size:1rem}.container{padding:18px 10px !important}.head-bg{background-color:#f6f6f6;min-height:64px}.title-name{font-size:1.3125rem;font-weight:500;padding:.375rem 1.25rem .375rem 0rem;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal;white-space:nowrap;color:#264554;border-right:solid .0625rem rgba(38,69,84,.08)}.title-desc{font-size:.75rem;padding:.375rem 0 .375rem 1.25rem;font-weight:normal;font-style:normal;font-stretch:normal;line-height:1.33;letter-spacing:normal;color:#264554}.align-center{display:flex;align-items:center}img{width:auto;height:auto}.green-col{color:#76be28}.orange{color:#f68d23}.row-brdr{border-bottom:solid 1px #f2f2f2}.rectangle{width:143px;height:30px;border-radius:15px;box-shadow:0 2px 10px 0 rgba(0,0,0,.07);border:solid 1px #4caf50;background-color:#fff;outline:none}.variety-attr{opacity:.65;font-size:9px;font-weight:normal;font-style:normal;font-stretch:normal;letter-spacing:.56px;line-height:2}.variety-val{font-size:13px;font-weight:normal;font-style:normal;font-stretch:normal;letter-spacing:-0.03px;line-height:2}.row-details{border-radius:4px;box-shadow:0 2px 10px 0 rgba(0,0,0,.07)}.rectangle-copy-2{width:100%;height:987px;background-color:#f2f2f2}input,select{border-radius:2px;border:solid 1px #ccc;background-color:#fff}.red{color:#e24c4b}.delete_crop_target{color:#e24c4b;align-items:center;cursor:auto}.delete_crop_target.mat-button-disabled{color:rgba(226,76,75,.6) !important}.delete_crop_target .delete_icon_crop_target{width:40px;height:40px}.grpLabel{font-size:16px;font-weight:500;line-height:1.25;letter-spacing:-0.03px;color:#333;padding-bottom:15px;border-bottom:2px solid #f2f2f2;display:block;margin-bottom:30px}.del-icon{padding:.75rem;cursor:pointer}.del-img{width:20px;height:20px}.head-style{font-size:12px;font-weight:600;opacity:.8;line-height:1.25;letter-spacing:-0.03px;border-bottom:2px solid #f2f2f2;display:block}.btn-cr{height:36px;border-radius:4px;box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 2px 1px -1px rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.14);color:#fff;text-transform:capitalize;min-width:74px}button:disabled{cursor:not-allowed}.green{background-color:#4caf50}.light-blck{color:#4c4c4c;background-color:#fff}.fw-500{font-weight:500}.mrgn-rgt{margin-right:7%}.margin-right-1{margin-right:1rem}.chckbx-label{font-size:14px;color:#666;line-height:1.43;margin-left:10px}label{height:inherit}input,select,textarea{border:none;outline:none;box-shadow:none}label,input{transition:all .2s;touch-action:manipulation}input:focus{box-shadow:none}input:-moz-placeholder+label{cursor:text;max-width:85%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transform-origin:left bottom;transform:translate(0, -1.5rem) scale(1.15)}input:placeholder-shown+label,select+label,textarea+label{cursor:text;max-width:85%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transform-origin:left bottom;transform:translate(0, -1.5rem) scale(1.15)}input:not(:-moz-placeholder)+label, textarea:not(:-moz-placeholder)+label{transform:translate(0, -2.9rem) scale(1);color:#4caf50 !important;cursor:pointer}input:not(:placeholder-shown)+label,input:focus+label,select:not([value=""]):valid+label,select:focus+label,textarea:not(:placeholder-shown)+label,textarea:focus+label{transform:translate(0, -2.9rem) scale(1);color:#4caf50 !important;cursor:pointer}::-webkit-input-placeholder{font-size:14px;font-weight:normal;font-style:normal;font-stretch:normal;line-height:1.43;letter-spacing:normal;color:#a1a1a1}.tbl-head{font-size:10px;font-weight:500;opacity:.8;font-style:normal;font-stretch:normal;line-height:1.6;letter-spacing:.2px;height:56px !important;text-transform:uppercase}.mat-tbl-row{border-bottom:1px solid rgba(103,125,135,.4)}button:disabled{cursor:not-allowed !important}button:disabled mat-icon,button:disabled img{cursor:not-allowed !important;pointer-events:none !important}.table-header-head{font-size:10px !important;font-weight:600 !important;opacity:.5}.inpt::-webkit-input-placeholder{opacity:0;-webkit-transition:inherit;transition:inherit}.w-30{width:30% !important}.w-15{width:15% !important}.min-w-11{min-width:11% !important}.img-default{width:auto;height:auto}.bg-offwhite{background-color:#fafafa}.bg-white{background-color:#fff}.bg-smartfarm-blue{background-color:#264554}.add-btn{font-size:13px;font-weight:500;font-style:normal;font-stretch:normal;line-height:1.54;letter-spacing:normal;color:#4caf50;background-color:#fafafa;box-shadow:none}.table{color:inherit}.switch{position:relative;display:inline-block;width:24px;height:13px;margin-top:5%;margin-left:11%}.check-input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s;border-radius:34px}.v-align{vertical-align:bottom !important}.v-align-top{vertical-align:top !important}.v-align-middle{vertical-align:middle !important}.card-img{height:82px}.slider:before{position:absolute;content:"";height:17px;width:17px;left:-9px;bottom:-2px;background-color:gray;transition:.4s;border-radius:50%}input:checked+.slider{background-color:#4caf50}input:focus+.slider{box-shadow:0 0 1px #4caf50}input:checked+.slider:before{transform:translateX(26px)}input:checked+.slider.round:before{background-color:#4caf50}.brdr-rgt-blck{padding-right:0px;border-right:solid 1px rgba(51,51,51,.08)}.head{font-size:12px;font-weight:500;line-height:1.25;letter-spacing:-0.03px;border-bottom:2px solid rgba(38,69,84,.2);display:block;padding-bottom:.7em}.head-plan{font-size:12px;font-weight:600;font-style:normal;font-stretch:normal;line-height:1.33;letter-spacing:normal}.mat-horizontal-stepper-header-container{height:56px;box-shadow:0 .5px 0 0 rgba(0,0,0,.14),0 -0.5px 0 0 rgba(0,0,0,.14);background-color:#fff}.page-tips{width:35%;height:75%;margin-left:2%;display:inline-block;font-family:Noto Sans;font-size:12px;font-weight:500;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal;color:rgba(38,69,84,.8)}.img-display{width:inherit;border-radius:50%;height:inherit;-o-object-fit:fill;object-fit:fill}.mat-header-block{pointer-events:none}.img-overlay-text{display:none}mat-form-field{width:100%;font-size:14px !important;line-height:initial !important}table mat-form-field{width:90%}.opacity-dull{opacity:.5 !important;cursor:not-allowed !important}.card{height:102px;border-radius:4px;cursor:pointer;box-shadow:0 1px 3px 0 rgba(0,0,0,.15);border:solid 1px rgba(0,0,0,.02)}.card-light-italic-text{font-style:italic}.card-light-text{font-family:Noto Sans;font-size:10px !important;font-weight:normal !important;font-stretch:normal;font-style:normal;line-height:1.4;letter-spacing:.2px}.card-dark-text{font-size:14px !important;font-weight:600 !important;font-style:normal;font-stretch:normal;line-height:1.71;letter-spacing:normal}.card-normal-text{opacity:.8;font-size:12px !important;font-weight:normal !important;font-stretch:normal;line-height:1.4;letter-spacing:.2px}mat-sidenav-content{max-height:calc(100vh - 56px);overflow-y:auto !important}.mat-horizontal-stepper-header-container{top:64px;position:sticky;z-index:99999999999999}.toolbar-header-sticky{background-color:#fafafa;margin:0px !important;padding:.5rem;min-height:64px;position:sticky;top:0px;z-index:99999999999999}.main-toolbar-container{display:flex;justify-content:space-between;min-height:64px;align-items:center;background-color:#fafafa;border-bottom:solid 1px #f2f2f2;flex-wrap:wrap}.right-button-container{display:flex;justify-content:flex-end;display:flex;align-items:center}.left-title-container{display:flex;display:flex;align-items:center}.right-border-black{border-right:solid .0625rem rgba(38,69,84,.08);padding-right:1.25rem;margin-right:1.25rem}.nav-items .mat-list-item-content{font-size:13px !important;margin-left:10px}.content{padding:25px}.circle-border{padding:6px;width:45px;height:45px;border:3px solid #76be28;border-radius:50%}.circle-border-white{padding:9px;width:50px;height:50px;border:3px solid #fff;border-radius:50%}.circle-border-default{padding:6px;width:45px;height:45px;border:3px solid rgba(38,69,84,.8);border-radius:50%}.right-position-ops{position:absolute;right:15px;display:flex;align-items:center}.left-position-ops{position:absolute;left:15px;display:flex;align-items:center}.table-container{padding:38px 40px}.brd-solid-grey{border:1px solid #979797}.bdr-bottom-grey{border-bottom:1px solid rgba(69,65,78,.09)}.bdr-top-grey{border-top:1px solid rgba(69,65,78,.09)}.bdr-left-grey{border-left:1px solid rgba(69,65,78,.09)}.grey-text{color:#264554;opacity:.5}mat-card{width:248px;height:119px}farm-home mat-card{width:27vw;height:80vh;left:33%}farm-create-notification mat-card{height:auto}farm-create-notification .insert-varible{display:flex;justify-content:space-between}mat-card-title{font-family:Noto Sans;font-size:16px !important;font-weight:600 !important}mat-card-subtitle{opacity:.8;font-family:NotoSans;font-size:12px;font-weight:normal;font-style:italic}mat-card-content{font-family:NotoSans;font-size:12px;font-weight:normal}.btn-disabled{color:rgba(0,0,0,.3) !important}.modal-pad-0 .mat-dialog-container{padding:0px !important}input[type=text][disabled],textarea[disabled],input[type=number][disabled],input[type=email][disabled],input[type=password][disabled]{color:#264554}input:-moz-read-only{border:none !important}input:read-only{border:none !important}textarea[disabled]{color:#264554 !important}mat-chip-list{outline:none}.outline{outline:none}.mat-chip.mat-standard-chip.mat-chip-disabled{opacity:1}.btn-text{font-size:13px}.sub-heading{padding:0px;border-bottom:1px solid rgba(192,186,186,.8);padding-bottom:10px;width:100%;font-family:Noto Sans;font-size:12px;line-height:1.33;letter-spacing:normal;display:flex;width:75%;padding-bottom:8px}.page-subHeader{font-size:12px;font-weight:600;opacity:.8}.page-sub-heading{font-family:Noto Sans;font-size:12px;font-weight:600;line-height:1.33;letter-spacing:normal;display:flex;width:75%;padding-bottom:8px;border-bottom:1px solid gray}.headingText{padding:0px;margin-top:60px;border-bottom:1px solid rgba(192,186,186,.8);padding-bottom:10px;width:100%}.content-t52{padding-top:48px !important;padding:48px 24px 0px 24px}.kababMenu.mat-menu-panel{min-width:auto}.tbl-cell-sub-text{color:rgba(38,69,84,.8);font-size:13px}.table-row-24.mat-row{height:24px !important}.table-row-56.mat-row{height:56px !important}.table-row-60.mat-row{height:60px !important}.table-row-80.mat-row{height:80px !important}.btn-text.mat-raised-button.mat-primary{max-height:36px !important;font-size:13px !important}.btn-toggle-grp.mat-button-toggle-group{height:32px;align-items:center}.expansionPanel .mat-expansion-panel-body{box-sizing:border-box !important;padding:0px !important}.matHeaderClass.mat-header-cell{font-size:10px !important}.bold-text{font-weight:500}.bld-600{font-weight:600}.size11{font-size:11px !important}.on-map-toggle.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:36px;padding:0 12px}.f-8{font-size:8px}.f-9{font-size:9px}.f-11{font-size:11px}.f-10{font-size:10px}.f-12{font-size:12px !important}.f-13{font-size:13px !important}.f-14{font-size:14px !important}.f-16{font-size:16px}.f-18{font-size:18px}.f-19{font-size:19px}.f-20{font-size:20px}.f-21{font-size:21px}.f-24{font-size:24px !important}.f-28{font-size:28px}.f-32{font-size:32px}.f-36{font-size:36px}.font-bld-24{font-size:24px !important;font-weight:500;font-family:Noto Sans}.border_none{border:none}.overflow-auto{overflow:auto}.mat-list-item.f-active-green{border-right:2px solid #76be28;transition:all .2s ease-in-out;color:#76be28 !important;font-weight:500;width:auto !important;background-color:#324e5b}.selected-filter-header{width:212px;height:24px;margin-bottom:10px;border-bottom:1px solid rgba(38,69,84,.25);display:flex;font-size:10px;line-height:2;letter-spacing:normal;color:#666;justify-content:space-between}.filter-main{justify-content:center}.scroll-x-horizontal-none{overflow-x:hidden !important}.w-210{width:210px !important}.mbb-10{margin-bottom:-10px !important}.filter-fields-content{width:100% !important}.remove-selected-row{position:absolute;right:0}.verticle-line-green{position:absolute;width:2px;height:61px;background-color:#76be28}.verticle-line-green.h-122{height:122px !important}.f-bold{font-weight:600}.mat-option.include-sticky{position:sticky;top:42px;z-index:9999999;background:inherit;color:rgba(0,0,0,.6)}.mat-option.divider:after{content:"";width:91%;border-bottom:dashed 1px rgba(103,125,135,.4);position:absolute;left:15;z-index:1;top:calc(3em - 2px)}.f-disabled{cursor:not-allowed !important;color:#264554 !important;opacity:.4}.f-dark-grey{color:#264554}.f-black{color:#000}.f-green{color:#76be28 !important}.f-violet{color:#4d4fab}.f-red{color:#cc4a25 !important}.f-white{color:#fff !important}.f-orange{color:#ff9000 !important}.f-yellow{color:#f7b500 !important}.dashboard-search-menu+* .cdk-overlay-pane{margin-top:8px !important}.menu-task-monitoring+* .cdk-overlay-pane *.mat-menu-content{padding:0px !important}.menu-task-monitoring+* .cdk-overlay-pane *.mat-menu-item{height:34px !important;line-height:unset}.menu-task-monitoring+* .mat-menu-panel{min-height:auto !important}.floating-summary{padding:0 5px;position:absolute !important;top:0px;z-index:400}.monitoring-card-arrow{width:17px;margin-top:.07rem}.position-relative{position:relative}.position-absolute{position:absolute}.line-height-14{line-height:14px}.line-height-30{line-height:30px}.sg-vertical-sub-menu+* .cdk-overlay-pane{margin-top:12px}.box-shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 2px 1px -1px rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.14)}.box-shadow-inward{box-shadow:inset 0 0 5px rgba(0,0,0,.08)}.expansionPanel.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:none !important}.expansionPanel.mat-expansion-panel{background-color:rgba(0,0,0,0) !important}.expansionPanel .matExpansionPanelHeader{max-height:28px !important}.subtable{border-top:none !important}.sub-table-holder-cell.mat-cell{padding:0px !important}.mat-icon-f-19{font-size:19px}mat-icon{cursor:pointer}.small-svg-icon{width:15px !important;height:15px !important}.text-align-center{text-align:center}.upload-file{height:36px;width:156px;border-radius:4px;box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 2px 1px -1px rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.14);background-color:#fff;display:flex;align-items:center}.img-upload-preview{width:62px;height:62px;border-radius:31px;background-color:#efeff4}.upload-info-hlr{display:flex;padding-left:16px}.upload-img-delete{position:absolute;right:5px;cursor:pointer}.upload-img-hlr{display:flex;overflow-x:scroll;padding-top:16px}.upload-img-hlr::-webkit-scrollbar{width:0 !important;display:none}.upload-img::-webkit-scrollbar{width:0 !important;display:none}.upload-img{display:flex;padding:0px 8px;position:relative;overflow-x:scroll}.upload-info-hlr li{list-style:none}.upload-delete{font-size:14px;cursor:pointer;margin-left:12px;padding-top:4px;align-self:flex-start}.file-size-f11{opacity:.6;font-family:NotoSans;font-size:11px;font-weight:500}.image-upload-preview{width:62px;height:62px;position:relative;border-radius:31px;background-color:#efeff4}.image-upload-new-preview{width:120px;height:80px;margin:9px 9px 0 0;border-radius:unset;border:solid .5px rgba(38,69,84,.4)}.image-upload-delete{position:absolute;top:1px;right:5px}.matMenuButton mat-menu-content{padding:0px !important}.excelMenu{margin-bottom:0rem !important}.tigger-btn.mat-stroked-button{line-height:20px;font-size:12px;padding:0 6px;margin:0}.hide{visibility:hidden}.bottom-btn-hldr{position:absolute;bottom:0px;width:218px;display:flex}.tooltip-content-preview{white-space:pre;background-color:#f5f5f5;color:#264554 !important;font-size:12px;font-weight:500;padding:1rem !important}.tooltip-list-preview{white-space:pre;background-color:#fafafa;color:#264554 !important;font-size:12px;font-weight:500;padding:1rem !important}.mat-card.long-card{width:79%;padding-top:0px !important;padding:0px !important}.rowDataContainer{padding-top:15px;padding-bottom:20px}.b-green{background-color:#76be28 !important}.b-grey{background-color:rgba(38,69,84,.1) !important}.b-0{bottom:0px}.float-container{display:flex;flex-direction:column;padding:0px}.cursor-pointer{cursor:pointer}.cursor-not-allowed{cursor:not-allowed !important}.form-class{width:100%;height:auto}button.round-button{min-width:.714rem !important;border-radius:1.3rem !important;width:2.5rem;height:2.5rem;font-size:.8125rem;font-weight:500;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal;text-align:center;margin:0 0.375rem 0 0.375rem}.rectangle-button{min-width:.714rem !important;border-radius:.2857rem !important;width:auto;height:auto;font-size:.8125rem;font-weight:500;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal;text-align:center;box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 2px 1px -1px rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.14)}.profile-img{width:12.5rem;height:12.5rem;border-radius:50%;box-shadow:0 1px 15px 0 rgba(69,65,78,.1);background-color:#fff;position:relative}.profile-img-label{position:absolute;top:6.875rem;left:1.5rem;bottom:4.375rem;right:1.5rem;opacity:.8;font-weight:normal;font-style:normal;font-stretch:normal;line-height:1.43;letter-spacing:normal;text-align:center;color:#264554;font-size:11px}.camera-pos{position:absolute;top:4.375rem;left:5.5rem}.profile-name{width:18.715rem;height:2.3572rem;font-family:Noto Sans;font-size:1.7143rem;font-weight:500;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal;color:#264554;display:inline-block;padding:0rem 0rem 0.5715rem 0rem}.right-col{margin:0 -0.6423rem 0 0}.srch-icon{width:1.7143rem;height:1.7143rem;-o-object-fit:contain;object-fit:contain;display:inline-block;position:absolute;top:.6rem;z-index:6}.action-page{display:inline-block;width:1.5rem;height:1.5rem}.act-img{width:1.7142rem;height:1.7142rem}.nav-main-hld{display:flex;justify-content:flex-end}.spinner-row-height{height:2rem;background-color:rgba(118,190,40,.12)}.spinner-label{font-size:12px}.errorUploadStyle{background-color:rgba(204,74,37,.12)}.spin-loader{display:inline-block;width:34px;height:20px;position:absolute;top:.25rem}.srch-field{width:11.25rem;font-size:.75rem !important;font-weight:normal;font-style:normal;font-stretch:normal;line-height:1.33;letter-spacing:normal;color:rgba(38,69,84,.8)}.pagination-hld{opacity:.8;font-size:.75rem;font-weight:normal;font-style:normal;font-stretch:normal;line-height:1.33;letter-spacing:normal;text-align:right;color:#264554}.pagination-count-farm{width:5.75rem;display:inline-block}.pagination-count-contractor{width:5rem;display:inline-block}.pagination-count{width:4.75rem;display:inline-block}.pagination-icon-hldr{display:inline-block;width:1.375rem;height:1.375rem;padding:.0625rem;margin-left:.9375rem}.img-prop{width:1.27rem;height:1.27rem}.srch-nav-farm-content{min-height:56px;background-color:#fff;height:4.5rem}.help-tips{opacity:.8;font-family:Noto Sans;font-size:.75rem;font-weight:500;font-style:normal;font-stretch:normal;line-height:1.5;letter-spacing:normal;text-align:center;color:#264554}.tbl-del-row th.mat-header-cell:last-of-type,.tbl-del-row tbody>tr>td.mat-cell:last-of-type,.tbl-del-row .mat-icon-table{padding-right:0px;border:none !important;background-color:#fff}.tbl-del-row th.mat-header-cell:first-of-type,.tbl-del-row tbody>tr>td.mat-cell:first-of-type,.tbl-del-row .mat-icon-table{padding-right:0px;border-bottom:solid .5px rgba(0,0,0,.14) !important}.tbl-del-row th.mat-header-cell:first-of-type{border-top:solid .5px rgba(0,0,0,.14) !important;background-color:#fafafa}.tbl-brder{border:none;border-bottom:solid .5px rgba(0,0,0,.14) !important}.tbl-top{border:none;border-bottom:solid .5px rgba(0,0,0,.07) !important}.tbl-header-box-shadow-top{border:none !important;border-top:solid .5px rgba(0,0,0,.07) !important}.tbl-header-box-shadow{border-top:solid .5px rgba(0,0,0,.14) !important;border-bottom:solid .5px rgba(0,0,0,.14) !important}.tbl-head-48{height:48px !important}textarea:disabled{color:#264554;resize:none !important}.sticky-header{position:sticky;top:0px;z-index:99999999}.confirmation-checkbox{font-size:14px !important}.mat-checkbox-disabled .mat-checkbox-label{color:rgba(0,0,0,.54)}.gdpr-consent-section .mat-checkbox-disabled .mat-checkbox-label{cursor:not-allowed}.confirmation-checkbox .mat-checkbox-layout{white-space:normal !important}.confirmation-checkbox .mat-checkbox-inner-container{height:18px !important;width:18px !important}.confirmation-checkbox .mat-checkbox-layout .mat-checkbox-label{line-height:1.5;text-decoration-line:underline}.gdpr-checkbox .mat-checkbox-layout .mat-checkbox-label{word-break:break-word;white-space:normal;margin-left:9px}.checkbox-table .mat-checkbox-inner-container{height:18px !important;width:18px !important}.checkbox-table .mat-checkbox-layout{vertical-align:super !important}.custom-label-size .mat-form-field-label{font-size:.875rem !important}.custom-label-size .mat-form-field-infix{padding:.3375em 0 !important}.custom-label-size{width:100% !important;font-size:.875rem !important}input:disabled,select:disabled,textarea:disabled{border:none !important}.mat-menu-item:hover{background-color:rgba(0,0,0,.08) !important}.mat-table{overflow:auto;border-top:1px solid rgba(103,125,135,.4)}.mat-slide-toggle-content{font-weight:normal !important}td.mat-cell{max-width:100px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media(max-width: 700px){.main-content{padding:2.286rem 1.7143rem 2.7rem 1.74136rem !important}}.farm-tab-common mat-tab-header{width:-moz-fit-content !important;width:fit-content !important}.farm-tab-common .mat-tab-header-pagination{display:none !important}.farm-tab-common .mat-tab-label-active{color:#76be28;font-weight:600}.farm-tab-container mat-tab-header{width:-moz-fit-content !important;width:fit-content !important;max-width:100%;display:inline-flex;border-radius:4px;box-shadow:0 0px 3px 0 rgba(0,0,0,.15);border:solid 1px rgba(0,0,0,.02)}.farm-tab-container .mat-tab-container{display:inline-flex}.farm-tab-container .mat-tab-label{min-width:-moz-max-content;min-width:max-content;opacity:.9;position:relative}.farm-tab-container .mat-tab-label-active{color:#76be28;font-weight:500}.farm-tab-container .mat-tab-label-content{font-size:12px;text-transform:uppercase}.farm-tab-container .mat-tab-label::after{content:"";position:absolute;right:0;z-index:100;width:1px;height:31px;opacity:.15;background:#555}.farm-simple-tab mat-tab-header{height:40px !important;width:-moz-fit-content !important;width:fit-content !important;max-width:100%;display:inline-flex}.farm-simple-tab mat-tab-header .mat-tab-header-pagination{display:none !important}.farm-simple-tab .mat-tab-container{display:inline-flex}.farm-simple-tab .mat-tab-label{padding:0 32px !important;height:40px !important;font-size:12px;min-width:-moz-max-content;min-width:max-content;opacity:.9;position:relative}.farm-simple-tab .mat-tab-label-active{color:#76be28;font-weight:500}.farm-simple-tab .mat-tab-label-content{height:40px !important;font-size:12px;text-transform:uppercase}.farm-simple-tab .mat-tab-label::after{content:"";position:absolute;right:0;z-index:100;width:1px;height:31px;opacity:.15;background:#555}.bread-crumb-container{display:inline-flex;align-items:center;font-size:12px;font-weight:500}.bread-crumb-container span:first-of-type{color:#76be28;cursor:pointer}.bread-crumb-container span:first-of-type:hover{text-decoration:underline}#header-with-border{text-transform:uppercase;border-bottom:solid 1px rgba(0,0,0,.05);font-size:12px;opacity:.8;font-weight:600;padding-left:0px;padding-bottom:.5rem}#farm-expansion-panel mat-expansion-panel{box-sizing:border-box;box-shadow:none}#farm-expansion-panel mat-expansion-panel-header{height:16px !important;max-height:16px;opacity:.8;font-size:12px;font-weight:600;font-stretch:normal;font-style:normal;line-height:1.33;border-bottom:1px solid rgba(0,0,0,.05);border-radius:0px;box-sizing:content-box;padding-top:1.5rem;padding-left:0px;padding-bottom:.5rem}#farm-expansion-panel mat-expansion-panel-header span{justify-content:space-between}#farm-expansion-panel .mat-expansion-panel-body{padding-left:0px;padding-top:16px}#farm-expansion-panel .sub-company-container{width:auto;box-shadow:0 2px 10px 0 rgba(0,0,0,.07);background-color:#fff;display:flex;justify-content:center;align-items:center;flex-direction:column;cursor:pointer}.txt-ellipsis{text-overflow:ellipsis !important;overflow:hidden !important;white-space:nowrap !important}.mat-icon-opacity{opacity:.6;cursor:pointer}.farm-content{margin:1.5rem 0rem;width:100%;padding:0rem 1.5rem;height:auto}#farm-expansion-panel-xs mat-expansion-panel{box-sizing:border-box;box-shadow:none}#farm-expansion-panel-xs mat-expansion-panel-header{height:16px !important;max-height:16px;opacity:.8;font-size:12px;font-weight:600;font-stretch:normal;font-style:normal;line-height:1.33;border-radius:0px;box-sizing:content-box;padding-top:1.5rem;padding-left:0px;padding-bottom:.5rem}#farm-expansion-panel-xs .mat-expansion-panel-body{padding-left:0px;padding-top:16px}#farm-expansion-panel-xs .sub-company-container{width:auto;box-shadow:0 2px 10px 0 rgba(0,0,0,.07);background-color:#fff;display:flex;justify-content:center;align-items:center;flex-direction:column;cursor:pointer}#farm-expansion-panel-more-info mat-expansion-panel{box-sizing:border-box;box-shadow:none}#farm-expansion-panel-more-info mat-expansion-panel-header{height:16px !important;max-height:16px;opacity:.8;font-size:12px;font-weight:600;font-stretch:normal;font-style:normal;line-height:1.33;border-bottom:1px solid rgba(0,0,0,.05);border-radius:0px;box-sizing:content-box;padding-top:1.5rem;padding-left:0px;padding-bottom:.5rem}#farm-expansion-panel-more-info .mat-expansion-panel-body{padding-left:0px;padding-top:16px;padding-right:0px}.cdk-global-overlay-wrapper>.map-leaflet-model{align-items:flex-end !important}.map-leaflet-model{max-width:100vw !important}.custom-modalbox mat-dialog-container,.modal-container-user-hirarchy mat-dialog-container,.upcomingProjectStart mat-dialog-container{padding:0;position:relative}.custom-modalbox .mat-dialog-title,.modal-container-user-hirarchy .mat-dialog-title,.upcomingProjectStart .mat-dialog-title{background-color:#fafafa;padding:17px;font-family:Noto Sans;font-size:21px;font-weight:500;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.custom-modalbox .mat-dialog-actions,.modal-container-user-hirarchy .mat-dialog-actions,.upcomingProjectStart .mat-dialog-actions{background-color:#fafafa;width:100%;bottom:0px;position:absolute;margin-bottom:0px}.custom-modalbox .mat-dialog-content,.modal-container-user-hirarchy .mat-dialog-content,.upcomingProjectStart .mat-dialog-content{min-height:138px;padding:0px;display:flex}.custom-modalbox .modal-content-title,.modal-container-user-hirarchy .modal-content-title,.upcomingProjectStart .modal-content-title{font-family:Noto Sans;font-size:13px;font-weight:600;font-stretch:normal;font-style:normal;line-height:1.54;letter-spacing:normal}.common-filter-panel-dialog mat-dialog-container{padding:0;border-radius:0;box-shadow:-2px 0 8px rgba(0,0,0,.1);overflow:hidden}.common-filter-panel-dialog mat-form-field .mat-form-field-wrapper{margin:0;padding:0}.common-filter-panel-dialog mat-form-field .mat-form-field-infix{border-top:0;font-size:13px}.common-filter-panel-dialog mat-form-field .mat-form-field-outline{border-radius:8px;border:solid 1px #c5cacc}.common-filter-panel-dialog mat-form-field .mat-form-field-appearance-outline .mat-form-field-outline-start{border-radius:6px 0 0 6px}.common-filter-panel-dialog mat-form-field .mat-form-field-appearance-outline .mat-form-field-outline-end{border-radius:0 6px 6px 0}.common-filter-panel-dialog mat-form-field .mat-form-field-subscript-wrapper{display:none}.common-filter-panel-dialog mat-form-field .mat-select-value-text{font-size:13px}.common-filter-panel-dialog mat-form-field input.mat-input-element{font-size:13px}.close-case-dialog .mat-dialog-container{padding:0;border-radius:12px;overflow:hidden}.close-case-dialog .close-case-modal mat-form-field .mat-form-field-wrapper{margin:0;padding-bottom:0}.close-case-dialog .close-case-modal mat-form-field .mat-form-field-infix{padding:10px 0;border-top-width:0;width:100%}.close-case-dialog .close-case-modal mat-form-field .mat-form-field-outline-start{border-radius:8px 0 0 8px !important;min-width:8px !important;width:8px !important}.close-case-dialog .close-case-modal mat-form-field .mat-form-field-outline-end{border-radius:0 8px 8px 0 !important}.close-case-dialog .close-case-modal mat-form-field .mat-form-field-outline-gap{border-top-color:inherit !important}.close-case-dialog .close-case-modal mat-form-field .mat-form-field-label{display:none !important}.close-case-dialog .close-case-modal mat-form-field .mat-form-field-subscript-wrapper{display:none}.close-case-dialog .close-case-modal mat-form-field .mat-select-value-text{font-size:13px;font-weight:500}.close-case-dialog .close-case-modal mat-form-field.mat-focused .mat-form-field-outline-thick{color:#2d5a27 !important}.close-case-dialog .close-case-modal mat-form-field.mat-focused .mat-form-field-outline-thick .mat-form-field-outline-start,.close-case-dialog .close-case-modal mat-form-field.mat-focused .mat-form-field-outline-thick .mat-form-field-outline-end,.close-case-dialog .close-case-modal mat-form-field.mat-focused .mat-form-field-outline-thick .mat-form-field-outline-gap{border-width:1px !important}.close-case-dialog .close-case-modal mat-form-field:hover:not(.mat-focused) .mat-form-field-outline{color:#888 !important}.close-case-dialog .close-case-modal mat-form-field:hover:not(.mat-focused) .mat-form-field-outline .mat-form-field-outline-start,.close-case-dialog .close-case-modal mat-form-field:hover:not(.mat-focused) .mat-form-field-outline .mat-form-field-outline-end,.close-case-dialog .close-case-modal mat-form-field:hover:not(.mat-focused) .mat-form-field-outline .mat-form-field-outline-gap{border-width:1px !important}.close-case-dialog .close-case-select-panel{margin-top:27px;border-radius:8px !important}.close-case-dialog .field-error mat-form-field .mat-form-field-outline-start,.close-case-dialog .field-error mat-form-field .mat-form-field-outline-gap,.close-case-dialog .field-error mat-form-field .mat-form-field-outline-end{border-color:#c62828 !important}.create-case-dialog .mat-dialog-container{border-radius:10px;padding:0;overflow:hidden}.create-case-dialog .field-error mat-form-field .mat-form-field-outline-start,.create-case-dialog .field-error mat-form-field .mat-form-field-outline-gap,.create-case-dialog .field-error mat-form-field .mat-form-field-outline-end{border-color:#c62828 !important}.add-record-dialog .mat-dialog-container{border-radius:12px;padding:0;overflow:hidden}.add-record-dialog .mat-dialog-title{border-bottom:none}.add-record-dialog .field-error mat-form-field .mat-form-field-outline-start,.add-record-dialog .field-error mat-form-field .mat-form-field-outline-gap,.add-record-dialog .field-error mat-form-field .mat-form-field-outline-end{border-color:#c62828 !important}.upcomingProjectStart .mat-dialog-content{padding-bottom:62px}.template-filters-modalbox .mat-dialog-actions{position:unset !important}.template-filters-modalbox .mat-dialog-content{max-height:70vh !important}.confirmation-modalbox mat-dialog-container{padding:0;position:relative}.confirmation-modalbox .ht-60{height:60px}.confirmation-modalbox .mat-dialog-title{height:64px;margin:0;background-color:rgba(38,69,84,.05);padding:17px;font-family:Noto Sans;font-size:21px;font-weight:500;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.confirmation-modalbox .mat-dialog-actions{background-color:rgba(38,69,84,.05);width:100%;bottom:0px;margin-bottom:0px}.confirmation-modalbox .mat-dialog-content{margin:24px 0 0 0;font-size:14px}.confirmation-modalbox .modal-content-title{font-family:Noto Sans;font-size:13px;font-weight:600;font-stretch:normal;font-style:normal;line-height:1.54;letter-spacing:normal}.monitoring-panel .mat-expansion-panel-body{padding:0 !important}.navigation-expansion-panel mat-expansion-panel{box-shadow:none !important}.navigation-expansion-panel .mat-expansion-panel-body{padding-right:0rem;padding-bottom:0rem}.navigation-expansion-panel .mat-expansion-panel-body mat-nav-list{padding-left:1.5rem}.navigation-expansion-panel a{height:40px !important;font-weight:normal}.navigation-expansion-panel a .mat-list-item-content{padding:0rem !important;margin:0rem}.navigation-expansion-panel .w-100{width:100% !important}.navigation-expansion-panel .h-30{height:30px !important}.rotate-90{transform:rotate(90deg)}.rotate-minus90{transform:rotate(-90deg)}.transition-ease-in-out{transition:all .3s ease-in-out}.round{transition:all .2s ease-in-out;height:16px;width:16px;border-radius:50%}.mat-status{transition:all .2s ease-in-out;font-size:21px !important}.due{background-color:#f68d23}.pending{background-color:#cc4a25}.upcoming{background-color:#a1a1a1}.unscheduled{color:#969696 !important}.round.pending:hover,.round.due:hover,.round.all:hover,.round.planned:hover,.round.upcoming:hover{transform:scale(1.25)}.mat-button-icon{min-width:auto !important;padding:0rem !important}.btn-menu-pad{padding:0rem .75rem}.border-left-rad{border-top-left-radius:4px;border-bottom-left-radius:4px;width:100px}.sel-search-box .mat-pseudo-checkbox{display:none !important}.side-card-holder{height:calc(100vh - 173px);overflow-y:auto;overflow-x:hidden}.resize-scroll-4::-webkit-scrollbar{width:4px;height:4px}.resize-scroll-4::-webkit-scrollbar-track{box-shadow:inset 0 0 5px #d2d4d6;border-radius:10px}.resize-scroll-4::-webkit-scrollbar-thumb{background:#d2d4d6;border-radius:10px}.resize-scroll-4::-webkit-scrollbar-thumb:hover{background:#d2d4d6}.invisible-scroll{overflow:auto}.invisible-scroll::-webkit-scrollbar{display:none}.warn-alert{background-color:rgba(204,74,37,.06);color:#cc4a25;border-radius:4px}.warn{color:#cc4a25}.warn-alert-icon{background-color:#cc4a25;width:35px;height:32px;border-top-left-radius:4px;border-bottom-left-radius:4px;text-align:center;padding-top:4px;display:inline-block;margin-right:4px;color:#fff}.warn-alert-text{font-size:12px}.info-alert{background-color:rgba(38,69,84,.06);border-radius:4px}.info-alert-icon{background-color:rgba(38,69,84,.8);width:35px;height:50px;border-top-left-radius:4px;border-bottom-left-radius:4px;text-align:center;display:inline-block;margin-right:6px;color:#fff}.plot-level-sidecard{min-height:calc(100vh - 206px) !important}.dotted-line{border:0 none;border-bottom:3px dashed #76be28;background:none;height:9px;width:50%}.dotted-line-blue{border:0 none;border-bottom:2px dashed rgba(38,69,84,.8);background:none;height:9px;width:35%}.dotted-line-grey{border:0 none;border-bottom:3px dashed gray;background:none;height:9px;width:50%}.line{border:none;border-bottom:2px solid #76be28;color:#fff;background-color:#fff;height:9px;width:50%}.line-blue{border:none;border-bottom:3px solid rgba(38,69,84,.8);color:#fff;background-color:#fff;height:9px;width:50%}.img-preview-holder{width:60px !important;height:60px !important;border-radius:4px}.popup-bubble{position:absolute;top:0;left:0;transform:translate(-50%, -100%);background-blend-mode:multiply;padding:10px;border-radius:5px;font-family:Noto Sans;min-width:300px;overflow-y:hidden;width:300px;min-height:140px;background-color:rgba(0,0,0,.8)}.popup-bubble-anchor{position:absolute;background-image:linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));width:100%;bottom:8px;left:0;text-align:left}.popup-bubble-anchor::after{content:"";position:absolute;top:0;left:0;transform:translate(-50%, 0);background-image:linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));width:0;height:0;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-top:8px solid rgba(0,0,0,.9)}.delete-popup-bubble-anchor{content:none}.delete-popup-bubble-anchor::after{content:none}.popup-container{cursor:auto;height:0;position:absolute;width:200px}.legend-green{width:10px;height:10px;background-color:#76be28}.legend-yellow{width:10px;height:10px;background-color:#feed35}.legend-red{width:10px;height:10px;background-color:#cc4a25}.legend-pink{width:10px;height:10px;background-color:#f7e4de}.carousel-indicators{margin-left:0px !important}.modal-height-fltrs{max-height:calc(100vh - 255px) !important}.tooltip-secondary,.mat-tooltip{background-color:rgba(38,69,84,.8);color:#fff;font-weight:500;font-size:10px}.mat-calendar-body-cell.selected>.mat-calendar-body-cell-content,.mat-calendar-body-cell.selected:hover>.mat-calendar-body-cell-content,.mat-calendar-body-cell.selected>.mat-calendar-body-cell-content:hover{background-color:#76be28 !important;color:#fff !important}.tooltip-list{white-space:pre;max-width:unset !important}.tooltip-list-dark{white-space:pre;background-color:#283942 !important;color:#fff !important;padding:6px !important}.notify-alert{background-color:rgba(204,74,37,.06);color:#cc4a25;border-radius:4px;min-width:352px}.notify-alert-icon{background-color:#cc4a25;width:32px;height:32px;border-top-left-radius:4px;border-bottom-left-radius:4px;text-align:center;padding-top:4px;display:inline-block;margin-right:4px;color:#fff}.notify-alert-text{font-size:12px}.disa .w-70{width:70% !important}.login-background{background-image:url("/content/images/smartfarm-background.jpg");background-repeat:round}.login-button{background-color:#264554;color:#fff}.mat-card-summary{height:auto !important;width:100%;box-shadow:0 1px 15px 0 rgba(0,0,0,.1);background-color:#fff}.mat-card-summary .block-ui-wrapper{background:#fff}.mat-card-summary .loader{margin:7px auto;font-size:2px;position:relative;text-indent:-9999em;border-top:1.1em solid #264554;border-right:1.1em solid #264554;border-bottom:1.1em solid #264554;border-left:1.1em solid #fff;transform:translateZ(0);animation:load8 1.1s infinite linear}.mat-card-summary .block-ui-spinner>.message{font-size:12px;font-family:Noto Sans;text-align:center;color:#264554}.badge-summary{width:16px;margin-right:4px;height:16px;text-align:center;font-size:10px;border-radius:50%;background-color:#e4e4e4}.header-sub-label .mat-sort-header-button{display:block !important}.mat-crop-var .mat-pseudo-checkbox{display:none !important}.small-line .mat-stepper-horizontal-line{width:5rem;max-width:5rem;margin:0px;padding:0px 1rem;box-sizing:border-box}.overflow-wrap{overflow-wrap:break-word}.overflow-ellipsis{max-width:90%;overflow:hidden;text-overflow:ellipsis}.justify-content-space-evenly{justify-content:space-evenly}.dashboard-mat-menu.mat-menu-panel{max-width:480px !important}.dashboard-mat-menu .mat-menu-item{line-height:20px !important;min-height:85px !important;padding-top:12px !important}.dashboard-mat-menu .mat-menu-content{width:480px !important;padding-top:0px !important;padding-bottom:0px !important}.carousel .carousel-control-next-icon,.carousel .carousel-control-prev-icon{width:1.25rem !important;height:1.25rem !important}.hide-graph{display:none}.h-30{height:30px !important}.mt-btn-icon-height{height:24px !important;line-height:24px !important}.dashboard-location label{padding-left:2.48rem !important;margin-right:2rem !important;opacity:.4}.dash-srch-fld label{padding-left:1rem !important;margin-right:2rem !important;opacity:.4}.dash-srch-fld input{padding-left:1rem !important;margin-right:2rem !important}.dash-udrl-form-field .mat-form-field-appearance-legacy .mat-form-field-underline{opacity:.6}.dashboard-location input{padding-left:2.5rem !important;margin-right:2rem !important}.dashboard-btn-project{border-right:1px solid rgba(38,69,84,.2);height:44px;margin:auto 0px}.dashboard-btn-project .dropdown-btn{padding:4px;margin:4px;cursor:pointer;border-radius:8px;transition:background-color .15s ease}.dashboard-btn-project .dropdown-btn:hover{background-color:rgba(38,69,84,.06)}.bdr-right-grey{border-right:1px solid rgba(38,69,84,.06)}.bdr-right-white{border-right:1px solid #fff}.bdr-left-white{border-left:1px solid #fff}.map-container div{outline:none !important}.mat-card:not([class*=mat-elevation-z]){box-shadow:0 1px 15px 0 rgba(0,0,0,.1)}.mat-progress-bar{height:6px}.border-radius{border-radius:4px}.modalbox-radius-0 .mat-dialog-container{border-radius:0px}.plot-risk-leaflet .border-radius{border-radius:4px}.plot-risk-leaflet .leaflet-control-layers-base{display:flex !important}.plot-risk-leaflet .leaflet-control-layers-base label input[type=radio]{display:none !important}.plot-risk-leaflet .leaflet-control-layers-selector:checked~span{color:#264554;font-weight:600}.plot-risk-leaflet .leaflet-control-layers-expanded{padding:6px 10px 0px 6px;color:rgba(38,69,84,.6);background:#fff;margin-right:50px}.plot-risk-leaflet .leaflet-bottom{bottom:-20px}.plot-risk-leaflet .locate-me{z-index:450;position:absolute;background-color:#fff;right:13px;bottom:9px;width:28px;height:32px;border-radius:2px}.plot-risk-leaflet .floating-map-dates{z-index:450;position:absolute;right:48px;left:48px;bottom:54px;border-radius:2px}.plot-risk-leaflet .floating-map-dots{width:8px;height:8px;opacity:.7;border-radius:8px;background-color:#fff}.plot-risk-graph .graph-hld{min-height:230px;height:auto;border-radius:4px;box-shadow:0 1px 6px 0 rgba(0,0,0,.16);background-color:#fff}.plot-risk-graph .src-button{font-size:12px;color:#fff;border-radius:4px;border:solid 1px #ebedf2;font-weight:500;font-style:normal;font-stretch:normal;line-height:2.67;letter-spacing:normal;background-color:#76be28}.plot-risk-graph .src-button-label{opacity:.6;font-size:12px;font-weight:500;font-style:normal;font-stretch:normal;line-height:1.67;letter-spacing:normal}.plot-risk-graph .src-button mat-icon{font-size:16px !important;line-height:22px !important}.plot-risk-graph .label-holder{width:100%;height:auto;overflow-y:auto;overflow-x:hidden;position:relative;padding-top:20px;padding-bottom:2px;padding-left:4px;padding-right:13px}.plot-risk-graph .label-holder .graph-nav-icon{font-size:18px;width:10px}.plot-risk-graph .left-nav{position:absolute !important;left:8px;bottom:0px}.plot-risk-graph .right-nav{position:absolute !important;bottom:0px;right:5px}.plot-risk-graph .sowing-label{position:absolute;font-size:10px;width:74.9px;text-align:center;height:19.7px;box-shadow:0 1px 6px 0 rgba(0,0,0,.16);background-color:#fff;border-radius:4%;left:4px;top:2px}.primary-color-med{color:rgba(38,69,84,.6)}.primary-color-dark{color:rgba(38,69,84,.8)}.primary-color-light-600{color:rgba(38,69,84,.8);font-weight:600}.ndvi{width:8px;height:8px;display:inline-block;border-radius:50%;margin-right:4px}.ndvi-legends{font-size:10px;font-weight:500;font-stretch:normal;font-style:normal;line-height:1.4;letter-spacing:normal;text-align:left}.sante-fe{background-color:#b17855}.spring-sun{background-color:#efe8c1}.beeswax{background-color:#e5dca5}.mint-julep{background-color:#d3df97}.gossip{background-color:#a7cf76}.chelsea-cucumber{background-color:#78b164;margin-right:7px}.fern-green{background-color:#558e41}.bilbao{background-color:#3a7126}.crusoe{background-color:#224e12}.darkestgreen{background-color:#153908}.mat-tree{background:#fff !important}.text-stroke-shadow-blue{text-shadow:-1px -1px 0 #264554,1px -1px 0 #264554,-1px 1px 0 #264554,1px 1px 0 #264554}.text-stroke-shadow-white{text-shadow:-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff,1px 1px 0 #fff}.border-blue{border:solid 1px #264554}.border-white{border:solid 1px #fff}.dashboard-circle-bg{display:flex;border-radius:50%;background-color:#f5f5f5;height:56px;width:56px}.not-active{pointer-events:none;cursor:default;text-decoration:none;color:#000;font-weight:normal !important}.mat-item-btn-disabled{pointer-events:none;opacity:.25}.pointer-event-block{pointer-events:none}.zoomImg{animation-name:zoom;animation-duration:.6s}.zoom{transform:scale(1.25);transition:transform ease-in-out .3s}.zoomImgOut{animation-name:zoom-out;animation-duration:.6s}@keyframes zoom{from{transform:scale(0.4)}to{transform:scale(1)}}@keyframes zoom-out{from{transform:scale(1)}to{transform:scale(0)}}.imgZoomModel{display:none;padding-top:100px}@media screen and (max-width: 1440px)and (min-width: 1400px){.imgZoomModelOpen{left:402px !important}}.imgZoomModelOpen{display:block;width:72%;height:calc(100vh - 114px);position:absolute;top:57px;background-color:#000;background-color:rgba(0,0,0,.8);z-index:99;overflow:auto;left:384px}.d-block{display:block}.modal-content-img{margin:auto;display:block;max-width:100%}.plotView{z-index:9999;position:absolute;top:0px;width:320px}.h-vh-56{height:calc(100vh - 56px)}.p-330{padding-left:330px !important}.ul-container ul{list-style:none}.ul-container li::before{content:"•";color:#76be28;font-weight:bold;padding-right:10px}.modal-close-button{width:25px !important;height:25px !important;text-align:center;background-color:#bbb}.image-preview-modal .mat-dialog-container{box-shadow:none;background-color:rgba(0,0,0,0);border:none;outline:none;padding-top:5%}.image-preview-modal .mat-dialog-content{height:77vh;max-height:77vh}.image-preview-modal .carousel-indicators li,.image-preview-modal .carousel-indicators button{display:none}.image-preview-modal .carousel-inner{height:calc(100vh - 152px)}.image-preview-modal .carousel-indicators{margin-left:60px !important;color:#fff;opacity:.6;bottom:15px}.img-desc-label{margin:10px 0 0px;opacity:.8;font-family:Noto Sans;font-size:12px;font-weight:normal;font-stretch:normal;font-style:normal;letter-spacing:normal}.img-desc{font-family:Noto Sans;font-size:13px;font-weight:600;font-stretch:normal;font-style:normal;letter-spacing:normal}.border-btm-blue{border-bottom:1px solid rgba(38,69,84,.7)}.royalblue-color{color:#264554}@media(max-width: 575.98px){.pagination-hld{font-size:11px;line-height:4;text-align:left;color:#264554}.pagination-icon-hldr{margin-left:0rem}.nav-main-hld{justify-content:space-around;left:.5%}}.mat-chip.mat-standard-chip{background-color:rgba(38,69,84,.05)}farm-project-monitoring-communication .campaign-mbtn{opacity:.8;font-size:17px}farm-project-monitoring-bulk-communication mat-card,farm-project-monitoring-system-events-communication mat-card,farm-campaign-configuration mat-card,farm-create-notification mat-card{width:auto !important;height:71px !important}farm-project-monitoring-bulk-communication mat-icon,farm-project-monitoring-system-events-communication mat-icon,farm-campaign-configuration mat-icon,farm-create-notification mat-icon{width:16px !important;height:16px !important;margin-top:1px}farm-project-monitoring-bulk-communication .recipient-stats,farm-project-monitoring-system-events-communication .recipient-stats,farm-campaign-configuration .recipient-stats,farm-create-notification .recipient-stats{font-family:Noto Sans;font-size:10px;font-weight:500;font-stretch:normal;font-style:normal;line-height:1.6;letter-spacing:normal}farm-project-monitoring-bulk-communication td.mat-cell,farm-project-monitoring-system-events-communication td.mat-cell,farm-campaign-configuration td.mat-cell,farm-create-notification td.mat-cell{white-space:normal !important}farm-project-monitoring-bulk-communication .sms-txtar,farm-project-monitoring-system-events-communication .sms-txtar,farm-campaign-configuration .sms-txtar,farm-create-notification .sms-txtar{white-space:pre-wrap;min-height:40px}farm-project-monitoring-bulk-communication .insert-variable-left,farm-project-monitoring-system-events-communication .insert-variable-left,farm-campaign-configuration .insert-variable-left,farm-create-notification .insert-variable-left{left:0px}farm-project-monitoring-bulk-communication .insert-variable-right,farm-project-monitoring-system-events-communication .insert-variable-right,farm-campaign-configuration .insert-variable-right,farm-create-notification .insert-variable-right{position:absolute;right:0px}farm-project-monitoring-bulk-communication textarea::-webkit-scrollbar,farm-project-monitoring-system-events-communication textarea::-webkit-scrollbar,farm-campaign-configuration textarea::-webkit-scrollbar,farm-create-notification textarea::-webkit-scrollbar{width:5px}farm-project-monitoring-bulk-communication textarea::-webkit-scrollbar-thumb,farm-project-monitoring-system-events-communication textarea::-webkit-scrollbar-thumb,farm-campaign-configuration textarea::-webkit-scrollbar-thumb,farm-create-notification textarea::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5)}farm-project-monitoring-bulk-communication .plan-type-txtArea,farm-project-monitoring-system-events-communication .plan-type-txtArea,farm-campaign-configuration .plan-type-txtArea,farm-create-notification .plan-type-txtArea{background-color:#fafafa;border-radius:2px;height:104px;border:solid 1px rgba(161,161,161,.2)}farm-project-monitoring-bulk-communication .mat-chip-cmpTyp,farm-project-monitoring-system-events-communication .mat-chip-cmpTyp,farm-campaign-configuration .mat-chip-cmpTyp,farm-create-notification .mat-chip-cmpTyp{color:#fff !important;background-color:rgba(38,69,84,.8) !important}farm-project-monitoring-bulk-communication .mat-chip-green,farm-project-monitoring-system-events-communication .mat-chip-green,farm-campaign-configuration .mat-chip-green,farm-create-notification .mat-chip-green{color:#fff !important;background-color:#76be28 !important}farm-project-monitoring-bulk-communication .plan-typ-tri,farm-project-monitoring-system-events-communication .plan-typ-tri,farm-campaign-configuration .plan-typ-tri,farm-create-notification .plan-typ-tri{overflow-x:scroll !important;overflow-y:hidden !important;position:relative;bottom:-16px}farm-project-monitoring-bulk-communication .plan-typ-tri::-webkit-scrollbar,farm-project-monitoring-system-events-communication .plan-typ-tri::-webkit-scrollbar,farm-campaign-configuration .plan-typ-tri::-webkit-scrollbar,farm-create-notification .plan-typ-tri::-webkit-scrollbar{height:5px}farm-project-monitoring-bulk-communication .plan-typ-tri::-webkit-scrollbar-thumb,farm-project-monitoring-system-events-communication .plan-typ-tri::-webkit-scrollbar-thumb,farm-campaign-configuration .plan-typ-tri::-webkit-scrollbar-thumb,farm-create-notification .plan-typ-tri::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5)}farm-project-monitoring-bulk-communication .farm-comm-mat-tab .mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination,farm-project-monitoring-system-events-communication .farm-comm-mat-tab .mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination,farm-campaign-configuration .farm-comm-mat-tab .mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination,farm-create-notification .farm-comm-mat-tab .mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination{display:none !important}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-form-field-wrapper{margin:0;padding-bottom:0}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-form-field-flex{min-height:28px;align-items:center;padding:0 8px !important}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-form-field-infix{border-top:0;padding:4px 0;width:100%}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-form-field-outline-start{border-radius:8px 0 0 8px !important}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-form-field-outline-end{border-radius:0 8px 8px 0 !important}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select{width:100%}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select.mat-select-disabled .mat-select-trigger,farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select.mat-select-disabled .mat-select-value,farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select.mat-select-disabled .dt-trigger-label,farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select.mat-select-disabled .dt-trigger-arrow{cursor:not-allowed}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select-trigger{display:flex;align-items:center}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select-value{flex:1;overflow:visible;max-width:none}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select-value-text{font-size:12px;display:flex;align-items:center}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select-value-text>span{display:flex;align-items:center;width:100%}farm-new-common-table .sustainability-table-wrapper .dt-form-field .mat-select-arrow-wrapper{display:none}farm-new-common-table .sustainability-table-wrapper .dt-form-field .dt-trigger-label{font-size:12px;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}farm-new-common-table .sustainability-table-wrapper .dt-form-field .dt-trigger-arrow{font-size:18px;width:18px;height:18px;line-height:18px;margin-left:2px;color:inherit;vertical-align:middle}farm-new-common-table .sustainability-table-wrapper .dt-form-field-plain .mat-form-field-outline-start,farm-new-common-table .sustainability-table-wrapper .dt-form-field-plain .mat-form-field-outline-gap,farm-new-common-table .sustainability-table-wrapper .dt-form-field-plain .mat-form-field-outline-end{border-color:#8aa1b2 !important;background:#fff}farm-new-common-table .sustainability-table-wrapper .dt-form-field-plain .mat-select-value-text,farm-new-common-table .sustainability-table-wrapper .dt-form-field-plain .mat-select-placeholder{color:#264554;font-size:12px !important}farm-new-common-table .sustainability-table-wrapper .dt-form-field-plain .mat-select-arrow{color:#6b7280}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill .mat-form-field-outline-start,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill .mat-form-field-outline-gap,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill .mat-form-field-outline-end{border-color:#2e700f !important;background-color:#effce9}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill .mat-select-value-text,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill .mat-select-placeholder{color:#2e700f}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill .mat-select-arrow{color:#2e700f !important}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-closed .mat-form-field-outline-start,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-closed .mat-form-field-outline-gap,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-closed .mat-form-field-outline-end{border-color:#9ca3af !important;background-color:#f3f4f6}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-closed .mat-select-value-text,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-closed .mat-select-placeholder{color:#6b7280}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-closed .mat-select-arrow{color:#9ca3af !important}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-default .mat-form-field-outline-start,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-default .mat-form-field-outline-gap,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-default .mat-form-field-outline-end{border-color:#d1d5db !important;background-color:#fff}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-default .mat-select-value-text,farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-default .mat-select-placeholder{color:#264554}farm-new-common-table .sustainability-table-wrapper .dt-form-field-pill.dt-pill-default .mat-select-arrow{color:#6b7280 !important}.dt-dropdown-panel,.dt-dropdown-panel-pill{margin-top:4px;border-radius:8px !important}.dt-dropdown-panel .mat-option,.dt-dropdown-panel-pill .mat-option{font-size:12px;min-height:34px;line-height:34px;color:#264554}.dt-dropdown-panel .mat-option:hover:not(.mat-option-disabled),.dt-dropdown-panel .mat-option.mat-active,.dt-dropdown-panel-pill .mat-option:hover:not(.mat-option-disabled),.dt-dropdown-panel-pill .mat-option.mat-active{background-color:rgba(46,112,15,.06)}.dt-dropdown-panel .mat-option.mat-selected:not(.mat-option-disabled),.dt-dropdown-panel-pill .mat-option.mat-selected:not(.mat-option-disabled){color:#264554;font-weight:500}.dt-dropdown-panel-assigned-to{min-width:120px !important;max-width:280px}.dt-dropdown-panel-assigned-to .mat-option{overflow:hidden}.dt-dropdown-panel-assigned-to .mat-option .mat-option-text{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}farm-new-common-table .assigned-to-class .mat-select-value,farm-new-common-table .assigned-to-class .mat-select-value-text,farm-new-common-table .assigned-to-class .mat-select-value-text>span{width:100%;min-width:0;max-width:100%;overflow:hidden}farm-new-common-table .assigned-to-class .mat-select-trigger{overflow:hidden}farm-new-common-table .assigned-to-trigger{display:flex !important;align-items:center;width:100%;min-width:0;flex-wrap:nowrap;white-space:nowrap}farm-new-common-table .assigned-to-trigger .dt-trigger-label{display:block;flex:1 1 0;min-width:0;max-width:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}farm-new-common-table .assigned-to-trigger .dt-trigger-arrow{display:block;flex:0 0 18px;width:18px;height:18px;margin-left:4px}.dt-dropdown-panel-pill .mat-option.mat-selected:not(.mat-option-disabled){color:#2e700f;font-weight:600}.comm-drop-down-style>.mat-option-text{display:flex !important;justify-content:space-between !important}.comm-std-attri .mat-ink-bar{width:129px !important}.comm-std-attri .mat-tab-label{height:48px;padding:0 0px !important;cursor:pointer;box-sizing:border-box;opacity:.6;min-width:125px !important;text-align:center;display:inline-flex;justify-content:center;align-items:center;white-space:nowrap;position:relative}.comm-std-attri .mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination{display:none}.comm-std-attri .mat-tree{background:#fff !important;cursor:pointer}.comm-std-attri .example-tree-invisible{display:none}.comm-std-attri .example-tree ul,.comm-std-attri .example-tree li{margin-top:0;margin-bottom:0;list-style-type:none}.comm-std-attri .mat-tree-sec{margin-top:1px;height:280px;overflow-y:auto}.comm-std-attri .mat-tree-sec::-webkit-scrollbar{width:5px}.comm-std-attri .mat-tree-sec::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5)}.bg-radio-group .mat-optgroup-label{background-color:#fafafa !important;margin-top:6px !important}.bg-green{background-color:#76be28}.head-text-styling{font-weight:500;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.subHead-text-styling{font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.6;letter-spacing:normal}.delete-mat-icon:hover{color:#cc4a25;background-color:#f6f6f6}.round-btn-icon:hover{color:#76be28;background-color:#f6f6f6}.plan-list-kebab-btn{position:absolute !important;right:-17px;top:3px}.list-pop-chkbox .mat-pseudo-checkbox{position:absolute !important;top:4px !important;right:9px !important}.list-pop-chkbox{outline:none !important}.txt-style{font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.43;letter-spacing:normal}.disabled-del-btn{background-color:rgba(204,74,37,.12) !important}.divider-btn{border-right:1px solid #378d05}.icon_header.mat-menu-panel{min-height:32px !important}.save-clone-btn.mat-menu-panel{margin-top:2px;min-height:40px !important}.save-clone-btn .mat-menu-item{line-height:26px !important;height:30px !important}.cursor-not-allowed{cursor:not-allowed !important}.box-shadow-brd{box-shadow:0 .5px 0 0 rgba(0,0,0,.14),0 -0.5px 0 0 rgba(0,0,0,.14) !important}.border-btm{border-bottom:.2px solid rgba(0,0,0,.06)}.pull-plan-sec .mat-stepper-horizontal-line{flex:none !important;min-width:80px !important}.pull-plan-sec .row-offwhite{background-color:#fafafa}.pull-plan-sec .mat-tree{background:#fff !important}.pull-plan-sec .example-tree-invisible{display:none}.pull-plan-sec .example-tree ul,.pull-plan-sec .example-tree li{margin-top:0;margin-bottom:0;list-style-type:none}.pull-plan-sec .mat-horizontal-content-container{padding:24px 0px 0px 0px !important}.pull-plan-sec .lft-sub-heading{opacity:.8;font-weight:600;font-stretch:normal;font-style:normal;line-height:1.6;letter-spacing:.2px}.pull-plan-sec .mat-tree-sec{margin-top:1px;height:280px;overflow-y:auto}.pull-plan-sec .mat-tree-sec::-webkit-scrollbar{width:5px}.pull-plan-sec .mat-tree-sec::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5)}.pull-plan-sec .stepper-sub-heading{height:56px}.pull-plan-sec .stepper-sub-heading label .mat-select-panel{overflow:auto !important}.pull-plan-sec .stepper-sub-heading label .mat-select-panel::-webkit-scrollbar{width:5px !important}.pull-plan-sec .stepper-sub-heading label .mat-select-panel::-webkit-scrollbar-thumb{border-radius:10px !important;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5) !important}.pull-plan-sec .stepper-sub-heading label .stepper-sub-heading{height:56px}.pull-plan-sec .stepper-sub-heading label .stepper-sub-heading label{font-family:Noto Sans;font-size:12px;font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.33;letter-spacing:normal}.pull-plan-sec .stepper-sub-heading label .stepper-sub-heading .row-offwhite{background-color:#fafafa}.pull-plan-sec .stepper-sub-heading label .stepper-sub-heading img{width:20px}.mat-datepicker-content .time-container table{margin-bottom:0px;margin-left:0px !important}.mat-datepicker-content .time-container table th,.mat-datepicker-content .time-container table td{padding:0px !important;vertical-align:inherit !important;border:none !important}.mat-datepicker-content .actions button{background-color:#76be28 !important;color:#fff !important}.filter-btn-border{border-right:1px solid #d3d3d3}.padding-top-2{padding-top:2px}.padding-top-10{padding-top:10px}.padding-top-8{padding-top:8px}.pt-7{padding-top:.7rem}.p-0{padding:0 !important}.pt-0{padding:0 !important}.select-all{font-family:Noto Sans;font-size:12px;font-weight:600;font-stretch:normal;font-style:normal;letter-spacing:normal;color:#76be28;cursor:pointer}.assets-selected{font-family:NotoSans;font-size:12px;font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.33;letter-spacing:normal;color:var(--royal-blue-med)}.assets-selected .text-style-1{font-weight:600;color:var(--royal-blue-light)}.blocks{display:inline-block;width:100%}.wrap{width:110px}.mat-calendar-body-disabled{cursor:not-allowed !important;color:#264554 !important;opacity:.4}.pad-right-10{padding-right:10px}.bulk-download-icon{border-radius:50% !important;text-align:center}.crop-info{position:absolute;padding-left:30px;padding-top:2px;top:5px;right:10px}.dash-sidecard-ht{height:calc(100vh - 173px)}.overflow-hidden{overflow:hidden}.position-bottom{position:absolute;bottom:0px}.image-overlay-container:hover .image-overlay{opacity:1}.image-overlay-container:hover .image-overlay-button{display:flex}.image-overlay{position:absolute;width:120px;height:80px;margin-top:9px;top:0;border:solid .5px rgba(38,69,84,.4);background-color:#d3d9dc;transition:opacity .35s ease;opacity:0;overflow:hidden;text-overflow:ellipsis;font-size:10px;font-weight:600;z-index:999}.image-overlay-button{position:absolute;text-align:center;align-items:center;justify-content:center;width:120px;height:80px;margin-top:9px;top:0;transition:display .35s ease;display:none;z-index:999}.upload-certification-logo-delete{position:absolute;right:8px;cursor:pointer;top:-11px}.pol-tooltip{max-width:250px !important;white-space:pre-wrap}.ful-screen{flex-basis:100%}.leaflet-horizontalcenter{position:absolute;bottom:11px;left:8%;right:70%;z-index:1000}.leaflet-verticalcenter{position:absolute;z-index:1000;pointer-events:none;top:70%;transform:translateY(-50%);padding-top:10px}.leaflet-verticalcenterfull{justify-content:space-between;height:89px;position:absolute;z-index:1000;pointer-events:none;top:83%;transform:translateY(-50%);padding-top:10px}@media screen and (max-height: 1081px){.leaflet-verticalcenterfull{justify-content:space-between;height:89px;position:absolute;z-index:1000;pointer-events:none;top:77%;transform:translateY(-50%);padding-top:10px}}.leaflet-verticalcenter .leaflet-control{margin-bottom:10px}.leaflet-verticalcenterfull .leaflet-control{margin-bottom:10px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url("/content/images/layers.png") !important;background-size:38px 38px}.leaflet-touch .leaflet-control-layers-toggle{width:35px;height:35px}.leaflet-icon-div{width:30px;height:30px;border-radius:2px;margin-bottom:2px}.leaflet-custom-icon-div{width:30px;height:30px;border-radius:2px}.leaflet-top.mat-raised-button{line-height:27px}.leaflet-infotype .mat-menu-item{line-height:35px;height:35px}.bg-smartrisk{height:100%;width:100%;position:relative;background-repeat:no-repeat;background-size:cover;display:flex;align-items:center;justify-content:center;flex-direction:column}.tooltip-light-bg{padding:12px;white-space:pre-line;border-radius:4px;box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 2px 1px -1px rgba(0,0,0,.12),0 1px 1px 0 var(--black-14);background-color:#fafafa;color:#264554 !important;font-weight:600;font-size:12px}.on-map-toggle.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:32px;padding:0 12px}.long-toggle.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:32px;padding:0 22px;font-size:12px;min-width:153px}.leaflet-bar a{width:36px;height:33px}.mat-tooltip.timeline-tooltip{width:14rem;background-color:rgba(0,0,0,.75);font-weight:normal;font-stretch:normal;font-style:normal;max-width:unset !important;white-space:normal;word-break:break-word}.wrap-table-text{max-width:100%;overflow:hidden;text-overflow:ellipsis}.wrap-table-icon{padding-top:3px;margin-left:4px}.save-clone-position{top:20px}.colr-g:hover svg path:last-of-type{fill:#76be28}.cdk-global-scrollblock{overflow:auto}.pagination-count-farm{width:5.75rem;display:inline-block}.ud-hover:hover{text-decoration:underline !important;cursor:pointer !important}button.round-button-dashboard{min-width:.714rem !important;border-radius:1.3rem !important;width:24px !important;height:24px !important;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal;text-align:center}.project__info__hover{font-size:14px;margin:2px 0 0px 6px}.img-disable{opacity:.5;cursor:not-allowed !important;pointer-events:none !important}.error-msg-overflow{white-space:normal;word-break:break-all}.timeline-container{min-height:42px;border-radius:4.2px;background-color:#e9ecee;padding:3px;font-size:12px;align-items:center}.timeline-date{cursor:pointer;padding:2px}.timeline-date-selected{box-shadow:0px 3px 0px rgba(38,69,84,.4)}.cursor-disabled{cursor:not-allowed;opacity:.5}.bt-tooltip .tooltip-inner{font-size:12px;background-color:#264554;opacity:1 !important;padding:16px;color:#fff}.bt-tooltip .tooltip-arrow{display:none}.file_upload_message{width:432px;height:126px;padding:32px;border-radius:3px;border:solid 1px rgba(0,0,0,.9);background-color:rgba(38,69,84,.04);border-style:dashed;text-align:center}.alertAttachments .mat-expansion-panel-body{margin-left:2px}.operatorToggle .mat-slide-toggle-bar{height:12px;width:22px}.operatorToggle .mat-slide-toggle-thumb{height:14px;width:14px;margin-top:2px;margin-left:-1px}.operatorToggle .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{margin-left:-6px}.panel-body-p-0 .mat-expansion-panel-content .mat-expansion-panel-body{padding:0}.advisory-table.mat-table tbody,.advisory-table.mat-table tfoot{background-color:rgba(38,69,84,.05)}.advisory-table.mat-table tbody:before{content:"%";display:block;line-height:10px;text-indent:-99999px;background-color:#fff}.advisory-table.mat-table tfoot:before{content:"%";display:block;line-height:24px;text-indent:-99999px;background-color:#fff}.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{z-index:1}.crop_header.mat-menu-panel{min-width:144px !important;max-width:500px !important;max-height:325px !important;min-height:100px !important}.alignClosePlot.mat-menu-panel{min-width:104px !important;max-width:500px !important;max-height:325px !important;min-height:50px !important}.crop-dropdown-menu.mat-menu-panel{min-width:calc(100% + 4px);max-width:calc(100% + 4px);max-height:-moz-max-content;max-height:max-content;min-height:100px;overflow-y:hidden !important}.crop-dropdown-menu.mat-menu-panel .mat-menu-content,.crop-dropdown-menu.mat-menu-panel .mat-menu-content:not(:empty){padding:0 !important}.crop-dropdown-menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}.crop-dropdown-menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar{width:10px;background-color:#f5f5f5}.crop-dropdown-menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar-thumb{border-radius:10px;background-color:#000;border:2px solid #555}.crop-dropdown-menu.mat-menu-panel .mat-card-content .search_input{border-bottom:1px solid #d7d8d9;height:32px}.dews_createedit .dews_box_shadow{box-shadow:0 .5px 0 0 rgba(0,0,0,.1)}.dews_createedit .dews_label{margin:0;width:100%;opacity:.8;font-weight:bold;font-size:16px;line-height:1.25;letter-spacing:normal;padding:24px 0px 11px 0px;background-color:#fff}.dews_createedit .dews_label.dews_label_withSub{opacity:1;font-size:14px;padding:14px 0px;box-shadow:none}.dews_createedit .dews_sub_label{font-size:14px;padding:.5rem}.my-auto{margin:auto 0}.m-auto{margin:auto}.px-24{padding:24px 0}.font-14{font-size:14px}.farm-tab-container.disease_tabs mat-tab-header{border:none;margin:24px 0px !important}.farm-tab-container.disease_tabs mat-tab-header .mat-tab-header-pagination{display:none !important}.farm-tab-container.weather_tabs mat-tab-header{width:100% !important}.farm-tab-container.weather_tabs .mat-tab-label{width:50% !important}.farm-tab-container.disease_warning_cards .mat-tab-label{width:14vw !important;height:6vh !important}.farm-tab-container.disease_warning_cards .mat-tab-label-content{text-transform:none !important}.farm-tab-container.disease_warning_cards .mat-tab-label-active{font-weight:600 !important}.farm-tab-container.disease_warning_cards .mat-tab-labels{height:10vh}.farm-tab-container.disease_warning_cards .mat-tab-label::after{height:6.5vh !important}.farm-tab-container.disease_warning_cards .mat-tab-header{height:6.5vh !important;border:solid 1.1px rgba(38,69,84,.0980392157);background-color:#fff;box-shadow:none}.farm-tab-container.disease_warning_cards .mat-ink-bar{width:14vw !important}.farm-tab-container.disease_warning_cards .mat-tab-body.mat-tab-body-active{overflow-y:hidden !important}.farm-tab-container.dos-crop-edit-tabs mat-tab-header{width:100% !important}.farm-tab-container.dos-crop-edit-tabs .mat-tab-label{width:50% !important}.farm-tab-container.regional-tabs .mat-tab-label-content{text-transform:none !important}.farm-tab-container.regional-tabs .mat-tab-label.mat-tab-disabled{cursor:not-allowed;opacity:.5 !important}.communication_tabs mat-tab-header{width:-moz-fit-content !important;width:fit-content !important;max-width:100%;display:inline-flex;border-radius:4px;box-shadow:0 0px 3px 0 rgba(0,0,0,.15);border:solid 1px rgba(0,0,0,.02)}.communication_tabs mat-tab-header .mat-tab-header-pagination{display:none}.communication_tabs .mat-tab-container{display:inline-flex}.communication_tabs .mat-tab-label{height:32px;min-width:-moz-max-content;min-width:max-content;opacity:.9;position:relative}.communication_tabs .mat-tab-label-active{color:#264554;font-weight:600}.communication_tabs .mat-tab-label-content{font-size:12px;text-transform:uppercase}.communication_tabs .mat-tab-label::after{content:"";position:absolute;right:0;z-index:100;width:1px;height:31px;opacity:.15;background:#555}.pt-12{padding-top:12px}.dews_time_picker_menu.mat-menu-panel{width:190px;height:114px;padding:0px 30px;flex-grow:0;margin:.6px 0 0;box-shadow:0 5px 5px 0 rgba(0,0,0,.2),0 3px 14px 0 rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.14);background-color:#fff}.dews_time_picker_menu.mat-menu-panel .mat-menu-content,.dews_time_picker_menu.mat-menu-panel .mat-menu-content:not(:empty){padding:0 !important}.dews_time_picker_menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}.dews_time_picker_menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar{width:10px;background-color:#f5f5f5}.dews_time_picker_menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar-thumb{border-radius:10px;background-color:#000;border:2px solid #555}.dews_time_picker_menu.mat-menu-panel .mat-card-content .search_input{border-bottom:1px solid #d7d8d9;height:32px}.dews_time_picker_menu.mat-menu-panel .btn-link{padding:6px;color:#76be28}.dews_time_picker_menu.mat-menu-panel .btn-outline-primary{border-radius:48px;padding:14px;color:#76be28}.dews_time_picker_menu.mat-menu-panel .btn-outline-primary:hover{color:#fff;background:#76be28}.dews_details_form .mat-form-field-appearance-legacy .mat-hint.mat-error{color:#cc4a25}.dews_details_form .mat-form-field-appearance-legacy .mat-hint.mat-success{color:#76be28}.subheading-dropdown.mat-menu-panel .mat-menu-content,.subheading-dropdown.mat-menu-panel .mat-menu-content:not(:empty){padding:0px !important}.selection-size-restricted-dropdown.mat-menu-panel{min-width:200px;max-width:-moz-fit-content !important;max-width:fit-content !important}.selection-size-restricted-dropdown.mat-menu-panel .mat-menu-content,.selection-size-restricted-dropdown.mat-menu-panel .mat-menu-content:not(:empty){padding:0px 7px 2px 11px !important}.selection-size-restricted-dropdown.mat-menu-panel{overflow-y:hidden}.weather-card{padding:4px 15px;display:flex;justify-content:space-between;border-radius:4px;background-image:linear-gradient(to right, #567db7 4%, #c3e6ff 100%, #c3e6ff 100%)}.week-day{cursor:pointer;padding-top:9px;padding-bottom:10px;display:flex;flex-direction:column;justify-content:space-around;width:69px;height:94px;flex-grow:0;border-radius:4px;background-color:#f0f0f0}.week-day-sm{cursor:pointer;padding-top:9px;padding-bottom:10px;display:flex;flex-direction:column;justify-content:space-around;width:44px;height:78px;flex-grow:0;border-radius:4px;background-color:#f0f0f0}#boundary-map{height:100%}.aa-modal mat-dialog-container{padding:0;position:relative}.aa-modal .title{background-color:#fafafa;padding:11px 25px;height:40px;margin:0}.aa-modal .mat-dialog-actions{background-color:#fff;bottom:0px;width:100%;height:60px;padding:0px;position:absolute;display:flex;margin-bottom:0px}.aa-modal .mat-dialog-actions div{flex:1;display:flex;justify-content:center;height:100%;align-items:center;cursor:pointer}.aa-modal .mat-dialog-actions div:hover{color:#76be28;background-color:rgba(118,190,40,.08)}.aa-modal .mat-dialog-actions :nth-of-type(1){border-right:solid 1px #ededed}.leaflet-vertex-icon{border-radius:50%;width:16px !important;height:16px !important;margin:-8px 0 0 -8px !important;border:solid 1.5px #76be28 !important}.leaflet-middle-icon{border-radius:50%;width:12px !important;height:12px !important;opacity:.5 !important;margin:-6px 0 0 -6px !important;border:solid 1.5px #76be28 !important}.leaflet-editing-icon{border-radius:50%;border:none !important}.delt-box{display:flex;align-items:center;color:#cc4a25;font-size:12px;font-weight:600;width:90px;height:24px;justify-content:center;cursor:pointer}.delt-box img{width:16px;height:16px;margin-right:5px}.vt-box{flex-direction:column;width:107.2px;height:91.9px;background:#090808;color:#fff;justify-content:flex-start;align-items:flex-start;padding:5px}.span-box{flex-grow:1;align-items:center;display:flex;width:100%}.leaflet-draw-tooltip{background-color:#264554 !important;border:.5px solid #fff !important;box-shadow:rgba(0,0,0,.5) 0px 1px 6px 0px !important;font-size:12px !important;font-weight:500 !important}.leaflet-draw-tooltip::before{border:none !important}.leaflet-draw-tooltip-subtext{color:#fff !important}.leaflet-mouse-marker{cursor:url("/assets/target.png")}.out-layer{background-color:#fff;border-radius:5px;border:1px solid rgba(0,0,0,.2);display:flex;cursor:pointer;flex-direction:column}.out-layer img{padding:10px 10px;cursor:pointer;max-height:55px;width:100%;display:flex;align-self:center}.nearby-layer{background-color:#fff;border-radius:5px;border:1px solid rgba(0,0,0,.2);display:flex;flex-direction:column}.nearby-layer img{padding:10px 10px;max-height:55px;width:100%;display:flex;align-self:center}.s-box{z-index:1234;position:absolute !important;background:rgba(250,250,250,.9803921569) !important;top:86px;right:100px;width:265px !important;display:flex;padding:0px 10px;margin-bottom:-8px;justify-self:center;height:36px !important;border-radius:5px;flex-direction:column}.s-box .mat-form-field-wrapper{padding:0;margin:0 !important;height:100%}.s-box .mat-form-field-infix{width:100%;border-top:none !important;height:100%;position:absolute;left:36px}.s-box .mat-icon{left:0 !important}.s-box .mat-form-field-flex{height:100%;align-items:center}.avatar-num{width:20px;height:20px;display:inline-flex;border:solid;align-items:center;border-radius:50%;justify-items:center;justify-content:center;font-weight:bold}.o-box{background-color:#fff;width:-moz-max-content;width:max-content;display:flex;flex-grow:1;flex-direction:column;border-radius:4px}.ct-box{display:flex;justify-content:space-between;padding:0px 10px;height:50px;align-items:flex-end;border-top-left-radius:4px;border-top-right-radius:4px}.ct-box>input,.ct-box>select{margin:0px 3px;border:none;border-bottom:solid 1px rgba(38,69,84,.6);outline:none;width:65px;padding:0px;border-radius:0px}.ct-box>input{width:60px}.ct-box>input:invalid::after{content:"radius not valid";color:red;display:block}.b-box{background-color:#fafafa;height:60px;display:flex;justify-content:flex-end;align-items:center;padding:0px 10px;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.b-box>button{height:36px;background-color:#76be28;border:none;color:#fff;border-radius:4px;padding:9px 16px 9px 14px;box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 2px 1px -1px rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.14)}.leaflet-popup-content{width:auto !important;margin:0 !important}.leaflet-popup-content-wrapper{padding:0px !important;text-align:unset !important;border-radius:4px !important;box-shadow:none !important;color:unset !important}.tooltip-inner{margin:0 0 0 4px !important;padding:1px 16px 3px !important;border-radius:4px !important;box-shadow:0 1px 6px 0 rgba(0,0,0,.5);background-color:#264554 !important}.tooltip{z-index:123456 !important;opacity:1 !important}.tooltip .arrow::before{border:none !important}.leaflet-popup-tip-container{display:none !important}.area_audit_menu.mat-menu-panel{min-height:auto}.area_audit_menu .mat-menu-content:not(:empty){padding:0px}.area_audit_menu .mat-menu-item{margin:0px}.mat-progress-bar{height:20px !important;border-radius:4px}.split-icon{display:flex !important;justify-content:center;align-items:center;border-radius:50%;color:#4c6572;border:solid 2px #4c6672;background-color:#e9eced;font-weight:600;font-size:18px}.project-history-dropdown .mat-form-field-underline{display:none}.project-history-dropdown .arrow_down_icon{position:absolute;top:5px}.project-history-menu.crop-dropdown-menu.mat-menu-panel{max-height:525px}.firstchild-header .mat-list-item-content,.lastchild-footer .mat-list-item-content{padding-left:10px !important}.display-none{display:none !important}.grouped-list-item .mat-list-item-content{padding-left:11px !important}#buttonFilter{line-height:2}.btn_focussed{background-color:#d3d3d3}.st-header{z-index:999;position:absolute;right:50%;transform:translate(50%, 0%);padding:6px 12px;border-radius:4px}.progress-status{background-color:#e9ecee;color:rgba(38,69,84,.8)}.spin-loader-snackbar{display:inline-block;width:34px;height:20px;position:absolute;top:1.19rem}.err-warn{background-color:#ffe3e3;color:#cc4a25}.partial-success{color:#f68d23;background-color:#fff1e4}.mat-snack-bar-container{margin-top:auto !important}.margin-l-n6{margin-left:-6px}.snackbar-css-sticky-header-success{position:relative;z-index:1;color:#fff;background-color:#76be28}.snackbar-css-sticky-header-error{position:relative;z-index:1;color:#fff;background-color:#cc4a25;white-space:pre-wrap}.selected-section{display:flex;align-items:center;justify-content:space-between}.remove-all-button{border:none;background-color:inherit}.mw-37{max-width:37% !important}.time_picker_menu.mat-menu-panel{width:190px;height:114px;padding:0px 30px;flex-grow:0;margin:.6px 0 0;box-shadow:0 5px 5px 0 rgba(0,0,0,.2),0 3px 14px 0 rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.14);background-color:#fff}.time_picker_menu.mat-menu-panel .mat-menu-content,.time_picker_menu.mat-menu-panel .mat-menu-content:not(:empty){padding:0 !important}.time_picker_menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}.time_picker_menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar{width:10px;background-color:#f5f5f5}.time_picker_menu.mat-menu-panel .mat-menu-panel::-webkit-scrollbar-thumb{border-radius:10px;background-color:#000;border:2px solid #555}.time_picker_menu.mat-menu-panel .mat-card-content .search_input{border-bottom:1px solid #d7d8d9;height:32px}.time_picker_menu.mat-menu-panel .btn-link{padding:6px;color:#76be28}.time_picker_menu.mat-menu-panel .btn-outline-primary{border-radius:48px;padding:14px;color:#76be28}.time_picker_menu.mat-menu-panel .btn-outline-primary:hover{color:#fff;background:#76be28}.advisoryDetailsForm .mat-form-field-appearance-legacy .mat-hint.mat-error{color:#cc4a25}.advisoryNGB .ngb-tp-input-container.ngb-tp-minute{pointer-events:none;cursor:not-allowed}.tooltip-preLine{white-space:pre-line}.justify_center{height:400px;justify-content:center}.bt-tooltip-list .tooltip-inner{font-size:9px;background-color:#264554;opacity:1 !important;text-align:left;color:#d9d6d6}.bt-tooltip-list .tooltip-arrow{display:none}.leaflet-container.crosshair-cursor-enabled,.leaflet-mouse-marker{cursor:crosshair !important}.subnote{font-size:13px;color:rgba(0,0,0,.6)}.under-line{text-decoration:underline}.btn-toggle-grp{background-color:#fff}.btn-toggle{border:none;min-width:36px;font-size:16px;line-height:28px;padding:0px 12px}.satelliteTypeControl{border-bottom-right-radius:2px;border-top-right-radius:2px;font-weight:600}.maptypeControl{border-bottom-left-radius:2px;border-top-left-radius:2px}.custom-tooltip-cloud{color:rgba(255,255,255,.8784313725) !important;font-size:14px !important;text-align:left !important;width:60% !important;border-radius:4px !important;background-color:#264554 !important;font-weight:lighter !important}.custom-tooltip-cloud-partial{color:rgba(255,255,255,.8784313725) !important;font-size:14px !important;text-align:left !important;border-radius:4px !important;background-color:#264554 !important;font-weight:lighter !important;white-space:pre-line}.cloud-date-wrapper{display:flex;flex-direction:column;flex-grow:1;text-align:center;cursor:pointer;min-height:34px;justify-content:center}.cloud-cursor-disabled{cursor:not-allowed;opacity:.5}.cloud-top-space{top:6px}.cloud-bottom-space{bottom:2px}.crop-mat-tree-table-checkbox.mat-checkbox .mat-checkbox-layout{margin:0 10px !important}.main-crop-mat-tree-table .loading_bg{background-color:#fff !important;padding-top:10px}.leaflet-left{z-index:1020 !important;width:-moz-fit-content !important;width:fit-content !important}.search_icon_button{width:40px}.search_icon{font-size:24px}head .popupBackdropClass{opacity:0;cursor:pointer}.custom-modalbox-notification .mat-dialog-container{overflow:hidden;padding:12px 0px !important}.custom-modalbox-notification .mat-dialog-content{min-height:138px;padding:0px;max-height:90vh !important}.form-head{border-bottom:2px solid #f2f2f2;padding:4px 0px;margin-bottom:7px}.label-mat{padding:0 24px 6px 34px !important}.label-checkbox{font-size:14px;line-height:1.43;letter-spacing:-0.03px;color:#264554}.l-title{font-size:12px;color:#264554;font-weight:500}.l-text{font-size:14px;color:#000}.shimmer{position:relative}.shimmer::after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background-image:linear-gradient(-45deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);background-size:200% 100%;animation:shimmerAnimation 2s infinite}.shimmer-border::after{border-radius:4px}.shimmer-big-border::after{border-radius:8px}@keyframes shimmerAnimation{0%{background-position:100% 0}100%{background-position:-100% 0}}.shimmerParent>div{margin:6px 0}.shimmerParent:first-of-type>div{margin:0}.shimmerParent:last-of-type>div{margin:6px 0}.dashboard-accordion .mat-expansion-panel-body{padding:0 10px 10px}.dashboard-accordion .poweredBy{color:#000;font-weight:300}.weather-carousel-css{cursor:auto}.weather-carousel-css .card-image{width:24px}.weather-carousel-css .carousel-control-prev,.weather-carousel-css .carousel-control-next{background:rgba(0,0,0,0);color:#d8d8d8;width:30px !important;height:30px !important;margin:4px 30px;top:250px;cursor:pointer}.weather-carousel-css .carousel-indicators li,.weather-carousel-css .carousel-indicators button{box-sizing:content-box;width:4px;height:4px;border-radius:50%;background-color:#cfcfcf;background-clip:border-box;border-top:0 solid rgba(0,0,0,0);border-bottom:0px solid rgba(0,0,0,0)}.weather-carousel-css .carousel-indicators{margin-left:0px !important;top:266px !important;margin-right:0px !important}.weather-carousel-css .carousel-indicators .active{background-color:#264554 !important}.weather-carousel-css .carousel-control-next-icon{background-image:url("/content/images/chevron-right.svg") !important}.weather-carousel-css .carousel-control-prev-icon{background-image:url("/content/images/chevron-left.svg") !important}.dashboard-card .mat-card{height:auto;margin:7px 0;padding:0;min-width:calc(100% - 2px);box-shadow:none;border-radius:5px 4px 4px 5px;background-color:#fff;border:1px solid}.dashboard-card .mat-card-content{padding:0;margin-bottom:0}.dashboard-card.card-failed{cursor:not-allowed !important}.dashboard-card.card-failed .carousel{cursor:not-allowed !important}.dashboard-card.card-failed .carousel-css .carousel-indicators{display:none}.dashboard-card .carousel-css .carousel-indicators{margin-bottom:0}.dashboard-card .carousel-css .carousel-indicators li{box-sizing:content-box;width:4px;height:4px;border-radius:50%;background-color:#cfcfcf;background-clip:border-box;border-top:0 solid rgba(0,0,0,0);border-bottom:0px solid rgba(0,0,0,0)}.dashboard-card .carousel-css .carousel-indicators .active{background-color:#264554 !important}.dashboard-card .carousel-css .carousel-item.active{display:block !important}.dashboard-card .carousel-control-prev,.dashboard-card .carousel-control-next{display:none;background:rgba(0,0,0,0);color:#d8d8d8;width:19px}.margin-top-neg-16{margin-top:-16px}.field-card-highlight{box-shadow:0 0 4px 0 #264554 !important;background-color:rgba(38,69,84,.0509803922) !important}.dashboard-card.INSIGHTS .mat-card{box-shadow:0 0 4px 0 rgba(106,108,220,.5);background-color:rgba(106,108,220,.05)}.dashboard-card.YIELD .mat-card{box-shadow:0 0 4px 0 rgba(87,133,222,.5019607843);background-color:rgba(87,133,222,.05)}.dashboard-card.ADVISORY .mat-card{box-shadow:0 0 4px 0 rgba(78,198,224,.5);background-color:rgba(78,198,224,.05)}.dashboard-card.INDICES .mat-card{box-shadow:0 0 4px 0 rgba(160,78,224,.5);background-color:rgba(160,78,224,.05)}.dashboard-card.DEWS .mat-card{box-shadow:0 0 4px 0 #5794b0;background-color:rgba(74,165,134,.05)}.dashboard-card.FIELD_TASKS .mat-card{box-shadow:0 0 4px 0 rgba(38,69,84,.5);background-color:rgba(38,69,84,.05)}.dashboard-card.FIELD_ALERTS .mat-card{box-shadow:0 0 4px 0 rgba(38,69,84,.5);background-color:rgba(38,69,84,.05)}.dashboard-card.SUSTAINABILITY_PROJECTLEVEL .mat-card{box-shadow:0 0 4px 0 rgba(245,255,234,.5);background-color:rgba(245,255,234,.5)}.dashboard-card.SUSTAINABILITY_PLOTLEVEL .mat-card{box-shadow:0 0 4px 0 rgba(245,255,234,.5);background-color:rgba(245,255,234,.5)}input.mat-input-element{margin-top:-0.0625em;line-height:0 !important}.dashboard_search_radio{top:40px !important;right:1% !important;position:relative}.mat-menu-plot-disable:disabled{pointer-events:all !important;opacity:.5}.dashboardSisense .mat-dialog-content{margin:0;max-height:revert}.dashboardSisense .mat-dialog-actions{display:none}.field-accordion .mat-expansion-panel-body{padding:0}.mt-5px{margin-top:5px}.mb-5px{margin-bottom:5px}.my-5px{margin-top:5px;margin-bottom:5px}.dark-loading-circle .mat-progress-spinner circle,.dark-loading-circle .mat-spinner circle{stroke:#264554 !important}.intelligence-status-icon-wrapper{width:24px;height:24px;display:flex;align-items:center;justify-content:center}.mat-tab-group.mat-primary .mat-ink-bar{background-color:#76be28}.default-cursor{cursor:not-allowed !important;pointer-events:none !important}.index-display{width:20px;height:20px;border-radius:50%;color:#fff;font-size:11px;line-height:16px}.index-b-green{background-color:#76be28}.index-b-black{background-color:#264554}.index-b-grey{background-color:#d8d8d8}#overview-map .mat-select-value{max-width:-moz-max-content !important;max-width:max-content !important}.config-form .mat-expansion-panel{margin:0 !important;margin-bottom:0 !important}.historic-dropdown-panel{margin-top:25px;margin-left:9px;max-height:-moz-fit-content !important;max-height:fit-content !important}.customdropdown-select-panel{max-width:-moz-fit-content !important;max-width:fit-content !important}.radio-group{display:flex !important;flex-direction:column !important}.dropdown-filter{width:220px !important}.filter-hr{margin-top:0px !important;margin-bottom:0px !important}.SRMapDownloadControl .downloadOptions{display:none;border-radius:4px;background-color:#fff;top:0;left:100%}.SRMapDownloadControl .downloadOptions .downloadOption{margin:5px}.SRMapDownloadControl:hover .downloadOptions{display:block}.bld-800{font-weight:800}.b-r-8 .mat-dialog-container{border-radius:8px !important}.table-atr-cal-icon{width:16px !important}.color-orange{color:#f68d23}.mat-menu-item-disable{pointer-events:none;opacity:.5}.co-oridinates-line-height{line-height:19px}.co-oridinates-line-height .co-ordinates-img{width:16px}.pop-over-style{background-color:#3c5865;padding:10px;color:#fff;border-radius:4px;font-weight:normal}.pop-over-style .example-tree-invisible{display:none}.ag-input-text .mat-form-field-infix{font-size:12px !important;border-top:13px solid rgba(0,0,0,0) !important}.mat-icon-opacity-formula-box{cursor:pointer}.example-tree-invisible{display:none}.lf_gridview_header.mat-expansion-panel-header{height:30px !important;opacity:.8;font-size:12px;font-weight:600;line-height:1.14;letter-spacing:normal;color:#264554;padding-left:0 !important;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgba(103,125,135,.4);box-shadow:none}.lf_grid_view_panel .mat-expansion-panel-body{padding:0 !important}.lf_section_button button{padding:0}.lf_grid_card{border:1px solid rgba(103,125,135,.1);padding:10px;margin:6px}.lf_grid_card_section .lf_list_item_title{color:#14181a;font-size:12px;font-weight:600;padding-bottom:6px}.lf_grid_card_section .lf_list_item_subtitle{color:#4f5152;font-size:11px}.lf_main_panel.row{margin:0;height:100%}.lf_main_left_panel{border-right:1px solid rgba(0,0,0,.12);padding:0 !important;height:100%}.lf_left_panel_section{height:100%}.lf_list_mainHeader{height:45px;font-weight:600;font-size:14px;padding:5px 10px;border-bottom:1px solid rgba(0,0,0,.12);display:flex;justify-content:space-between;align-items:center}.lf_list_mainHeader.hidden{display:none !important}.lf_list_searchHeader{height:45px;font-weight:600;font-size:14px;padding:5px 10px;border-bottom:1px solid rgba(0,0,0,.12);display:none;justify-content:space-between;align-items:center}.lf_list_searchHeader.active{display:flex}.lf_list_main{overflow:auto;height:calc(100% - 46px)}.lf_list_main .lf_list_item{border-bottom:1px solid rgba(0,0,0,.12);height:62px;padding:10px;cursor:pointer}.lf_list_main .lf_list_item .lf_list_item_title{color:#14181a;font-size:12px;font-weight:600}.lf_list_main .lf_list_item .lf_list_item_subtitle{color:#4f5152;font-size:11px}.lf_list_main .lf_selected{background:#f4f6f6}.link-farmer-table-header{font-size:12px;font-weight:600;font-style:normal;font-stretch:normal;line-height:1.6}.link-farmer-table-header-row{height:36px !important;background-color:#f4f6f6;border-bottom:solid 1px #dee3e5}.link-farmer-table-row{border-bottom:solid 1px #dee3e5}.lf-right-panel-title{color:#14181a}.lf-right-panel-subtitle{color:#4f5152}.lf_table_main{height:262px;overflow:auto}.lf_table_main th.mat-header-cell{opacity:1;top:-1px !important}.lf_table_main table.mat-table{border:solid 1px #dee3e5}.lf_table_main td.mat-footer-cell{border:none}.lf-validation-error{color:#a40000}.lf-right-panel-closed-plot{padding:10px;border-radius:4px;border:solid 1px #c00;background-color:#fff2f2}.farm-tab-container.dos-crop-edit-tabs .mat-tab-label{padding:0 60px !important;height:40px !important;font-size:12px;min-width:-moz-max-content;min-width:max-content;position:relative}.image-gallery-project-menu{max-width:337px !important;margin-top:1%;position:absolute;margin-left:-1%}.project__dropdown__viewport::-webkit-scrollbar{width:1px;background-color:#fff}::ng-deep .imagegallery-project-menu .mat-menu-panel .mat-menu-content{padding-top:0px !important}.img_gallery_tab_container mat-tab-header{width:-moz-fit-content !important;width:fit-content !important;max-width:100%;display:inline-flex;border-radius:4px;box-shadow:0 0px 3px 0 rgba(0,0,0,.15);border:solid 1px rgba(0,0,0,.02)}.img_gallery_tab_container mat-tab-header .mat-tab-header-pagination{display:none}.img_gallery_tab_container .mat-tab-container{display:inline-flex}.img_gallery_tab_container .mat-tab-label{height:50px;min-width:-moz-max-content;min-width:max-content;opacity:.9;position:relative;padding:0 19px !important}.img_gallery_tab_container .mat-tab-label-active{color:#76be28;font-weight:500}.img_gallery_tab_container .mat-tab-label-content{font-size:12px;text-transform:uppercase}.img_gallery_tab_container .mat-tab-label::after{content:"";position:absolute;right:0;z-index:100;width:1px;height:31px;opacity:.15;background:#555}.data-icon-filter-task{width:20px !important}.err-warn-filter{background-color:rgba(232,183,179,.4588235294);color:#264554}.right-content{float:right;background-color:#f1f1f1;color:#474747}.fulfillment-main-table{height:255px !important;overflow:auto}.fulfillment-main-table th.mat-header-cell{opacity:1;top:-1px !important}.fulfillment-main-table td.mat-footer-cell{opacity:1;top:1px !important}.fulfillment-table-header-row{height:36px !important;background-color:#f4f6f6;border-bottom:solid 1px #dee3e5}.fulfillment-table-row{height:60px !important;border-bottom:solid 1px #dee3e5}.fulfillment-table-footer-row{height:36px !important;background-color:#f4f6f6}.fulfillment-header,.fulfillment-footer{font-size:12px;font-weight:600;color:#4f5152}.fulfillment-grey{color:#6f7273}.user-preference-bulk-info{padding:6px 5px 8px 8px;border-radius:6px;background-color:#f1f1f1;position:absolute;bottom:0}.info-icon{position:relative;top:2px}.toggle-info-icon{position:relative;top:4px}.warning-icon-img{width:20px !important}.opacity-dull-allow-cursor{opacity:.5;cursor:not-allowed}.ca-limit .mat-dialog-content{margin:16px 0 0 0 !important}.search-field-formula-creator{width:80%}.value-tooltip-wrapper .projects-info{opacity:0;visibility:hidden;overflow:hidden}.value-tooltip-wrapper:hover .projects-info{opacity:1;visibility:visible;font-size:12px;transition:opacity .1s ease-in}.view-bi-report{color:#76be28;cursor:pointer;text-decoration:underline;font-size:14px;font-weight:bold}.sisense-dashboard-card mat-card-header .mat-card-header-text{padding-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.attr-chip{background-color:#daebc7 !important}.fun-chip{background-color:#d7dadd !important}.op-chip{background-color:#d3e4ec !important}.mat-dialog-actions{box-sizing:border-box !important}.print-spin-loader{display:inline-block;height:20px;position:relative;margin-right:1rem}.tree-menu-radio-button.mat-menu-panel{min-width:250px !important;max-width:calc(100% + 4px);max-height:400px;min-height:60px !important;overflow-y:auto;margin-left:-16px;margin-top:-18px}.tree-menu-radio-button.mat-menu-panel .mat-menu-content,.tree-menu-radio-button.mat-menu-panel .mat-menu-content:not(:empty){padding:0 !important}.mat-form-field.no-underline .mat-form-field-underline{display:none !important}.formula-preview-sc{word-break:break-all}.formula-preview-sc .col-sm-1{padding-right:0 !important}.formula-preview-sc .custom-estimated>div{display:inline-block;text-overflow:ellipsis !important;overflow:hidden !important;white-space:nowrap !important;width:45px}.tag-management-left-panel{overflow:auto;height:100% !important;padding:0 !important;border-right:1px solid rgba(0,0,0,.12)}.tag-management-left-panel::-webkit-scrollbar{width:4px}.tag-management-left-panel::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.tag-management-left-panel::-webkit-scrollbar-thumb{background:#979797;border-radius:10px}.tag-management-left-panel::-webkit-scrollbar-thumb:hover{background:#000}.tag-management-left-table{border-top:unset !important}.tag-management-left-table tr.mat-row{cursor:pointer}.tag-management-left-table tr.mat-row:hover{background-color:rgba(217,217,217,.38)}.selectedTag{background-color:rgba(217,217,217,.38)}.tag-management-right-panel{overflow:auto;height:100% !important}.modal-tree-menu.mat-menu-panel{min-width:270px !important;max-width:calc(100% + 4px);max-height:250px;min-height:60px !important;overflow-y:auto;margin-left:15px;margin-top:-42px}.modal-tree-menu.mat-menu-panel .mat-menu-content,.modal-tree-menu.mat-menu-panel .mat-menu-content:not(:empty){padding:0 !important}.modal-tree-menu::-webkit-scrollbar{width:2px;height:2px}.modal-tree-menu::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);border-radius:10px}.modal-tree-menu::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5)}.modal-content-height mat-dialog-container{padding:0;position:relative}.modal-content-height .mat-dialog-title{height:64px;margin:0;background-color:rgba(38,69,84,.05);padding:17px;font-family:Noto Sans;font-size:21px;font-weight:500;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.modal-content-height .mat-dialog-actions{background-color:rgba(38,69,84,.05);width:100%;bottom:0px;margin-bottom:0px}.modal-content-height .mat-dialog-content{min-height:70vh;max-height:70vh;margin:24px 0 0 0;font-size:14px}.modal-content-height .modal-content-title{font-family:Noto Sans;font-size:13px;font-weight:600;font-stretch:normal;font-style:normal;line-height:1.54;letter-spacing:normal}.tbl-header-min-width{min-width:190px !important;text-align:center !important}.mat-column-chemicalName,.mat-column-typeId{flex:0 0 auto !important;min-width:100px !important;text-align:left !important}.mat-column-chemicalName.mat-column-chemicalName,.mat-column-typeId.mat-column-chemicalName{padding-left:18px !important}.hide-tab-header .mat-tab-header{display:none !important}.plot-label{--tooltip-color: #000000f1;background-color:var(--tooltip-color) !important;border-radius:4px !important;padding:.5rem 1rem !important;font-size:12px !important;color:#fff !important;border:1px solid var(--tooltip-color) !important}.plot-label::after{content:"";position:absolute;bottom:-8px;left:50%;transform:translateX(-50%);width:0;height:0;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);border-top:8px solid var(--tooltip-color)}.street-view-active .leaflet-bottom{bottom:50% !important}.street-view-active .leaflet-bottom .current-location-control{display:none !important}.street-view-active .leaflet-bottom .db-scale-control{display:none !important}.street-lat-lng-popup{display:flex;align-items:center;color:#fff;background-color:#000;padding:8px 20px 8px 8px;border-radius:4px;margin-bottom:24px;white-space:nowrap;font-size:.625rem}.street-lat-lng-popup .street-coordinates{margin-right:4px}.street-lat-lng-popup .copy-coordinates-btn{cursor:pointer;height:16px;align-content:center}.street-view{height:50%;width:100%;position:absolute;bottom:0;left:0;z-index:1005}.street-view .street-view-metadata{position:absolute;bottom:10px;background-color:rgba(0,0,0,.6);padding:4px 8px;border-radius:0px 2px 2px 0px;z-index:1010}.customized-menu::-webkit-scrollbar{width:2px;height:2px}.customized-menu::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);border-radius:10px}.customized-menu::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5)}.customized-menu.mat-menu-panel{min-width:200px !important;max-width:calc(100% + 4px);max-height:400px;min-height:60px !important;overflow-y:auto;margin-left:-16px;margin-top:-9px}.customized-menu .mat-form-field-label{padding-left:12px !important}.customized-menu .mat-menu-item{height:42px !important;line-height:unset}.placeholder-menu{display:none !important}.warn-color-orange{color:#bd5b00}.uniform-menu-panel.mat-menu-panel{width:25vw !important;overflow-y:auto;overflow-x:auto}.uniform-menu-panel.mat-menu-panel .mat-menu-item{white-space:nowrap;text-overflow:ellipsis}.tree-mat-menu-checkbox-panel{max-width:-moz-fit-content !important;max-width:fit-content !important;margin-left:0 !important}.customised-label-view{color:#264554;opacity:.8;line-height:initial !important;font-weight:400 !important}.customised-view-data{color:#264554;line-height:initial !important;font-weight:600 !important}.farm-tab-container.notification-panel-tabs{display:flex;align-items:center;justify-content:center}.farm-tab-container.notification-panel-tabs mat-tab-header{width:calc(100% - 24px) !important;border-radius:4.5px !important;border:solid 1.1px rgba(38,69,84,.0980392157) !important;margin-bottom:14px !important;box-shadow:none !important}.farm-tab-container.notification-panel-tabs .mat-tab-label{width:50% !important;height:32px !important;background-color:#fff !important}.farm-tab-container.notification-panel-tabs .mat-tab-label-active{font-weight:600 !important}.farm-tab-container.notification-panel-tabs .mat-tab-label-content{text-transform:none !important}.farm-tab-container.notification-panel-tabs .mat-tab-body-wrapper{width:100% !important}.margin-inline-12{margin-inline:12px !important}.notification-divider-line{flex-grow:0;border-radius:4px;border:solid .8px rgba(38,69,84,.0980392157)}.notification-panel-tab-body-container{height:calc(100vh - 56px - 126px) !important;overflow:auto}.notification-panel-tab-body-container::-webkit-scrollbar{width:4px}.notification-panel-tab-body-container::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.notification-panel-tab-body-container::-webkit-scrollbar-thumb{background:#979797;border-radius:10px}.notification-panel-tab-body-container::-webkit-scrollbar-thumb:hover{background:#000}.farm-tab-container.notification-screen-tabs{display:flex;justify-content:flex-start}.farm-tab-container.notification-screen-tabs mat-tab-header{width:300px !important;border-radius:4.5px !important;border:solid 1.1px rgba(38,69,84,.0980392157) !important;box-shadow:none !important}.farm-tab-container.notification-screen-tabs .mat-tab-label{width:50% !important;height:40px !important}.farm-tab-container.notification-screen-tabs .mat-tab-label-active{font-weight:600 !important}.farm-tab-container.notification-screen-tabs .mat-tab-label-content{text-transform:none !important}.farm-tab-container.notification-screen-tabs .mat-tab-body-wrapper{width:100% !important}.notification-no-result-card{display:flex;flex-direction:column;align-items:center;justify-content:center;border-radius:4px;background-color:#e9ecee}.notification-no-result-card.notification-panel-no-result-card-height{height:calc(100vh - 56px - 126px) !important}.notification-no-result-card.notification-screen-no-result-card-height{height:calc(100vh - var(--notification-screen-header-height) - 170px) !important}.notification-no-result-icon{display:flex;align-items:center;justify-content:center;padding:8px;background-color:#fff;border-radius:100%}.notification-no-result-icon img{width:24px;height:24px}.width-70{width:70% !important}.notification-status-icon{height:15px !important;width:20px !important;position:relative !important;top:-1px !important;cursor:default !important;overflow:visible !important}.notification-status-icon-partially-completed{height:18px !important;width:20px !important;position:relative !important;cursor:default !important}.monitoring-analysis-tab-grp .mat-tab-disabled{cursor:not-allowed !important;opacity:.5 !important}.image-upload-new-preview-col-header{width:95px;height:60px;margin:9px 9px 0 0;border-radius:unset;border:solid .5px rgba(38,69,84,.4)}.raise-alert-modalbox .mat-dialog-content{max-height:368px !important}.assign-tag-modal-header{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:525px;vertical-align:bottom}.assign-tag-modal-header-entity-name{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:210px;vertical-align:bottom;cursor:pointer}.places-form-mat-expansion-panel-header .mat-expansion-panel .mat-header-custom{margin-left:0 !important;margin-right:0 !important}.leaflet-container.map-create-location-custom-cursor{cursor:url("/content/images/place-location-target.svg") 36 36,none !important}.create-location-popup-bubble{width:300px !important;background-color:rgba(0,0,0,.9) !important;box-shadow:none !important;background-image:none !important}.create-location-popup-bubble-anchor::after{border-top-color:#000 !important}.plot-intelligence-status-wrapper{display:grid;place-items:center;gap:5px}.plot-intelligence-status-wrapper .view-dashboard-button{font-size:11px;font-weight:500;color:#76be28;cursor:pointer}.plot-intelligence-status-wrapper .view-dashboard-button:hover{color:#76be28 !important;text-decoration:none !important}.text-wrap-auto{text-wrap:auto !important}.connect-via-farmEngagement img{width:3vw;height:7vh;transform:translateX(20%) !important;padding:7px}.connect-via-farmEngagement img:hover{background:#f6f6f6;border-radius:50%;content:url("/content/images/ConnectViaFarmEngagement_Hover.svg")}.left-offset-tooltip{transform:translateX(32px) !important}.modal-container-user-hirarchy mat-dialog-container{border-radius:16px !important}.modal-container-user-hirarchy .mat-dialog-content{padding-bottom:62px}.create-plot-mat-stepper .mat-horizontal-stepper-header-container{top:1px !important}.leaflet-popup-pane .create-location-leaflet-popup{z-index:10000 !important}.disease-warning-tabs .warning-tab{width:20vw;height:5vh;border-radius:4px;flex:1;font-family:sans-serif;font-stretch:extra-condensed;font-size:12px;font-weight:600;display:flex;align-items:center;justify-content:center;cursor:pointer}.disease-warning-tabs .warning-tab.critical{background-color:rgba(204,74,37,.0470588235);color:#cc4a25}.disease-warning-tabs .warning-tab.other{background-color:rgba(229,114,30,.0470588235);color:#e5721e}.disease-warning-tabs .warning-tab.active{border:solid 1px #e5721e;border-radius:4px}.disease-warning-tabs .warning-tab.disabled{cursor:not-allowed !important}.toolbar-icon-circle{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background-color:#e3e7eb}.toolbar-circle-icon{width:28px;height:18px}.confirm-season-modal-header{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:465px;vertical-align:bottom}.confirm-season-modal-header-season-name{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:210px;vertical-align:bottom;cursor:pointer}.season-linked-projects-left-panel{overflow:auto;height:100% !important;padding:0 !important;border-right:1px solid rgba(0,0,0,.12)}.season-linked-projects-left-panel::-webkit-scrollbar{width:4px}.season-linked-projects-left-panel::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.season-linked-projects-left-panel::-webkit-scrollbar-thumb{background:#979797;border-radius:10px}.season-linked-projects-left-panel::-webkit-scrollbar-thumb:hover{background:#000}.season-linked-projects-left-table{border-top:unset !important}.season-linked-projects-left-table tr.mat-row{cursor:pointer}.season-linked-projects-left-table tr.mat-row:hover{background-color:rgba(217,217,217,.38)}.selectedSeason{background-color:rgba(217,217,217,.38)}.season-linked-projects-right-panel{overflow:auto;height:100% !important}.linked-seasons-table .index-column-container{position:relative;display:flex;align-items:center;justify-content:center;height:100%;min-height:56px;padding:8px 0}.linked-seasons-table .index-column-container::before{content:"";position:absolute;left:50%;top:0;height:50%;width:.5px;background-color:rgba(151,151,151,.5);transform:translateX(-50%);z-index:1}.linked-seasons-table .index-column-container::after{content:"";position:absolute;left:50%;bottom:0;height:50%;width:.5px;background-color:rgba(151,151,151,.5);transform:translateX(-50%);z-index:1}.linked-seasons-table tr:first-of-type .index-column-container::before{display:none}.linked-seasons-table tr:last-of-type .index-column-container::after{display:none}.linked-seasons-table .index-column-container .index-display{position:relative;z-index:2}.mat-tooltip-panel{pointer-events:none !important}.mat-content.mat-content-hide-toggle{margin-right:0 !important}.mat-expansion-panel-header-description{flex-basis:auto !important}.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.btn-close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5;padding:0;background-color:rgba(0,0,0,0);border:0;cursor:pointer}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.me-auto{margin-right:auto !important}.ms-auto{margin-left:auto !important}.tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip-arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}.popover-arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover-arrow::before,.popover-arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid}.carousel-indicators button{flex:0 1 auto;margin-right:3px;margin-left:3px;border:0;opacity:.5;text-indent:-999px;box-sizing:content-box;width:4px;height:4px;border-radius:50%;background-color:#cfcfcf;background-clip:border-box;border-top:0 solid rgba(0,0,0,0);border-bottom:0 solid rgba(0,0,0,0)}.carousel-indicators button.active{opacity:1}.form-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.sust-dropdown-wrap{position:relative;display:inline-flex;flex-direction:column}.sust-dropdown-trigger{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;background:#fff;border:solid 1px #264554;border-radius:8px;cursor:pointer;white-space:nowrap;min-width:230px;transition:border-color .15s}.sust-dropdown-trigger:hover,.sust-dropdown-trigger.cdk-focused{border-color:#264554}.sust-dropdown-trigger.has-selection{background:#264554;border-color:#264554}.sust-dropdown-trigger.has-selection .trigger-leading-icon,.sust-dropdown-trigger.has-selection .trigger-chevron{color:#fff}.sust-dropdown-trigger.has-selection .trigger-content .trigger-label{color:rgba(255,255,255,.7)}.sust-dropdown-trigger.has-selection .trigger-content .trigger-value{color:#fff}.sust-dropdown-trigger .trigger-leading-icon{width:20px;height:20px;flex-shrink:0;-o-object-fit:contain;object-fit:contain}.sust-dropdown-trigger .trigger-content{display:flex;flex-direction:column;align-items:flex-start;flex:1;overflow:hidden}.sust-dropdown-trigger .trigger-content .trigger-label{font-size:11px;color:#888;line-height:1.2}.sust-dropdown-trigger .trigger-content .trigger-value{font-size:13px;font-weight:600;color:#264554;max-width:180px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;line-height:1.4}.sust-dropdown-trigger .trigger-chevron{font-size:20px;width:20px;height:20px;line-height:20px;color:#666;flex-shrink:0;transition:transform .2s ease}.sust-dropdown-trigger .trigger-chevron.rotated{transform:rotate(180deg)}.sust-project-menu{max-width:500px !important;overflow-x:hidden !important;border-radius:14px !important;box-shadow:0 0 5px 0 rgba(0,0,0,.44) !important;background-color:#fff !important;margin-top:8px !important}.sust-project-menu .mat-menu-panel{max-width:500px !important;min-width:420px !important;overflow-x:hidden !important;border-radius:14px !important;box-shadow:0 0 5px 0 rgba(0,0,0,.44) !important;background-color:#fff !important}.sust-project-menu .mat-menu-content{padding:0 !important;overflow-x:hidden !important}.sust-project-menu .sust-menu-panel{min-width:420px;max-width:500px;overflow-x:hidden;box-sizing:border-box}.sust-project-menu .sust-menu-panel .panel-title{padding:14px 16px 10px;font-size:14px;font-weight:600;color:#264554;display:flex;align-items:center;justify-content:space-between}.sust-project-menu .sust-menu-panel .panel-title .selection-count{font-size:12px;font-weight:500;color:#888}.sust-project-menu .sust-menu-panel .project-item:hover .item-copy{visibility:visible;opacity:1}.sust-project-menu .sust-menu-panel .panel-search-field{display:block;margin:8px 14px;width:calc(100% - 28px);max-width:100%;box-sizing:border-box;border-radius:8px;background-color:#f4f3f4}.sust-project-menu .sust-menu-panel .panel-search-field .mat-form-field-wrapper{margin:0;padding:0}.sust-project-menu .sust-menu-panel .panel-search-field .mat-form-field-infix{padding:10px 0;font-size:13px;border-top:0;display:flex;align-items:center}.sust-project-menu .sust-menu-panel .panel-search-field .mat-form-field-outline-start,.sust-project-menu .sust-menu-panel .panel-search-field .mat-form-field-outline-gap,.sust-project-menu .sust-menu-panel .panel-search-field .mat-form-field-outline-end{border-width:0 !important;border-color:rgba(0,0,0,0) !important}.sust-project-menu .sust-menu-panel .panel-search-field .mat-form-field-outline-gap{border-top-color:rgba(0,0,0,0) !important}.sust-project-menu .sust-menu-panel .panel-search-field.mat-focused .mat-form-field-outline-start,.sust-project-menu .sust-menu-panel .panel-search-field.mat-focused .mat-form-field-outline-gap,.sust-project-menu .sust-menu-panel .panel-search-field.mat-focused .mat-form-field-outline-end{border-width:0 !important;border-color:rgba(0,0,0,0) !important}.sust-project-menu .sust-menu-panel .panel-search-field .mat-form-field-prefix{margin-right:6px;color:#aaa;display:inline-flex;align-items:center}.sust-project-menu .sust-menu-panel .panel-search-field .mat-form-field-prefix .mat-icon{font-size:18px;width:18px;height:18px;line-height:18px}.sust-project-menu .sust-menu-panel .panel-list{max-height:240px;overflow-y:auto;overflow-x:hidden;padding:4px 0}.sust-project-menu .sust-menu-panel .panel-list-item{display:flex;align-items:center;gap:10px;padding:10px 16px;cursor:pointer;transition:background .1s;overflow:hidden}.sust-project-menu .sust-menu-panel .panel-list-item.disabled{opacity:.5;cursor:not-allowed;pointer-events:none}.sust-project-menu .sust-menu-panel .panel-list-item.disabled .item-bookmark{pointer-events:auto}.sust-project-menu .sust-menu-panel .panel-list-item:hover{background:#f6f6f6}.sust-project-menu .sust-menu-panel .panel-list-item .mat-checkbox{flex-shrink:0;display:flex;align-items:center}.sust-project-menu .sust-menu-panel .panel-list-item .mat-checkbox-layout{margin-bottom:0}.sust-project-menu .sust-menu-panel .panel-list-item .mat-checkbox-inner-container{margin:0;width:18px;height:18px}.sust-project-menu .sust-menu-panel .panel-list-item .mat-checkbox-frame{border-width:1.5px;border-color:#ccc;border-radius:4px}.sust-project-menu .sust-menu-panel .panel-list-item .mat-checkbox-background{border-radius:4px}.sust-project-menu .sust-menu-panel .panel-list-item .mat-checkbox-checked .mat-checkbox-background{background-color:#264554 !important;border-radius:4px}.sust-project-menu .sust-menu-panel .panel-list-item .mat-checkbox-checked .mat-checkbox-frame{border-color:#264554 !important}.sust-project-menu .sust-menu-panel .panel-list-item .item-name-wrap{flex:1;min-width:0;display:flex;align-items:center;gap:6px}.sust-project-menu .sust-menu-panel .panel-list-item .item-name{font-size:13px;font-weight:600;color:#264554;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sust-project-menu .sust-menu-panel .panel-list-item .item-copy{font-size:13px;width:24px;height:24px;line-height:28px;text-align:center;color:#264554;border-radius:50%;flex-shrink:0;cursor:pointer;transition:background .15s;visibility:hidden}.sust-project-menu .sust-menu-panel .panel-list-item .item-copy:hover{background:#eaeaea}.sust-project-menu .sust-menu-panel .panel-list-item .item-bookmark{font-size:18px;width:18px;height:18px;line-height:18px;color:#ccc;flex-shrink:0;cursor:pointer}.sust-project-menu .sust-menu-panel .panel-list-item .item-bookmark:hover,.sust-project-menu .sust-menu-panel .panel-list-item .item-bookmark.bookmarked{color:#264554}.sust-project-menu .sust-menu-panel .panel-empty{padding:16px;text-align:center;font-size:13px;color:#aaa}.sust-project-menu .sust-menu-panel .panel-footer{padding:12px 16px}.sust-dashboard-menu{border-radius:14px !important;box-shadow:0 0 5px 0 rgba(0,0,0,.44) !important;background-color:#fff !important;margin-top:8px !important}.sust-dashboard-menu .mat-menu-panel{border-radius:14px !important;min-width:300px !important}.sust-dashboard-menu .mat-menu-content{padding:0 !important}.sust-dashboard-menu .sust-menu-panel.dashboard-panel{padding:20px 0}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-title{font-size:16px;font-weight:600;color:#264554;margin-bottom:12px;padding:0 24px;border:none}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list{display:flex;flex-direction:column;gap:0}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list-item{display:flex;gap:12px;padding:14px 24px;cursor:pointer;transition:background .15s}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list-item:hover{background:#f4f3f4}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list-item .mat-radio-button{margin-right:0;display:inline-flex;align-items:center}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list-item .mat-radio-container{display:flex;align-items:center}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list-item .mat-radio-outer-circle{border-color:#ccc;border-width:2px}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list-item .mat-radio-checked .mat-radio-outer-circle{border-color:#264554}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list-item .mat-radio-inner-circle{background-color:#264554}.sust-dashboard-menu .sust-menu-panel.dashboard-panel .panel-list-item .item-name{font-size:14px;font-weight:500;color:#264554;line-height:1;padding-top:3px}.sust-apply-btn{width:100%;background-color:#2e700f !important;color:#fff !important;border:none !important;border-radius:12px !important;padding:11px 0 !important;font-size:14px !important;font-weight:500 !important;cursor:pointer;letter-spacing:.2px;transition:background .15s;line-height:normal !important}.sust-apply-btn:hover{background-color:rgb(14.4171684422%,35.1026709897%,4.701250579%) !important}.sust-apply-btn .mat-button-wrapper{padding:0}.sust-view-toggle-group.mat-button-toggle-group{border:none;border-radius:8px;box-shadow:0 0 4px 0 rgba(0,0,0,.25);background-color:#fff;overflow:hidden;padding:3px}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle{border:none;background:rgba(0,0,0,0)}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle .mat-button-toggle-label-content{display:flex;align-items:center;gap:5px;padding:5px 20px;font-size:14px;font-weight:500;color:#264554;line-height:normal}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle.mat-button-toggle-checked{border-radius:6px;background-color:#264554}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle.mat-button-toggle-checked .mat-button-toggle-label-content{color:#fff}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle.mat-button-toggle-checked .sust-view-toggle-icon{filter:brightness(0) invert(1)}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle:not(.mat-button-toggle-checked):hover{background-color:#f4f6f6}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle .mat-button-toggle-focus-overlay{display:none}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle .mat-button-toggle-ripple{display:none}.sust-view-toggle-group.mat-button-toggle-group .mat-button-toggle+.mat-button-toggle{border-left:none}.sust-view-toggle-icon{width:24px;height:24px;vertical-align:middle}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-wrapper{margin:0;padding:0}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-flex{padding:10px;border-radius:14px;background-color:#f4f3f4;align-items:center}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-outline,.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-outline-start,.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-outline-gap,.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-outline-end{border:none !important;background:rgba(0,0,0,0) !important}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-prefix{display:flex;align-items:center;top:1px !important}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-infix{padding:0;border-top:0;display:flex;align-items:center;font-size:14px;font-weight:500;color:#4f6874}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-suffix,.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline .mat-form-field-subscript-wrapper{display:none}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline input.mat-input-element{margin:0;font-size:14px;font-weight:500;color:#122833;caret-color:#4f6874}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline input.mat-input-element::-moz-placeholder{color:#4f6874;opacity:1}.sust-header-search-field.mat-form-field.mat-form-field-appearance-outline input.mat-input-element::placeholder{color:#4f6874;opacity:1}.sust-header-search-icon.mat-icon{width:20px;height:20px;font-size:20px;line-height:20px;color:#4f6874;margin-right:4px;vertical-align:middle}.sust-header-bulk-upload-btn{display:flex;align-items:center;gap:6px;padding:8px 10px;border-radius:14px;border:solid 1px #d8d8d8;background-color:#fff;cursor:pointer;font-size:14px;font-weight:500;color:#264554;white-space:nowrap}.sust-header-bulk-upload-btn:hover{background-color:#f9f9f9}.sust-header-bulk-upload-icon{width:24px;height:24px}.sust-header-new-btn{display:flex;align-items:center;justify-content:center;gap:4px;padding:9.5px 20px;border-radius:12px;background-color:#2e700f;border:none;cursor:pointer;font-size:14px;font-weight:500;color:#fff;white-space:nowrap}.sust-header-new-btn:hover{background-color:#245a0c}.sust-header-new-icon.mat-icon{width:14px;height:14px;font-size:14px;line-height:14px;color:#fff}.sust-header-action-menu.mat-menu-panel{font-family:Noto Sans;border-radius:8px;border:solid 1px #c5cacc;background-color:#fff;min-width:250px !important;box-shadow:0 2px 8px rgba(0,0,0,.1)}.sust-header-action-menu.mat-menu-panel .mat-menu-content{padding:0}.sust-header-action-menu.mat-menu-panel .sust-header-action-menu-panel{padding:12px 0;display:flex;flex-direction:column;gap:0}.sust-header-action-menu.mat-menu-panel .sust-header-action-menu-item.mat-menu-item{font-family:Noto Sans;font-size:14px;font-weight:600;color:#264554;height:auto;line-height:normal;padding:14px 16px;border-radius:4px}.sust-header-action-menu.mat-menu-panel .sust-header-action-menu-item.mat-menu-item:hover{background-color:#f4f6f6}.sust-header-action-menu.mat-menu-panel .sust-action-menu-icon{width:20px;height:20px;margin-right:10px}.sust-search-results-menu.mat-menu-panel{font-family:Noto Sans;margin-top:8px;border-radius:10px;box-shadow:0 1.2px 6px 0 rgba(68,89,104,.25);background-color:#fff;min-width:400px !important;max-width:400px !important}.sust-search-results-menu.mat-menu-panel .mat-menu-content{padding:0}.sust-search-results-panel{padding:17px 0 22px 0}.sust-search-results-panel .sust-search-results-header{font-family:Noto Sans;padding-left:22px;font-size:14px;font-weight:600;color:#264554;margin-bottom:8px}.sust-search-results-panel .sust-search-results-list{max-height:380px;overflow-y:auto}.sust-search-results-panel .sust-search-result-item.mat-menu-item{font-family:Noto Sans;display:flex;align-items:center;gap:10px;padding:8px 22px;height:auto;line-height:normal;cursor:pointer}.sust-search-results-panel .sust-search-result-item.mat-menu-item:hover{background-color:#f4f6f6}.sust-search-results-panel .sust-search-result-icon{width:32px;height:32px;flex-shrink:0}.sust-search-results-panel .sust-search-result-info{display:flex;flex-direction:column;gap:2px;overflow:hidden;min-width:0}.sust-search-results-panel .sust-search-result-name{font-size:14px;color:#264554;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sust-search-results-panel .sust-search-result-detail{font-size:11px;color:rgba(38,69,84,.5)}.sust-search-results-panel .sust-search-no-results{font-family:Noto Sans;padding:12px 22px;font-size:14px;color:rgba(38,69,84,.5);text-align:center}.sust-primary-btn{display:flex;align-items:center;justify-content:center;gap:4px;padding:9px 20px;border-radius:12px;background-color:#2e700f;border:none;cursor:pointer;font-size:14px;font-weight:500;color:#fff;white-space:nowrap}.sust-primary-btn:hover{background-color:#245a0c}.sust-secondary-btn{display:inline-flex;align-items:center;justify-content:center;gap:4px;padding:8px 20px;border-radius:12px;border:solid 1px #264554;background-color:rgba(0,0,0,0);cursor:pointer;font-size:14px;font-weight:500;color:#264554;white-space:nowrap}.sust-secondary-btn:hover{background-color:rgba(38,69,84,.06)}.sust-scrollbar::-webkit-scrollbar{width:4px}.sust-scrollbar::-webkit-scrollbar-track{background:rgba(0,0,0,0);margin:10px 0}.sust-scrollbar::-webkit-scrollbar-thumb{background-color:#d9d9d9;border-radius:20px}.sust-scrollbar::-webkit-scrollbar-thumb:hover{background-color:#a0a0a0}.sustainability-map-container .leaflet-control-zoom{border:none !important;box-shadow:0 1px 4px rgba(0,0,0,.3);border-radius:6px;overflow:hidden;margin:0 !important}.sustainability-map-container .leaflet-control-zoom .leaflet-control-zoom-in,.sustainability-map-container .leaflet-control-zoom .leaflet-control-zoom-out{width:32px;height:32px;line-height:32px;font-size:18px;color:#264554;border:solid 0 #264554;border-bottom:1px solid #e2e2e2}.sustainability-map-container .leaflet-control-zoom .leaflet-control-zoom-out{border-bottom:none}.sustainability-map-container .leaflet-bottom.leaflet-right{bottom:203px;right:24px}.sustainability-map-container .leaflet-div-icon{background:none !important;border:none !important}.sustainability-map-container .sust-plot-cluster-wrapper{background:none !important;border:none !important}.sustainability-map-container .sust-plot-cluster{width:65px;height:65px;border-radius:50%;box-shadow:0 1px 4px 0 rgba(0,0,0,.25);background-color:rgba(255,255,255,.92);display:flex;flex-direction:column;align-items:center;justify-content:center}.sustainability-map-container .sust-places-cluster-wrapper{background:none !important;border:none !important}.sustainability-map-container .sust-places-cluster{width:60px;height:60px;border-radius:50%;box-shadow:0 1px 4px 0 rgba(0,0,0,.25);background-color:rgba(159,239,206,.94);display:flex;flex-direction:column;align-items:center;justify-content:center}.sustainability-map-container .sust-cluster-count,.sustainability-map-container .sust-cluster-label{font-size:10px;font-weight:bold;color:#264554;line-height:1.2}.sustainability-map-container .sust-plot-tooltip-popup .leaflet-popup-content-wrapper{padding:0;border-radius:8px;box-shadow:0 2px 12px rgba(0,0,0,.18);background:rgba(0,0,0,0)}.sustainability-map-container .sust-plot-tooltip-popup .leaflet-popup-content{margin:0;text-align:left}.sustainability-map-container .sust-plot-tooltip-popup .leaflet-popup-tip-container{display:none}.sustainability-map-container .sust-plot-tooltip{min-width:300px;max-width:300px;padding:12px 8px;border-radius:8px;border:solid .5px rgba(255,255,255,.96);background-color:rgba(255,255,255,.96);text-align:left}.sustainability-map-container .sust-plot-tooltip-top{display:flex;align-items:center;margin-bottom:4px}.sustainability-map-container .sust-plot-tooltip-icon{width:20px;height:20px;margin-right:4px;flex-shrink:0}.sustainability-map-container .sust-plot-tooltip-name{font-size:14px;font-weight:600;color:#264554;flex:1;word-break:break-word;white-space:normal}.sustainability-map-container .sust-plot-tooltip-risk{font-size:11px;font-weight:500;flex-shrink:0;padding:2px 8px;border-radius:16px;border:solid 1px;white-space:nowrap;margin-left:6px;text-transform:uppercase}.sustainability-map-container .sust-plot-tooltip-sub{font-size:12px;color:#264554}.sustainability-map-container .sust-plot-tooltip-sub-info{padding-left:24px}.sustainability-map-container .sust-plot-tooltip-location{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sustainability-map-container .sust-plot-tooltip-actions{margin-top:8px;padding:8px;border-radius:12px;border:solid .5px #264554;background-color:rgba(255,255,255,.1)}.sustainability-map-container .sust-plot-tooltip-actions-header{display:flex;align-items:center}.sustainability-map-container .sust-plot-tooltip-actions-title{font-size:12px;font-weight:600;color:#264554}.sustainability-map-container .sust-plot-tooltip-actions-list{display:flex;gap:16px;padding-top:8px}.sustainability-map-container .sust-plot-tooltip-action-item{display:flex;flex-direction:column;align-items:center;cursor:pointer;gap:4px;transition:opacity .2s}.sustainability-map-container .sust-plot-tooltip-action-item img{width:24px;height:24px}.sustainability-map-container .sust-plot-tooltip-action-item span{font-size:10px;color:#264554;white-space:nowrap}.sustainability-map-container .sust-plot-tooltip-action-item:hover{opacity:.7}.plot-detail-map-container .leaflet-control-zoom{border:none !important;box-shadow:0 1px 4px rgba(0,0,0,.3);border-radius:6px;overflow:hidden;margin:0 !important}.plot-detail-map-container .leaflet-control-zoom .leaflet-control-zoom-in,.plot-detail-map-container .leaflet-control-zoom .leaflet-control-zoom-out{width:32px;height:32px;line-height:32px;font-size:18px;color:#264554;border:solid 0 #264554;border-bottom:1px solid #e2e2e2}.plot-detail-map-container .leaflet-control-zoom .leaflet-control-zoom-out{border-bottom:none}.plot-detail-map-container .leaflet-bottom.leaflet-right{bottom:24px;right:16px}.sustainability-table-wrapper .mat-checkbox-checked .mat-checkbox-background,.sustainability-table-wrapper .mat-checkbox-indeterminate .mat-checkbox-background{background-color:#264554 !important}.sustainability-table-wrapper .mat-checkbox-frame{border-color:#98a2b3}.sust-actions-menu.mat-menu-panel{border-radius:14px;box-shadow:0 0 4px 0 rgba(0,0,0,.25);background-color:#fff;min-width:180px}.sust-actions-menu.mat-menu-panel .mat-menu-content{padding:8px 0;background-color:#fff}.sust-actions-menu.mat-menu-panel .mat-menu-item{font-size:13px;color:#344054;height:36px;line-height:36px;border:none;background-color:#fff}.sust-actions-menu.mat-menu-panel .mat-menu-item:hover{background-color:#f3f4f6}.applied-filters-row{display:flex;flex-wrap:wrap;align-items:center;margin:12px 0 8px}.filter-chip{display:inline-flex;align-items:center;gap:6px;padding:1px 6px 0 9px;border-radius:16777200px;margin-right:8px;margin-bottom:8px}.chip-label{font-size:11px;font-weight:500;line-height:1.5;letter-spacing:.55px;text-transform:capitalize}.chip-value{font-size:11px;font-weight:500;line-height:1.5;letter-spacing:.55px}.chip-close{font-size:12px;width:16px;height:16px;line-height:24px;color:var(--chip-text-color, #264554)}.chip-close-btn{display:inline-flex;align-items:center;justify-content:center;border:none;background:rgba(0,0,0,0);padding:0;cursor:pointer;color:var(--chip-text-color, #4b5563)}.dt-pill-tabs{display:flex;align-items:center;margin-bottom:20px;background:#fff;border-radius:9px;box-shadow:0 0 4px 0 rgba(0,0,0,.25);padding:3px;width:-moz-fit-content;width:fit-content}.dt-pill-tabs .dt-tab-divider{width:1px;height:20px;background-color:#e0e0e0;flex-shrink:0}.dt-pill-tabs button{padding:6px 14px;border:none;border-radius:7px;background:rgba(0,0,0,0);color:#333;cursor:pointer;font-size:13px;font-weight:500;white-space:nowrap}.dt-pill-tabs button.active{background:#264554;color:#fff}.dt-toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:0;border:solid 1px #e5e7eb;background-color:var(--solids-white);padding:15px 12px;border-radius:14px 14px 0 0}.dt-toolbar--end{justify-content:flex-end}.dt-toolbar-left{display:flex;align-items:center;gap:4px}.dt-toolbar-left .dt-action-btn{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border:none;border-radius:24px;background:#f3f4f6;cursor:pointer;color:#344054}.dt-toolbar-left .dt-action-btn mat-icon{font-size:20px;width:20px;height:20px}.dt-toolbar-left .dt-action-btn .dt-action-icon{width:20px;height:20px}.dt-toolbar-left .dt-action-btn:hover{background:#e5e7eb}.dt-toolbar-left .dt-selected-count{font-size:13px;color:#667085;margin-left:8px;font-weight:500}.dt-toolbar-right{display:flex;align-items:center;gap:10px}.dt-search-box{display:flex;align-items:center;border:1px solid #d0d5dd;border-radius:8px;padding:8px 12px;width:200px;height:34px;box-sizing:border-box;background:#f9fafb}.dt-search-box .dt-search-icon{color:#667085;font-size:18px;width:18px;height:18px;margin-right:8px}.dt-search-box input{border:none;outline:none;font-size:13px;width:100%;color:#264554;line-height:1;background:rgba(0,0,0,0)}.dt-search-box input::-moz-placeholder{color:#667085}.dt-search-box input::placeholder{color:#667085}.dt-pagination{display:flex;align-items:center}.dt-pagination .dt-page-selector{display:flex;align-items:center;cursor:pointer;position:relative;border:1px solid #e2e2e2;border-radius:8px;height:34px;box-sizing:border-box;background:#fff}.dt-pagination .dt-page-selector .dt-page-arrow{display:flex;align-items:center;justify-content:center;width:34px;height:100%;font-size:18px;color:#667085;cursor:pointer;flex-shrink:0}.dt-pagination .dt-page-selector .dt-page-arrow:hover{color:#264554}.dt-pagination .dt-page-selector .dt-page-divider{width:1px;align-self:stretch;background-color:#e2e2e2;flex-shrink:0}.dt-pagination .dt-page-selector .dt-page-info{display:flex;align-items:center;padding:0 12px;gap:4px;position:relative;height:100%}.dt-pagination .dt-page-selector .dt-page-info .dt-page-label{font-size:12px;color:#6b7280;white-space:nowrap;line-height:1}.dt-pagination .dt-page-selector .dt-page-info .dt-page-count{font-size:12px;color:#264554;white-space:nowrap;font-weight:700;line-height:1}.dt-pagination .dt-page-selector .dt-page-info .dt-page-input{padding:2px 4px;font-size:12px;color:#264554;text-align:center;border:solid 1px #e2e2e2;background:rgba(0,0,0,0);outline:none;border-radius:4px;line-height:1}.dt-pagination .dt-page-selector .dt-page-info .dt-page-input::-webkit-outer-spin-button,.dt-pagination .dt-page-selector .dt-page-info .dt-page-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.dt-pagination .dt-page-selector .dt-page-info .dt-page-dropdown-arrow{font-size:16px;width:16px;height:16px;color:#667085}.dt-pagination .dt-page-selector .dt-page-dropdown{position:absolute;top:100%;left:0;margin-top:4px;background:#fff;border:1px solid #e5e7eb;border-radius:6px;box-shadow:0 4px 12px rgba(0,0,0,.1);z-index:100;max-height:200px;overflow-y:auto;min-width:60px}.dt-pagination .dt-page-selector .dt-page-dropdown .dt-page-option{padding:6px 16px;font-size:13px;color:#344054;cursor:pointer;text-align:center}.dt-pagination .dt-page-selector .dt-page-dropdown .dt-page-option:hover{background:#f3f4f6}.dt-pagination .dt-page-selector .dt-page-dropdown .dt-page-option.active{background:#e8f5e9;color:#1a6b5c;font-weight:600}.dt-toolbar-divider{width:1px;height:20px;background-color:#d0d5dd}.dt-filter-btn{display:flex;align-items:center;gap:4px;padding:7px 12px;height:34px;box-sizing:border-box;border:1px solid #d0d5dd;border-radius:8px;background:#fff;font-size:13px;color:#344054;cursor:pointer;font-weight:500}.dt-filter-btn mat-icon{font-size:16px;width:16px;height:16px;color:#667085}.dt-download-btn{display:flex;align-items:center;justify-content:center;width:34px;height:34px;box-sizing:border-box;border:1px solid #d0d5dd;border-radius:8px;background:#fff;cursor:pointer;padding:0}.dt-download-btn mat-icon{font-size:18px;width:18px;height:18px;color:#344054}.toolbar-icon-circle{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background-color:#e3e7eb}.toolbar-circle-icon{width:28px;height:18px}.confirm-season-modal-header{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:465px;vertical-align:bottom}.confirm-season-modal-header-season-name{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:210px;vertical-align:bottom;cursor:pointer}.season-linked-projects-left-panel{overflow:auto;height:100% !important;padding:0 !important;border-right:1px solid rgba(0,0,0,.12)}.season-linked-projects-left-panel::-webkit-scrollbar{width:4px}.season-linked-projects-left-panel::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.season-linked-projects-left-panel::-webkit-scrollbar-thumb{background:#979797;border-radius:10px}.season-linked-projects-left-panel::-webkit-scrollbar-thumb:hover{background:#000}.season-linked-projects-left-table{border-top:unset !important}.season-linked-projects-left-table tr.mat-row{cursor:pointer}.season-linked-projects-left-table tr.mat-row:hover{background-color:rgba(217,217,217,.38)}.selectedSeason{background-color:rgba(217,217,217,.38)}.season-linked-projects-right-panel{overflow:auto;height:100% !important}.linked-seasons-table .index-column-container{position:relative;display:flex;align-items:center;justify-content:center;height:100%;min-height:56px;padding:8px 0}.linked-seasons-table .index-column-container::before{content:"";position:absolute;left:50%;top:0;height:50%;width:.5px;background-color:rgba(151,151,151,.5);transform:translateX(-50%);z-index:1}.linked-seasons-table .index-column-container::after{content:"";position:absolute;left:50%;bottom:0;height:50%;width:.5px;background-color:rgba(151,151,151,.5);transform:translateX(-50%);z-index:1}.linked-seasons-table tr:first-of-type .index-column-container::before{display:none}.linked-seasons-table tr:last-of-type .index-column-container::after{display:none}.linked-seasons-table .index-column-container .index-display{position:relative;z-index:2}.mat-tooltip-panel{pointer-events:none !important}.mat-content.mat-content-hide-toggle{margin-right:0 !important}.mat-expansion-panel-header-description{flex-basis:auto !important}.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.btn-close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5;padding:0;background-color:rgba(0,0,0,0);border:0;cursor:pointer}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.me-auto{margin-right:auto !important}.ms-auto{margin-left:auto !important}.tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip-arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}.popover-arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover-arrow::before,.popover-arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid}.carousel-indicators button{flex:0 1 auto;margin-right:3px;margin-left:3px;border:0;opacity:.5;text-indent:-999px;box-sizing:content-box;width:4px;height:4px;border-radius:50%;background-color:#cfcfcf;background-clip:border-box;border-top:0 solid rgba(0,0,0,0);border-bottom:0 solid rgba(0,0,0,0)}.carousel-indicators button.active{opacity:1}.form-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.satellite-index-dropdown-panel{margin-top:20%}.satellite-index-dropdown-panel .mat-option{color:rgba(0,0,0,.87)}.satellite-index-dropdown-panel .mat-option.mat-selected:not(.mat-option-multiple){color:#4caf50;font-weight:600}.custom-progress .mat-progress-bar-fill::after{background-color:#2e700f !important}.custom-css-class-border-radius{border-radius:14px !important}.mat-dialog-title.change-background-color{background-color:#fff !important}.change-modal-actions{width:100%;padding:2px 15px 17px !important;background-color:#fff !important;height:70px !important;display:grid !important;grid-template-columns:1fr 1fr;gap:6px;min-height:auto;margin:0}.change-modal-actions>*{width:100%;min-width:0}.change-modal-actions>div{display:flex;margin-left:0 !important;width:100%}.change-modal-actions>div>button{width:100%}.change-modal-actions .mat-button,.change-modal-actions .mat-raised-button{width:100%;height:44px;margin:0;border-radius:14px;box-sizing:border-box}.change-modal-actions .cancelBtn{background-color:#fff !important;color:#264554 !important;border:1px solid #264554 !important;box-shadow:none !important}.change-modal-actions .cancelBtn:hover:not(:disabled){background-color:#f5f5f5 !important}.change-modal-actions .cancelBtn:active:not(:disabled){background-color:#f3f4f6 !important}.change-modal-actions .custom-css-class.mat-raised-button,.change-modal-actions .mat-raised-button:not(.cancelBtn){background-color:#2e700f !important;color:#fff !important;box-shadow:none !important}.change-modal-actions .custom-css-class.mat-raised-button:hover:not(:disabled),.change-modal-actions .mat-raised-button:not(.cancelBtn):hover:not(:disabled){background-color:#256b0c !important}.change-modal-actions .custom-css-class.mat-raised-button:disabled,.change-modal-actions .mat-raised-button:not(.cancelBtn):disabled{background-color:#c8d6c4 !important}.sust-bulk-upload-img{width:22px;height:22px;padding-bottom:3px;margin-right:6px}
